:root {
  color-scheme: light;
  --bg: #f5f6ef;
  --bg-soft: #ebf3e8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-strong: #ecf5ec;
  --ink: #102219;
  --ink-soft: #53635a;
  --ink-faint: #77867d;
  --line: rgba(16, 34, 25, 0.12);
  --line-strong: rgba(16, 34, 25, 0.2);
  --green: #087a43;
  --green-bright: #12a65c;
  --green-deep: #054c2b;
  --mint: #d8f2df;
  --gold: #b8780f;
  --gold-soft: #faedc9;
  --coral: #c34f46;
  --violet: #6853b8;
  --blue: #267ca8;
  --shadow-sm: 0 10px 35px rgba(23, 45, 32, 0.08);
  --shadow-md: 0 24px 70px rgba(23, 45, 32, 0.13);
  --shadow-lg: 0 38px 110px rgba(4, 40, 22, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 56px;
  --container: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #07130d;
    --bg-soft: #0c2015;
    --surface: #0e2117;
    --surface-soft: rgba(14, 33, 23, 0.76);
    --surface-strong: #153523;
    --ink: #f4f8f4;
    --ink-soft: #afbeb4;
    --ink-faint: #829087;
    --line: rgba(226, 244, 231, 0.12);
    --line-strong: rgba(226, 244, 231, 0.2);
    --green: #43d482;
    --green-bright: #68e49b;
    --green-deep: #d6f9e3;
    --mint: #153b27;
    --gold: #f0bd5d;
    --gold-soft: #3b3018;
    --coral: #ff8b80;
    --violet: #aa96f2;
    --blue: #72c9ed;
    --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 26px 78px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 42px 120px rgba(0, 0, 0, 0.44);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07130d;
  --bg-soft: #0c2015;
  --surface: #0e2117;
  --surface-soft: rgba(14, 33, 23, 0.76);
  --surface-strong: #153523;
  --ink: #f4f8f4;
  --ink-soft: #afbeb4;
  --ink-faint: #829087;
  --line: rgba(226, 244, 231, 0.12);
  --line-strong: rgba(226, 244, 231, 0.2);
  --green: #43d482;
  --green-bright: #68e49b;
  --green-deep: #d6f9e3;
  --mint: #153b27;
  --gold: #f0bd5d;
  --gold-soft: #3b3018;
  --coral: #ff8b80;
  --violet: #aa96f2;
  --blue: #72c9ed;
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 26px 78px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 42px 120px rgba(0, 0, 0, 0.44);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(78, 205, 126, .12), transparent 28rem),
    radial-gradient(circle at 94% 12%, rgba(240, 189, 93, .11), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(18, 166, 92, .24); }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-160%); padding: 10px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg); font-weight: 800; text-decoration: none;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--green) 65%, white); outline-offset: 3px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-flush { padding-top: 0; }
.section-tint { background: color-mix(in srgb, var(--bg-soft) 72%, transparent); border-block: 1px solid var(--line); }
.section-dark {
  color-scheme: dark; color: #f3f8f4; background:
  radial-gradient(circle at 16% 0, rgba(67, 212, 130, .18), transparent 34rem),
  radial-gradient(circle at 88% 100%, rgba(240, 189, 93, .1), transparent 30rem), #06140c;
}
.section-dark .muted, .section-dark .lead { color: #aebdb3; }
.section-dark .eyebrow { color: #6ee3a1; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, .display { font-family: "Fraunces", Georgia, serif; letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
h1 { font-size: clamp(3.2rem, 7.5vw, 7.4rem); font-weight: 650; margin-bottom: 28px; }
h2 { font-size: clamp(2.45rem, 4.9vw, 4.8rem); font-weight: 620; margin-bottom: 24px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -.025em; }
.lead { max-width: 690px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.27rem); line-height: 1.7; }
.muted { color: var(--ink-soft); }
.tiny { color: var(--ink-faint); font-size: .82rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.max-copy { max-width: 690px; }
.accent { color: var(--green); }
.gold { color: var(--gold); }
.kicker { font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 750; letter-spacing: -.03em; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 52px; }
.section-head > :first-child { max-width: 760px; }
.section-head h2 { margin-bottom: 0; }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); border-bottom: 1px solid transparent; background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(18px) saturate(140%); transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(18, 38, 26, .06); }
.nav { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 1.12rem; font-weight: 900; letter-spacing: -.035em; flex-shrink: 0; }
.brand img { width: 38px; height: 38px; border-radius: 12px; box-shadow: 0 7px 18px rgba(8, 122, 67, .18); }
.brand small { margin-left: 3px; color: var(--ink-faint); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a { padding: 10px 13px; border-radius: 999px; color: var(--ink-soft); font-size: .88rem; font-weight: 750; text-decoration: none; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: var(--surface-soft); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-btn { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-soft); color: var(--ink); cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
.icon-btn:hover { transform: translateY(-2px); border-color: var(--line-strong); background: var(--surface); }
.icon-btn svg { width: 18px; height: 18px; }
.menu-toggle { display: none; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; background: var(--green); color: #fff; box-shadow: 0 10px 28px rgba(8, 122, 67, .2); cursor: pointer; font-size: .9rem; font-weight: 850; line-height: 1; text-decoration: none; transition: transform .22s var(--ease), box-shadow .22s, background .22s; }
.btn:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--green) 88%, black); box-shadow: 0 15px 35px rgba(8, 122, 67, .26); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-lg { min-height: 57px; padding-inline: 26px; font-size: .98rem; }
.btn-secondary { background: var(--surface-soft); border-color: var(--line); box-shadow: none; color: var(--ink); }
.btn-secondary:hover { background: var(--surface); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: transparent; box-shadow: none; color: var(--ink-soft); }
.btn-block { width: 100%; }
.btn[disabled], .btn.loading { opacity: .64; pointer-events: none; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-weight: 850; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.hero { min-height: calc(100svh - var(--header-h)); display: grid; align-items: center; padding: 76px 0 96px; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr); align-items: center; gap: clamp(42px, 7vw, 100px); }
.hero-copy h1 { max-width: 820px; }
.hero-copy .lead { max-width: 620px; }
.hero-copy .button-row { margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; color: var(--ink-soft); font-size: .85rem; font-weight: 720; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px color-mix(in srgb, var(--green) 12%, transparent); }
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-orbit { position: absolute; inset: 3% -5%; border: 1px solid color-mix(in srgb, var(--green) 24%, transparent); border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%; transform: rotate(-8deg); }
.hero-orbit::after { content: ""; position: absolute; inset: 10%; border: 1px dashed color-mix(in srgb, var(--gold) 25%, transparent); border-radius: inherit; }
.phone-shot { position: relative; width: min(360px, 86vw); padding: 9px; border: 1px solid color-mix(in srgb, var(--ink) 13%, transparent); border-radius: 42px; background: color-mix(in srgb, var(--surface) 86%, transparent); box-shadow: var(--shadow-lg); transform: rotate(2.5deg); }
.phone-shot::before { content: ""; position: absolute; z-index: 2; top: 17px; left: 50%; width: 75px; height: 20px; border-radius: 999px; background: #06110b; transform: translateX(-50%); }
.phone-shot img { width: 100%; border-radius: 33px; }
.float-card { position: absolute; display: flex; align-items: center; gap: 11px; max-width: 210px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 88%, transparent); box-shadow: var(--shadow-md); backdrop-filter: blur(14px); font-size: .76rem; font-weight: 800; line-height: 1.25; }
.float-card b { display: block; font-size: .91rem; }
.float-card .mini-icon { width: 35px; height: 35px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; background: var(--mint); color: var(--green); font-size: 1.05rem; }
.float-a { top: 12%; left: -2%; transform: rotate(-4deg); }
.float-b { right: -3%; bottom: 18%; transform: rotate(3deg); }
.float-c { left: 2%; bottom: 6%; transform: rotate(-2deg); }

.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-soft); box-shadow: var(--shadow-sm); overflow: hidden; backdrop-filter: blur(14px); }
.metric { padding: 30px; }
.metric + .metric { border-left: 1px solid var(--line); }
.metric-value { display: block; color: var(--ink); font-family: "Fraunces", Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.3rem); font-weight: 650; letter-spacing: -.04em; line-height: 1; }
.metric-label { display: block; margin-top: 9px; color: var(--ink-soft); font-size: .78rem; font-weight: 760; letter-spacing: .02em; }
.verification-note { margin-top: 14px; color: var(--ink-faint); font-size: .76rem; text-align: right; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-soft); box-shadow: var(--shadow-sm); overflow: hidden; }
.card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -60px; bottom: -60px; border-radius: 50%; background: var(--card-glow, rgba(18, 166, 92, .09)); }
.card h3 { margin: 18px 0 10px; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--mint); color: var(--green); }
.card-icon svg { width: 23px; height: 23px; }
.card-gold { --card-glow: rgba(240, 189, 93, .12); }
.card-gold .card-icon { color: var(--gold); background: var(--gold-soft); }
.card-violet { --card-glow: rgba(104, 83, 184, .11); }
.card-violet .card-icon { color: var(--violet); background: color-mix(in srgb, var(--violet) 13%, var(--surface)); }
.card-blue { --card-glow: rgba(38, 124, 168, .11); }
.card-blue .card-icon { color: var(--blue); background: color-mix(in srgb, var(--blue) 13%, var(--surface)); }

.growth-path { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; counter-reset: step; }
.growth-step { position: relative; min-height: 250px; padding: 26px; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.045); overflow: hidden; }
.growth-step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 48px; color: #68e49b; font-family: "Fraunces", Georgia, serif; font-size: 1.2rem; }
.growth-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; top: 35px; right: -16px; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: #06140c; color: #6ee3a1; }
.growth-step h3 { margin-bottom: 10px; color: #fff; }
.growth-step p { margin: 0; color: #aebdb3; font-size: .9rem; }

.showcase { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: clamp(40px, 8vw, 110px); }
.showcase.reverse { grid-template-columns: 1.1fr 1fr; }
.showcase.reverse .showcase-copy { order: 2; }
.showcase.reverse .showcase-visual { order: 1; }
.feature-list { display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; color: var(--ink-soft); }
.feature-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--green); font-size: .75rem; font-weight: 900; }
.showcase-visual { position: relative; min-height: 620px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--surface-strong), var(--surface-soft)); overflow: hidden; }
.showcase-visual::before { content: ""; position: absolute; width: 320px; height: 320px; top: -100px; right: -80px; border-radius: 50%; background: color-mix(in srgb, var(--green) 16%, transparent); filter: blur(2px); }
.showcase-visual .phone-shot { width: 300px; transform: rotate(-2deg) translateY(38px); }
.showcase-visual.alt { background: linear-gradient(145deg, color-mix(in srgb, var(--gold-soft) 60%, var(--surface)), var(--surface)); }
.showcase-visual.alt .phone-shot { transform: rotate(2deg) translateY(38px); }

.privacy-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; padding: clamp(34px, 6vw, 70px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-md); }
.privacy-seal { width: 180px; height: 180px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle, var(--mint), transparent 68%); color: var(--green); }
.privacy-seal svg { width: 72px; height: 72px; }
.privacy-copy h2 { font-size: clamp(2.2rem, 4vw, 4rem); }

.cta-panel { position: relative; padding: clamp(44px, 8vw, 90px); border-radius: var(--radius-xl); background: #07190f; color: #f4f8f4; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-panel::before, .cta-panel::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); }
.cta-panel::before { width: 460px; height: 460px; top: -290px; left: -100px; background: rgba(67, 212, 130, .18); }
.cta-panel::after { width: 360px; height: 360px; right: -180px; bottom: -230px; background: rgba(240, 189, 93, .14); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 760px; margin-bottom: 24px; }
.cta-panel p { max-width: 630px; color: #aebdb3; }
.cta-panel .btn-secondary { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.07); }

.page-hero { padding: 112px 0 78px; }
.page-hero h1 { max-width: 950px; font-size: clamp(3.4rem, 7vw, 6.8rem); }
.page-hero .lead { max-width: 740px; }
.page-hero-centered { text-align: center; }
.page-hero-centered h1, .page-hero-centered .lead { margin-inline: auto; }
.breadcrumb { display: inline-flex; gap: 8px; margin-bottom: 26px; color: var(--ink-faint); font-size: .82rem; font-weight: 750; }
.breadcrumb a { text-decoration: none; }

.feature-spotlight { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-spotlight-copy { padding: clamp(34px, 6vw, 72px); align-self: center; }
.feature-spotlight-copy p { color: var(--ink-soft); }
.feature-spotlight-media { position: relative; min-height: 520px; display: grid; place-items: end center; background: linear-gradient(155deg, var(--mint), var(--surface-strong)); overflow: hidden; }
.feature-spotlight-media .phone-shot { width: 310px; transform: translateY(66px) rotate(2deg); }

.language-stage { position: relative; padding: 52px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-md); overflow: hidden; }
.language-stage::before { content: "121"; position: absolute; right: -20px; top: -80px; color: color-mix(in srgb, var(--green) 7%, transparent); font-family: "Fraunces", Georgia, serif; font-size: 17rem; font-weight: 700; line-height: 1; }
.language-toolbar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.search-box { width: min(520px, 100%); position: relative; }
.search-box svg { position: absolute; left: 17px; top: 50%; width: 19px; height: 19px; color: var(--ink-faint); transform: translateY(-50%); }
.search-box input { width: 100%; min-height: 54px; padding: 14px 46px; border: 1px solid var(--line); border-radius: 999px; background: var(--bg); color: var(--ink); outline: none; }
.search-box input:focus { border-color: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 12%, transparent); }
.language-count { color: var(--ink-soft); font-size: .85rem; font-weight: 800; white-space: nowrap; }
.language-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.language-card { min-width: 0; display: flex; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-soft); }
.language-flag { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--bg-soft); font-size: 1.35rem; }
.language-card strong { display: block; overflow: hidden; font-size: .84rem; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.language-card small { display: block; margin-top: 2px; color: var(--ink-faint); font-size: .7rem; }
.language-empty { display: none; padding: 30px; color: var(--ink-soft); text-align: center; }
.language-empty.visible { display: block; }

.pricing-switch { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 34px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.pricing-switch button { padding: 10px 16px; border: 0; border-radius: 999px; background: transparent; color: var(--ink-soft); cursor: pointer; font-size: .82rem; font-weight: 820; }
.pricing-switch button.active { background: var(--ink); color: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan-card { position: relative; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.plan-card.featured { border-color: color-mix(in srgb, var(--green) 40%, var(--line)); background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--mint) 36%, var(--surface))); box-shadow: var(--shadow-md); }
.plan-badge { display: inline-flex; margin-bottom: 30px; padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--green); font-size: .72rem; font-weight: 880; letter-spacing: .06em; text-transform: uppercase; }
.plan-card h2 { font-family: inherit; font-size: 2rem; letter-spacing: -.04em; }
.plan-price { min-height: 68px; margin: 20px 0 24px; }
.plan-price strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: clamp(2.3rem, 4vw, 3.6rem); letter-spacing: -.045em; line-height: 1; }
.plan-price span { color: var(--ink-soft); font-size: .82rem; }
.plan-list { display: grid; gap: 13px; margin: 28px 0 34px; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-list li { display: grid; grid-template-columns: 22px 1fr; gap: 10px; color: var(--ink-soft); font-size: .9rem; }
.plan-list li::before { content: "✓"; color: var(--green); font-weight: 900; }
.pricing-note { max-width: 760px; margin: 28px auto 0; color: var(--ink-faint); font-size: .78rem; text-align: center; }
.compare-table { width: 100%; border-spacing: 0; border-collapse: separate; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.compare-table th, .compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th { color: var(--ink-soft); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.check { color: var(--green); font-weight: 900; }
.dash { color: var(--ink-faint); }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.faq-list summary { position: relative; padding: 21px 56px 21px 22px; cursor: pointer; font-weight: 820; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 21px; top: 50%; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--bg-soft); color: var(--green); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 790px; margin: -4px 22px 22px; color: var(--ink-soft); }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.help-card { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); text-decoration: none; transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.help-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--green) 35%, var(--line)); box-shadow: var(--shadow-md); }
.help-card h3 { margin: 20px 0 8px; }
.help-card p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); align-items: start; justify-content: center; gap: 70px; }
.article-nav { position: sticky; top: calc(var(--header-h) + 30px); display: grid; gap: 8px; }
.article-nav a { padding: 8px 10px; border-radius: 10px; color: var(--ink-soft); font-size: .78rem; font-weight: 750; text-decoration: none; }
.article-nav a:hover { background: var(--surface); color: var(--ink); }
.prose { font-size: 1rem; }
.prose h2 { margin: 62px 0 18px; font-family: inherit; font-size: 1.8rem; line-height: 1.2; letter-spacing: -.035em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 34px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--green); }
.prose ul { display: grid; gap: 8px; padding-left: 20px; }
.legal-meta { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--surface); color: var(--ink-faint); font-size: .72rem; font-weight: 800; }

.auth-shell { min-height: calc(100svh - var(--header-h)); display: grid; grid-template-columns: 1fr 1fr; }
.auth-story { position: relative; display: grid; align-content: center; padding: clamp(50px, 8vw, 110px); background: #06140c; color: #f5f8f5; overflow: hidden; }
.auth-story::after { content: ""; position: absolute; width: 620px; height: 620px; right: -310px; bottom: -300px; border-radius: 50%; background: rgba(67, 212, 130, .13); }
.auth-story .brand { position: absolute; top: 35px; left: clamp(30px, 7vw, 90px); color: #fff; }
.auth-story h1 { max-width: 610px; font-size: clamp(3rem, 5.2vw, 5.7rem); }
.auth-story p { max-width: 520px; color: #aebdb3; font-size: 1.05rem; }
.auth-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.auth-facts span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #cfdbd2; font-size: .74rem; font-weight: 800; }
.auth-main { display: grid; place-items: center; padding: 42px 22px; }
.auth-card { width: min(470px, 100%); }
.auth-card > h2 { margin-bottom: 10px; font-family: inherit; font-size: 2rem; letter-spacing: -.04em; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin: 28px 0; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.auth-tab { padding: 11px; border: 0; border-radius: 999px; background: transparent; color: var(--ink-soft); cursor: pointer; font-weight: 850; }
.auth-tab.active { background: var(--ink); color: var(--bg); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; font-size: .78rem; font-weight: 820; }
.field input { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); color: var(--ink); outline: none; }
.field input:focus { border-color: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 12%, transparent); }
.field input.error { border-color: var(--coral); }
.field-error { display: none; margin-top: 5px; color: var(--coral); font-size: .72rem; }
.field-error.visible { display: block; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 54px; }
.password-toggle { position: absolute; right: 7px; top: 50%; width: 40px; height: 40px; border: 0; border-radius: 12px; background: transparent; color: var(--ink-soft); cursor: pointer; transform: translateY(-50%); }
.auth-banner { display: none; margin-bottom: 16px; padding: 13px 15px; border-radius: 14px; font-size: .82rem; }
.auth-banner.error { display: block; background: color-mix(in srgb, var(--coral) 13%, transparent); color: var(--coral); }
.auth-banner.success, .auth-plan-banner.visible { display: block; background: var(--mint); color: var(--green); }
.reset-feedback { display: none; margin-bottom: 16px; padding: 13px 15px; border-radius: 14px; font-size: .82rem; }
.reset-feedback.error { display: block; background: color-mix(in srgb, var(--coral) 13%, transparent); color: var(--coral); }
.reset-feedback.success { display: block; background: var(--mint); color: var(--green); }
.auth-plan-banner { display: none; margin-bottom: 14px; padding: 12px 14px; border-radius: 13px; font-size: .8rem; font-weight: 750; }
.auth-divider { display: flex; align-items: center; gap: 13px; margin: 20px 0; color: var(--ink-faint); font-size: .72rem; }
.auth-divider::before, .auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.oauth-btn { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); color: var(--ink); cursor: pointer; font-weight: 800; }
.form-foot { display: flex; justify-content: flex-end; margin: -5px 0 18px; }
.form-foot a { color: var(--green); font-size: .78rem; font-weight: 800; text-decoration: none; }
.signup-success { display: none; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); text-align: center; }
.signup-success.visible { display: block; }

.dashboard-shell { padding: 70px 0 110px; }
.dashboard-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.dashboard-head h1 { margin: 0; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.dash-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.dash-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.dash-card h2 { font-family: inherit; font-size: 1.3rem; letter-spacing: -.03em; }
.profile-line { display: flex; align-items: center; gap: 15px; }
.avatar { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: var(--mint); color: var(--green); font-weight: 900; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat-tile { padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--bg); }
.stat-tile strong { display: block; font-size: 1.35rem; }
.stat-tile span { color: var(--ink-faint); font-size: .72rem; }
.progress-track { height: 6px; margin-top: 12px; border-radius: 99px; background: var(--line); overflow: hidden; }
.progress-fill { width: 0; height: 100%; border-radius: inherit; background: var(--green); }
.status-badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; background: var(--mint); color: var(--green); font-size: .72rem; font-weight: 850; }
.achievement-row { display: flex; gap: 10px; flex-wrap: wrap; }
.achievement { padding: 10px 12px; border: 1px solid var(--line); border-radius: 13px; font-size: .78rem; font-weight: 750; }
.dash-loading { min-height: 55vh; display: grid; place-items: center; color: var(--ink-soft); }
.success-banner { display: none; margin-bottom: 20px; padding: 14px 18px; border-radius: 15px; background: var(--mint); color: var(--green); font-weight: 760; }
.success-banner.visible { display: block; }

.welcome-card { width: min(680px, calc(100% - 40px)); margin: 90px auto; padding: clamp(38px, 7vw, 80px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-lg); text-align: center; }
.welcome-card img { width: 112px; margin: 0 auto 26px; filter: drop-shadow(0 16px 30px rgba(8,122,67,.2)); }
.welcome-card h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.welcome-card .button-row { justify-content: center; }

.site-footer { padding: 70px 0 28px; border-top: 1px solid var(--line); background: color-mix(in srgb, var(--bg-soft) 46%, transparent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 45px; }
.footer-brand p { max-width: 370px; margin-top: 18px; color: var(--ink-soft); font-size: .88rem; }
.footer-col h3 { margin: 4px 0 17px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-col a { color: var(--ink-soft); font-size: .84rem; text-decoration: none; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: .73rem; }
.social-row { display: flex; gap: 8px; margin-top: 18px; }
.social-row a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink-soft); }
.social-row svg { width: 17px; height: 17px; }

.cookie-banner { position: fixed; z-index: 300; right: 20px; bottom: 20px; width: min(420px, calc(100% - 40px)); padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin-bottom: 15px; color: var(--ink-soft); font-size: .78rem; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .btn { min-height: 42px; padding: 10px 14px; font-size: .76rem; }
.toast-container { position: fixed; z-index: 400; right: 20px; top: 95px; display: grid; gap: 8px; }
.toast { max-width: 360px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-md); color: var(--ink); font-size: .8rem; animation: toast-in .25s var(--ease); }
.toast.error { border-color: color-mix(in srgb, var(--coral) 40%, var(--line)); }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-links { display: none; position: fixed; inset: var(--header-h) 0 auto; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: var(--bg); box-shadow: var(--shadow-md); }
  .menu-open .nav-links { display: grid; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  .menu-toggle { display: grid; }
  .nav-actions .nav-signin { display: none; }
  .hero-grid { grid-template-columns: 1fr .78fr; gap: 30px; }
  .hero-visual { min-height: 580px; }
  .float-a { left: -7%; }
  .float-b { right: -7%; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .growth-path { grid-template-columns: 1fr 1fr; }
  .growth-step:not(:last-child)::after { display: none; }
  .language-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 780px) {
  :root { --header-h: 68px; }
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 52px 0; }
  .nav { gap: 10px; }
  .brand small { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-actions .btn { min-height: 43px; padding-inline: 15px; font-size: .78rem; }
  .hero { min-height: auto; padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-copy .button-row, .hero-proof { justify-content: center; }
  .hero-visual { min-height: 600px; }
  .phone-shot { width: 318px; }
  .float-a { top: 6%; left: 0; }
  .float-b { right: 0; bottom: 13%; }
  .float-c { left: 0; bottom: 1%; }
  .metric-strip { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .section-head { display: block; margin-bottom: 36px; }
  .section-head .text-link { margin-top: 18px; }
  .showcase, .showcase.reverse, .feature-spotlight, .privacy-panel, .auth-shell { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-copy, .showcase.reverse .showcase-visual { order: initial; }
  .showcase-visual { min-height: 570px; }
  .feature-spotlight-media { min-height: 500px; }
  .privacy-panel { gap: 24px; }
  .privacy-seal { width: 110px; height: 110px; }
  .privacy-seal svg { width: 46px; height: 46px; }
  .language-stage { padding: 24px; }
  .language-grid { grid-template-columns: 1fr 1fr; }
  .language-toolbar { align-items: flex-start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 650px; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 30px; }
  .article-nav { position: static; display: flex; overflow-x: auto; }
  .article-nav a { white-space: nowrap; }
  .auth-story { min-height: 420px; padding: 110px 28px 54px; }
  .auth-story .brand { top: 28px; left: 28px; }
  .auth-main { padding: 52px 22px 72px; }
  .dash-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .btn { width: 100%; }
  .hero-proof { align-items: center; flex-direction: column; }
  .hero-visual { min-height: 560px; }
  .phone-shot { width: 280px; border-radius: 34px; }
  .phone-shot img { border-radius: 27px; }
  .float-card { max-width: 170px; padding: 10px 12px; }
  .float-card b { font-size: .82rem; }
  .float-a { left: -4px; }
  .float-b { right: -4px; }
  .float-c { left: 2px; }
  .metric { padding: 22px 18px; }
  .metric-value { font-size: 2.15rem; }
  .card-grid, .growth-path, .help-grid { grid-template-columns: 1fr; }
  .growth-step { min-height: 210px; }
  .growth-step::before { margin-bottom: 30px; }
  .showcase-visual, .feature-spotlight-media { min-height: 520px; border-radius: 30px; }
  .showcase-visual .phone-shot, .feature-spotlight-media .phone-shot { width: 270px; }
  .privacy-panel, .cta-panel { border-radius: 30px; }
  .language-stage { margin-inline: -4px; border-radius: 28px; }
  .language-grid { grid-template-columns: 1fr; }
  .language-card strong { white-space: normal; }
  .stats-grid { grid-template-columns: 1fr; }
  .dashboard-head { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .toast-container, .article-nav { display: none !important; }
  body { background: #fff; color: #111; }
  .section, .page-hero { padding: 24px 0; }
  .article-layout { display: block; }
  a { color: #111; text-decoration: underline; }
}
