:root {
  --cream: #f4f3ed;
  --cream-deep: #eae8df;
  --white: #ffffff;
  --green-950: #092e24;
  --green-900: #103f31;
  --green-800: #164e3c;
  --green-700: #1f6a51;
  --green-100: #e3efe9;
  --green-50: #f1f7f4;
  --gold: #d9a441;
  --gold-light: #f0d28f;
  --gold-dark: #a96f08;
  --gold-soft: #fbf1dc;
  --ink: #17211b;
  --muted: #667269;
  --line: #dfe0d9;
  --danger: #a3382d;
  --danger-soft: #f7e6e3;
  --blue: #3269a8;
  --shadow: 0 24px 60px rgba(17, 49, 38, .11);
  --shadow-sm: 0 10px 30px rgba(17, 49, 38, .07);
  --container: 1220px;
  --radius: 22px;
  font-family: Inter, Geist, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; overflow-x: hidden; background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
:focus-visible { outline: 3px solid rgba(217,164,65,.55); outline-offset: 3px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-shell { position: relative; padding: 120px 0; }
.skip-link { position: fixed; z-index: 1000; left: 14px; top: 14px; padding: 10px 14px; border-radius: 9px; background: white; transform: translateY(-170%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: white; transition: background .25s, box-shadow .25s, color .25s; }
.site-header.is-scrolled { color: var(--ink); background: rgba(244,243,237,.92); border-bottom: 1px solid rgba(222,223,217,.8); box-shadow: 0 7px 25px rgba(15,48,37,.06); backdrop-filter: blur(16px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { width: 41px; height: 41px; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 18px; letter-spacing: .08em; white-space: nowrap; }
.brand small { display: block; margin-top: 3px; color: var(--gold); font-size: 7px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 29px; }
.desktop-nav a { position: relative; color: currentColor; opacity: .72; font-size: 12px; font-weight: 650; transition: opacity .18s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gold); transition: right .18s; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }

.button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 16px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: inherit; font-size: 11px; font-weight: 780; cursor: pointer; transition: transform .18s, background .18s, color .18s, box-shadow .18s; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--green-800); border-color: var(--green-800); box-shadow: 0 9px 20px rgba(22,78,60,.18); }
.site-header:not(.is-scrolled) .button--primary { color: var(--green-950); background: var(--gold); border-color: var(--gold); box-shadow: none; }
.button--primary:hover { background: var(--green-700); color: white; }
.site-header:not(.is-scrolled) .button--primary:hover { color: var(--green-950); background: var(--gold-light); }
.button--ghost { border-color: rgba(255,255,255,.24); }
.site-header.is-scrolled .button--ghost { border-color: #bfc7c2; }
.button--ghost:hover { background: rgba(255,255,255,.08); }
.site-header.is-scrolled .button--ghost:hover { background: white; }
.button--light { color: white; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.button--light:hover { background: rgba(255,255,255,.13); }
.button--gold { color: var(--green-950); background: var(--gold); border-color: var(--gold); box-shadow: 0 10px 25px rgba(217,164,65,.18); }
.button--gold:hover { background: var(--gold-light); }
.button--large { min-height: 54px; padding: 0 21px; border-radius: 12px; font-size: 12px; }
.play-icon { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 8px; }
.menu-button { display: none; width: 42px; height: 42px; place-items: center; align-content: center; gap: 4px; padding: 0; border: 1px solid currentColor; border-radius: 10px; background: transparent; cursor: pointer; }
.menu-button span { width: 18px; height: 1.5px; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-button.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-button.is-open span:nth-child(2) { opacity: 0; }
.menu-button.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 860px; display: grid; align-items: center; overflow: hidden; padding: 145px 0 105px; color: white; background:
  radial-gradient(circle at 18% 25%, rgba(42,113,84,.5), transparent 28%),
  radial-gradient(circle at 86% 74%, rgba(28,94,69,.4), transparent 33%),
  linear-gradient(135deg, #092f25 0%, #0c3b2e 55%, #082a21 100%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.92fr) minmax(560px,1.08fr); align-items: center; gap: 55px; }
.hero-copy { position: relative; z-index: 3; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--green-700); font-size: 11px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow > span { width: 24px; height: 1px; background: var(--gold); }
.hero .eyebrow, .eyebrow--light { color: var(--gold-light); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; font-size: clamp(52px, 5.7vw, 79px); line-height: .98; letter-spacing: -.055em; }
h1 em, h2 em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; font-style: italic; letter-spacing: -.035em; }
.hero-lead { max-width: 610px; margin: 27px 0 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 11px; margin-top: 28px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hero-proof i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.hero-orbit { position: absolute; z-index: 1; border: 1px solid rgba(217,164,65,.12); border-radius: 50%; }
.hero-orbit--one { width: 580px; height: 580px; right: -280px; top: -120px; }
.hero-orbit--two { width: 340px; height: 340px; left: -220px; bottom: -130px; }

.hero-product { position: relative; min-width: 0; transform: perspective(1500px) rotateY(-2deg) rotateX(1deg); transform-origin: center left; }
.product-glow { position: absolute; inset: 12% 8% -3%; border-radius: 40px; background: rgba(217,164,65,.22); filter: blur(55px); }
.browser-frame { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.24); border-radius: 20px; background: var(--cream); box-shadow: 0 45px 100px rgba(0,0,0,.34); }
.browser-bar { min-height: 39px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 14px; color: #7a847e; background: #efeee8; border-bottom: 1px solid #ddded8; font-size: 7px; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d1d1ca; }
.secure-pill { justify-self: end; padding: 4px 7px; border-radius: 99px; color: var(--green-700); background: var(--green-100); font-weight: 700; }
.product-shell { min-height: 425px; display: grid; grid-template-columns: 55px minmax(0,1fr); }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 19px; padding: 15px 0; background: var(--green-950); }
.mini-logo { width: 27px; height: 27px; display: grid; place-items: center; margin-bottom: 10px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: Georgia,serif; font-size: 11px; }
.product-sidebar i { width: 19px; height: 19px; border-radius: 6px; background: rgba(255,255,255,.11); }
.product-sidebar i.is-active { background: var(--gold); box-shadow: 0 0 0 5px rgba(217,164,65,.11); }
.product-canvas { min-width: 0; padding: 21px; color: var(--ink); }
.product-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.product-heading small, .product-heading strong { display: block; }
.product-heading small { color: var(--gold-dark); font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.product-heading strong { margin-top: 5px; font-size: 17px; letter-spacing: -.03em; }
.reliability-pill { padding: 6px 8px; border: 1px solid #ecd19b; border-radius: 7px; color: #84550d; background: var(--gold-soft); font-size: 6px; font-weight: 750; }
.product-kpis { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: 16px; }
.product-kpis article { position: relative; min-width: 0; min-height: 100px; display: flex; align-items: flex-start; gap: 7px; padding: 11px; border: 1px solid var(--line); border-radius: 11px; background: white; box-shadow: 0 6px 12px rgba(22,52,42,.04); }
.product-kpis article div { min-width: 0; }
.product-kpis small, .product-kpis strong { display: block; }
.product-kpis small { color: var(--muted); font-size: 6px; }
.product-kpis strong { margin-top: 7px; font-size: 9px; }
.product-kpis b { position: absolute; right: 8px; bottom: 8px; padding: 4px 5px; border-radius: 5px; color: var(--green-700); background: var(--green-100); font-size: 5px; }
.product-kpis b.is-gold { color: #89570a; background: var(--gold-soft); }
.product-kpis b.is-blue { color: var(--blue); background: #e8eff8; }
.kpi-icon { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 8px; color: var(--green-700); background: var(--green-100); font-size: 10px; }
.kpi-icon--gold { color: var(--gold-dark); background: var(--gold-soft); }
.kpi-icon--blue { color: var(--blue); background: #e8eff8; }
.product-lower { display: grid; grid-template-columns: 1.4fr .75fr; gap: 8px; margin-top: 9px; }
.priority-preview, .currency-preview { padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.preview-title { display: flex; align-items: center; gap: 6px; padding-bottom: 8px; border-bottom: 1px solid var(--line); font-size: 8px; }
.preview-title span { color: var(--gold-dark); }
.preview-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 7px; padding: 8px 0; border-bottom: 1px solid #ecece8; }
.preview-row:last-child { border-bottom: 0; }
.preview-row i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: white; background: #a27626; font-size: 5px; font-style: normal; }
.preview-row i.red { background: var(--danger); }
.preview-row strong, .preview-row small { display: block; }
.preview-row strong { font-size: 7px; }
.preview-row small { margin-top: 2px; color: var(--muted); font-size: 5px; }
.preview-row b { padding: 4px 6px; border: 1px solid #bad0c6; border-radius: 5px; color: var(--green-700); font-size: 5px; }
.currency-tabs { display: flex; gap: 3px; margin-top: 12px; padding: 3px; border-radius: 7px; background: #f0f1ed; }
.currency-tabs span, .currency-tabs b { flex: 1; padding: 5px 2px; border-radius: 5px; font-size: 5px; text-align: center; }
.currency-tabs b { color: white; background: var(--green-800); }
.mini-bars { display: grid; gap: 7px; margin-top: 18px; }
.mini-bars i { width: var(--w); height: 6px; border-radius: 99px; background: var(--green-100); position: relative; }
.mini-bars i::after { content: ""; display: block; width: 62%; height: 100%; border-radius: inherit; background: var(--green-700); }
.currency-preview > small { display: block; margin-top: 14px; color: var(--muted); font-size: 5px; }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.94); box-shadow: 0 15px 35px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.floating-card > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--danger); font-size: 8px; font-weight: 800; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: 6px; }
.floating-card strong { margin-top: 2px; font-size: 8px; }
.floating-card--decision { left: -37px; bottom: 58px; }
.floating-card--trust { right: -23px; top: 82px; }
.floating-card--trust > span { color: var(--green-700); background: var(--green-100); }

.trust-strip { position: relative; z-index: 4; border-bottom: 1px solid var(--line); background: white; box-shadow: var(--shadow-sm); }
.trust-grid { min-height: 118px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-grid > div { min-height: 52px; display: grid; align-content: center; padding: 0 30px; border-left: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 0; padding-left: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--green-800); font-family: Georgia,serif; font-size: 23px; }
.trust-grid span { margin-top: 5px; color: var(--muted); font-size: 9px; }

.section-intro { max-width: 800px; }
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro--center .eyebrow { justify-content: center; }
h2 { margin: 0; font-size: clamp(38px,4.2vw,59px); line-height: 1.06; letter-spacing: -.045em; }
.section-intro h2 em { color: var(--green-700); }
.section-intro > p:last-child { max-width: 690px; margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-intro--center > p:last-child { margin-inline: auto; }

.problem-section { background: var(--cream); }
.contrast-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 55px; }
.contrast-card { position: relative; overflow: hidden; min-height: 450px; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.contrast-card--before { background: #eeede7; }
.contrast-card--after { border-color: #c8dacf; background: linear-gradient(145deg,#fff,#f3f8f5); }
.card-label { margin: 0; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contrast-card--after .card-label { color: var(--green-700); }
.contrast-card h3 { max-width: 470px; margin: 16px 0 0; font-size: 25px; line-height: 1.16; letter-spacing: -.03em; }
.contrast-card ul { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.contrast-card li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; }
.contrast-card li span { width: 23px; height: 23px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--danger); background: var(--danger-soft); font-weight: 800; }
.contrast-card--after li span { color: var(--green-700); background: var(--green-100); }
.chaos-visual { position: absolute; right: -30px; bottom: -32px; width: 245px; height: 170px; opacity: .6; }
.chaos-visual i { position: absolute; width: 85px; height: 52px; border: 1px solid #babdb8; border-radius: 11px; background: rgba(255,255,255,.55); box-shadow: 0 7px 15px rgba(0,0,0,.05); }
.chaos-visual i:nth-child(1) { left: 10px; top: 45px; transform: rotate(-12deg); }
.chaos-visual i:nth-child(2) { left: 65px; top: 0; transform: rotate(8deg); }
.chaos-visual i:nth-child(3) { right: 5px; top: 35px; transform: rotate(15deg); }
.chaos-visual i:nth-child(4) { left: 85px; bottom: 3px; transform: rotate(-5deg); }
.chaos-visual i:nth-child(5) { right: 20px; bottom: 18px; transform: rotate(7deg); }
.clarity-visual { position: absolute; right: 30px; bottom: 30px; display: flex; align-items: center; gap: 9px; }
.clarity-visual i, .clarity-visual span, .clarity-visual strong { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--green-100); }
.clarity-visual i { background: var(--gold-soft); }
.clarity-visual b { color: var(--muted); font-weight: 400; }
.clarity-visual strong { color: white; background: var(--green-800); }

.product-section { background: white; }
.feature-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 60px; }
.feature-card { position: relative; overflow: hidden; min-height: 360px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.feature-card--wide { grid-column: span 2; min-height: 385px; display: grid; grid-template-columns: minmax(0,.8fr) minmax(430px,1.2fr); align-items: center; gap: 45px; background: linear-gradient(135deg,#f8f8f4,#f0f4f1); }
.feature-number { display: block; color: var(--gold-dark); font-size: 9px; font-weight: 820; letter-spacing: .08em; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-top: 32px; border-radius: 16px; color: var(--green-700); background: var(--green-100); font-size: 20px; }
.feature-card h3 { max-width: 500px; margin: 18px 0 0; font-size: 23px; line-height: 1.18; letter-spacing: -.03em; }
.feature-card p { max-width: 530px; margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.feature-card a { display: inline-block; margin-top: 23px; color: var(--green-700); font-size: 10px; font-weight: 800; }
.today-visual { min-height: 285px; padding: 25px; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow-sm); }
.today-top { display: flex; justify-content: space-between; }
.today-top span { width: 42%; height: 15px; border-radius: 6px; background: var(--ink); }
.today-top i { width: 17%; height: 13px; border-radius: 6px; background: var(--gold-soft); }
.today-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 24px; }
.today-cards i { height: 88px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(180deg,var(--green-50),white); }
.today-cards i:nth-child(2) { background: linear-gradient(180deg,var(--gold-soft),white); }
.today-priority { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; margin-top: 9px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; }
.today-priority b { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--danger); font-size: 6px; }
.today-priority:nth-child(4) b { background: var(--gold-dark); }
.today-priority span { width: 55%; height: 7px; border-radius: 99px; background: #d9dedb; }
.today-priority em { width: 45px; height: 20px; border: 1px solid #bdd0c7; border-radius: 6px; }
.condition-preview { display: flex; gap: 8px; margin-top: 34px; }
.condition-preview i { height: 88px; flex: 1; border: 1px solid var(--line); border-radius: 12px; background: #eceeea; position: relative; }
.condition-preview i::after { content: ""; position: absolute; inset: auto 9px 9px; height: 6px; border-radius: 99px; background: #d8dad6; }
.condition-preview i.done { background: var(--green-100); }
.condition-preview i.done::after { background: var(--green-700); }
.condition-preview i.progress { background: var(--gold-soft); }
.condition-preview i.progress::after { width: 45%; background: var(--gold); }
.condition-preview i.blocked { background: var(--danger-soft); }
.currency-stack { display: flex; align-items: flex-end; gap: 8px; margin-top: 45px; }
.currency-stack span { flex: 1; display: grid; place-items: end center; padding-bottom: 17px; border-radius: 13px; color: white; background: var(--green-800); font-size: 11px; font-weight: 800; }
.currency-stack span:nth-child(1) { height: 118px; }
.currency-stack span:nth-child(2) { height: 86px; background: var(--green-700); }
.currency-stack span:nth-child(3) { height: 68px; color: var(--ink); background: var(--gold); }
.curve-preview { margin-top: 40px; padding: 15px; border-radius: 13px; background: white; }
.curve-preview svg { width: 100%; height: 92px; overflow: visible; }
.curve-preview path { fill: none; stroke: var(--green-700); stroke-width: 4; stroke-linecap: round; }
.autonomy-visual { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 26px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.autonomy-ring { width: 140px; height: 140px; display: grid; place-items: center; align-content: center; border: 16px solid var(--green-100); border-top-color: var(--gold); border-radius: 50%; }
.autonomy-ring strong { font-size: 32px; }
.autonomy-ring small { margin-top: 3px; color: var(--muted); font-size: 6px; }
.autonomy-visual ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.autonomy-visual li { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.autonomy-visual li span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.autonomy-visual li:nth-child(2) span { background: var(--danger); }
.autonomy-visual b { color: var(--ink); font-size: 7px; }

.statistics-showcase { overflow: hidden; background: linear-gradient(145deg,#edf4f0,#f8f8f4 72%); }
.statistics-showcase .eyebrow--light { color: var(--green-700); }
.statistics-orbit { position: absolute; width: 620px; height: 620px; left: -390px; bottom: -390px; border: 1px solid rgba(22,78,60,.14); border-radius: 50%; box-shadow: 0 0 0 75px rgba(22,78,60,.025),0 0 0 150px rgba(22,78,60,.018); }
.statistics-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(320px,.64fr) minmax(620px,1.36fr); align-items: center; gap: 58px; }
.statistics-copy h2 { font-size: clamp(42px,4.2vw,60px); }
.statistics-copy h2 em { color: var(--green-700); }
.statistics-copy > p:not(.eyebrow) { max-width: 540px; margin: 21px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.statistics-benefits { display: grid; gap: 14px; margin: 28px 0 32px; padding: 0; list-style: none; }
.statistics-benefits li { display: flex; align-items: flex-start; gap: 11px; }
.statistics-benefits li > span { width: 25px; height: 25px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: var(--green-700); background: white; box-shadow: 0 5px 12px rgba(22,52,42,.06); font-size: 9px; font-weight: 850; }
.statistics-benefits strong,.statistics-benefits small { display: block; }
.statistics-benefits strong { font-size: 10px; }
.statistics-benefits small { margin-top: 4px; color: var(--muted); font-size: 8px; line-height: 1.5; }
.statistics-stage { position: relative; padding: 24px; border-radius: 30px; background: rgba(22,78,60,.1); }
.statistics-stage::before { content: ""; position: absolute; inset: 22% -10% -12% 25%; border-radius: 50%; background: rgba(217,164,65,.18); filter: blur(55px); }
.statistics-window { position: relative; z-index: 2; overflow: hidden; min-height: 610px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); box-shadow: var(--shadow); }
.statistics-window__bar { min-height: 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; border-bottom: 1px solid var(--line); color: var(--muted); background: #ecebe6; font-size: 6px; }
.statistics-window__bar > span { justify-self: center; }
.statistics-window__bar > b { justify-self: end; padding: 4px 7px; border-radius: 99px; color: var(--green-700); background: var(--green-100); font-size: 5px; }
.statistics-window__body { padding: 24px; }
.statistics-window__heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.statistics-window__heading small,.statistics-window__heading strong { display: block; }
.statistics-window__heading small { color: var(--green-700); font-size: 6px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.statistics-window__heading strong { margin-top: 5px; font-size: 20px; letter-spacing: -.035em; }
.statistics-window__heading > span { padding: 7px 9px; border-radius: 7px; color: white; background: var(--green-800); font-size: 6px; font-weight: 760; }
.statistics-tabs { display: inline-flex; gap: 3px; margin-top: 16px; padding: 4px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.statistics-tab { min-height: 29px; display: inline-flex; align-items: center; gap: 5px; padding: 0 10px; border: 0; border-radius: 7px; background: transparent; color: var(--muted); font-size: 6px; font-weight: 760; cursor: pointer; }
.statistics-tab.is-active { color: white; background: var(--green-800); }
.statistics-panel { display: none; min-height: 445px; margin-top: 13px; animation: statisticsIn .25s ease both; }
.statistics-panel.is-active { display: block; }
@keyframes statisticsIn { from { opacity: 0; transform: translateY(4px); } }
.public-kpi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.public-kpi-grid article { min-height: 118px; display: grid; grid-template-columns: auto 1fr; align-content: center; column-gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.public-kpi-grid article > strong,.public-kpi-grid article > small { grid-column: 2; display: block; }
.public-kpi-grid article > strong { align-self: end; font-size: 8px; }
.public-kpi-grid article > small { margin-top: 3px; color: var(--muted); font-size: 5px; }
.public-ring { --p:0; grid-row: 1 / span 2; width: 54px; height: 54px; display: grid; place-items: center; position: relative; border-radius: 50%; background: conic-gradient(var(--green-700) calc(var(--p)*1%),#e5ebe7 0); }
.public-ring::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: white; }
.public-ring > span { position: relative; z-index: 1; color: var(--green-700); font-size: 6px; font-weight: 800; }
.public-ring--gold { background: conic-gradient(var(--gold) calc(var(--p)*1%),#f1e7d1 0); }
.public-ring--gold > span { color: var(--gold-dark); }
.public-chart { margin-top: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.public-chart__head { display: flex; justify-content: space-between; gap: 10px; }
.public-chart__head strong,.public-chart__head small { display: block; }
.public-chart__head strong { font-size: 8px; }
.public-chart__head small { margin-top: 3px; color: var(--muted); font-size: 5px; }
.public-chart__head > span { padding: 5px 9px; border-radius: 6px; color: white; background: var(--green-800); font-size: 5px; font-weight: 800; }
.public-chart svg { width: 100%; height: 205px; margin-top: 5px; background: repeating-linear-gradient(to bottom,#e6e8e5 0 1px,transparent 1px 41px); }
.public-area { fill: url(#publicArea); }
.public-line { fill: none; stroke: var(--green-700); stroke-width: 4; stroke-linecap: round; }
.public-chart__labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 5px; }
.public-table-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 12px; border: 1px solid var(--line); border-radius: 10px 10px 0 0; background: white; }
.public-table-title strong,.public-table-title small { display: block; }
.public-table-title strong { font-size: 9px; }
.public-table-title small { margin-top: 3px; color: var(--muted); font-size: 5px; }
.public-table-title > span { padding: 5px 7px; border-radius: 6px; color: var(--green-700); background: var(--green-100); font-size: 5px; font-weight: 800; }
.public-table { overflow: hidden; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 10px 10px; background: white; }
.public-table__head,.public-table__row { display: grid; grid-template-columns: 1.5fr .8fr .55fr .8fr; align-items: center; gap: 7px; min-height: 58px; padding: 0 12px; border-top: 1px solid var(--line); }
.public-table__head { min-height: 32px; border-top: 0; color: var(--muted); background: #f5f5f1; font-size: 5px; font-weight: 800; text-transform: uppercase; }
.public-table__row { font-size: 6px; }
.public-table__row b { letter-spacing: .12em; }
.public-table__row em { justify-self: start; padding: 5px 6px; border-radius: 5px; color: var(--gold-dark); background: var(--gold-soft); font-size: 5px; font-style: normal; font-weight: 750; white-space: nowrap; }
.public-table__row em.confirmed { color: var(--green-700); background: var(--green-100); }
.public-table__row em.provisional { color: #8a5a12; background: #fbedd7; }
.public-table__row em.estimated { color: var(--blue); background: #e8f0fa; }
.public-table-note { display: flex; align-items: center; gap: 7px; margin-top: 9px; padding: 10px; border: 1px solid #d1e0d8; border-radius: 9px; color: var(--green-800); background: var(--green-50); font-size: 6px; font-weight: 700; }
.public-table-note > span { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-800); }
.public-calendar-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: center; }
.public-calendar-head button { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 7px; background: white; cursor: pointer; }
.public-calendar-head small,.public-calendar-head strong { display: block; }
.public-calendar-head small { color: var(--green-700); font-size: 5px; font-weight: 800; text-transform: uppercase; }
.public-calendar-head strong { margin-top: 4px; font-size: 12px; }
.public-calendar-week,.public-calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.public-calendar-week { margin-top: 14px; }
.public-calendar-week span { padding: 5px 0; color: var(--muted); font-size: 5px; font-weight: 800; text-align: center; text-transform: uppercase; }
.public-calendar-grid i { min-height: 43px; display: flex; align-items: flex-start; justify-content: space-between; position: relative; padding: 6px; border: 1px solid var(--line); border-radius: 7px; background: white; font-size: 5px; font-style: normal; font-weight: 700; }
.public-calendar-grid i.selected { border-color: var(--green-700); color: white; background: var(--green-800); box-shadow: 0 0 0 2px rgba(22,78,60,.1); }
.public-calendar-grid i b { position: absolute; right: 5px; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.public-calendar-actions { display: flex; align-items: center; justify-content: space-between; gap: 9px; margin-top: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: white; }
.public-calendar-actions > div { display: flex; align-items: center; gap: 8px; }
.public-calendar-actions > div > span { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.public-calendar-actions p { margin: 0; }
.public-calendar-actions strong,.public-calendar-actions small { display: block; }
.public-calendar-actions strong { font-size: 6px; }
.public-calendar-actions small { margin-top: 3px; color: var(--muted); font-size: 5px; }
.public-calendar-actions > em { padding: 5px 7px; border-radius: 5px; color: var(--green-700); background: var(--green-100); font-size: 5px; font-style: normal; font-weight: 750; }

.method-section { overflow: hidden; color: white; background: var(--green-950); }
.method-section::after { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 48px 48px; }
.method-orbit { position: absolute; z-index: 1; width: 600px; height: 600px; right: -330px; top: -260px; border: 1px solid rgba(217,164,65,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(217,164,65,.025),0 0 0 160px rgba(217,164,65,.018); }
.method-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.85fr) minmax(500px,1.15fr); align-items: center; gap: 90px; }
.method-copy h2 { font-size: clamp(43px,4.4vw,62px); }
.method-copy > p:not(.eyebrow) { max-width: 560px; margin: 24px 0 32px; color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.8; }
.method-steps { display: grid; }
.method-step { display: grid; grid-template-columns: 68px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.method-step:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.method-step > span { color: var(--gold); font-family: Georgia,serif; font-size: 25px; }
.method-step small { color: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.method-step h3 { margin: 7px 0 0; font-size: 19px; }
.method-step p { max-width: 520px; margin: 8px 0 0; color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.65; }

.audience-section { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; margin-top: 55px; }
.audience-card { min-height: 330px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: transform .2s, box-shadow .2s; }
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.audience-card > span { color: var(--muted); font-size: 8px; font-weight: 800; }
.audience-icon { width: 53px; height: 53px; display: grid; place-items: center; margin-top: 36px; border-radius: 16px; color: var(--green-700); background: var(--green-100); font-size: 18px; }
.audience-card:nth-child(2) .audience-icon { color: var(--gold-dark); background: var(--gold-soft); }
.audience-card:nth-child(3) .audience-icon { color: var(--blue); background: #e8eff8; }
.audience-card h3 { margin: 25px 0 0; font-size: 18px; }
.audience-card p { margin: 11px 0 0; color: var(--muted); font-size: 10px; line-height: 1.75; }

.tour-section { background: white; }
.tour-grid { display: grid; grid-template-columns: minmax(300px,.65fr) minmax(600px,1.35fr); align-items: center; gap: 65px; }
.tour-nav h2 { font-size: 43px; }
.tour-tabs { display: grid; gap: 6px; margin-top: 32px; }
.tour-tab { min-height: 68px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 8px; padding: 0 13px; border: 1px solid transparent; border-radius: 12px; background: transparent; text-align: left; cursor: pointer; }
.tour-tab > span { color: var(--muted); font-family: Georgia,serif; font-size: 13px; }
.tour-tab strong, .tour-tab small { display: block; }
.tour-tab strong { font-size: 12px; }
.tour-tab small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.tour-tab.is-active { border-color: #c9dbd2; background: var(--green-50); }
.tour-tab.is-active > span { color: var(--gold-dark); }
.tour-stage { position: relative; padding: 28px; border-radius: 28px; background: var(--green-100); }
.tour-stage::before { content: ""; position: absolute; inset: 20% -10% -10% 30%; border-radius: 50%; background: rgba(217,164,65,.16); filter: blur(45px); }
.tour-window { position: relative; z-index: 2; overflow: hidden; min-height: 510px; border: 1px solid var(--line); border-radius: 16px; background: var(--cream); box-shadow: var(--shadow); }
.tour-window__bar { min-height: 36px; display: flex; align-items: center; gap: 5px; padding: 0 12px; border-bottom: 1px solid var(--line); background: #eeede8; }
.tour-window__bar i { width: 7px; height: 7px; border-radius: 50%; background: #c9cbc6; }
.tour-window__bar span { margin-left: auto; margin-right: auto; color: var(--muted); font-size: 6px; }
.tour-content { min-height: 474px; padding: 28px; animation: tourIn .3s ease both; }
@keyframes tourIn { from { opacity: 0; transform: translateY(5px); } }
.tour-content__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.tour-content__header small, .tour-content__header strong { display: block; }
.tour-content__header small { color: var(--green-700); font-size: 7px; font-weight: 800; text-transform: uppercase; }
.tour-content__header strong { margin-top: 5px; font-size: 21px; letter-spacing: -.03em; }
.tour-badge { padding: 6px 8px; border-radius: 7px; color: var(--green-700); background: var(--green-100); font-size: 6px; font-weight: 800; }
.tour-content__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 22px; }
.tour-mini-card { min-height: 115px; padding: 13px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.tour-mini-card span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--green-700); background: var(--green-100); font-size: 10px; }
.tour-mini-card small, .tour-mini-card strong { display: block; }
.tour-mini-card small { margin-top: 12px; color: var(--muted); font-size: 6px; }
.tour-mini-card strong { margin-top: 5px; font-size: 10px; }
.tour-content__panel { margin-top: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.tour-content__panel h4 { margin: 0 0 11px; font-size: 10px; }
.tour-line { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; padding: 8px 0; border-top: 1px solid var(--line); }
.tour-line:first-of-type { border-top: 0; }
.tour-line i { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--danger); font-size: 5px; font-style: normal; }
.tour-line span { height: 6px; border-radius: 99px; background: #dfe3e0; }
.tour-line b { width: 42px; height: 19px; border: 1px solid #bfd2c8; border-radius: 5px; }
.tour-chart { position: relative; min-height: 180px; margin-top: 18px; border: 1px solid var(--line); border-radius: 12px; background: white; }
.tour-chart::before { content: ""; position: absolute; inset: 16px; opacity: .6; background: repeating-linear-gradient(to bottom,#e4e6e3 0 1px,transparent 1px 34px); }
.tour-chart svg { position: absolute; inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); }
.tour-chart path { fill: none; stroke: var(--green-700); stroke-width: 4; stroke-linecap: round; }
.tour-calendar { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; margin-top: 18px; }
.tour-calendar i { min-height: 45px; border: 1px solid var(--line); border-radius: 7px; background: white; }
.tour-calendar i:nth-child(18) { border-color: var(--green-700); background: var(--green-50); box-shadow: inset 0 0 0 2px rgba(22,78,60,.07); }

.vision-section { background: var(--cream); }
.vision-grid { display: grid; grid-template-columns: 260px 1fr; align-items: center; gap: 85px; }
.vision-mark { width: 235px; height: 235px; display: grid; place-items: center; border: 1px solid #cedbd4; border-radius: 50%; color: var(--gold); background: var(--green-950); box-shadow: 0 0 0 24px var(--green-100),var(--shadow); }
.vision-mark svg { width: 128px; height: 128px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; }
.vision-copy h2 { font-size: clamp(37px,3.7vw,52px); }
.vision-copy h2 em { color: var(--green-700); }
.vision-copy > p:not(.eyebrow) { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.vision-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.vision-values span { padding: 9px 13px; border: 1px solid #c7d6ce; border-radius: 999px; color: var(--green-700); background: var(--green-50); font-size: 9px; font-weight: 750; }

.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: minmax(270px,.65fr) minmax(500px,1.35fr); align-items: start; gap: 80px; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { font-size: 47px; }
.faq-heading > p:last-child { max-width: 380px; margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.faq-list { display: grid; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button span { font-size: 13px; font-weight: 740; }
.faq-item button i { width: 26px; height: 26px; display: grid; place-items: center; position: relative; flex: 0 0 auto; border: 1px solid #cbd2ce; border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; width: 9px; height: 1px; background: var(--green-700); transition: transform .2s; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item.is-open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 50px 25px 0; }

.cta-section { padding-top: 30px; background: white; }
.cta-panel { overflow: hidden; display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.75fr); gap: 70px; position: relative; padding: 70px; border-radius: 28px; color: white; background:
  radial-gradient(circle at 12% 15%,rgba(46,127,94,.42),transparent 26%),
  var(--green-950); box-shadow: var(--shadow); }
.cta-panel::after { content: ""; position: absolute; width: 520px; height: 520px; right: -310px; bottom: -330px; border: 1px solid rgba(217,164,65,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(217,164,65,.03),0 0 0 140px rgba(217,164,65,.02); }
.cta-copy, .access-form { position: relative; z-index: 2; }
.cta-copy h2 { max-width: 620px; font-size: clamp(40px,4vw,58px); }
.cta-copy > p:not(.eyebrow) { max-width: 610px; margin: 22px 0 0; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.8; }
.cta-points { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 700; }
.cta-points span::first-letter { color: var(--gold); }
.access-form { display: grid; gap: 14px; padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.access-form label { display: grid; gap: 6px; }
.access-form label > span { font-size: 8px; font-weight: 750; }
.access-form input, .access-form select, .access-form textarea { width: 100%; min-height: 46px; padding: 0 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; outline: 0; color: white; background: rgba(255,255,255,.07); font-size: 10px; }
.access-form textarea { min-height: 84px; padding-top: 11px; resize: vertical; }
.access-form select option { color: var(--ink); background: white; }
.access-form input::placeholder, .access-form textarea::placeholder { color: rgba(255,255,255,.42); }
.access-form input:focus, .access-form select:focus, .access-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,65,.12); }
.access-form label small { min-height: 10px; color: #ffc8c1; font-size: 7px; }
.access-form .button { width: 100%; margin-top: 2px; }
.form-note { margin: 0; color: rgba(255,255,255,.42); font-size: 7px; line-height: 1.5; text-align: center; }

.site-footer { padding-top: 105px; color: white; background: var(--green-950); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 45px; padding-bottom: 55px; }
.brand--footer { width: max-content; }
.footer-top > p { max-width: 360px; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.65; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 23px; color: rgba(255,255,255,.63); font-size: 9px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: 8px; }
.toast { position: fixed; z-index: 200; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 11px; min-width: 315px; padding: 15px; border: 1px solid #c7dbd1; border-radius: 12px; background: white; box-shadow: var(--shadow); transform: translateY(140%); opacity: 0; transition: transform .25s,opacity .25s; }
.toast.is-visible { transform: none; opacity: 1; }
.toast > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green-700); font-weight: 800; }
.toast strong,.toast small { display: block; }
.toast strong { font-size: 10px; }
.toast small { margin-top: 3px; color: var(--muted); font-size: 8px; }

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

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .desktop-cta { display: none; }
  .mobile-menu { position: fixed; inset: 78px 16px auto; display: grid; gap: 5px; padding: 14px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: rgba(255,255,255,.97); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s,transform .2s; }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-menu > a:not(.button) { min-height: 43px; display: flex; align-items: center; padding: 0 11px; border-radius: 9px; font-size: 11px; font-weight: 700; }
  .mobile-menu > a:not(.button):hover { background: var(--green-50); }
  .mobile-menu .button--ghost { color: var(--green-800); border-color: #b9cbc2; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-product { width: min(760px,100%); margin: 10px auto 0; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div:nth-child(3) { border-left: 0; }
  .feature-card--wide { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; gap: 60px; }
  .statistics-grid { grid-template-columns: 1fr; }
  .statistics-copy { max-width: 720px; }
  .statistics-stage { width: min(820px,100%); margin-inline: auto; }
  .audience-grid { grid-template-columns: repeat(2,1fr); }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .tour-nav .eyebrow,.tour-nav h2 { grid-column: 1; }
  .tour-tabs { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; }
  .vision-grid { grid-template-columns: 210px 1fr; gap: 60px; }
  .vision-mark { width: 190px; height: 190px; }
  .vision-mark svg { width: 100px; height: 100px; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .section-shell { padding: 85px 0; }
  .header-inner { min-height: 66px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 6px; }
  .mobile-menu { top: 66px; }
  .hero { padding: 115px 0 80px; }
  .hero-grid { gap: 45px; }
  h1 { font-size: clamp(44px,13vw,64px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-product { transform: none; }
  .browser-frame { border-radius: 15px; }
  .browser-bar { min-height: 30px; }
  .product-shell { min-height: 330px; grid-template-columns: 39px 1fr; }
  .product-sidebar { gap: 13px; padding-top: 10px; }
  .mini-logo { width: 22px; height: 22px; margin-bottom: 4px; }
  .product-sidebar i { width: 14px; height: 14px; }
  .product-canvas { padding: 13px; }
  .product-heading strong { font-size: 13px; }
  .product-kpis { gap: 5px; margin-top: 10px; }
  .product-kpis article { min-height: 81px; padding: 7px; }
  .product-kpis .kpi-icon { display: none; }
  .product-kpis strong { font-size: 7px; }
  .product-lower { grid-template-columns: 1fr; }
  .currency-preview { display: none; }
  .preview-row { padding: 6px 0; }
  .floating-card { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; min-height: auto; padding: 25px 0; }
  .trust-grid > div { min-height: 82px; padding: 15px; border-top: 1px solid var(--line); }
  .trust-grid > div:nth-child(-n+2) { border-top: 0; }
  .trust-grid > div:nth-child(odd) { border-left: 0; }
  .trust-grid > div:first-child { padding-left: 15px; }
  h2 { font-size: clamp(35px,10vw,48px); }
  .contrast-grid,.feature-grid { grid-template-columns: 1fr; }
  .feature-card--wide { grid-column: auto; min-height: auto; gap: 32px; }
  .contrast-card { min-height: 430px; padding: 25px; }
  .feature-card { min-height: 330px; padding: 25px; }
  .statistics-stage { padding: 12px; border-radius: 19px; }
  .statistics-window { min-height: 560px; }
  .statistics-window__body { padding: 15px; }
  .statistics-panel { min-height: 415px; }
  .today-visual { padding: 14px; }
  .autonomy-visual { grid-template-columns: 1fr; }
  .autonomy-ring { margin-inline: auto; }
  .method-step { grid-template-columns: 50px 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 285px; }
  .tour-nav { display: block; }
  .tour-tabs { margin-top: 25px; }
  .tour-stage { padding: 12px; border-radius: 18px; }
  .tour-window { min-height: 430px; }
  .tour-content { min-height: 394px; padding: 16px; }
  .tour-content__cards { gap: 5px; }
  .tour-mini-card { padding: 8px; }
  .vision-grid { grid-template-columns: 1fr; gap: 60px; }
  .vision-mark { margin-left: 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  .cta-section { padding-top: 10px; }
  .cta-panel { width: calc(100% - 20px); padding: 38px 20px; gap: 45px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .toast { right: 12px; bottom: 12px; left: 12px; min-width: 0; }
}

@media (max-width: 430px) {
  .hero-proof { gap: 7px; }
  .hero-proof span { font-size: 7px; }
  .trust-grid strong { font-size: 19px; }
  .trust-grid span { font-size: 8px; }
  .product-heading .reliability-pill { display: none; }
  .contrast-card h3,.feature-card h3 { font-size: 21px; }
  .clarity-visual { right: 18px; transform: scale(.82); transform-origin: right bottom; }
  .tour-content__header strong { font-size: 17px; }
  .tour-content__cards { grid-template-columns: 1fr; }
  .tour-mini-card { min-height: 63px; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 7px; }
  .tour-mini-card span { grid-row: 1 / span 2; }
  .tour-mini-card small,.tour-mini-card strong { margin-top: 0; }
  .tour-window { min-height: 495px; }
  .tour-content { min-height: 459px; }
  .faq-item button span { font-size: 11px; }
  .public-kpi-grid { grid-template-columns: 1fr; }
  .public-kpi-grid article { min-height: 72px; }
  .public-chart svg { height: 150px; }
  .statistics-window { min-height: 640px; }
  .statistics-panel { min-height: 490px; }
  .public-table__head,.public-table__row { grid-template-columns: 1.25fr .65fr .5fr .8fr; padding-inline: 8px; }
  .public-calendar-grid i { min-height: 35px; padding: 4px; }
}

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