/* ===========================================================================
   AlertRanger — SaaS Sentinel design system (v2, Bento-structured)
   All design tokens are centralized here as CSS custom properties.
   =========================================================================== */
:root{
  /* Brand */
  --navy:#223355;            /* Deep Navy — brand / primary surfaces */
  --navy-darkest:#0a1e3f;    /* Darkest primary — gradients, footer */
  --gold:#DDBB55;            /* Alert Gold — conversion CTA + critical status ONLY */
  --gold-dark:#775e00;       /* dark gold text on light surfaces */

  /* Neutrals / surfaces */
  --white:#ffffff;
  --surface-muted:#F1F5F9;
  --surface-tint:#F8FAFC;
  --border-slate:#E2E8F0;
  --border-input:#CBD5E1;
  --text-main:#0F172A;
  --text-muted:#64748B;
  --on-navy:#ffffff;
  --on-navy-muted:#b9c4da;

  /* Status */
  --success:#10B981; --success-soft:#e7f8f1; --success-ink:#0f7a5a;
  --error:#EF4444;   --error-soft:#fdeaea;   --error-ink:#b42318;

  /* Radius / spacing / elevation */
  --r-sm:4px; --r-lg:8px; --r-full:9999px;
  --container:1280px; --gutter:24px; --section-gap:80px;
  --shadow-surface:0 4px 20px rgba(34,51,85,.05);
  --shadow-elevated:0 10px 30px rgba(34,51,85,.12);

  /* Type */
  --font-display:'Hanken Grotesk',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-mono:'JetBrains Mono',ui-monospace,SFMono-Regular,Menlo,monospace;

  --topbar-h:38px;
  --header-h:96px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 12px)}
body{margin:0;font-family:var(--font-body);color:var(--text-main);background:var(--white);font-size:16px;line-height:1.5;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4{font-family:var(--font-display);margin:0;font-weight:800;letter-spacing:-.02em;color:var(--text-main)}
p{margin:0}
:focus-visible{outline:3px solid var(--gold);outline-offset:2px;border-radius:var(--r-sm)}

.wrap{max-width:var(--container);margin:0 auto;padding:0 var(--gutter);width:100%}
.section{padding:var(--section-gap) 0}
.section-muted{background:var(--surface-muted)}
.section-head{max-width:680px;margin:0 auto 48px;text-align:center}
.section-head .eyebrow{margin-bottom:14px}
.section-head h2{font-size:clamp(28px,3.4vw,40px);line-height:1.1}
.section-head p{color:var(--text-muted);font-size:18px;margin-top:14px;line-height:1.55}

.eyebrow{display:inline-block;font-family:var(--font-mono);font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted)}
.eyebrow.on-dark{color:var(--gold)}

/* ===== Buttons ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font-family:var(--font-display);font-weight:700;font-size:16px;line-height:24px;padding:12px 22px;border-radius:var(--r-sm);border:1px solid transparent;cursor:pointer;transition:transform .12s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;white-space:nowrap}
.btn:hover{transform:translateY(-1px)}
.btn-lg{font-size:17px;padding:15px 28px}
.btn-cta{background:var(--gold);color:var(--navy);box-shadow:0 6px 18px rgba(221,187,85,.35)}
.btn-cta:hover{background:#cdaa3f}
.btn-primary{background:var(--navy);color:var(--white)}
.btn-primary:hover{background:var(--navy-darkest)}
.btn-ghost{background:transparent;border-color:var(--navy);color:var(--navy)}
.btn-ghost:hover{background:var(--surface-muted)}
.btn-ghost-light{background:transparent;border-color:rgba(255,255,255,.5);color:var(--white)}
.btn-ghost-light:hover{background:rgba(255,255,255,.1)}

/* ===== Chips ===== */
.chip{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--font-mono);font-size:12px;font-weight:600;letter-spacing:.03em;padding:5px 12px;border-radius:var(--r-full)}
.chip-success{background:var(--success-soft);color:var(--success-ink)}
.live-dot{width:8px;height:8px;border-radius:50%;background:var(--success);box-shadow:0 0 0 0 rgba(16,185,129,.6);animation:pulse 2s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(16,185,129,.5)}70%{box-shadow:0 0 0 8px rgba(16,185,129,0)}100%{box-shadow:0 0 0 0 rgba(16,185,129,0)}}

/* ===== Top utility bar ===== */
.topbar{background:var(--navy-darkest);color:var(--on-navy-muted);border-bottom:1px solid rgba(255,255,255,.06)}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;height:var(--topbar-h);font-family:var(--font-mono);font-size:11.5px;letter-spacing:.04em}
.topbar-tag{text-transform:uppercase;opacity:.85}
.topbar-live{display:inline-flex;align-items:center;gap:.5rem;color:#dfe7f4}

/* ===== Header (light) ===== */
.nav{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--border-slate);transition:box-shadow .2s ease}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:var(--header-h);transition:height .2s ease}
.nav-logo{display:flex;align-items:center;gap:.6rem}
.nav-logo img{height:72px;width:72px;border-radius:var(--r-lg);transition:height .2s ease,width .2s ease}
.nav-logo .wordmark{font-family:var(--font-display);color:var(--text-main);font-weight:800;font-size:1.95rem;letter-spacing:-.02em;transition:font-size .2s ease}
.nav-links{display:flex;align-items:center;gap:1.8rem;list-style:none;margin:0;padding:0}
.nav-links a{color:var(--text-muted);font-size:15px;font-weight:500;white-space:nowrap;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--navy)}
.nav-actions{display:flex;align-items:center;gap:1.25rem}
.nav-signin{color:var(--text-main);font-size:15px;font-weight:600;white-space:nowrap;transition:color .2s}
.nav-signin:hover{color:var(--navy)}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.4rem}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--navy);margin:5px 0;transition:.3s}
body.scrolled .nav{box-shadow:0 4px 20px rgba(34,51,85,.08)}
body.scrolled .nav-inner{height:66px}
body.scrolled .nav-logo img{height:48px;width:48px}
body.scrolled .nav-logo .wordmark{font-size:1.4rem}

/* ===== Hero (light, two-column) ===== */
.hero{position:relative;overflow:hidden;background:linear-gradient(180deg,#fff 0%,var(--surface-tint) 100%)}
.hero-grid{display:grid;grid-template-columns:1fr 1.08fr;gap:56px;align-items:center;padding:72px 0 64px}
.live-pill{display:inline-flex;align-items:center;gap:.5rem;background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-full);padding:7px 14px;font-family:var(--font-mono);font-size:11.5px;letter-spacing:.04em;color:var(--text-muted);margin-bottom:22px;box-shadow:var(--shadow-surface)}
.hero h1{font-size:clamp(38px,4.8vw,54px);line-height:1.05;margin-bottom:18px;color:var(--text-main)}
.hero h1 em{color:var(--gold);font-style:normal;display:block}
.hero-sub{font-size:clamp(17px,1.7vw,19px);color:var(--text-muted);max-width:520px;margin-bottom:24px;line-height:1.55}
.hero-checks{list-style:none;margin:0 0 28px;padding:0;display:flex;flex-direction:column;gap:12px}
.hero-checks li{display:flex;align-items:center;gap:.6rem;font-size:15px;color:var(--text-main);font-weight:500}
.hero-checks svg{width:20px;height:20px;color:var(--success);flex:none}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

/* ===== Broadcast Console (animated) ===== */
.hero-visual{position:relative}
.console{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);box-shadow:var(--shadow-elevated);overflow:hidden;font-family:var(--font-mono)}
.console-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid var(--border-slate);background:var(--surface-tint)}
.console-title{display:inline-flex;align-items:center;gap:8px;font-family:var(--font-display);font-weight:700;font-size:15px;color:var(--text-main)}
.console-logo{width:24px;height:24px;border-radius:5px;display:block}
.console-title em{font-style:normal;color:var(--text-muted);font-family:var(--font-mono);font-size:12px;font-weight:600}
.console-status{display:inline-flex;align-items:center;gap:.45rem;font-size:11px;letter-spacing:.05em;color:var(--success-ink)}
.console-cols{display:grid;grid-template-columns:52px 76px 1fr 40px 104px;gap:10px;padding:12px 18px;font-size:10.5px;letter-spacing:.06em;color:var(--text-muted);border-bottom:1px solid var(--border-slate)}
.console-cols span:nth-child(4),.console-cols span:last-child{text-align:right}
.console-feed{min-height:230px}
.crow{display:grid;grid-template-columns:52px 76px 1fr 40px 104px;gap:10px;align-items:center;padding:12px 18px;border-bottom:1px solid var(--surface-muted);font-size:12px;animation:rowIn .4s ease}
@keyframes rowIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
.c-time{color:var(--text-muted);font-size:11px}
.ch-pill{display:inline-block;font-size:10px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;padding:3px 7px;border-radius:var(--r-sm)}
.ch-sms{background:#e6effe;color:#1d4ed8}
.ch-email{background:#fbf0cf;color:#8a6a13}
.ch-whatsapp{background:#e7f7ec;color:#1c7a3e}
.c-msg{color:var(--text-main);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.c-rcv{color:var(--text-muted);text-align:right;font-variant-numeric:tabular-nums}
.c-status{font-size:10.5px;letter-spacing:.03em;text-align:right;color:var(--text-muted)}
.c-status.delivered{color:var(--success-ink)}
.c-status.partial{color:#b45309}
.crow.sending .c-status{color:var(--gold-dark)}
.console-foot{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border-top:1px solid var(--border-slate);background:var(--surface-tint);font-size:11px;letter-spacing:.04em;color:var(--text-muted)}
.console-foot-ok{color:var(--success-ink);font-weight:600}

/* ===== Hero stats row ===== */
.hero-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:32px;padding-top:32px;border-top:1px solid var(--border-slate)}

/* Desktop: hero fills the viewport with content distributed (no dead whitespace) */
@media(min-width:1001px){
  .hero{min-height:calc(100svh - var(--header-h));display:flex;align-items:stretch}
  .hero > .wrap{display:flex;flex-direction:column;padding-top:40px;padding-bottom:36px}
  .hero-grid{flex:1 1 auto;align-content:center;padding:8px 0}
  .hero-stats{flex:0 0 auto;margin-top:0}
}
.hstat{display:flex;flex-direction:column;gap:5px;padding-left:18px;border-left:3px solid var(--gold)}
.hstat .num{font-family:var(--font-display);font-size:30px;font-weight:800;color:var(--navy);line-height:1}
.hstat .lbl{font-family:var(--font-mono);font-size:11.5px;letter-spacing:.04em;color:var(--text-muted)}

/* ===== Demo video modal ===== */
.modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:24px}
.modal[hidden]{display:none}
.modal-backdrop{position:absolute;inset:0;background:rgba(10,30,63,.6);backdrop-filter:blur(2px)}
.modal-box{position:relative;z-index:1;background:#0e1b33;border-radius:var(--r-lg);box-shadow:var(--shadow-elevated);max-width:min(92vw,880px);overflow:hidden;line-height:0}
.modal-box video{display:block;width:100%;height:auto;max-height:84vh;background:#0e1b33}
.modal-close{position:absolute;top:-14px;right:-14px;z-index:2;width:36px;height:36px;border-radius:var(--r-full);border:none;background:var(--white);color:var(--navy);font-size:15px;cursor:pointer;box-shadow:var(--shadow-elevated)}
.modal-close:hover{background:var(--surface-muted)}
@media(max-width:767px){.modal-close{top:8px;right:8px}}

/* ===== Product preview ===== */
.preview-stage{position:relative;display:flex;justify-content:center;align-items:flex-end;gap:0;padding:8px 0}
.phone{position:relative;z-index:2;width:300px;max-width:80%;height:600px;border:10px solid #0e1b33;border-radius:42px;overflow:hidden;box-shadow:var(--shadow-elevated);background:#0e1b33}
.phone img{width:100%;height:100%;object-fit:cover;object-position:50% 0}
.phone-2,.phone-3{position:absolute;z-index:1;width:188px;height:392px;border:8px solid #0e1b33;border-radius:32px;overflow:hidden;box-shadow:var(--shadow-elevated);background:#0e1b33}
.phone-2 img,.phone-3 img{width:100%;height:100%;object-fit:cover;object-position:50% 0}
.phone-2{left:8%;bottom:40px;transform:rotate(-5deg)}
.phone-3{right:8%;bottom:40px;transform:rotate(5deg)}
.preview-chip{position:absolute;z-index:3;top:30px;left:50%;transform:translateX(-50%);background:#fff;box-shadow:var(--shadow-elevated);color:var(--success-ink)}

/* ===== Mobile app showcase ===== */
.app-showcase{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;align-items:center}
.app-showcase-phone{display:flex;justify-content:center}
.app-showcase-copy .eyebrow{margin-bottom:14px}
.app-showcase-copy h2{font-size:clamp(28px,3.4vw,40px);line-height:1.1;margin-bottom:16px}
.app-showcase-copy p{font-size:17px;color:var(--text-muted);line-height:1.6;margin-bottom:28px}
.app-badges{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.app-badges a{display:block}
.app-badges img{width:140px;height:auto;display:block}

/* ===== Cards ===== */
.card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);box-shadow:var(--shadow-surface);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-elevated);border-color:#cdd7e5}

/* ===== Capabilities section ===== */
.cap-head{margin-bottom:40px}
.cap-head h2{font-size:clamp(28px,3.4vw,40px);line-height:1.1;max-width:520px;margin-top:10px}
.cap-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.cap-card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);padding:26px 28px;box-shadow:var(--shadow-surface)}
.cap-card-tag{display:inline-flex;align-items:center;gap:7px;margin-bottom:12px}
.cap-card-tag svg{width:14px;height:14px;color:var(--text-muted);flex:none}
.cap-card-tag span{font-family:var(--font-mono);font-size:10px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted)}
.cap-card h3{font-size:17px;margin-bottom:8px}
.cap-card p{font-size:14px;color:var(--text-muted);line-height:1.6}

/* ===== Compliance spotlight band ===== */
.compliance{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--navy) 0%,var(--navy-darkest) 100%);color:var(--on-navy)}
.compliance::before{content:"";position:absolute;inset:0;opacity:.5;background-image:radial-gradient(rgba(255,255,255,.05) 1px,transparent 1px);background-size:28px 28px;mask-image:radial-gradient(circle at 30% 30%,#000,transparent 72%)}
.compliance-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.compliance .eyebrow{color:var(--gold)}
.compliance h2{font-size:clamp(26px,3.2vw,38px);line-height:1.1;margin:14px 0 14px}
.compliance>.compliance-inner p.lead{color:var(--on-navy-muted);font-size:17px;line-height:1.6;margin-bottom:24px}
.compliance .btn{margin-top:4px}
.comp-points{display:flex;flex-direction:column;gap:14px}
.comp-point{display:flex;gap:14px;align-items:flex-start;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:var(--r-lg);padding:18px 20px}
.comp-point .ck{width:34px;height:34px;flex:none;border-radius:var(--r-sm);background:rgba(221,187,85,.16);display:flex;align-items:center;justify-content:center}
.comp-point .ck svg{width:18px;height:18px;color:var(--gold)}
.comp-point h4{color:var(--white);font-size:15.5px;margin-bottom:3px}
.comp-point p{color:var(--on-navy-muted);font-size:13.5px;line-height:1.5}

/* ===== 6-card grid ===== */
.grid6{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.gcard{padding:24px 22px}
.gcard .gicon{width:44px;height:44px;border-radius:var(--r-sm);background:var(--surface-muted);border:1px solid var(--border-slate);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.gcard .gicon svg{width:22px;height:22px;color:var(--navy)}
.gcard h3{font-size:17px;margin-bottom:6px}
.gcard p{color:var(--text-muted);font-size:14px;line-height:1.55}

/* ===== How it works (3-step cards) ===== */
.how-head{margin-bottom:36px}
.how-head h2{font-size:clamp(26px,3vw,36px);line-height:1.1;margin-top:10px}
.steps3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.step-card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);padding:24px 26px 28px;box-shadow:var(--shadow-surface)}
.step-card-top{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:14px}
.step-badge{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border:1px solid var(--border-slate);border-radius:var(--r-sm);font-family:var(--font-mono);font-size:12px;font-weight:600;color:var(--text-muted);flex:none}
.step-ghost{font-family:var(--font-display);font-size:48px;font-weight:800;color:var(--border-slate);line-height:1;letter-spacing:-.02em;user-select:none}
.step-card h3{font-size:16px;margin-bottom:8px}
.step-card>p{font-size:13.5px;color:var(--text-muted);line-height:1.6;margin-bottom:16px}
.step-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:7px}
.step-list li{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--text-muted)}
.step-list li::before{content:"›";color:var(--gold);font-weight:700;font-size:15px;line-height:1;flex:none}

/* ===== Use cases ===== */
.uc-head{margin-bottom:36px}
.uc-head h2{font-size:clamp(26px,3vw,36px);line-height:1.1;margin-top:10px}
.uc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.uc-card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);padding:22px 20px 24px;box-shadow:var(--shadow-surface)}
.uc-bar{width:28px;height:3px;background:var(--gold);border-radius:2px;margin-bottom:12px}
.uc-cat{font-family:var(--font-mono);font-size:9.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:6px}
.uc-card h3{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:12px}
.uc-card ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}
.uc-card li{display:flex;align-items:center;gap:7px;font-size:13px;color:var(--text-muted)}
.uc-card li::before{content:"›";color:var(--gold);font-weight:700;font-size:14px;flex:none}

/* ===== Testimonials ===== */
.testi-head{margin-bottom:36px}
.testi-head h2{font-size:clamp(26px,3vw,36px);line-height:1.1;margin-top:10px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testi-card{padding:26px 24px}
.testi-stars{color:var(--gold);font-size:15px;letter-spacing:2px;margin-bottom:14px}
.testi-card .quote{font-size:15px;line-height:1.65;color:var(--text-main);margin-bottom:18px}
.testi-author{display:flex;align-items:center;gap:.7rem}
.testi-avatar{width:40px;height:40px;border-radius:var(--r-full);background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-weight:700;font-size:14px}
.testi-name{font-weight:700;font-size:14.5px;color:var(--text-main)}
.testi-role{font-size:13px;color:var(--text-muted)}

/* ===== Final CTA band ===== */
.cta-card{background:var(--navy);border-radius:var(--r-lg);padding:44px 52px;display:flex;align-items:center;justify-content:space-between;gap:48px;color:var(--on-navy)}
.cta-copy .eyebrow{color:var(--gold)}
.cta-copy h2{font-size:clamp(22px,2.8vw,36px);line-height:1.12;color:#fff;margin:10px 0 12px}
.cta-copy p{font-size:15px;line-height:1.6;color:var(--on-navy-muted);margin:0;max-width:480px}
.cta-action{display:flex;flex-direction:column;align-items:center;gap:10px;flex-shrink:0}
.cta-signin{font-size:13px;color:rgba(255,255,255,.5);white-space:nowrap;margin:0}
.cta-signin a{color:rgba(255,255,255,.72);text-decoration:underline;transition:color .15s}
.cta-signin a:hover{color:#fff}

/* ===== Footer ===== */
.site-footer{background:var(--navy);color:var(--on-navy-muted);padding:48px 0 0}
.footer-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:36px;padding-bottom:44px}
.footer-logo{display:flex;align-items:center;gap:.5rem;margin-bottom:12px}
.footer-logo img{height:32px;width:32px;border-radius:var(--r-sm)}
.footer-logo span{font-family:var(--font-display);color:var(--white);font-weight:800;font-size:1rem}
.footer-brand p{font-size:13px;line-height:1.6;max-width:260px;margin-bottom:16px}
.footer-store-chips{display:flex;gap:8px;flex-wrap:wrap}
.store-chip{display:inline-flex;align-items:center;gap:5px;font-size:12px;color:rgba(255,255,255,.65);border:1px solid rgba(255,255,255,.18);border-radius:6px;padding:5px 10px;text-decoration:none;transition:border-color .15s,color .15s}
.store-chip:hover{color:#fff;border-color:rgba(255,255,255,.45)}
.store-chip svg{flex:none;opacity:.8}
.footer-col h5{font-family:var(--font-mono);color:rgba(255,255,255,.4);font-size:10px;letter-spacing:.1em;text-transform:uppercase;margin:0 0 14px}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.footer-col li{font-size:13.5px}
.footer-col a{color:rgba(255,255,255,.65);text-decoration:none;transition:color .15s}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:18px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom span{font-size:12px;color:rgba(255,255,255,.4)}
.footer-compliance{font-family:var(--font-mono);letter-spacing:.06em}

/* ===== Forms (consent + contact) ===== */
.form-wrap{max-width:600px;margin:0 auto;padding:56px var(--gutter) 72px}
.form-card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);box-shadow:var(--shadow-elevated);padding:40px}
.form-card h1{font-size:30px;line-height:1.15;margin-bottom:10px}
.form-card h1 span{color:var(--gold-dark)}
.form-intro{color:var(--text-muted);font-size:15px;line-height:1.6;margin-bottom:28px}
.form-intro a{color:var(--gold-dark);font-weight:600}
.field{margin-bottom:20px}
.field label{display:block;font-family:var(--font-body);font-weight:600;font-size:12px;color:var(--text-main);margin-bottom:7px}
.field .req{color:var(--error)}
.field .opt{color:var(--text-muted);font-weight:500}
.field input,.field textarea{width:100%;padding:12px 14px;border:1px solid var(--border-input);border-radius:var(--r-sm);font-size:15px;font-family:var(--font-body);color:var(--text-main);background:var(--white);box-sizing:border-box;transition:border-color .15s,box-shadow .15s}
.field textarea{resize:vertical;min-height:120px;line-height:1.5}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--navy);box-shadow:0 0 0 3px rgba(34,51,85,.1)}
.field small{display:block;color:var(--text-muted);font-size:12.5px;margin-top:6px}
.consent-check{display:flex;gap:.7rem;align-items:flex-start;background:var(--surface-muted);border:1px solid var(--border-slate);border-radius:var(--r-sm);padding:16px;margin:6px 0 22px;font-size:13.5px;line-height:1.55;color:var(--text-main);cursor:pointer}
.consent-check input{flex:none;width:20px;height:20px;margin-top:1px;accent-color:var(--navy);cursor:pointer}
.form-submit{width:100%}
.form-msg{display:none;margin-top:16px;font-size:14px;text-align:center;font-weight:600}
.form-msg.ok{color:var(--success-ink)}
.form-msg.err{color:var(--error-ink)}
.form-fine{margin-top:22px;font-size:12px;color:var(--text-muted);line-height:1.6}
.form-fine a{color:var(--gold-dark);font-weight:600}

/* ===== Legal pages ===== */
.legal{max-width:780px;margin:0 auto;padding:56px var(--gutter)}
.legal h1{font-size:34px;margin-bottom:8px}
.legal .updated{font-family:var(--font-mono);color:var(--text-muted);font-size:13px;margin-bottom:36px}
.legal h2{font-size:22px;margin:36px 0 12px}
.legal p,.legal li{color:var(--text-muted);font-size:15px;line-height:1.7;margin-bottom:14px}
.legal ul{padding-left:20px}
.legal a{color:var(--gold-dark);font-weight:600}

/* ===== Social proof strip ===== */
.sp-strip{background:var(--surface-muted);border-top:1px solid var(--border-slate);border-bottom:1px solid var(--border-slate);padding:13px 0}
.sp-inner{display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:center}
.sp-label{font-family:var(--font-mono);font-size:10px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-right:4px}
.sp-inner>span:not(.sp-label):not(.sp-dot){font-size:13px;color:var(--text-muted)}
.sp-dot{color:var(--gold);font-size:12px;line-height:1}

/* ===== Inline CTA ===== */
.inline-cta{background:var(--navy);padding:24px 0}
.inline-cta-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.inline-cta-inner p{color:rgba(255,255,255,.85);font-size:15px;font-weight:600;margin:0}

/* ===== Pricing teaser ===== */
.price-head{margin-bottom:36px}
.price-head h2{font-size:clamp(26px,3vw,36px);line-height:1.1;margin-top:10px}
.price-head>p{font-size:16px;color:var(--text-muted);margin-top:8px}
.price-card{background:var(--white);border:1px solid var(--border-slate);border-radius:var(--r-lg);padding:40px 44px;display:flex;align-items:center;gap:52px;box-shadow:var(--shadow-elevated)}
.price-card-left{flex-shrink:0;min-width:180px}
.price-label{font-family:var(--font-mono);font-size:10px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);margin-bottom:10px}
.price-amount{font-family:var(--font-display);font-size:56px;font-weight:800;color:var(--navy);line-height:1;margin-bottom:6px}
.price-amount span{font-size:18px;font-weight:500;color:var(--text-muted)}
.price-card-left>p{font-size:13px;color:var(--text-muted);margin-bottom:20px}
.price-features{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:12px 40px;flex:1}
.price-features--sm{grid-template-columns:1fr;gap:16px 0}
.price-features li{display:flex;align-items:center;gap:9px;font-size:14px;color:var(--text-main)}
.price-features li::before{content:"✓";color:var(--gold);font-weight:700;font-size:14px;flex:none}
.price-link-out{text-align:center;margin-top:18px;font-size:14px;color:var(--text-muted)}
.price-link-out a{color:var(--navy);font-weight:600;text-decoration:underline;transition:opacity .15s}
.price-link-out a:hover{opacity:.75}

/* ===== FAQ ===== */
.faq-head{margin-bottom:36px}
.faq-head h2{font-size:clamp(26px,3vw,36px);line-height:1.1;margin-top:10px}
.faq-list{max-width:720px}
.faq-item{border-bottom:1px solid var(--border-slate)}
.faq-item:first-child{border-top:1px solid var(--border-slate)}
.faq-item summary{list-style:none;padding:18px 0;font-size:15px;font-weight:600;color:var(--text-main);cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;user-select:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:22px;color:var(--text-muted);font-weight:300;flex-shrink:0;line-height:1}
.faq-item[open]>summary::after{content:"−"}
.faq-item p{font-size:14.5px;color:var(--text-muted);line-height:1.65;padding-bottom:18px;margin:0}

/* ===== Scrolled nav CTA ===== */
.scrolled .nav-actions .btn-cta{box-shadow:0 0 0 3px rgba(221,187,85,.35),0 2px 8px rgba(0,0,0,.12)}

/* ===== Motion ===== */
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none;transition:none}
}

/* ===== Responsive ===== */
@media(max-width:1279px){:root{--gutter:32px;--section-gap:64px}
}
@media(max-width:1000px){
  .nav-links,.nav-actions .btn,.nav-signin{display:none}
  .nav-toggle{display:block}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--white);padding:24px var(--gutter);gap:18px;border-bottom:1px solid var(--border-slate);box-shadow:var(--shadow-elevated)}
  .hero-grid{grid-template-columns:1fr;gap:36px;padding:48px 0 48px}
  .feature-blocks,.compliance-inner{grid-template-columns:1fr;gap:32px}
  .grid6,.uc-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:767px){
  :root{--gutter:20px;--section-gap:56px}
  .app-showcase{grid-template-columns:1fr;gap:36px}
  .app-showcase-phone{order:2}
  .hero h1{font-size:clamp(32px,8vw,40px)}
  .hero-stats{grid-template-columns:repeat(2,1fr);gap:22px;margin-top:32px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .btn{width:100%}
  .console-cols,.crow{grid-template-columns:42px 60px 1fr 28px 78px;gap:7px;padding-left:14px;padding-right:14px}
  .c-status,.console-cols span:last-child{font-size:9px}
  .ch-pill{font-size:9px;padding:2px 5px}
  .grid6,.uc-grid,.steps3,.testi-grid,.cap-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px}
  .footer-brand{grid-column:1/-1}
  .phone{width:260px;height:520px}
  .phone-2,.phone-3{display:none}
  .form-card{padding:28px 22px}
  .cta-card{flex-direction:column;padding:32px 24px;text-align:center}
  .cta-copy p{max-width:100%}
  .cta-action{width:100%}
  .cta-action .btn{width:100%}
  .price-card{flex-direction:column;padding:32px 24px;gap:28px}
  .price-features{grid-template-columns:1fr}
  .inline-cta-inner{flex-direction:column;text-align:center}
  .c-msg,.console-cols span:nth-child(3){display:none}
  .console-cols,.crow{grid-template-columns:42px 60px 28px 78px}
}
@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .sp-inner{gap:8px}
}
