:root {
  --primary: #FF4757;
  --yellow: #FFA502;
  --text: #2F3542;
  --bg: #FAFBFC;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}
.blob-container { position: fixed; inset: 0; z-index: -2; filter: blur(80px); }
.blob { position: absolute; border-radius: 50%; width: 500px; height: 500px; animation: f 20s infinite alternate; }
.blob-1 { top: -10%; left: -10%; background: #ff9ff3; opacity: 0.6; }
.blob-2 { bottom: -10%; right: -10%; background: #54a0ff; opacity: 0.5; }
.blob-3 { top: 40%; left: 40%; background: #feca57; opacity: 0.4; }
.glass-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.4); backdrop-filter: blur(40px); z-index: -1; }
@keyframes f { to { transform: translate(100px, 100px); } }

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; max-width: 1400px; margin: 0 auto; }
.logo { font-size: 2.2rem; font-weight: 900; letter-spacing: -2px; }
.logo .dot { color: var(--primary); }
.btn-pill { background: var(--text); color: white; padding: 0.8rem 1.8rem; border-radius: 50px; text-decoration: none; font-weight: 700; }

.hero-grid { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 4rem 5%; gap: 2rem; }
.hero-text { flex: 1.2; }
.badge { display: inline-block; background: rgba(255,71,87,0.1); color: var(--primary); padding: 0.5rem 1rem; border-radius: 20px; font-weight: 800; font-size: 0.8rem; margin-bottom: 2rem; }
h1 { font-size: clamp(3rem, 7vw, 5rem); line-height: 1.1; font-weight: 900; margin-bottom: 2rem; }
.gradient-text { background: linear-gradient(45deg, var(--primary), var(--yellow)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lead { font-size: 1.2rem; color: #57606f; margin-bottom: 3.5rem; max-width: 500px; }
.btn-primary { background: var(--primary); color: white; padding: 1.2rem 3rem; border-radius: 50px; font-weight: 900; text-decoration: none; font-size: 1.2rem; box-shadow: 0 10px 20px rgba(255, 71, 87, 0.2); }

.hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }
.phone-frame { width: 300px; height: 600px; background: white; border-radius: 40px; padding: 10px; box-shadow: 0 40px 100px rgba(0,0,0,0.1); transform: rotate(-3deg); }
.phone-screen { width: 100%; height: 100%; background: #F8F9FA; border-radius: 30px; overflow: hidden; position: relative; border: 1px solid #eee; }
.notch { width: 120px; height: 20px; background: white; margin: 0 auto; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; }
.app-content { padding: 20px; display: flex; flex-direction: column; height: 100%; }
.app-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.app-title { font-weight: 900; }
.card-stack { flex: 1; position: relative; }
.mock-card { width: 100%; height: 90%; border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: white; border: 1px solid #eee; }
.card-emoji { font-size: 4rem; margin-bottom: 1rem; }
.app-buttons { display: flex; justify-content: space-between; padding: 20px 0; }
.b-circle { width: 50px; height: 50px; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); font-size: 1rem; }
.pass { color: #ff6b6b; } .like { color: #2ed573; } .super { color: var(--yellow); transform: translateY(-5px); }

.tag { position: absolute; background: white; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 900; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.t1 { top: 10%; left: -20px; }
.t2 { bottom: 20%; right: -20px; }
.t3 { top: 40%; right: -30px; }
