:root { --maxw: 1100px; }

[data-theme="dark"] {
  --bg: #0B0F16;
  --bg-soft: #0E1420;
  --surface: #131A25;
  --surface-2: #182233;
  --text: #DBE3EE;
  --muted: #8D9BAD;
  --heading: #F4F7FB;
  --border: #1F2937;
  --border-strong: #35455C;
  --accent: #FFB224;            /* links, eyebrows, numerals */
  --accent-fill: #FFB224;       /* button backgrounds */
  --accent-fill-hover: #FFC24D;
  --on-accent: #1A1204;
  --accent-soft: rgba(255, 178, 36, 0.12);
  --band: #0E1420;
  --band-2: #182236;
  --band-text: #E8EDF5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(11, 15, 22, 0.85);
}

[data-theme="light"] {
  --bg: #F5F7FA;
  --bg-soft: #EEF2F7;
  --surface: #FFFFFF;
  --surface-2: #EEF2F7;
  --text: #26303D;
  --muted: #5B6878;
  --heading: #101722;
  --border: #D9E0E9;
  --border-strong: #B3BFCE;
  --accent: #A66A00;
  --accent-fill: #FFB224;
  --accent-fill-hover: #E89C0F;
  --on-accent: #1A1204;
  --accent-soft: rgba(255, 178, 36, 0.16);
  --band: #101722;
  --band-2: #1B2A44;
  --band-text: #E8EDF5;
  --shadow: 0 10px 30px rgba(16, 23, 34, 0.12);
  --header-bg: rgba(245, 247, 250, 0.85);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: "Barlow", "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4,
.eyebrow, .brand, .wm,
.score-cell b {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  color: var(--heading);
  line-height: 1.12;
}
h1, h2 {
  text-transform: uppercase;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
h4 { font-weight: 600; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.lead { font-size: 18px; color: var(--muted); max-width: 680px; font-family: inherit; }

.scoreboard b, .vs-count b, .vc-raised b { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 10px; font-weight: 600; font-size: 15.5px;
  cursor: pointer; border: none; transition: all .18s ease; white-space: nowrap;
  font-family: "Barlow", "Segoe UI", system-ui, sans-serif;
}
.btn svg { flex: none; }
.btn-primary { background: var(--accent-fill); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-fill-hover); transform: translateY(-1px); box-shadow: 0 6px 18px var(--accent-soft); }
.btn-ghost { background: var(--surface); color: var(--heading); border: 1px solid var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-band { background: transparent; color: var(--band-text); border: 1px solid rgba(232, 237, 245, .35); }
.btn-band:hover { border-color: var(--band-text); background: rgba(232, 237, 245, .08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 10px; }
.wm { font-size: 21px; font-weight: 800; letter-spacing: .01em; }
.wm em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--heading); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.theme-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--muted); cursor: pointer; transition: all .18s;
}
.theme-btn:hover { color: var(--accent); border-color: var(--accent); }
[data-theme="light"] .theme-btn .sun { display: none; }
[data-theme="dark"] .theme-btn .moon { display: none; }
.hamburger {
  display: none; width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-strong); background: var(--surface);
  color: var(--heading); cursor: pointer; align-items: center; justify-content: center;
}
.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center; padding: 96px 0 84px; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, var(--accent-soft), transparent 60%),
    radial-gradient(ellipse 40% 30% at 12% 0%, rgba(120, 170, 255, 0.06), transparent 70%);
}
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--border-strong);
  color: var(--muted); font-weight: 600; font-size: 13.5px; margin-bottom: 26px;
}
.hero h1 { max-width: 850px; margin: 0 auto 20px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { margin: 0 auto 14px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.micro-trust { font-size: 14px; color: var(--muted); margin-bottom: 54px; }

/* Scoreboard stat strip */
.scoreboard { display: flex; max-width: 620px; margin: 40px auto 0; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--bg-soft); overflow: hidden; box-shadow: inset 0 0 24px var(--accent-soft); }
.score-cell { flex: 1; padding: 14px 8px; border-right: 1px solid var(--border); text-align: center; min-width: 0; }
.score-cell:last-child { border-right: 0; }
.score-cell b { display: block; font-size: 1.6rem; color: var(--accent); }
.score-cell span { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.score-caption { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 8px; }
@media (max-width: 560px) { .scoreboard { flex-wrap: wrap; } .score-cell { flex-basis: 50%; } }

/* ---------- Why cards ---------- */
.why { padding-top: 72px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vcard { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; text-align: left; }
.icon-tile { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vcard h3 { font-size: 18.5px; margin-bottom: 8px; text-transform: none; }
.vcard p { font-size: 15px; color: var(--muted); }

/* ---------- Feature sections ---------- */
.feature .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature.rev .feat-text { order: 2; }
.feature.rev .feat-media { order: 1; }
.feature .lead { margin-bottom: 24px; }
.checks { display: flex; flex-direction: column; gap: 13px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.checks li svg { flex: none; color: var(--accent); margin-top: 3px; }
.feat-media { display: flex; flex-direction: column; gap: 20px; }
.tinted { background: var(--bg-soft); }

/* Product vignettes (shared frame) */
.vignette { display: flex; align-items: center; justify-content: center; padding: 34px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }

/* Phone ticket */
.vt-phone { width: 240px; background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 22px; padding: 22px 18px; text-align: center; }
.vt-event { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--heading); letter-spacing: 0.02em; }
.vt-meta { font-size: 0.75rem; color: var(--muted); margin-top: 3px; }
.vt-qr { margin: 16px auto 12px; width: 120px; height: 120px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.vt-qr-grid { width: 96px; height: 96px; background:
  repeating-linear-gradient(0deg, #111 0 8px, transparent 8px 16px),
  repeating-linear-gradient(90deg, #111 0 8px, #fff 8px 16px); border: 4px solid #111; }
.vt-tier { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--accent); background: var(--accent-soft); border-radius: 100px; padding: 4px 12px; }

/* Scan screen */
.vs-screen { width: 250px; background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 22px; padding: 30px 20px; text-align: center; }
.vs-check { width: 58px; height: 58px; margin: 0 auto 10px; border-radius: 50%; background: var(--accent); color: var(--on-accent); font-size: 1.8rem; font-weight: 800; line-height: 58px; }
.vs-status { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: 0.06em; color: var(--heading); }
.vs-detail { font-size: 0.8rem; color: var(--muted); margin: 4px 0 14px; }
.vs-count { font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; }
.vs-count b { color: var(--accent); font-size: 1rem; }

/* Campaign card */
.vc-card { width: 270px; background: var(--bg-soft); border: 1px solid var(--border-strong); border-radius: 14px; padding: 22px 20px; }
.vc-title { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--heading); }
.vc-raised { font-size: 0.85rem; color: var(--muted); margin: 8px 0 10px; }
.vc-raised b { color: var(--accent); font-size: 1.05rem; }
.vc-bar { height: 10px; border-radius: 100px; background: var(--surface-2); overflow: hidden; }
.vc-fill { height: 100%; border-radius: 100px; background: var(--accent-fill); }
.vc-pct { font-size: 0.75rem; color: var(--muted); margin-top: 8px; }

/* ---------- Suite grid ---------- */
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: transform .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-3px); border-color: var(--accent); }
.card h3 { font-size: 17.5px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; text-transform: none; }
.card p { font-size: 14.5px; color: var(--muted); }
.card .icon-tile { margin-bottom: 16px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Pricing band ---------- */
.band { background: var(--band); text-align: center; }
.band .eyebrow { color: var(--accent-fill-hover); }
.band .section-title { color: var(--band-text); }
.band .lead { color: rgba(232, 237, 245, .72); margin: 0 auto 34px; max-width: 740px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 44px auto 0; }
details { border-bottom: 1px solid var(--border); }
details:first-of-type { border-top: 1px solid var(--border); }
summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; padding: 20px 6px; font-weight: 600; font-size: 16.5px; color: var(--heading);
}
summary::-webkit-details-marker { display: none; }
summary svg { flex: none; color: var(--muted); transition: transform .25s; }
details[open] summary svg { transform: rotate(45deg); color: var(--accent); }
details p { padding: 0 6px 22px; color: var(--muted); font-size: 15.5px; max-width: 740px; }

/* ---------- Contact ---------- */
.contact .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.demo-callout { margin-top: 30px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.demo-callout p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 17px; margin-bottom: 18px; text-transform: none; }
.form-card form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card form label:has(textarea),
.form-card form button,
.form-card form p#formStatus {
  grid-column: 1 / -1;
}
.form-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--heading);
  font-family: "Barlow", "Segoe UI", system-ui, sans-serif;
}
.form-card input, .form-card textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border-strong); background: var(--bg); color: var(--heading);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-card input:focus, .form-card textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card .btn { margin-top: 4px; }
#formStatus { font-size: 14.5px; font-weight: 600; color: var(--accent); min-height: 1.2em; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Footer ---------- */
footer { background: var(--band); color: rgba(232, 237, 245, .65); padding: 54px 0 0; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.foot-brand .wm { color: var(--band-text); margin-top: 10px; display: block; }
.foot-brand p { font-size: 14px; max-width: 340px; margin-top: 10px; }
.foot-col h4 { color: var(--band-text); font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; }
.foot-col a { display: block; color: rgba(232, 237, 245, .65); font-size: 14.5px; margin-bottom: 9px; }
.foot-col a:hover { color: var(--band-text); }
.foot-bottom { border-top: 1px solid rgba(232, 237, 245, .12); padding: 20px 0; font-size: 13.5px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn-primary { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-nav {
    display: none; flex-direction: column; gap: 4px; padding: 10px 24px 18px;
    border-top: 1px solid var(--border); background: var(--header-bg);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 10px 0; color: var(--heading); font-weight: 600; font-size: 16px; }
  .cards-4, .suite-grid { grid-template-columns: 1fr 1fr; }
  .feature .container, .contact .container { grid-template-columns: 1fr; }
  .feature.rev .feat-text { order: 1; }
  .feature.rev .feat-media { order: 2; }
}
@media (max-width: 620px) {
  .cards-4, .suite-grid { grid-template-columns: 1fr; }
  .form-card form { grid-template-columns: 1fr; }
  .form-card form label:has(textarea), .form-card form button, .form-card form p#formStatus { grid-column: auto; }
  section { padding: 64px 0; }
  .header-demo { display: none; }
  .header-actions { gap: 8px; }
}
@media (max-width: 380px) {
  .brand .wm { display: none; }
}
