/* ===== Brand palette ===== */
:root{
  --brand-primary: #44b86b;      /* buttons, accents */
  --brand-primary-600: #52b844;  /* hover */
  --brand-accent: #95b844;       /* secondary accent */
  --brand-dark: #0b1220;         /* page background */
  --brand-mid: #0f172a;          /* card/alt bg */
  --brand-muted: #94a3b8;        /* muted text */
  --ring: rgba(34, 238, 78, .5);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body.site{
  background: var(--brand-dark);
  color:#fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
}

/* Utilities */
.container{ max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.muted{ color: var(--brand-muted); }
.small{ font-size: .92rem; }
.tiny{ font-size: .8rem; }
.link{ color: var(--brand-accent); text-decoration: none; }
.link:hover{ text-decoration: underline; }

/* Focus ring */
:focus{ outline: none; box-shadow: 0 0 0 6px var(--ring); }

/* ===== Nav ===== */
.nav{ position: sticky; top:0; z-index:50; border-bottom: 1px solid rgba(255,255,255,.08); }
.frosted{ backdrop-filter: saturate(120%) blur(8px); background: rgba(11,18,32,.8); }
.nav-inner{ height:64px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:#fff; }
.brand-badge{ width:36px; height:36px; display:grid; place-items:center; border-radius:12px; background: var(--brand-primary); color:#000; font-weight:800; }
.brand-name{ font-weight:800; letter-spacing:.2px; }

.nav-links{ display:none; gap:24px; }
.nav-links a{ color:#fff; text-decoration:none; opacity:.9; }
.nav-links a:hover{ opacity:.75; }

.nav-cta{ display:none; gap:12px; }
.menu-btn{ display:inline-flex; height:40px; width:40px; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.15); border-radius:12px; background:transparent; color:#fff; }
.menu-btn .icon{ width:24px; height:24px; fill:currentColor; }

.mobile-menu{ display:none; border-top:1px solid rgba(255,255,255,.1); }
.mobile-menu-inner{ display:flex; flex-direction:column; gap:10px; padding:16px 0; }
.mobile-actions{ display:flex; gap:10px; padding-top:8px; }

/* Desktop breakpoints */
@media (min-width: 768px){
  .nav-links{ display:flex; }
  .nav-cta{ display:flex; }
  .menu-btn{ display:none; }
}

/* ===== Buttons ===== */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 20px; font-weight:600; border-radius:16px; border:1px solid transparent; text-decoration:none; transition: .2s ease; }
.btn-primary{ background: var(--brand-primary); color:#fff; }
.btn-primary:hover{ background: var(--brand-primary-600); }
.btn-ghost{ color:#fff; border-color: rgba(255,255,255,.18); background: transparent; }
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

/* ===== Hero ===== */
.hero{ position:relative; overflow:hidden; }
.halo{
  position:absolute; inset: -20% -10% auto -10%; height:60vh;
  background:
    radial-gradient(60% 60% at 50% 50%, color-mix(in oklab, var(--brand-accent) 35%, transparent) 0%, transparent 60%),
    radial-gradient(60% 60% at 60% 40%, color-mix(in oklab, var(--brand-primary) 45%, transparent) 0%, transparent 60%);
  filter: blur(32px) saturate(140%);
  opacity:.6; pointer-events:none;
}
.hero-inner{ padding: 84px 0 48px; max-width: 800px; }
.hero h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); line-height:1.05; margin:0; font-weight:800; }
.accent{ color: var(--brand-accent); }
.lead{ margin:18px 0 24px; color:var(--brand-muted); }
.actions{ display:flex; gap:12px; flex-wrap:wrap; }
.trustline{ margin-top:24px; font-size:.8rem; color:var(--brand-muted); text-transform:uppercase; letter-spacing:.1em; }

/* ===== Sections ===== */
.section{ padding:72px 0; }
.alt{ background: color-mix(in oklab, white 4%, var(--brand-mid)); border-top:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.section-intro h2{ margin:0; font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.section-intro .muted{ margin-top:10px; }

/* ===== Grid & Cards ===== */
.grid{ display:grid; gap:20px; }
.grid-3{ grid-template-columns: 1fr; }
@media (min-width: 900px){ .grid-3{ grid-template-columns: repeat(3, 1fr); } }
.two-col{ display:grid; gap:28px; grid-template-columns: 1fr; }
@media (min-width: 1000px){ .two-col{ grid-template-columns: 1fr 1fr; align-items:center; } }

.card{
  background: linear-gradient(180deg, color-mix(in oklab, white 4%, var(--brand-mid)) 0%, var(--brand-mid) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.card-flex{ display:flex; gap:24px; align-items:center; justify-content:space-between; flex-wrap:wrap; }

.card-head{ display:flex; align-items:center; gap:12px; }
.pill{ display:grid; place-items:center; width:40px; height:40px; border-radius:12px; background: var(--brand-primary); color:#000; font-weight:800; }
.pill-accent{ background: var(--brand-accent); }

.bullets{ margin: 14px 0 0; padding-left: 18px; }
.bullets li{ margin:6px 0; }

/* ===== Logos strip ===== */
.strip{ border-top:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); background: color-mix(in oklab, white 4%, var(--brand-mid)); }
.logos{ display:grid; gap:18px; padding:18px 0; grid-template-columns: repeat(2, 1fr); opacity:.8; }
@media (min-width: 900px){ .logos{ grid-template-columns: repeat(6, 1fr); } }
.logos > div{ text-align:center; font-size:.8rem; }

/* ===== Stats ===== */
.stats{ display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; }
.stat{ border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:12px; }
.stat-num{ font-size:2rem; font-weight:800; }
.stat-num.up{ color: var(--brand-accent); }
.stat-num.down{ color: var(--brand-accent); }

/* ===== Form ===== */
.form-wrap{ border:1px solid rgba(255,255,255,.1); border-radius:24px; padding:24px; }
.input{
  width:100%; background: transparent; color:#fff; border:1px solid rgba(255,255,255,.15);
  border-radius:16px; padding:12px 14px; font: inherit;
}
.input::placeholder{ color: color-mix(in oklab, white 60%, var(--brand-mid)); }
.input:focus{ box-shadow: 0 0 0 6px var(--ring); border-color: rgba(255,255,255,.35); }
.hp{ display:none; }        /* honeypot */
.status{ margin-top:8px; min-height:1em; }

/* ===== Footer ===== */
.footer{ border-top:1px solid rgba(255,255,255,.1); padding:48px 0; }
.footer-grid{ display:grid; gap:22px; grid-template-columns: 1fr; }
@media (min-width: 900px){ .footer-grid{ grid-template-columns: repeat(4, 1fr); } }
.foot-head{ font-weight:600; margin-bottom:8px; }
.foot-links{ list-style:none; padding:0; margin:0; }
.foot-links li{ margin:6px 0; }
.foot-links a{ color:#fff; text-decoration:none; opacity:.9; }
.foot-links a:hover{ opacity:.75; }

/* ===== NAV – layout & responsive ===== */
.nav{ position:sticky; top:0; z-index:50; border-bottom:1px solid rgba(255,255,255,.08); }
.frosted{ backdrop-filter:saturate(120%) blur(8px); background:rgba(11,18,32,.8); }
.nav-inner{ height:64px; display:flex; align-items:center; justify-content:space-between; gap:16px; }

.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:#fff; }
.brand-badge{ width:36px; height:36px; display:grid; place-items:center; border-radius:12px; background:var(--brand-primary); color:#000; font-weight:800; }
.brand-name{ font-weight:800; letter-spacing:.2px; }

/* Desktop links & CTAs hidden on mobile by default */
.nav-links, .nav-cta{ display:none; }
.nav-links a{ color:#fff; text-decoration:none; opacity:.9; }
.nav-links a:hover{ opacity:.75; }

/* Burger */
.menu-btn{ display:inline-flex; height:40px; width:40px; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.15); border-radius:12px; background:transparent; color:#fff; }
.menu-btn .icon{ width:24px; height:24px; }

/* Mobile menu panel (closed by default) */
.mobile-menu{ display:none; border-top:1px solid rgba(255,255,255,.1); background:rgba(15,23,42,.9); }
.mobile-menu.open{ display:block; }            /* toggled by JS */
.mobile-menu-inner{ display:flex; flex-direction:column; gap:10px; padding:14px 0; }
.mm-link{ color:#fff; text-decoration:none; opacity:.9; padding:6px 0; }
.mm-link:hover{ opacity:.75; }
.mobile-actions{ display:flex; gap:10px; padding-top:8px; flex-wrap:wrap; }

/* Desktop breakpoint */
@media (min-width: 900px){
  .nav-links{ display:flex; gap:24px; }
  .nav-cta{ display:flex; gap:12px; }
  .menu-btn{ display:none; }
  .mobile-menu{ display:none !important; }   /* ensure hidden on desktop */
}

/* Ensure anchors don’t show purple default */
a{ color:inherit; }
