/* =====================================================
   NORTHERN EDGE — Doneverse design language
   Extracted from doneverse.com 2026-09-22 (see ~/Desktop/doneverse-kit).
   White-first canvas · violet #1240CE + lime #FFC53D live in objects,
   not backgrounds · Poppins 600 everywhere bold · 20px cards with
   violet-tinted 54px shadows · true 999px pills.
   ===================================================== */
:root {
  --violet:        #1240CE;
  --violet-deep:   #0C2FA0;
  --lime:          #FFC53D;
  --ink:           #0A0A14;
  --ink-muted:     rgba(10, 10, 20, 0.76);
  --ink-faint:     rgba(10, 10, 20, 0.56);
  --bg:            #FFFFFF;
  --bg-alt:        #F9FAFD;
  --border:        rgba(10, 10, 20, 0.10);
  --shadow-card:   0 4px 54px rgba(18, 64, 206, 0.10);
  --shadow-btn:    0 4px 4px rgba(18, 64, 206, 0.36);
  --shadow-hover:  0 14px 24px rgba(18, 64, 206, 0.30);

  --font:          "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;

  --sz-hero:       clamp(38px, 5vw, 65px);
  --sz-h2:         clamp(28px, 3.4vw, 45px);
  --sz-h3:         clamp(19px, 2vw, 24px);
  --sz-lede:       clamp(16px, 1.6vw, 19px);
  --sz-body:       16px;
  --sz-small:      15px;
  --sz-meta:       13px;
  --sz-eyebrow:    13px;

  --radius:        20px;
  --radius-lg:     32px;
  --radius-sm:     15px;
  --radius-pill:   999px;

  --nav-h:         92px;
  --container:     1280px;
  --section-v:     clamp(72px, 9vw, 120px);
  --section-h:     max(clamp(20px, 4vw, 48px), calc((100vw - 1280px) / 2));
  --t:             all 0.3s ease;
}
@media (max-width: 860px) { :root { --nav-h: 70px; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--font); font-weight: 400; font-size: var(--sz-body); line-height: 1.55; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-weight: 600; color: var(--ink); }
h1 { font-size: var(--sz-hero); line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
h2 { font-size: var(--sz-h2); line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }
h3 { font-size: var(--sz-h3); line-height: 1.3; }
p { color: var(--ink-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--lime); color: var(--ink); }

/* Bands — Doneverse is white-first; "dark" moments become violet blocks */
.band-light { background: var(--bg); }
.band-alt   { background: var(--bg-alt); }
.band-violet { background: var(--violet); color: #fff; }
.band-violet h1, .band-violet h2, .band-violet h3 { color: #fff; }
.band-violet p { color: rgba(255,255,255,0.82); }
/* white cards keep ink text even on violet bands */
.band-violet .num-card h3, .band-violet .card h3 { color: var(--ink); }
.band-violet .num-card p, .band-violet .card p { color: var(--ink-muted); }

/* Eyebrow — Doneverse signature: light weight, uppercase, wide tracking */
.eyebrow {
  display: block; font-size: var(--sz-eyebrow); font-weight: 400;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--violet); margin-bottom: 18px;
}
.band-violet .eyebrow { color: var(--lime); }

/* Section scaffolding */
.section-label { max-width: 760px; }
.section-label h2 { margin-bottom: 14px; }
.section-label p { font-size: var(--sz-lede); line-height: 1.6; }

/* Buttons — true pills, violet with violet shadow; lime on violet bands */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font); font-weight: 600; font-size: 16px;
  border-radius: var(--radius-pill); border: none; cursor: pointer;
  padding: 19px 38px; line-height: 1; transition: var(--t); text-align: center;
}
.btn-primary { background: var(--violet); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: var(--violet-deep); box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.band-violet .btn-primary { background: var(--lime); color: var(--ink); box-shadow: 0 4px 4px rgba(0,0,0,0.18); }
.band-violet .btn-primary:hover { background: #FFD466; }
.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 17px 36px; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-link { font-weight: 600; font-size: var(--sz-small); color: var(--violet); display: inline-flex; align-items: center; gap: 8px; transition: var(--t); }
.btn-link::after { content: "→"; transition: var(--t); }
.btn-link:hover::after { transform: translateX(4px); }
.band-violet .btn-link { color: var(--lime); }

/* Cards */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: clamp(26px, 3vw, 40px);
  transition: var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 54px rgba(18, 64, 206, 0.16); }

/* Tag chip */
.tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  background: var(--lime); color: var(--ink);
  border-radius: var(--radius-pill); padding: 5px 14px;
}

/* Row list (How It Works steps etc.) */
.row-list { margin-top: clamp(40px, 5vw, 64px); display: grid; gap: 18px; }
.row-list-item {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px clamp(28px, 4vw, 64px);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card);
  padding: clamp(28px, 4vw, 44px);
}
@media (max-width: 760px) { .row-list-item { grid-template-columns: 1fr; } }
.row-list-title { font-size: var(--sz-h3); font-weight: 600; }
.row-list-tagline { font-size: var(--sz-small); color: var(--ink-muted); margin-top: 8px; }
.row-list-features { margin-top: 14px; display: grid; gap: 10px; }
.row-list-feature { font-size: var(--sz-small); color: var(--ink-muted); padding-left: 26px; position: relative; line-height: 1.55; }
.row-list-feature::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--violet); font-weight: 600;
}

/* Big display numbers — Doneverse's giant Poppins numerals */
.display-num {
  font-size: clamp(48px, 7vw, 100px); font-weight: 600; line-height: 1;
  color: var(--violet);
}

/* NAV — white, sticky, pill CTA */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 var(--section-h);
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: var(--t);
}
.site-nav.scrolled { border-bottom-color: var(--border); }
.nav-logo { display: flex; align-items: center; gap: 12px; font-weight: 600; letter-spacing: 0.12em; font-size: 15px; color: var(--ink); }
.nav-logo svg { width: 30px; height: 30px; }
.nav-logo svg path { stroke: var(--violet); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 38px); }
.nav-links > a { font-size: 15px; font-weight: 500; color: var(--ink-muted); transition: var(--t); }
.nav-links > a:hover, .nav-links > a.active { color: var(--ink); }
.site-nav .btn-primary { padding: 15px 28px; font-size: 15px; }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; width: 44px; height: 44px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 101; background: #fff;
  padding: calc(var(--nav-h) + 24px) var(--section-h) 40px;
  flex-direction: column; gap: 26px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 26px; font-weight: 600; color: var(--ink); }
.mobile-menu-close { position: absolute; top: 16px; right: calc(var(--section-h) - 6px); width: 44px; height: 44px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }
.mobile-menu .menu-cta { font-size: 17px; margin-top: 10px; align-self: stretch; justify-content: center; background: var(--lime); color: var(--ink); }
.mobile-menu .menu-call { font-size: 17px; font-weight: 600; color: var(--violet); padding: 6px 0; }

/* FOOTER — the one dark block, like Doneverse's */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: clamp(56px, 7vw, 88px) var(--section-h) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(36px, 5vw, 80px); max-width: var(--container); margin: 0 auto; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } }
.footer-mark { width: 34px; height: 34px; margin-bottom: 18px; }
.footer-mark path { stroke: var(--lime); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.footer-tagline { font-weight: 600; color: #fff; font-size: 18px; margin-bottom: 12px; }
.footer-body { font-size: var(--sz-small); line-height: 1.7; max-width: 40ch; color: rgba(255,255,255,0.6); }
.footer-col-title { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 22px; }
.footer-col-links { display: grid; gap: 12px; }
.footer-col-links a, .footer-col-links span { font-size: var(--sz-small); color: rgba(255,255,255,0.72); transition: var(--t); }
.footer-col-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: var(--container); margin: clamp(40px, 5vw, 64px) auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-bottom p { color: inherit; }

/* Reveal animation (site.js toggles .in-view) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Inner-page components (Doneverse anatomy, shared) ===== */
.pg-hero { background: linear-gradient(165deg, #071243 0%, #122B7E 48%, #040A28 100%); text-align: center; padding: calc(var(--nav-h) + clamp(40px, 6vw, 72px)) var(--section-h) clamp(56px, 7vw, 88px); }
.pg-hero .eyebrow { color: var(--lime); }
.pg-hero h1 { color: #fff; max-width: 20ch; margin: 0 auto 20px; font-size: clamp(34px, 4.4vw, 56px); text-wrap: balance; }
.pg-hero > p { color: rgba(255,255,255,0.85); max-width: 54ch; margin: 0 auto; font-size: var(--sz-lede); line-height: 1.65; }
.pg-hero .btn-primary { background: var(--lime); color: var(--ink); margin-top: 34px; box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.pg-hero .btn-primary:hover { background: #FFD466; }

.section { padding: var(--section-v) var(--section-h); }
.section > .inner { max-width: var(--container); margin: 0 auto; }

.dv-cta { padding: var(--section-v) var(--section-h); }
.dv-cta-panel { background: var(--violet); color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); text-align: center; padding: clamp(52px, 7vw, 96px) clamp(24px, 5vw, 80px); max-width: var(--container); margin: 0 auto; }
.dv-cta-panel h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; }
.dv-cta-panel p { color: rgba(255,255,255,0.85); max-width: 50ch; margin: 0 auto 36px; font-size: var(--sz-lede); line-height: 1.65; }
.dv-cta-panel .btn-primary { background: var(--lime); color: var(--ink); }
.dv-cta-panel .btn-primary:hover { background: #FFD466; }
.dv-cta-panel .fine { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 54ch; margin: 30px auto 0; }

.num-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 860px) { .num-cards { grid-template-columns: 1fr; } }
.num-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); padding: clamp(26px, 3vw, 38px); }
.num-card .n { font-size: clamp(40px, 5vw, 64px); font-weight: 600; color: var(--violet); line-height: 1; }
.num-card .stage { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin: 10px 0 18px; }
.num-card h3 { font-size: 19px; margin-bottom: 8px; }
.num-card p { font-size: var(--sz-small); line-height: 1.65; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px clamp(18px, 2.4vw, 28px); margin-top: clamp(36px, 5vw, 56px); }
@media (max-width: 700px) { .check-grid { grid-template-columns: 1fr; } }
.check-item { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 18px 22px 18px 54px; position: relative; font-size: var(--sz-small); color: rgba(10,10,20,0.82); line-height: 1.6; }
.check-item::before { content: "✓"; position: absolute; left: 24px; top: 17px; color: var(--violet); font-weight: 600; font-size: 17px; }

.quote-wall { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 5vw, 56px); }
@media (max-width: 700px) { .quote-wall { grid-template-columns: 1fr; } }
.quote-card { background: var(--bg-alt); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); font-weight: 600; font-size: clamp(17px, 1.9vw, 21px); color: var(--ink); }
.quote-card::before { content: "\201C"; display: block; color: var(--violet); font-size: 44px; line-height: 0.6; margin-bottom: 16px; font-weight: 600; }
.quote-kicker { margin-top: clamp(28px, 4vw, 40px); font-size: var(--sz-lede); color: rgba(10,10,20,0.82); max-width: 62ch; line-height: 1.65; }

.dv-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(36px, 6vw, 96px); align-items: center; }
@media (max-width: 920px) { .dv-split { grid-template-columns: 1fr; gap: 32px; } }
.dv-split-media { position: relative; max-width: 400px; width: 100%; justify-self: center; }
@media (max-width: 920px) { .dv-split-media { max-width: 340px; justify-self: start; order: -1; } }
.dv-split-img { aspect-ratio: 1 / 1; width: 100%; border-radius: var(--radius); background-size: cover; background-position: center; box-shadow: var(--shadow-card); }
.dv-chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: var(--radius-pill); padding: 11px 18px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: 0 10px 30px rgba(10, 10, 20, 0.18); animation: dv-chip-float 6s ease-in-out infinite alternate; }
.dv-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(255,197,61,0.3); }
.dv-chip .dot.v { background: var(--violet); box-shadow: 0 0 0 3px rgba(18,64,206,0.18); }
@keyframes dv-chip-float { from { transform: translateY(-6px); } to { transform: translateY(8px); } }
.dv-chip.tl { top: 8%; left: -22px; }
.dv-chip.br { bottom: 10%; right: -18px; animation-delay: -3s; }
@media (max-width: 920px) { .dv-chip.tl { left: 8px; } .dv-chip.br { right: 8px; } }
@media (prefers-reduced-motion: reduce) { .dv-chip { animation: none; } }

.pain-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 860px) { .pain-pair { grid-template-columns: 1fr; } }
.pain-card { background: var(--bg-alt); border-radius: var(--radius); padding: clamp(28px, 3.6vw, 44px); }
.pain-card h3 { font-size: clamp(20px, 2.2vw, 26px); margin-bottom: 14px; max-width: 24ch; }
.pain-card p { font-size: var(--sz-small); line-height: 1.7; color: rgba(10,10,20,0.82); }
.pain-card .lift { margin-top: 16px; font-weight: 600; color: var(--ink); }

.fit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); margin-top: clamp(40px, 5vw, 60px); }
@media (max-width: 860px) { .fit-cols { grid-template-columns: 1fr; } }
.fit-col-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-card); padding: clamp(28px, 3.6vw, 44px); }
.fit-col-card h3 { font-size: 19px; margin-bottom: 20px; }
.fit-col-card .row { border-top: 1px solid var(--border); padding: 14px 0; font-size: var(--sz-small); color: rgba(10,10,20,0.82); line-height: 1.6; }
.fit-note-dv { margin-top: 26px; font-size: var(--sz-small); color: var(--ink-muted); }
.fit-note-dv a { color: var(--violet); font-weight: 600; }

.spec-rows { margin-top: clamp(36px, 5vw, 56px); display: grid; gap: 14px; }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 10px clamp(20px, 3vw, 44px); background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 20px 26px; align-items: baseline; }
@media (max-width: 700px) { .spec-row { grid-template-columns: 1fr; } }
.spec-row strong { font-size: 16px; font-weight: 600; color: var(--ink); }
.spec-row span { font-size: var(--sz-small); color: var(--ink-muted); line-height: 1.6; }

.ba-rows { margin-top: clamp(30px, 4vw, 44px); display: grid; gap: 12px; }
.ba-row { display: grid; grid-template-columns: 130px 1fr auto 1fr; gap: 10px clamp(16px, 2.4vw, 32px); align-items: center; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-card); padding: 18px 24px; font-size: var(--sz-small); line-height: 1.55; }
@media (max-width: 760px) { .ba-row { grid-template-columns: 1fr; } .ba-row .arrow { display: none; } }
.ba-row strong { color: var(--ink); font-weight: 600; }
.ba-row .from { color: var(--ink-muted); }
.ba-row .arrow { color: var(--violet); font-weight: 600; }
.ba-row .to { color: rgba(10,10,20,0.85); font-weight: 500; }

.big-stat { display: flex; align-items: baseline; gap: 16px; margin: 26px 0 6px; }
.big-stat .num { font-size: clamp(64px, 9vw, 120px); font-weight: 600; color: var(--violet); line-height: 1; }
.big-stat .unit { font-size: clamp(16px, 2vw, 22px); font-weight: 600; color: var(--ink); max-width: 22ch; line-height: 1.3; }

/* Phones: thumb-sized tap targets for text links and footer links */
@media (max-width: 760px) {
  .btn-link { padding: 10px 0; }
  .footer-col-links { gap: 0; }
  .footer-col-links a { display: flex; align-items: center; min-height: 44px; }
  main a[href^="tel:"], main a[href^="mailto:"] { display: inline-block; padding: 10px 0; }
}
