:root {
  --accent: #F5B524;
  --accent-2: #0F2A52;
  --bg: #0A0A0B;
  --bg-1: #111114;
  --bg-2: #1A1A1F;
  --bg-3: #22232A;
  --line: #2A2B33;
  --line-2: #383944;
  --fg: #F5F5F7;
  --fg-1: #C9CAD2;
  --fg-2: #8B8C97;
  --fg-3: #5A5B66;
  --green: #16A34A;
  --yellow: #FFB020;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
p { margin: 0; color: var(--fg-1); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; list-style: none; margin: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; font-weight: 500; font-size: 14px;
  transition: transform .15s, background .15s, box-shadow .15s; white-space: nowrap;
  text-decoration: none;
}
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 8px 24px -8px var(--accent); }
.btn.primary:hover { transform: translateY(-1px); }
.btn.ghost { background: rgba(255,255,255,.06); color: var(--fg); border: 1px solid var(--line); }
.btn.ghost:hover { background: rgba(255,255,255,.1); }
.btn.sm { padding: 9px 14px; font-size: 13px; }
.btn.lg { padding: 15px 24px; font-size: 15px; }
.btn.xl { padding: 20px 32px; font-size: 17px; }
.btn.block { width: 100%; }
.arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.logo img { display: block; }
.logo-full-img { height: 36px; width: auto; max-width: 220px; object-fit: contain; }
@media (max-width: 480px) { .logo-full-img { height: 30px; max-width: 170px; } }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; backdrop-filter: blur(16px); background: rgba(10,10,11,.7);
  border-bottom: 1px solid var(--line);
}
.nav-links { display: flex; gap: 24px; font-size: 14px; color: var(--fg-1); }
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-menu { position: relative; }
.lang-tog {
  display: inline-flex; align-items: center; gap: 6px;
  height: 32px; padding: 0 10px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: var(--fg-1);
  cursor: pointer;
}
.lang-flag { font-size: 14px; line-height: 1; }
.lang-tog:hover { background: rgba(255,255,255,.1); color: var(--fg); }
.lang-tog .caret { font-size: 9px; opacity: .65; }

.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 200px;
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,.7);
  padding: 6px; overflow: hidden; z-index: 100;
  animation: ddIn .15s ease-out;
}
@keyframes ddIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.lang-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 9px 12px;
  background: transparent; border: none; cursor: pointer;
  color: var(--fg-1); font-size: 14px; font-weight: 400; letter-spacing: 0;
  border-radius: 8px; transition: background .12s;
  text-align: left;
}
.lang-item:hover { background: var(--bg-2); color: var(--fg); }
.lang-item.active { background: rgba(245,181,36,.1); color: var(--fg); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { padding: 12px 16px; gap: 6px; }
  .nav-right .btn { padding: 8px 12px; font-size: 12px; }
}

/* HERO */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  padding: 80px 40px 100px; max-width: 1280px; margin: 0 auto; position: relative;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(245,181,36,.08); border: 1px solid rgba(245,181,36,.25);
  color: var(--accent); font-size: 12px; font-weight: 500; margin-bottom: 24px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 { font-size: clamp(44px, 6vw, 84px); margin-bottom: 22px; }
.hero h1 span { display: block; }
.hero h1 .hl { color: var(--accent); font-style: italic; }
.hero .sub { font-size: 18px; line-height: 1.55; max-width: 560px; margin-bottom: 28px; color: var(--fg-1); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-note { font-size: 13px; color: var(--fg-2); margin-bottom: 0; }
.hero-phone { position: relative; display: flex; justify-content: center; }
.hero-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 50% 50%, rgba(245,181,36,.22), transparent 70%); filter: blur(40px); }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding: 50px 18px 70px; gap: 40px; }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); }
}

/* PHONE MOCKUP */
.phone {
  width: 320px; height: 660px; max-width: 90vw; background: #1A1A1F;
  border-radius: 44px; padding: 8px; border: 1px solid #2A2A30;
  box-shadow: 0 0 0 2px #0a0a0c, 0 30px 60px -20px rgba(0,0,0,.6),
              0 0 80px -20px rgba(245,181,36,.3);
  position: relative;
}
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 110px; height: 28px; background: #000; border-radius: 999px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: #0A0A0B; border-radius: 36px; overflow: hidden; display: flex; flex-direction: column; padding-top: 50px; }
.phone-app-bar { padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.phone-app-bar .back { font-size: 22px; color: var(--accent); }
.phone-app-title { font-size: 13px; font-weight: 600; }
.phone-app-bar .dots { color: var(--fg-2); }
.phone-scene { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.phone-line { padding: 10px 12px; border-radius: 12px; }
.phone-line.them { background: var(--bg-2); }
.phone-line.me { background: rgba(245,181,36,.12); border: 1px solid rgba(245,181,36,.25); }
.phone-char { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--fg-2); margin-bottom: 4px; }
.phone-line.me .phone-char { color: var(--accent); }
.phone-text { font-size: 13px; line-height: 1.4; }
.blackout { background: var(--fg); color: var(--fg); border-radius: 2px; padding: 0 1px; letter-spacing: -1px; margin-right: 2px; }
.phone-listening {
  margin: 0 16px 16px; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: rgba(245,181,36,.08); border-radius: 999px;
  font-size: 12px; color: var(--accent);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulseRing 1.5s infinite; }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(245,181,36,.6); } 70% { box-shadow: 0 0 0 12px rgba(245,181,36,0); } 100% { box-shadow: 0 0 0 0 rgba(245,181,36,0); } }

/* COMPARE */
.compare { padding: 30px 28px 60px; max-width: 1200px; margin: 0 auto; }
.compare-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.compare-card { padding: 20px 16px; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.compare-card.us { background: linear-gradient(180deg, rgba(245,181,36,.15), rgba(245,181,36,.04)); border-color: var(--accent); transform: scale(1.05); box-shadow: 0 20px 40px -20px rgba(245,181,36,.4); }
.compare-name { font-size: 13px; color: var(--fg-2); margin-bottom: 12px; font-weight: 500; }
.compare-card.us .compare-name { color: var(--fg); }
.price-num { font-family: 'Instrument Serif', serif; font-size: 32px; font-weight: 400; }
.compare-card.us .price-num { color: var(--accent); font-size: 38px; }
.price-per { font-size: 12px; color: var(--fg-2); display: block; margin-top: 2px; }
.compare-card.us .price-per { color: var(--accent); font-weight: 600; }
.compare-note { font-size: 11px; color: var(--fg-3); margin-top: 8px; }

@media (max-width: 720px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } .compare-card.us { grid-column: span 2; transform: none; } }

/* SECTIONS */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--fg-2); }

/* FEATURES */
.features { padding: 80px 28px; max-width: 1280px; margin: 0 auto; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat { padding: 22px; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; transition: transform .2s, border-color .2s; }
.feat:hover { transform: translateY(-3px); border-color: var(--line-2); }
.feat-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 14px; }
.feat-icon { font-size: 28px; margin-bottom: 14px; }
.feat h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.feat p { font-size: 13px; color: var(--fg-2); line-height: 1.45; }

@media (max-width: 1080px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }

/* SHOWCASE */
.showcase { padding: 80px 28px; max-width: 1280px; margin: 0 auto; }
.desktop { background: var(--bg-1); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 40px 80px -20px rgba(0,0,0,.6); }
.desktop-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.r { background: #FF5F57; } .dot.y { background: #FFBD2E; } .dot.g { background: #28C840; }
.desktop-url { margin-left: 16px; font-size: 12px; color: var(--fg-2); }
.desktop-body { display: grid; grid-template-columns: 240px 1fr; min-height: 500px; }
.desktop-side { padding: 20px; border-right: 1px solid var(--line); background: var(--bg); }
.side-section { margin-bottom: 24px; }
.side-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--fg-3); margin-bottom: 10px; }
.side-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 6px; font-size: 13px; color: var(--fg-1); }
.side-item.active { background: rgba(245,181,36,.1); color: var(--fg); }
.side-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.side-dot.off { background: var(--line-2); }
.mode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mode-tile { padding: 10px 8px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--fg-2); }
.mode-tile.active { background: var(--accent); color: white; border-color: var(--accent); }
.desktop-main { display: flex; flex-direction: column; }
.desktop-toolbar { display: flex; gap: 8px; padding: 14px 20px; border-bottom: 1px solid var(--line); align-items: center; }
.tool-pill { padding: 5px 11px; border-radius: 999px; background: rgba(245,181,36,.1); color: var(--accent); font-size: 11px; font-weight: 600; }
.tool-pill.ghost { background: var(--bg-2); color: var(--fg-2); }
.tool-pill.record { background: #ff3030; color: white; }
.grow { flex: 1; }
.desktop-script { flex: 1; padding: 28px 40px; display: flex; flex-direction: column; gap: 16px; }
.script-line { display: grid; grid-template-columns: 130px 1fr; gap: 20px; align-items: start; }
.script-char { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: var(--fg-3); padding-top: 4px; text-align: right; }
.script-line.me .script-char { color: var(--accent); }
.script-text { font-family: 'Courier Prime', 'Courier New', monospace; font-size: 16px; line-height: 1.5; }
.redacted { background: var(--fg); color: transparent; border-radius: 2px; }
.desktop-foot { display: flex; align-items: center; gap: 20px; padding: 14px 20px; border-top: 1px solid var(--line); }
.progress { flex: 1; display: flex; align-items: center; gap: 12px; }
.progress-bar { flex: 1; height: 5px; background: var(--bg-2); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); }
.progress span { font-size: 12px; color: var(--fg-2); }
.next-btn { padding: 8px 14px; background: var(--accent); color: white; border-radius: 6px; font-size: 13px; font-weight: 500; }

@media (max-width: 720px) {
  .desktop-body { grid-template-columns: 1fr; }
  .desktop-side { display: none; }
  .desktop-script { padding: 18px; }
  .script-line { grid-template-columns: 80px 1fr; gap: 12px; }
}

/* PRICING */
.pricing { padding: 80px 28px; max-width: 1080px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 16px; }
.plan { padding: 32px; background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius-lg); position: relative; }
.plan.featured { background: linear-gradient(180deg, rgba(245,181,36,.08), var(--bg-1) 60%); border-color: var(--accent); }
.plan-ribbon { position: absolute; top: -12px; right: 24px; padding: 4px 12px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; border-radius: 999px; }
.plan-name { font-size: 14px; font-weight: 600; color: var(--fg-1); margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-num { font-family: 'Instrument Serif', serif; font-size: 64px; font-weight: 400; line-height: 1; }
.plan.featured .plan-num { color: var(--accent); }
.plan-per { font-size: 14px; color: var(--fg-2); font-weight: 600; }
.plan-eq { font-size: 12px; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.plan-desc { font-size: 14px; color: var(--fg-1); margin-bottom: 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--fg-1); }
.plan-guarantee { margin-top: 20px; padding: 12px; background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.25); border-radius: 8px; font-size: 12px; color: #4ade80; }

@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } .plan { padding: 24px; } }

/* FAQ */
.faq { padding: 60px 28px; max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: border-color .2s; }
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: var(--accent); }
.faq-q { padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; font-size: 15px; font-weight: 500; }
.faq-tog { font-size: 22px; color: var(--accent); width: 24px; text-align: center; }
.faq-a { padding: 0 22px 18px; font-size: 14px; color: var(--fg-1); line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* FINAL CTA */
.final-cta { padding: 100px 28px; text-align: center; background: radial-gradient(60% 60% at 50% 50%, rgba(245,181,36,.12), transparent 70%); }
.final-cta h2 { font-size: clamp(44px, 7vw, 96px); margin-bottom: 28px; }
.final-cta .hl { color: var(--accent); font-style: italic; }
.final-note { font-size: 13px; color: var(--fg-2); margin-top: 16px; }

/* FOOTER */
.foot { padding: 40px 28px; border-top: 1px solid var(--line); max-width: 1280px; margin: 0 auto; }
.foot-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.foot-tag { font-size: 13px; color: var(--fg-2); }
.foot-bot { padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--fg-3); }
.foot-bot a { cursor: pointer; }
.foot-bot a:hover { color: var(--fg-1); }

@media (max-width: 720px) { .foot-top { flex-direction: column; gap: 12px; align-items: flex-start; } }
