*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080f;
  --bg2: #0d0f1a;
  --bg3: #12151f;
  --text: #eeedf5;
  --muted: #7a7a96;
  --border: rgba(255,255,255,0.07);
  --accent1: #f0416c;
  --accent2: #ff9a5c;
  --accent3: #c256f0;
  --gradient: linear-gradient(135deg, var(--accent1) 0%, var(--accent2) 50%, var(--accent3) 100%);
  --r: 12px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,8,15,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.35rem;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
  background: white; color: #07080f !important;
  padding: 8px 18px; border-radius: 40px;
  font-weight: 500; font-size: 0.85rem !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: 0.88; color: #07080f !important; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

/* HERO */
.hero {
  min-height: 100dvh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px clamp(1.5rem, 5vw, 4rem) 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}

.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: min(900px, 130vw); height: 500px;
  background: radial-gradient(ellipse at center, rgba(240,65,108,0.18) 0%, rgba(194,86,240,0.1) 40%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,65,108,0.1); border: 1px solid rgba(240,65,108,0.25);
  color: #f8a5ba; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #f0416c;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 850px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 300;
}

.hero-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gradient);
  color: #fff; padding: 14px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, opacity .2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1px solid var(--border);
  color: var(--muted); padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

/* WAVEFORM */
.waveform {
  display: flex; align-items: center; gap: 3px;
  height: 40px; margin: 3rem auto 0;
  animation: fadeUp 0.6s 0.4s ease both;
}
.bar {
  width: 3px; border-radius: 4px;
  background: linear-gradient(180deg, var(--accent1), var(--accent3));
  animation: wave var(--d) ease-in-out infinite alternate;
  animation-delay: var(--delay);
  opacity: 0.7;
}
@keyframes wave {
  from { height: 4px; }
  to { height: var(--h); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* DEMO PHONE */
.demo-section {
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 6rem;
  display: flex; justify-content: center;
}

.phone-mockup {
  width: min(340px, 90vw);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 24px 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 0.5px rgba(255,255,255,0.05);
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px;
  background: var(--bg2);
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--border);
  border-top: none;
}

.ig-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.ig-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
}
.ig-name { font-size: 0.85rem; font-weight: 500; }
.ig-status { font-size: 0.72rem; color: var(--muted); }

.ig-bubble {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border-radius: 18px 18px 18px 4px;
  padding: 10px 14px; max-width: 85%; margin-bottom: 10px;
}
.ig-bubble .play-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ig-bubble .play-btn svg { width: 12px; height: 12px; fill: white; }
.mini-wave { display: flex; gap: 2px; align-items: center; flex: 1; }
.mini-bar {
  width: 2px; border-radius: 2px;
  background: var(--muted);
  height: var(--h);
  flex-shrink: 0;
}

.transcription-card {
  background: rgba(240,65,108,0.08);
  border: 1px solid rgba(240,65,108,0.2);
  border-radius: 12px; padding: 12px 14px;
  margin-top: 6px;
}
.transcription-label {
  font-size: 0.65rem; letter-spacing: 0.08em;
  color: #f0416c; font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px; display: flex; align-items: center; gap: 6px;
}
.transcription-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #f0416c;
}
.transcription-text {
  font-size: 0.82rem; color: var(--text); line-height: 1.5;
}

/* HOW IT WORKS */
.section { padding: 6rem clamp(1.5rem, 5vw, 4rem); }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent1); font-weight: 500; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1; letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 4rem;
}
.section-title em { font-style: italic; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; }

.step {
  background: var(--bg2);
  padding: 2rem;
  position: relative;
  transition: background .2s;
}
.step:first-child { border-radius: var(--r) 0 0 var(--r); }
.step:last-child { border-radius: 0 var(--r) var(--r) 0; }
.step:hover { background: var(--bg3); }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem; font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.feature {
  background: var(--bg);
  padding: 2rem;
  transition: background .2s;
}
.feature:hover { background: var(--bg2); }

.feature-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 20px;
}
.feature h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.feature p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.plan {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }

.plan.featured {
  border-color: rgba(240,65,108,0.4);
  background: rgba(240,65,108,0.05);
}
.plan.featured::before { display: none; }

.plan-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: white;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 4px 14px; border-radius: 0 0 10px 10px;
  white-space: nowrap;
  display: inline-block;
  z-index: 1;
}

.plan-name { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1rem; }
.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem; font-weight: 700;
  line-height: 1; margin-bottom: 0.25rem;
}
.plan-price .currency { font-size: 1.2rem; vertical-align: super; font-weight: 300; }
.plan-price .period { font-size: 0.85rem; font-weight: 300; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.plan-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li {
  font-size: 0.85rem; color: var(--muted);
  padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px;
}
.plan-features li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 4L6 11.5 2.5 8' stroke='%23f0416c' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  margin-top: 3px;
}
.plan-features li strong { color: var(--text); font-weight: 500; }

.btn-plan {
  display: block; width: 100%;
  padding: 11px; border-radius: 50px;
  text-align: center; font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: all .2s; cursor: pointer; border: none;
}
.plan:not(.featured) .btn-plan {
  background: transparent; border: 1px solid var(--border);
  color: var(--muted);
}
.plan:not(.featured) .btn-plan:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.plan.featured .btn-plan {
  background: var(--gradient); color: white;
}
.plan.featured .btn-plan:hover { opacity: 0.9; }

/* WAITLIST */
.waitlist-section {
  padding: 2rem clamp(1.5rem, 5vw, 4rem) 4rem;
  display: flex; justify-content: center;
}
.waitlist-card {
  background: var(--bg2);
  border: 1px solid rgba(194,86,240,0.2);
  border-radius: var(--r);
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
}
.waitlist-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(194,86,240,0.1); border: 1px solid rgba(194,86,240,0.25);
  color: #d8a5f8; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  padding: 6px 14px; border-radius: 40px;
  margin-bottom: 1.5rem;
}
.waitlist-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent3);
}
.waitlist-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 0.75rem;
}
.waitlist-title em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.waitlist-sub {
  color: var(--muted); font-size: 0.95rem;
  margin-bottom: 2rem; line-height: 1.7;
}
.waitlist-form {
  display: flex; gap: 0.5rem;
  flex-wrap: wrap; justify-content: center;
}
.waitlist-input {
  flex: 1; min-width: 200px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; padding: 12px 16px;
  border-radius: 50px; outline: none;
  transition: border-color .2s;
}
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-input:focus { border-color: rgba(194,86,240,0.5); }
.waitlist-success {
  font-size: 0.88rem; color: #d8a5f8;
  margin-top: 1rem; display: none;
}
.waitlist-success.visible { display: block; }

/* SOCIAL PROOF */
.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.testimonial {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem;
}
.testimonial-text { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.testimonial-text::before { content: '"'; color: var(--accent1); font-size: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-name { font-size: 0.82rem; font-weight: 500; }
.testimonial-handle { font-size: 0.75rem; color: var(--muted); }

/* FAQ */
.faq { max-width: 680px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 1.2rem 0; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.2rem; color: var(--muted);
  transition: transform .2s;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 0.88rem; color: var(--muted); padding-bottom: 1.2rem; line-height: 1.7; }

/* FOOTER CTA */
.footer-cta {
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.footer-cta-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at bottom, rgba(194,86,240,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; letter-spacing: -0.03em;
  max-width: 700px; margin: 0 auto 1.5rem;
  line-height: 1.1;
}
.footer-cta h2 em { font-style: italic; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-cta p { color: var(--muted); max-width: 420px; margin: 0 auto 2.5rem; }

/* FOOTER */
footer {
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem;
}
footer .logo { font-size: 1.1rem; }
footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
footer nav a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color .2s; }
footer nav a:hover { color: var(--text); }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); }

/* LANG SWITCHER */
.lang-switch {
  display: flex; gap: 4px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px;
}
.lang-btn {
  font-size: 0.75rem; padding: 3px 10px; border-radius: 14px;
  cursor: pointer; transition: all .2s;
  color: var(--muted); background: transparent; border: none;
  text-decoration: none; display: inline-flex; align-items: center;
}
.lang-btn.active { background: white; color: #07080f; font-weight: 500; }
.lang-btn:hover:not(.active) { color: var(--text); }

/* MOBILE LANG SWITCHER (visible on mobile, hidden on desktop) */
.nav-mobile-lang { display: none; }

/* RESPONSIVE */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-mobile-lang {
    display: flex;
    align-items: center;
  }
  .step:first-child, .step:last-child { border-radius: var(--r); }
  .step { border-radius: var(--r) !important; }
  .steps { gap: 1px; }
  .waitlist-card { padding: 2rem 1.5rem; }
}
