:root {
  --green-950: #032f29; --green-900: #06463c; --green-800: #0b5b4c; --green-700: #14745f; --green-100: #dcece6; --green-50: #edf6f2;
  --gold-700: #a66d19; --gold-600: #c38b2a; --gold-400: #e8bd65; --gold-200: #f4dfaa; --gold-100: #faf0cf;
  --cream: #f5f1e8; --surface: #fffefa; --ink: #132a28; --ink-soft: #61716d; --line: #e4e2da;
  --radius: 17px; --radius-lg: 25px;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--cream); line-height: 1.55; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); }
[hidden] { display: none !important; }

.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 11px; background: rgba(255,255,255,.12); color: white; font-weight: 800; }
.eyebrow { display: inline-block; color: var(--gold-400); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.eyebrow.dark { color: var(--gold-700); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 0 22px; border: 1px solid transparent; border-radius: 13px; font-weight: 750; font-size: 14px; text-decoration: none; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-gold { color: var(--green-950); background: linear-gradient(100deg, #f4d98f, var(--gold-400)); box-shadow: 0 12px 28px rgba(200,158,55,.32); }
.btn-light { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.07); }
.btn-ghost { color: var(--green-900); border-color: var(--line); background: white; }

.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 22px; padding: 14px clamp(18px, 4vw, 44px); color: white; background: rgba(6, 55, 47, .92); backdrop-filter: blur(14px); }
.nav .brand { display: flex; align-items: center; gap: 10px; color: white; font-size: 17px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 18px; margin-left: auto; }
.nav-links a { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle { min-width: 44px; height: 44px; display: inline-grid; place-items: center; padding: 0 8px; border: 1px solid rgba(255,255,255,.25); border-radius: 9px; color: white; background: rgba(255,255,255,.06); font-weight: 750; font-size: 12px; text-decoration: none; cursor: pointer; }
.nav .btn { min-height: 40px; padding: 0 16px; font-size: 13px; }
.nav .btn-ghost { min-height: 40px; color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }

/* Mobile disclosure menu (no JS required; keyboard accessible) */
.nav-menu { display: none; position: relative; margin-left: auto; }
.nav-menu summary { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; background: rgba(255,255,255,.06); color: white; font-size: 20px; list-style: none; cursor: pointer; }
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu[open] summary { background: rgba(255,255,255,.14); }
.nav-menu-panel { position: absolute; right: 0; top: calc(100% + 10px); min-width: 230px; display: grid; padding: 8px; border-radius: 14px; background: var(--green-950); box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.nav-menu-panel a { display: flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 9px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 650; text-decoration: none; }
.nav-menu-panel a:hover { background: rgba(255,255,255,.08); color: white; }
.nav-menu-panel .menu-cta { color: var(--green-950); background: linear-gradient(100deg, #f4d98f, var(--gold-400)); font-weight: 800; }

.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 44px) clamp(56px, 8vw, 104px); color: white;
  background:
    radial-gradient(700px 340px at 88% -8%, rgba(232,189,101,.30), transparent 60%),
    radial-gradient(560px 420px at 104% 108%, rgba(120,87,130,.34), transparent 55%),
    linear-gradient(125deg, #174f43, #103c34 62%, #0b302a); }
.hero::after { content: ""; position: absolute; inset: -40%; pointer-events: none; background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.10) 50%, transparent 58%); animation: sheen 13s ease-in-out infinite; }
@keyframes sheen { 0%, 55% { transform: translateX(-30%); } 100% { transform: translateX(30%); } }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { margin-top: 18px; font-size: clamp(38px, 5.4vw, 66px); line-height: 1.03; letter-spacing: -.05em; }
.hero-lede { margin-top: 10px; color: var(--gold-200); font-size: clamp(19px, 2.4vw, 27px); font-weight: 750; letter-spacing: -.02em; }
.hero-sub { max-width: 560px; margin-top: 14px; color: rgba(255,255,255,.72); font-size: clamp(14px, 1.4vw, 16px); }
.hero-micro { margin-top: 14px; color: rgba(255,255,255,.65); font-size: 12.5px; font-weight: 650; }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 16px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 650; }
.hero-benefits li::before { content: "✓"; margin-right: 6px; color: var(--gold-400); font-weight: 900; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 650; }
.hero-score { position: absolute; z-index: 2; top: -34px; right: -8px; display: grid; justify-items: center; gap: 8px; }
.hero-score .hero-ring { position: relative; top: auto; right: auto; }
.hero-score > small { max-width: 132px; padding: 4px 8px; border-radius: 999px; text-align: center; color: #f4d98f; background: rgba(6,62,53,.88); box-shadow: 0 6px 18px rgba(0,0,0,.25); font-size: 10px; line-height: 1.3; }
.hero-visual { position: relative; display: grid; justify-items: center; }
.hero-ring { position: absolute; z-index: 2; top: -34px; right: -8px; width: 118px; height: 118px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: #f4d98f; background: conic-gradient(var(--gold-400) 96%, rgba(255,255,255,.14) 0); box-shadow: 0 18px 44px rgba(0,0,0,.35); }
.hero-ring::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: linear-gradient(150deg, #174f43, #0b302a); }
.hero-ring strong, .hero-ring span { position: relative; }
.hero-ring strong { font-size: 32px; letter-spacing: -.05em; }
.hero-ring span { color: rgba(255,255,255,.6); font-size: 10px; }
.shot { overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: var(--surface); box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.shot img { width: 100%; height: auto; }
.shot-main { transform: rotate(1.2deg); }

.strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 34px; padding: 18px clamp(18px, 4vw, 44px); color: var(--green-900); background: var(--gold-100); border-bottom: 1px solid #ead9a8; font-size: 12.5px; font-weight: 700; }

.section { max-width: 1180px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 44px); }
.section.alt { max-width: none; background: var(--surface); border-block: 1px solid var(--line); }
.section.alt > * { max-width: 1090px; margin-inline: auto; }
.section h2 { margin-top: 14px; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.08; letter-spacing: -.045em; }
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.vcard, .pcard { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 2px 8px rgba(19,42,40,.05); }
.vicon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: white; background: linear-gradient(145deg, var(--green-700), var(--green-950)); font-size: 19px; }
.vcard h3, .pcard h3 { margin-top: 14px; font-size: 17px; letter-spacing: -.02em; }
.vcard p { margin-top: 8px; color: var(--ink-soft); font-size: 13px; }
.vcard ul { margin: 10px 0 0; padding: 0; list-style: none; display: grid; gap: 6px; color: var(--ink-soft); font-size: 13px; }
.vcard li::before { content: "✓"; margin-right: 7px; color: #1d6d51; font-weight: 900; }
.audience-link { display: inline-flex; min-height: 44px; align-items: center; margin-top: 16px; color: var(--green-800); font-size: 13px; font-weight: 800; text-decoration: none; }
.shot-wide { margin-top: 34px; border-color: var(--line); box-shadow: 0 24px 60px rgba(19,42,40,.14); }
.shot-wide figcaption, .shot-phone figcaption { padding: 14px 18px; color: var(--ink-soft); font-size: 12px; }
.shot-phone { max-width: 340px; margin: 34px auto 0; border-color: var(--line); box-shadow: 0 24px 60px rgba(19,42,40,.16); }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 30px 0 0; padding: 0; list-style: none; }
.steps.flow { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.steps li { display: flex; gap: 14px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); }
.steps.flow li { flex-direction: column; gap: 10px; padding: 18px; }
.steps strong { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 50%; color: var(--green-950); background: linear-gradient(145deg, #f4d98f, var(--gold-400)); font-size: 17px; }
.steps h3 { font-size: 15px; }
.steps p { margin-top: 6px; color: var(--ink-soft); font-size: 12.5px; }

/* Before / after */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.versus-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.versus-card.before { background: var(--cream); }
.versus-card.after { border-color: #bcd8cc; background: var(--green-50); }
.versus-card h3 { font-size: 16px; letter-spacing: -.02em; }
.versus-card ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 13.5px; }
.versus-card li { position: relative; padding-left: 24px; }
.versus-card.before li::before { content: "✕"; position: absolute; left: 0; color: #a5503c; font-weight: 900; }
.versus-card.after li::before { content: "✓"; position: absolute; left: 0; color: #1d6d51; font-weight: 900; }

/* Coexist / audience / beta */
.coexist-inner { max-width: 780px; }
.coexist-copy { margin-top: 14px; color: var(--ink-soft); font-size: 15px; }
.owner-card { border-color: var(--gold-400); box-shadow: 0 16px 40px rgba(200,158,55,.16); }
.vcard p strong { color: var(--ink); }
.beta-note { margin-top: 28px; padding: 16px 20px; border: 1.5px dashed var(--gold-400); border-radius: var(--radius); background: var(--gold-100); color: var(--green-900); font-size: 13.5px; text-align: center; }

/* Pilot band */
.pilot { padding: clamp(32px, 5vw, 56px) clamp(18px, 4vw, 44px); text-align: center; background: var(--gold-100); border-block: 1px solid #ead9a8; }
.pilot h2 { font-size: clamp(20px, 2.6vw, 28px); letter-spacing: -.03em; color: var(--green-950); }
.pilot .btn { margin-top: 18px; }

/* Role-based pricing */
.price-group-title { margin-top: 36px; font-size: 19px; letter-spacing: -.02em; }
.cards-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 16px; }
.pcard h4 { font-size: 17px; letter-spacing: -.02em; }

/* Founder + final CTA */
.founder-title { margin-top: 14px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.final-cta { padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 44px); color: white; text-align: center; background: linear-gradient(125deg, #174f43, #103c34 62%, #0b302a); }
.final-cta p { margin-top: 10px; color: rgba(255,255,255,.72); }

/* Keyboard focus */
:where(a, button, summary, input, select, textarea):focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; }

.pricing .pcard { display: flex; flex-direction: column; }
.pcard .price { margin-top: 8px; color: var(--green-900); font-size: 34px; font-weight: 800; letter-spacing: -.04em; }
.pcard .price small { color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.pcard ul { flex: 1; margin: 16px 0 20px; padding: 0; list-style: none; display: grid; gap: 9px; font-size: 13px; }
.pcard li { padding-left: 22px; position: relative; }
.pcard li::before { content: "✓"; position: absolute; left: 0; color: #1d6d51; font-weight: 900; }
.pcard.featured { border-color: var(--gold-400); box-shadow: 0 16px 40px rgba(200,158,55,.18); }
.pricing-note { margin-top: 20px; color: var(--ink-soft); font-size: 12px; text-align: center; }

.faq { display: grid; gap: 10px; margin-top: 26px; }
.faq details { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.faq summary { font-weight: 750; font-size: 14px; cursor: pointer; }
.faq details p { margin-top: 10px; color: var(--ink-soft); font-size: 13px; }

.founder { padding: clamp(48px, 7vw, 88px) clamp(18px, 4vw, 44px); color: white; background: linear-gradient(125deg, #174f43, #103c34 62%, #0b302a); }
.founder-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.quote { margin-top: 18px; font-size: clamp(18px, 2.4vw, 26px); line-height: 1.45; letter-spacing: -.02em; }
.founder-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

.footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 22px clamp(18px, 4vw, 44px); color: rgba(255,255,255,.66); background: var(--green-950); font-size: 12px; }
.footer-links { display: flex; gap: 18px; }
.footer a { color: rgba(255,255,255,.85); text-decoration: none; }

@media (max-width: 1080px) {
  .steps.flow { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-menu { display: block; }
  .nav .brand { margin-right: auto; }
  .nav-menu { margin-left: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .shot-main { transform: none; }
  .cards-3, .cards-2, .steps, .steps.flow, .versus { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero::after { animation: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}

/* Readability pass */
.hero-trust { font-size: 13px; }
.strip { font-size: 13.5px; }
.steps p { font-size: 13.5px; }
.vcard p { font-size: 13.5px; }
.pricing-note { font-size: 13px; }
.footer { font-size: 13px; }
