/* =================================================================
   Govern360 — Marketing landing page
   Long-scroll, Google Material standard, signal-blue accent.
   Extends tokens.css (shared with console + admin).
   ================================================================= */

/* ---- Layout primitives ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
section { scroll-margin-top: 72px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--g-font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--g-primary-700);
}
.eyebrow.dim { color: var(--g-text-3); }
h2.sec-h { font-family: var(--g-font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.12; margin: 14px 0 0; }
p.sec-sub { font-size: 17px; color: var(--g-text-2); line-height: 1.6; margin: 14px 0 0; max-width: 640px; }
.sec-pad { padding: 88px 0; }
.sec-pad-sm { padding: 56px 0; }
.center { text-align: center; }
.center p.sec-sub { margin-left: auto; margin-right: auto; }

/* ---- Top nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--g-divider);
}
.nav-inner { height: 64px; display: flex; align-items: center; gap: 28px; }
.nav-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--g-font-display); font-weight: 700; font-size: 18px; color: var(--g-text); text-decoration: none; }
.nav-brand:hover { text-decoration: none; }
.nav-logo { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo svg { width: 100%; height: 100%; display: block; }
.brand-ai { color: var(--g-primary); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--g-text-2); padding: 8px 12px; border-radius: var(--g-r-sm); text-decoration: none; transition: all 0.15s; }
.nav-links a:hover { color: var(--g-text); background: var(--g-bg-soft); text-decoration: none; }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; background: transparent; border: 0; width: 40px; height: 40px; border-radius: 50%; align-items: center; justify-content: center; color: var(--g-text); }
.nav-toggle i { font-size: 24px; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding: 72px 0 64px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(26,115,232,0.10), transparent 62%),
    linear-gradient(to bottom, var(--g-bg), var(--g-bg-alt));
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(60,64,67,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(60,64,67,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: var(--g-r-pill);
  background: var(--g-surface); border: 1px solid var(--g-border);
  color: var(--g-text-2); box-shadow: var(--g-e1); margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g-success); box-shadow: 0 0 0 3px var(--g-success-bg); }
.hero h1 {
  font-family: var(--g-font-display);
  font-size: clamp(34px, 6vw, 60px); font-weight: 500;
  letter-spacing: -0.03em; line-height: 1.05; margin: 0 auto;
  max-width: 880px;
}
.hero h1 .hl { color: var(--g-primary); }
.hero-sub { font-size: clamp(16px, 2.2vw, 20px); color: var(--g-text-2); line-height: 1.6; margin: 24px auto 0; max-width: 680px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.hero-trust { display: flex; gap: 10px 22px; justify-content: center; flex-wrap: wrap; margin-top: 28px; font-size: 13px; color: var(--g-text-2); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--g-success); font-size: 16px; }
.hero-sched { margin: 14px 0 0; text-align: center; font-size: 13px; }
.hero-sched a { color: var(--g-text-2); text-decoration: underline; text-decoration-color: rgba(95,99,104,0.35); text-underline-offset: 3px; transition: color 0.15s; display: inline-flex; align-items: center; gap: 4px; }
.hero-sched a:hover { color: var(--g-ink); text-decoration-color: var(--g-ink); }
.hero-sched a i { font-size: 14px; }
.hero-sched.on-dark a { color: #8FA8C5; text-decoration-color: rgba(143,168,197,0.35); }
.hero-sched.on-dark a:hover { color: #fff; text-decoration-color: #fff; }

/* ---- Product screenshot frame ---- */
.shot {
  position: relative; z-index: 1;
  margin: 48px auto 0; max-width: 1080px;
  border-radius: var(--g-r-xl);
  background: var(--g-surface);
  border: 1px solid var(--g-border);
  box-shadow: 0 24px 60px -20px rgba(26,52,99,0.28), var(--g-e2);
  overflow: hidden;
}
.shot-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--g-divider); background: var(--g-bg-alt); }
.shot-dots { display: flex; gap: 6px; }
.shot-dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--g-border-strong); opacity: 0.6; }
.shot-url { flex: 1; text-align: center; font-family: var(--g-font-mono); font-size: 12px; color: var(--g-text-3); }
.shot-body { padding: 22px; }

/* mini dashboard inside the frame */
.md-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.md-card { background: var(--g-bg-alt); border: 1px solid var(--g-divider); border-radius: var(--g-r-md); padding: 14px 16px; }
.md-l { font-size: 12px; color: var(--g-text-2); display: flex; align-items: center; gap: 6px; }
.md-l i { font-size: 15px; }
.md-v { font-family: var(--g-font-display); font-size: 26px; font-weight: 500; margin-top: 6px; letter-spacing: -0.01em; }
.md-v.danger { color: var(--g-danger); }
.md-feed { margin-top: 16px; border: 1px solid var(--g-divider); border-radius: var(--g-r-md); overflow: hidden; }
.md-feed-h { font-size: 12px; font-weight: 500; color: var(--g-text-2); padding: 10px 14px; background: var(--g-bg-alt); border-bottom: 1px solid var(--g-divider); display: flex; align-items: center; gap: 6px; }
.md-row { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-bottom: 1px solid var(--g-divider); font-size: 13px; }
.md-row:last-child { border-bottom: 0; }
.md-tool { font-weight: 500; min-width: 150px; }
.md-desc { color: var(--g-text-2); flex: 1; }

/* ---- Logo strip ---- */
.logos { padding: 40px 0; border-top: 1px solid var(--g-divider); border-bottom: 1px solid var(--g-divider); background: var(--g-bg-alt); }
.logos p { text-align: center; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--g-text-3); margin: 0 0 22px; }
.logos-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 44px; }
.logo-item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--g-font-display); font-weight: 700; font-size: 17px; color: var(--g-text-2); opacity: 0.78; }
.logo-mark { width: 26px; height: 26px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; }

/* ---- Feature / value cards ---- */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.vcard { background: var(--g-surface); border: 1px solid var(--g-divider); border-radius: var(--g-r-lg); padding: 28px 24px; transition: box-shadow 0.2s, transform 0.2s; }
.vcard:hover { box-shadow: var(--g-e2); transform: translateY(-2px); }
.vcard-ic { width: 46px; height: 46px; border-radius: var(--g-r-md); display: inline-flex; align-items: center; justify-content: center; background: var(--g-primary-50); color: var(--g-primary); margin-bottom: 16px; }
.vcard-ic i { font-size: 24px; }
.vcard h3 { font-family: var(--g-font-display); font-size: 18px; font-weight: 500; margin: 0 0 8px; }
.vcard p { font-size: 14px; color: var(--g-text-2); line-height: 1.6; margin: 0; }

/* ---- Module rows ---- */
.modules { display: grid; gap: 20px; margin-top: 48px; }
.mod {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
  background: var(--g-surface); border: 1px solid var(--g-divider);
  border-radius: var(--g-r-xl); padding: 36px; overflow: hidden;
}
.mod.flip .mod-text { order: 2; }
.mod-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--g-font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--g-primary-700); }
.mod h3 { font-family: var(--g-font-display); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; margin: 12px 0 12px; }
.mod p { font-size: 15px; color: var(--g-text-2); line-height: 1.65; margin: 0 0 18px; }
.mod ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.mod li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--g-text); }
.mod li i { color: var(--g-success); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.mod-visual {
  background: var(--g-bg-alt); border: 1px solid var(--g-divider);
  border-radius: var(--g-r-lg); padding: 18px; min-height: 220px;
}

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-n { width: 40px; height: 40px; border-radius: 50%; background: var(--g-primary); color: #fff; font-family: var(--g-font-display); font-weight: 700; font-size: 17px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step-time { font-family: var(--g-font-mono); font-size: 11px; color: var(--g-text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.step h3 { font-family: var(--g-font-display); font-size: 18px; font-weight: 500; margin: 4px 0 8px; }
.step p { font-size: 14px; color: var(--g-text-2); line-height: 1.6; margin: 0; }

/* ---- Pricing ---- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; align-items: start; }
.plan { background: var(--g-surface); border: 1px solid var(--g-divider); border-radius: var(--g-r-xl); padding: 32px 28px; position: relative; }
.plan.feature { border-color: var(--g-primary); box-shadow: 0 12px 32px -12px rgba(26,115,232,0.35); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--g-primary); color: #fff; font-size: 12px; font-weight: 500; padding: 4px 14px; border-radius: var(--g-r-pill); }
.plan h3 { font-family: var(--g-font-display); font-size: 20px; font-weight: 500; margin: 0 0 4px; }
.plan-for { font-size: 13px; color: var(--g-text-2); margin: 0 0 20px; }
.plan-price { font-family: var(--g-font-display); font-size: 34px; font-weight: 500; letter-spacing: -0.02em; }
.plan-price span { font-size: 15px; color: var(--g-text-2); font-weight: 400; }
.plan-note { font-size: 13px; color: var(--g-text-2); margin: 6px 0 22px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.plan li i { color: var(--g-success); font-size: 18px; flex-shrink: 0; }

/* ---- Stats band ---- */
.band { background: var(--g-text); color: #fff; }
.band .wrap { padding: 56px 24px; }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.band-v { font-family: var(--g-font-display); font-size: 42px; font-weight: 500; letter-spacing: -0.02em; color: #fff; }
.band-l { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ---- Security ---- */
.sec-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.sec-list { display: grid; gap: 18px; }
.sec-item { display: flex; gap: 14px; }
.sec-item i { color: var(--g-primary); font-size: 22px; flex-shrink: 0; }
.sec-item h4 { font-size: 15px; font-weight: 500; margin: 0 0 4px; }
.sec-item p { font-size: 14px; color: var(--g-text-2); line-height: 1.55; margin: 0; }
.badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.badge-card { background: var(--g-surface); border: 1px solid var(--g-divider); border-radius: var(--g-r-md); padding: 18px; text-align: center; }
.badge-card i { font-size: 28px; color: var(--g-success); }
.badge-card .bn { font-weight: 500; font-size: 14px; margin-top: 8px; }
.badge-card .bd { font-size: 12px; color: var(--g-text-2); margin-top: 2px; }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 44px auto 0; display: grid; gap: 0; }
.faq details { border-bottom: 1px solid var(--g-divider); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; font-family: var(--g-font-display); font-size: 17px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { font-size: 22px; color: var(--g-text-2); transition: transform 0.2s; flex-shrink: 0; }
.faq details[open] summary i { transform: rotate(45deg); }
.faq-a { padding: 0 4px 24px; font-size: 15px; color: var(--g-text-2); line-height: 1.7; }

/* ---- Final CTA ---- */
.cta-final { position: relative; overflow: hidden; background: var(--g-text); color: #fff; border-radius: var(--g-r-xl); padding: 64px 48px; text-align: center; margin: 0 auto; }
.cta-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(26,115,232,0.32), transparent 65%); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 { font-family: var(--g-font-display); font-size: clamp(26px, 4vw, 38px); font-weight: 500; letter-spacing: -0.02em; margin: 0 auto; max-width: 640px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.78); margin: 16px auto 0; max-width: 540px; line-height: 1.6; }
.cta-final .hero-cta { margin-top: 30px; }
.cta-fine { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 24px; }
.btn.on-dark { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn.on-dark:hover { background: rgba(255,255,255,0.18); }

/* ---- Footer ---- */
.foot { background: var(--g-bg-alt); border-top: 1px solid var(--g-divider); padding: 56px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .nav-brand { margin-bottom: 14px; }
.foot-brand p { font-size: 14px; color: var(--g-text-2); line-height: 1.6; max-width: 320px; margin: 0 0 16px; }
.foot-status { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--g-text-2); }
.foot-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--g-success); }
.foot-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--g-text-3); margin: 0 0 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--g-text-2); padding: 5px 0; text-decoration: none; }
.foot-col a:hover { color: var(--g-text); text-decoration: none; }
.foot-bot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--g-divider); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 13px; color: var(--g-text-3); flex-wrap: wrap; }
.foot-bot a { color: var(--g-text-3); }

/* ---- Reveal-on-scroll (visible by default; only hidden when JS confirmed) ---- */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================== Responsive =========================== */
@media (max-width: 940px) {
  .cards3 { grid-template-columns: 1fr; }
  .mod { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .mod.flip .mod-text { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .plan.feature { order: -1; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .sec-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
  .md-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--g-surface); border-bottom: 1px solid var(--g-divider);
    padding: 12px; gap: 2px; box-shadow: var(--g-e2);
  }
  .nav-cta .btn.outline { display: none; }
  .sec-pad { padding: 60px 0; }
  .band-grid { grid-template-columns: 1fr 1fr; }
  .cta-final { padding: 48px 24px; border-radius: 0; }
  .md-tool { min-width: 0; }
  .md-row .md-desc { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* =================================================================
   Trial wizard modal (CloudTrust360-style 3-step)
   ================================================================= */
.wz-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(17,36,60,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.wz-overlay.open { display: flex; }
.wz {
  position: relative; width: 100%; max-width: 980px;
  background: var(--g-surface); border-radius: var(--g-r-xl);
  box-shadow: 0 32px 80px -24px rgba(17,36,60,0.5);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden; max-height: 92vh;
}
.wz-main { padding: 44px 44px 36px; overflow-y: auto; }
.wz-side { background: var(--g-primary-50); padding: 44px 40px; overflow-y: auto; }
.wz-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  border: 0; background: var(--g-surface); color: var(--g-text);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--g-e1); cursor: pointer;
}
.wz-close:hover { background: var(--g-bg-soft); }
.wz-close i { font-size: 22px; }
.wz-eyebrow { font-family: var(--g-font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--g-primary); }
.wz-h { font-family: var(--g-font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--g-ink); margin: 10px 0 0; line-height: 1.1; }
.wz-step-label { text-align: center; font-size: 14px; color: var(--g-text-2); margin: 28px 0 10px; }
.wz-bar { height: 8px; background: var(--g-primary-100); border-radius: var(--g-r-pill); overflow: hidden; }
.wz-bar > div { height: 100%; background: var(--g-primary); border-radius: var(--g-r-pill); transition: width 0.3s ease; }
.wz-field { margin-top: 26px; }
.wz-field label { display: block; font-size: 14px; font-weight: 700; color: var(--g-ink); margin-bottom: 8px; }
.wz-field label .req { color: var(--g-danger); }
.wz-field .inp { height: 52px; border-radius: var(--g-r-md); font-size: 16px; }
.wz-field .inp:focus { box-shadow: 0 0 0 3px var(--g-primary-100); border-color: var(--g-primary); }
.wz-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
select.inp { height: 52px; border-radius: var(--g-r-md); font-size: 16px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.wz-btn { width: 100%; height: 56px; font-size: 16px; margin-top: 28px; }
.wz-back { background: transparent; border: 0; color: var(--g-text-2); font-size: 14px; font-weight: 500; cursor: pointer; margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; }
.wz-back:hover { color: var(--g-text); }
.wz-fine { font-size: 13px; color: var(--g-text-2); line-height: 1.6; margin-top: 18px; }
.wz-fine a { color: var(--g-primary); }
.wz-err { color: var(--g-danger); font-size: 13px; margin-top: 8px; display: none; }
.wz-err.show { display: block; }
.wz-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* success step */
.wz-check { width: 88px; height: 88px; border-radius: 50%; background: var(--g-success-bg); display: flex; align-items: center; justify-content: center; margin: 14px auto 24px; }
.wz-check i { font-size: 48px; color: var(--g-success); }
.wz-success { text-align: center; }
.wz-success p { font-size: 15px; color: var(--g-text-2); line-height: 1.7; margin: 14px 0 0; }
.wz-success strong { color: var(--g-ink); }
.wz-cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.wz-cta-row .btn { white-space: nowrap; }

/* side panel */
.wz-side-h { font-family: var(--g-font-display); font-size: 22px; font-weight: 700; color: var(--g-primary); letter-spacing: -0.01em; line-height: 1.25; margin: 0 0 24px; }
.wz-side ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.wz-side li { display: flex; gap: 14px; font-size: 15px; color: var(--g-text); line-height: 1.45; }
.wz-side li i { color: var(--g-primary); font-size: 22px; flex-shrink: 0; }
.wz-side-rule { height: 1px; background: var(--g-primary-100); margin: 28px 0; }
.wz-side-note { font-size: 15px; color: var(--g-text-2); }
.wz-side-big { font-family: var(--g-font-display); font-size: 30px; font-weight: 700; color: var(--g-primary); letter-spacing: -0.02em; margin: 18px 0 6px; }
.wz-side-sub { font-size: 14px; color: var(--g-text-2); }
.wz-step { display: none; }
.wz-step.active { display: block; }

@media (max-width: 820px) {
  .wz { grid-template-columns: 1fr; max-height: 94vh; }
  .wz-side { display: none; }
  .wz-main { padding: 40px 24px 28px; }
  .wz-h { font-size: 26px; }
}

/* ---- Legal / policy pages ---- */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-family: var(--g-font-display); font-size: clamp(30px,5vw,42px); font-weight: 700; color: var(--g-ink); letter-spacing: -0.02em; margin: 0 0 8px; }
.legal .updated { font-size: 14px; color: var(--g-text-3); margin: 0 0 36px; }
.legal h2 { font-family: var(--g-font-display); font-size: 22px; font-weight: 500; color: var(--g-ink); margin: 36px 0 10px; }
.legal h3 { font-family: var(--g-font-display); font-size: 17px; font-weight: 600; color: var(--g-ink); margin: 22px 0 6px; }
.legal p, .legal li { font-size: 16px; color: var(--g-text); line-height: 1.7; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--g-primary); }
.legal .tb { margin-top: 16px; }
.legal-note { background: var(--g-primary-50); border: 1px solid var(--g-primary-100); border-radius: var(--g-r-md); padding: 16px 18px; font-size: 14px; color: var(--g-text-2); margin: 24px 0; }
.legal-flag { display: inline-block; background: #FFF8E1; border-left: 3px solid #F4B400; padding: 2px 8px; font-size: 13px; color: #8C6D00; border-radius: 3px; font-family: var(--g-font-mono); }
.legal-disclaimer { margin-top: 48px; padding: 20px 22px; background: #F5F7FA; border: 1px solid var(--g-divider); border-radius: var(--g-r-md); }
.legal-disclaimer p { font-size: 14px; color: var(--g-text-2); margin: 0; line-height: 1.6; }

/* =================================================================
   TAU pricing — 4 tiers, calculator, taxonomy
   ================================================================= */
.price-note { display:inline-flex; align-items:center; gap:6px; font-family:var(--g-font-mono); font-size:11px; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; color:var(--g-text-3); margin-top:10px; }

/* 4-up tier grid */
.tiers { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:44px; align-items:stretch; }
.tier { display:flex; flex-direction:column; background:var(--g-surface); border:1px solid var(--g-divider); border-radius:var(--g-r-xl); padding:26px 22px; position:relative; }
.tier.feature { border-color:var(--g-primary); box-shadow:0 12px 32px -12px rgba(46,111,176,0.4); }
.tier-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background:var(--g-primary); color:#fff; font-size:11px; font-weight:500; padding:4px 12px; border-radius:var(--g-r-pill); white-space:nowrap; }
.tier h3 { font-family:var(--g-font-display); font-size:18px; font-weight:700; color:var(--g-ink); margin:0 0 2px; }
.tier-for { font-size:12px; color:var(--g-text-2); margin:0 0 16px; min-height:32px; line-height:1.4; }
.tier-price { font-family:var(--g-font-display); font-size:30px; font-weight:700; color:var(--g-ink); letter-spacing:-0.02em; }
.tier-price span { font-size:14px; color:var(--g-text-2); font-weight:400; }
.tier-tau { font-size:13px; font-weight:500; color:var(--g-primary); margin:6px 0 0; }
.tier-over { font-size:12px; color:var(--g-text-3); margin:2px 0 18px; }
.tier ul { list-style:none; padding:0; margin:0 0 20px; display:grid; gap:9px; flex:1; }
.tier li { display:flex; align-items:flex-start; gap:8px; font-size:13px; color:var(--g-text); line-height:1.4; }
.tier li i { color:var(--g-success); font-size:16px; flex-shrink:0; margin-top:1px; }
.tier .btn { margin-top:auto; }

/* Calculator */
.calc { margin-top:28px; background:var(--g-surface); border:1px solid var(--g-divider); border-radius:var(--g-r-xl); overflow:hidden; }
.calc-grid { display:grid; grid-template-columns:1fr 360px; }
.calc-inputs { padding:32px 36px; }
.calc-inputs h3 { font-family:var(--g-font-display); font-size:20px; font-weight:500; color:var(--g-ink); margin:0 0 4px; }
.calc-inputs p { font-size:14px; color:var(--g-text-2); margin:0 0 24px; }
.calc-row { margin-bottom:22px; }
.calc-row .lab { display:flex; justify-content:space-between; align-items:baseline; font-size:14px; font-weight:500; color:var(--g-ink); margin-bottom:8px; }
.calc-row .lab .tau { font-family:var(--g-font-mono); font-size:12px; color:var(--g-primary); font-weight:500; }
.calc-row input[type=range]{ -webkit-appearance:none; appearance:none; width:100%; height:6px; border-radius:3px; background:var(--g-primary-100); outline:none; }
.calc-row input[type=range]::-webkit-slider-thumb{ -webkit-appearance:none; appearance:none; width:22px; height:22px; border-radius:50%; background:var(--g-primary); cursor:pointer; box-shadow:var(--g-e1); border:2px solid #fff; }
.calc-row input[type=range]::-moz-range-thumb{ width:22px; height:22px; border-radius:50%; background:var(--g-primary); cursor:pointer; border:2px solid #fff; box-shadow:var(--g-e1); }
.calc-row .val { font-family:var(--g-font-display); font-size:15px; font-weight:500; color:var(--g-ink); }
.calc-result { background:var(--g-primary-900); color:#fff; padding:32px 30px; display:flex; flex-direction:column; justify-content:center; }
.calc-result .rlab { font-size:13px; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.06em; font-family:var(--g-font-mono); }
.calc-result .rtau { font-family:var(--g-font-display); font-size:46px; font-weight:700; letter-spacing:-0.02em; margin:6px 0 2px; color:#fff; }
.calc-result .rtau small { font-size:18px; font-weight:400; color:rgba(255,255,255,0.7); }
.calc-result .rrec { margin-top:22px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.18); }
.calc-result .rrec .rlab { margin-bottom:6px; }
.calc-result .rtier { font-family:var(--g-font-display); font-size:24px; font-weight:700; color:#fff; display:flex; align-items:center; gap:8px; }
.calc-result .rtier .ti { color:var(--g-steel); }
.calc-result .rbuf { font-size:13px; color:rgba(255,255,255,0.65); margin-top:8px; }
.calc-result .btn { margin-top:22px; }

/* Taxonomy table */
.tax { margin-top:28px; }
.tax-wrap { background:var(--g-surface); border:1px solid var(--g-divider); border-radius:var(--g-r-xl); overflow:hidden; }
.tax summary { cursor:pointer; list-style:none; padding:20px 28px; display:flex; align-items:center; justify-content:space-between; font-family:var(--g-font-display); font-size:17px; font-weight:500; color:var(--g-ink); }
.tax summary::-webkit-details-marker{ display:none; }
.tax summary i { font-size:22px; color:var(--g-text-2); transition:transform 0.2s; }
.tax details[open] summary i { transform:rotate(45deg); }
.tax .tb td:nth-child(3), .tax .tb th:nth-child(3){ text-align:right; white-space:nowrap; }
.tau-pill { font-family:var(--g-font-mono); font-size:12px; font-weight:500; color:var(--g-primary); background:var(--g-primary-50); padding:2px 8px; border-radius:var(--g-r-pill); }

.rollover { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:28px; }
.roll-card { background:var(--g-bg-alt); border:1px solid var(--g-divider); border-radius:var(--g-r-lg); padding:20px; }
.roll-card i { font-size:24px; color:var(--g-primary); }
.roll-card h4 { font-size:14px; font-weight:700; color:var(--g-ink); margin:10px 0 4px; }
.roll-card p { font-size:13px; color:var(--g-text-2); line-height:1.5; margin:0; }

@media (max-width: 940px){
  .tiers { grid-template-columns:repeat(2,1fr); }
  .calc-grid { grid-template-columns:1fr; }
  .rollover { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 560px){
  .tiers { grid-template-columns:1fr; }
  .rollover { grid-template-columns:1fr; }
  .calc-inputs { padding:24px; }
}

/* ---- Full capability grid (complete platform) ---- */
.capgrid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:40px; }
.capgrid .cg-group { font-family:var(--g-font-mono); font-size:11px; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; color:var(--g-primary-700); grid-column:1/-1; margin-top:8px; }
.capgrid .cg-group:first-child { margin-top:0; }
.cgi { display:flex; align-items:flex-start; gap:11px; background:var(--g-surface); border:1px solid var(--g-divider); border-radius:var(--g-r-md); padding:14px 15px; transition:box-shadow .2s; }
.cgi:hover { box-shadow:var(--g-e1); }
.cgi i { color:var(--g-primary); font-size:20px; flex-shrink:0; margin-top:1px; }
.cgi .cgn { font-size:13px; font-weight:600; color:var(--g-ink); }
.cgi .cgd { font-size:11.5px; color:var(--g-text-2); line-height:1.35; margin-top:2px; }
.cgi .cg-new { display:inline-block; font-size:8.5px; font-weight:700; color:var(--g-primary); background:var(--g-primary-50); padding:1px 6px; border-radius:10px; letter-spacing:0.04em; margin-left:6px; vertical-align:middle; }
@media (max-width:940px){ .capgrid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .capgrid { grid-template-columns:1fr; } }

/* ---- Enforcement planes section ---- */
.planes-intro { max-width: 760px; margin: 14px auto 0; }
.planes-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:40px; }
.plane { background:var(--g-surface); border:1px solid var(--g-divider); border-radius:var(--g-r-lg); padding:24px 24px 22px; transition: box-shadow .2s; }
.plane:hover { box-shadow:var(--g-e1); }
.plane.featured { border:2px solid var(--g-primary); background:#fafcff; }
.plane-h { display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.plane-ic { width:40px; height:40px; border-radius:var(--g-r-md); background:var(--g-primary-50); color:var(--g-primary); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.plane-ic i { font-size:22px; }
.plane-name { font-family:var(--g-font-display); font-size:17px; font-weight:600; color:var(--g-ink); }
.plane-sub { font-size:12px; color:var(--g-text-2); font-weight:500; margin-top:1px; }
.plane-tag { margin-left:auto; font-family:var(--g-font-mono); font-size:10px; font-weight:600; letter-spacing:0.05em; text-transform:uppercase; color:var(--g-primary); background:var(--g-primary-50); padding:3px 8px; border-radius:var(--g-r-pill); }
.plane-body { font-size:13.5px; color:var(--g-text); line-height:1.55; margin:8px 0 12px; }
.plane-compiles { font-size:12px; color:var(--g-text-2); line-height:1.55; background:var(--g-bg-alt); border:1px solid var(--g-divider); border-radius:var(--g-r-sm); padding:10px 12px; margin-top:8px; }
.plane-compiles b { color:var(--g-ink); }
.planes-honest { max-width:780px; margin:30px auto 0; padding:18px 22px; background:var(--g-bg-alt); border:1px solid var(--g-divider); border-radius:var(--g-r-md); font-size:13px; color:var(--g-text-2); line-height:1.55; }
.planes-honest b { color:var(--g-ink); }
@media (max-width:820px){ .planes-grid { grid-template-columns:1fr; } }

/* ============================================================
   PHASE 1 — Obsidian Cyan refresh
   ============================================================ */

/* ---- Hero: dark variant ---- */
.hero.hero-dark {
  background: linear-gradient(180deg, #070D17 0%, #0F1A2E 60%, #15233E 100%);
  color: #fff;
  padding: 96px 0 80px;
  isolation: isolate;
}
.hero-dark::before { display: none; } /* kill the light radial */
.hero-dark .hero-badge {
  background: rgba(0, 212, 200, 0.10);
  border: 1px solid rgba(0, 212, 200, 0.32);
  color: #B3F4EE;
}
.hero-dark .hero-badge .dot {
  background: var(--g-accent-cyan);
  box-shadow: 0 0 0 4px rgba(0,212,200,0.18);
}
.hero-dark h1 { color: #fff; }
.hero-dark h1 .hl { color: var(--g-accent-cyan); }
.hero-dark .hero-sub { color: #B0C5DE; max-width: 720px; }
.hero-dark .hero-trust { color: #8FA8C5; }
.hero-dark .hero-trust i { color: var(--g-accent-cyan); }

/* Hero background motion layers — grid drift + glow pulse */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 35%, #000 30%, transparent 75%);
  animation: gridDrift 60s linear infinite;
  pointer-events: none;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 900px 500px at 50% 10%, rgba(0,212,200,0.12), transparent 65%),
    radial-gradient(ellipse 600px 400px at 80% 5%, rgba(127,245,238,0.06), transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, 56px 56px; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.65; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-grid, .hero-glow { animation: none; }
}
.hero-dark .hero-inner { position: relative; z-index: 2; }

/* outline-on-dark button variant for hero secondary CTA */
.btn.outline-on-dark {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
}
.btn.outline-on-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.50);
}

/* ---- FOUR-METRIC STRIP ---- */
.metrics-strip {
  background: #070D17;
  color: #fff;
  padding: 48px 0 56px;
  border-top: 1px solid rgba(0,212,200,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.metrics-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}
.m-cell {
  position: relative;
  padding-left: 18px;
}
.m-cell::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 12px;
  width: 2px; background: var(--g-accent-cyan); border-radius: 1px;
  opacity: 0.55;
}
.m-cell .m-v {
  font-family: var(--g-font-display);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--g-accent-cyan);
  line-height: 1.1;
}
.m-cell .m-v-sub {
  font-size: 0.42em;
  font-weight: 600;
  color: #B0C5DE;
  letter-spacing: 0.02em;
  margin-left: 2px;
}
.m-cell .m-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 6px;
}
.m-cell .m-d {
  font-size: 13px;
  color: #8FA8C5;
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .metrics-strip-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .metrics-strip-inner { grid-template-columns: 1fr; }
}

/* ---- LIVE policy enforcement stream ---- */
.md-feed-h { position: relative; }
.md-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  color: #137333;
  background: #e6f4ea;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: auto;
}
.md-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #137333;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}
@media (prefers-reduced-motion: reduce) {
  .md-live-dot { animation: none; }
}

.md-stream {
  min-height: 200px; /* prevent layout jump as rows animate in */
  display: flex; flex-direction: column-reverse; /* newest on top */
  gap: 0;
  overflow: hidden;
}
.md-stream .md-row {
  opacity: 0;
  transform: translateY(8px);
  animation: streamIn 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.md-stream .md-row.fading {
  animation: streamOut 320ms ease-in forwards;
}
@keyframes streamIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes streamOut {
  to { opacity: 0; transform: translateY(-6px); max-height: 0; padding-top: 0; padding-bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .md-stream .md-row { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   END Phase 1
   ============================================================ */

/* ---- Force shot internals to render correctly on dark hero ---- */
.hero-dark .shot { color: var(--g-text); }
.hero-dark .shot .md-v { color: var(--g-ink); }
.hero-dark .shot .md-v.danger { color: var(--g-danger); }
.hero-dark .shot .md-l { color: var(--g-text-2); }
.hero-dark .shot .md-feed-h { color: var(--g-ink); }
.hero-dark .shot .md-tool { color: var(--g-ink); }
.hero-dark .shot .md-desc { color: var(--g-text-2); }
.hero-dark .shot .shot-url { color: var(--g-text-3); }

/* Shot subtle dark-mode-on-dark-bg lift */
.hero-dark .shot {
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,212,200,0.10);
}

/* ============================================================
   PHASE 1.5 — Promoted Enforcement Planes + Framework trust row
   ============================================================ */

/* Promoted Enforcement Planes — dark section to differentiate */
.planes-section {
  background:
    radial-gradient(ellipse 800px 400px at 20% 0%, rgba(0,212,200,0.08), transparent 60%),
    linear-gradient(180deg, #070D17 0%, #0F1A2E 100%);
  color: #fff;
  padding: 80px 0;
}
.planes-section .eyebrow { color: var(--g-accent-cyan); }
.planes-section .sec-h { color: #fff; }
.planes-section .sec-sub { color: #B0C5DE; }
.planes-section .plane {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
}
.planes-section .plane:hover {
  border-color: rgba(0,212,200,0.40);
  background: rgba(0,212,200,0.04);
}
.planes-section .plane.featured {
  background: rgba(0,212,200,0.06);
  border: 2px solid var(--g-accent-cyan);
}
.planes-section .plane-name { color: #fff; }
.planes-section .plane-sub { color: #8FA8C5; }
.planes-section .plane-tag {
  background: rgba(0,212,200,0.18);
  color: var(--g-accent-cyan);
}
.planes-section .plane-ic {
  background: rgba(0,212,200,0.12);
  color: var(--g-accent-cyan);
}
.planes-section .plane-body { color: #D6E0EE; }
.planes-section .plane-body em { color: var(--g-accent-cyan); font-style: italic; }
.planes-section .plane-compiles {
  background: rgba(0,0,0,0.30);
  border-color: rgba(255,255,255,0.10);
  color: #B0C5DE;
}
.planes-section .plane-compiles b { color: #fff; }
.planes-section .planes-honest {
  background: rgba(255,255,255,0.04);
  border-color: rgba(0,212,200,0.20);
  color: #B0C5DE;
}
.planes-section .planes-honest b { color: #fff; }
.planes-section .planes-honest em { color: var(--g-accent-cyan); }

/* Framework trust row — depth signal, NOT customer logos */
.framework-row {
  background: var(--g-bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--g-divider);
}
.framework-row-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.framework-row-lead {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--g-text-3);
  margin-right: 8px;
}
.framework-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g-text);
  background: var(--g-bg-alt);
  border: 1px solid var(--g-divider);
  padding: 8px 14px;
  border-radius: var(--g-r-pill);
  transition: all 0.15s;
}
.framework-chip:hover {
  border-color: var(--g-accent-cyan);
  color: var(--g-accent-cyan);
}
.framework-chip i { color: var(--g-accent-cyan); font-size: 15px; }
@media (max-width: 720px) {
  .framework-row-lead { width: 100%; text-align: center; margin-bottom: 4px; }
  .framework-chip { font-size: 12px; padding: 6px 12px; }
}

/* ============================================================
   PHASE 1.6 — Persona row + autonomous discovery callout
   ============================================================ */

/* Persona row — light section, executive language */
.personas-section {
  background: var(--g-bg-alt);
  padding: 72px 0;
}
.personas-section .sec-h {
  font-size: clamp(24px, 2.6vw, 30px);
  margin-bottom: 8px;
}
.personas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.persona {
  background: var(--g-surface);
  border: 1px solid var(--g-divider);
  border-radius: var(--g-r-lg);
  padding: 22px 20px;
  transition: all 0.2s;
}
.persona:hover {
  border-color: var(--g-accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,212,200,0.18);
}
.persona-role {
  font-family: var(--g-font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--g-accent-cyan);
  background: var(--g-primary-50);
  padding: 4px 10px;
  border-radius: var(--g-r-pill);
  display: inline-block;
  letter-spacing: 0.06em;
}
.persona-h {
  font-family: var(--g-font-display);
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
  color: var(--g-ink);
  line-height: 1.3;
}
.persona-d {
  font-size: 12.5px;
  color: var(--g-text-2);
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 1080px) {
  .personas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .personas-grid { grid-template-columns: 1fr; }
}

/* Autonomous discovery accent — adds a "New differentiator" callout to AI Inventory module */
.disc-banner {
  background: linear-gradient(135deg, rgba(0,212,200,0.06), rgba(127,245,238,0.03));
  border: 1px solid rgba(0,212,200,0.25);
  border-radius: var(--g-r-md);
  padding: 14px 18px;
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}
.disc-banner i {
  color: var(--g-accent-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.disc-banner b { color: var(--g-ink); }

/* ============================================================
   PHASE 1.7 — Token Governance section (replaces pricing)
   ============================================================ */
.token-section {
  background:
    radial-gradient(ellipse 800px 400px at 80% 0%, rgba(0,212,200,0.08), transparent 60%),
    linear-gradient(180deg, #0F1A2E 0%, #070D17 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
}
.token-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.token-section > * { position: relative; z-index: 2; }
.token-section .eyebrow { color: var(--g-accent-cyan); }
.token-section .sec-h { color: #fff; }
.token-section .sec-sub { color: #B0C5DE; max-width: 760px; margin: 0 auto; }

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.token-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--g-r-lg);
  padding: 28px 26px;
  transition: all 0.2s;
}
.token-card:hover {
  border-color: rgba(0,212,200,0.40);
  background: rgba(0,212,200,0.04);
  transform: translateY(-2px);
}
.token-ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(0,212,200,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.token-ic i { font-size: 22px; color: var(--g-accent-cyan); }
.token-h {
  font-family: var(--g-font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.token-p {
  font-size: 14px;
  color: #B0C5DE;
  line-height: 1.55;
  margin: 0 0 16px;
}
.token-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.token-list li {
  font-size: 13px;
  color: #D6E0EE;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.token-list li i {
  color: var(--g-accent-cyan);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.token-honest {
  margin-top: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,212,200,0.20);
  border-radius: var(--g-r-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #B0C5DE;
  line-height: 1.55;
}
.token-honest i { color: var(--g-accent-cyan); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.token-honest b { color: #fff; }

@media (max-width: 820px) {
  .token-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 1.8 — Market context band (Forrester / IBM / EU AI Act)
   ============================================================ */
.market-band {
  background: var(--g-bg);
  padding: 72px 0 80px;
  border-top: 1px solid var(--g-divider);
  border-bottom: 1px solid var(--g-divider);
}
.market-band-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}
.market-band-head h2 {
  font-family: var(--g-font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--g-ink);
  margin: 6px 0 0;
  line-height: 1.25;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.market-stat {
  position: relative;
  background: var(--g-bg-alt);
  border: 1px solid var(--g-divider);
  border-radius: var(--g-r-lg);
  padding: 28px 26px;
  transition: all 0.2s;
}
.market-stat:hover {
  border-color: var(--g-accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,212,200,0.18);
}
.market-v {
  font-family: var(--g-font-display);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--g-accent-cyan);
  line-height: 1.05;
}
.market-l {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--g-ink);
  margin-top: 10px;
}
.market-d {
  font-size: 13.5px;
  color: var(--g-text-2);
  line-height: 1.55;
  margin-top: 8px;
}
.market-d b { color: var(--g-ink); }
.market-cite {
  display: inline-block;
  font-family: var(--g-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--g-accent-cyan);
  margin-top: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.market-cite:hover { color: var(--g-primary-700); text-decoration: underline; }

/* Urgency styling for the EU AI Act stat — subtle, not alarmist */
.market-stat-urgent {
  border-left: 3px solid var(--g-accent-cyan);
}
.market-stat-urgent .market-v {
  font-size: clamp(28px, 3.2vw, 34px);
}

@media (max-width: 820px) {
  .market-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 1.9 — Real screenshot in hero + The Problem band + state pills
   ============================================================ */

/* ---- Real product screenshot in hero ---- */
.hero-shot {
  margin: 56px auto 24px;
  max-width: 1100px;
}
.hero-shot-frame {
  background: var(--g-surface);
  border-radius: var(--g-r-xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(0,212,200,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-shot-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--g-bg-alt);
  border-bottom: 1px solid var(--g-divider);
}
.hero-shot-dots {
  display: inline-flex; gap: 6px;
}
.hero-shot-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--g-border);
}
.hero-shot-dots span:first-child { background: #ff5f57; }
.hero-shot-dots span:nth-child(2) { background: #febc2e; }
.hero-shot-dots span:nth-child(3) { background: #28c840; }
.hero-shot-url {
  flex: 1; text-align: center;
  font-family: var(--g-font-mono);
  font-size: 12px;
  color: var(--g-text-3);
}
.hero-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-shot-cap {
  font-family: var(--g-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8FA8C5;
  text-align: center;
  margin-top: 12px;
  text-transform: uppercase;
}
/* The original animated `.shot` block gets a tighter top margin since the
   real screenshot is now above it */
.hero-dark .shot {
  margin-top: 18px;
}

/* ---- The Problem section ---- */
.problem-section {
  background: var(--g-bg);
  padding: 80px 0;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.problem-card {
  position: relative;
  background: var(--g-bg-alt);
  border: 1px solid var(--g-divider);
  border-radius: var(--g-r-lg);
  padding: 22px 20px 20px;
  transition: all 0.2s;
}
.problem-card:hover {
  border-color: var(--g-accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,212,200,0.18);
}
.problem-num {
  font-family: var(--g-font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--g-accent-cyan);
  line-height: 1;
  margin-bottom: 14px;
}
.problem-q {
  font-family: var(--g-font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--g-ink);
  line-height: 1.3;
  margin: 0 0 8px;
}
.problem-a {
  font-size: 13px;
  color: var(--g-text-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1080px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---- Compiled / Marked applied / Verified states (inside planes section) ---- */
.planes-states {
  margin-top: 22px;
  background: rgba(0,212,200,0.04);
  border: 1px solid rgba(0,212,200,0.18);
  border-radius: var(--g-r-lg);
  padding: 22px 24px;
}
.planes-states-h {
  font-family: var(--g-font-display);
  font-size: 14.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}
.planes-states-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  gap: 10px;
  align-items: stretch;
}
.state-pill {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--g-r-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.state-pill i {
  color: var(--g-accent-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.state-pill .state-name {
  font-family: var(--g-font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.state-pill .state-d {
  font-size: 12px;
  color: #B0C5DE;
  line-height: 1.45;
}
.state-compiled { border-left: 3px solid var(--g-accent-cyan); }
.state-applied  { border-left: 3px solid var(--g-accent-cyan); }
.state-verified { border-left: 3px solid var(--g-accent-cyan); }
.state-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--g-accent-cyan);
}
.state-arrow i { font-size: 22px; }
.planes-states-foot {
  margin-top: 14px;
  font-size: 12.5px;
  color: #8FA8C5;
  text-align: center;
}
.planes-states-foot b { color: #FF9B6B; font-weight: 600; }

@media (max-width: 820px) {
  .planes-states-row { grid-template-columns: 1fr; }
  .state-arrow { transform: rotate(90deg); padding: 2px 0; }
}


/* ============================================================
   PHASE 1.10 — Why Govern360: 4-card Discover/Assess/Govern/Remediate
   ============================================================ */
.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.vcard-step {
  position: relative;
}
.vcard-step-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--g-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--g-text-3);
}
.vcard-step h3 {
  font-family: var(--g-font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--g-ink);
  letter-spacing: -0.01em;
}
.vcard-step p {
  font-size: 13.5px;
  color: var(--g-text-2);
  line-height: 1.55;
  margin: 0;
}
.vcard-step p em {
  font-style: normal;
  font-weight: 600;
  color: var(--g-accent-cyan);
}
@media (max-width: 1080px) {
  .cards4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards4 { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 1.11 — Innovation / Patent-pending section
   ============================================================ */
.innovation-section {
  background: var(--g-bg);
  padding: 80px 0;
  position: relative;
}
.innovation-section .sec-sub {
  max-width: 760px;
  margin: 0 auto;
}
.innovation-section .sec-sub strong { color: var(--g-ink); }

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.innovation-card {
  position: relative;
  background: var(--g-bg-alt);
  border: 1px solid var(--g-divider);
  border-radius: var(--g-r-lg);
  padding: 28px 28px 24px;
  transition: all 0.2s;
}
.innovation-card:hover {
  border-color: var(--g-accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(0,212,200,0.18);
}
.innovation-badge {
  display: inline-block;
  font-family: var(--g-font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--g-accent-cyan);
  background: rgba(0,212,200,0.08);
  border: 1px solid rgba(0,212,200,0.22);
  padding: 4px 10px;
  border-radius: var(--g-r-pill);
  margin-bottom: 14px;
}
.innovation-ic {
  width: 40px;
  height: 40px;
  border-radius: var(--g-r-md);
  background: rgba(0,212,200,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-left: 8px;
  vertical-align: middle;
}
.innovation-ic i {
  color: var(--g-accent-cyan);
  font-size: 22px;
}
.innovation-h {
  font-family: var(--g-font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--g-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.innovation-p {
  font-size: 13.5px;
  color: var(--g-text-2);
  line-height: 1.6;
  margin: 0 0 14px;
}
.innovation-p em {
  font-style: italic;
  font-weight: 600;
  color: var(--g-accent-cyan);
}
.innovation-p b { color: #f57c00; font-weight: 600; }
.innovation-tech {
  font-family: var(--g-font-mono);
  font-size: 11px;
  color: var(--g-text-3);
  padding-top: 12px;
  border-top: 1px solid var(--g-divider);
}
.innovation-tech em {
  font-style: normal;
  color: var(--g-text-2);
  font-weight: 600;
}

.innovation-foot {
  margin-top: 28px;
  background: var(--g-bg-alt);
  border: 1px solid var(--g-divider);
  border-left: 3px solid var(--g-accent-cyan);
  border-radius: var(--g-r-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--g-text-2);
  line-height: 1.6;
}
.innovation-foot i {
  color: var(--g-accent-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.innovation-foot b { color: var(--g-ink); }

@media (max-width: 820px) {
  .innovation-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PHASE 1.12 — "by AIVONS" parent tagline (nav + footer brand)
   ============================================================ */

/* When the brand uses the stacked variant, the wordmark itself becomes a
   2-line column: product name on top, parent line below. The logo+wordmark
   row stays the same height; only the wordmark internal layout changes. */
.nav-brand-stacked { align-items: center; }
.nav-brand-lines {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--g-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--g-text);
  line-height: 1.1;
}
.nav-brand-parent {
  font-family: var(--g-font-mono);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--g-text-3);
  line-height: 1;
  margin-top: 1px;
  /* Cyan accent for the word AIVONS — subtle but ties to brand */
}
.nav-brand-parent::after {
  /* No-op — kept in case we want to add a separator later */
}

/* In the footer (slightly larger logo context), allow same sizing */
.foot-brand .nav-brand-name { font-size: 18px; }
.foot-brand .nav-brand-parent { font-size: 9.5px; }

/* On the very narrow mobile breakpoint, "by AIVONS" stays but compacts slightly */
@media (max-width: 480px) {
  .nav-brand-name { font-size: 16px; }
  .nav-brand-parent { font-size: 9px; }
}

/* ============================================================
   PHASE 1.13 — Honest security posture statement
   ============================================================ */
.sec-posture {
  margin-top: 28px;
  background: var(--g-surface);
  border: 1px solid var(--g-divider);
  border-left: 3px solid var(--g-accent-cyan);
  border-radius: var(--g-r-md);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--g-text-2);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.sec-posture i {
  color: var(--g-accent-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.sec-posture b { color: var(--g-ink); font-weight: 600; }
