/* ==========================================================================
   ORBT · 2026 REBRAND design system  (shared override layer, after styles.css)
   Playful + bold: warm CREAM paper base, INK black, a vibrant RAINBOW accent
   (magenta→purple lead), the mascot badge, organic blobs, hand-drawn squiggles,
   chunky sticker buttons. Token names match styles.css so all inline JS resolves.
   ========================================================================== */

:root{
  /* surfaces: warm paper, white cards, dark hairlines */
  --bg:        #f3ede1;          /* warm cream/bone */
  --bg-1:      #ffffff;          /* white cards/panels */
  --bg-2:      #ece4d4;          /* deeper cream */
  --bg-3:      #e4dbc7;
  --panel:     #ffffff;
  --line:      rgba(13,13,13,.12);
  --line-2:    rgba(13,13,13,.22);
  --line-hot:  rgba(225,29,143,.5);

  /* ink */
  --text:      #0d0d0d;
  --muted:     #57534a;
  --faint:     #6d675a;          /* 4.8:1 on cream (was #908a7c ≈2.9:1, failed small text) */

  /* brand: magenta/purple lead + full rainbow for energy */
  --accent:    #e11d8f;          /* magenta (primary accent: eyebrows, hl, icons, data) */
  --accent-2:  #7b2ff7;          /* purple */
  --accent-ink:#ffffff;          /* text on accent */
  --accent-dim:rgba(225,29,143,.12);
  --accent-text:#c01578;         /* darkened accent for SMALL text on cream/white (5:1). Brand accent stays #e11d8f for fills/icons/large type */
  --gold:      var(--accent);    /* legacy solar-gold glow token from styles.css, remapped to magenta on marketing so old glows/focus washes stay on-brand */
  --c-blue:    #2b6bff;
  --c-green:   #16c79a;
  --c-lime:    #a3e635;
  --c-yellow:  #ffd23f;
  --c-red:     #ff4757;
  --c-mag:     #e11d8f;
  --c-purple:  #7b2ff7;
  --rainbow: linear-gradient(90deg,#2b6bff,#16c79a,#a3e635,#ffd23f,#ff4757,#e11d8f,#7b2ff7);
  --rainbow-diag: linear-gradient(120deg,#2b6bff,#16c79a 22%,#a3e635 38%,#ffd23f 52%,#ff4757 68%,#e11d8f 84%,#7b2ff7);
  /* text-safe rainbow: deepened stops, every stop ≥3:1 on cream/white for the big gradient words
     (yellow/lime of --rainbow-diag land ~1.35:1 on glyphs). Ribbons/decor keep the bright --rainbow. */
  --rainbow-text: linear-gradient(120deg,#2456d6,#0e8a63 22%,#4a8214 38%,#a97400 52%,#e02b3c 68%,#c01578 84%,#6d28d9);
  --grad-mascot: linear-gradient(160deg,#ff2db5,#7b2ff7);
  --ok:        #16a34a;
  --no:        #8a8478;          /* compare-table ✕/- glyphs, 3.7:1 on white (was #b8b2a4 ≈1.8:1) */

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* type: Unbounded display (bold rounded), General Sans body, mono labels */
  --display: "Unbounded", "Clash Display", system-ui, sans-serif;
  --body:    "General Sans", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "Space Mono", monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);

  --spring: linear(0, 0.006, 0.025 2.8%, 0.101 6.1%, 0.539 18.9%, 0.721 25.3%,
                   0.849 31.5%, 0.937 38.1%, 0.968 41.8%, 0.991 45.7%, 1.006 50.1%,
                   1.015 55%, 1.017 63.9%, 1.001 79%, 0.999 87.4%, 1);
  --spring-soft: linear(0, 0.018, 0.069 4.5%, 0.276 11%, 0.638 19.5%, 0.805 24.4%,
                   0.934 29.9%, 1.012 36%, 1.04 42.4%, 1.041 49.2%, 1.02 60%, 1.004 76%, 1);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* house focus ring: marketing layer (mirrors the dashboard's universal ring system).
   Keyboard-only (:focus-visible); component rules below may layer their own treatments. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible{
  outline:2px solid var(--accent-2); outline-offset:2px;
}
/* claim pills mark focus on the wrapper (:focus-within ring), skip the inner outline */
.claim input:focus-visible{ outline:0; }

/* ---------- paper grain (subtle, multiply on light) ---------- */
.grain{
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: no-preference){ .grain{ animation: grainshift 6s steps(6) infinite; } }
@keyframes grainshift{0%{transform:translate(0,0)}20%{transform:translate(-4%,3%)}40%{transform:translate(3%,-4%)}60%{transform:translate(-3%,2%)}80%{transform:translate(2%,4%)}100%{transform:translate(0,0)}}
.page-motion{ background: none !important; }

body{ background: var(--bg); color: var(--text); }

/* ---------- type ---------- */
h1,h2,h3,h4{ font-family: var(--display); font-weight: 700; line-height: .98; letter-spacing: -.02em; }
.display{ font-family: var(--display); font-weight: 800; letter-spacing: -.03em; line-height: .92; }
h2{ font-size: clamp(2.1rem, 5vw, 3.8rem); }
.lead{ color: var(--muted); font-size: clamp(1.02rem,1.4vw,1.18rem); line-height: 1.55; }

/* mono technical eyebrow: [ LABEL ] in magenta */
.eyebrow{
  font-family: var(--mono); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent-text);
  display: inline-flex; align-items: center; gap: .5em;
}
.eyebrow::before{ content: "["; opacity: .7; background:none; width:auto; height:auto; }
.eyebrow::after{ content: "]"; opacity: .7; }

/* highlight word: rainbow gradient text (text-safe deep stops) */
.hl, .display em{
  font-style: normal;
  background: var(--rainbow-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hl-mag{ color: var(--accent); }
::selection{ background: var(--accent); color: #fff; }

/* ---------- layout ---------- */
.wrap{ max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section{ padding-block: clamp(60px, 8vw, 120px); }

/* decorative organic blobs + squiggles (utility) */
.blob{ position:absolute; z-index:0; pointer-events:none; }
.squiggle{ stroke: var(--text); stroke-width:6; fill:none; stroke-linecap:round; }
.rainbow-rule{ height:6px; border-radius:6px; background: var(--rainbow); border:0; }
.barcode{ height:26px; width:120px;
  background: repeating-linear-gradient(90deg,var(--text) 0 2px,transparent 2px 4px,var(--text) 4px 5px,transparent 5px 9px); }

/* ======================================================================
   LOGO: mascot badge + ORBT wordmark
   ====================================================================== */
.logo{ display:inline-flex; align-items:center; gap:.5rem; font-family:var(--display); font-weight:800; font-size:1.2rem; letter-spacing:-.02em; color:var(--text); }
.logo .dot, .logo .scroll-orbit{ display:none !important; }
.logo-badge{ width:32px; height:32px; border-radius:50%; background:var(--text); position:relative; flex:none; }
.logo-badge::after{ content:""; position:absolute; inset:0;
  -webkit-mask:url("assets/mascot-mask.png") center/56% no-repeat; mask:url("assets/mascot-mask.png") center/56% no-repeat;
  background:var(--bg); }
.logo-word{ font-family:var(--display); }

/* ======================================================================
   NAV: clean cream bar, hairline, mascot logo
   ====================================================================== */
.nav{
  top:0; left:0; right:0; transform:none; width:100%;
  border-radius:0; border:0; border-bottom:1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  padding:14px var(--pad); display:flex; align-items:center; justify-content:space-between; box-shadow:none;
}
.nav.scrolled{ background: color-mix(in srgb, var(--bg) 94%, transparent); border-bottom-color: var(--line-2); }
.nav-links{ display:flex; gap:clamp(.8rem,2vw,2rem); }
.nav-links a{ font-family:var(--mono); font-size:.8rem; letter-spacing:.04em; color:var(--muted); transition:color .2s var(--ease); }
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a.active{ color:var(--accent); }
.nav-cta{ display:flex; align-items:center; gap:.6rem; }
.nav-toggle span{ background:var(--text); }

/* ======================================================================
   BUTTONS · chunky ink "sticker": hard offset shadow, press on :active
   ====================================================================== */
.btn{
  font-family:var(--mono); font-weight:700; font-size:.82rem; letter-spacing:.02em;
  border-radius:999px; padding:.78rem 1.3rem;
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--text); color:var(--bg); border:0;
  box-shadow:0 4px 0 0 #000, 0 8px 18px -8px rgba(0,0,0,.4);
  transition:transform .14s var(--ease), box-shadow .14s var(--ease), background .2s, color .2s;
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 6px 0 0 #000, 0 14px 26px -10px rgba(0,0,0,.45); }
.btn:active{ transform:translateY(4px); box-shadow:0 0 0 0 #000, 0 3px 10px -6px rgba(0,0,0,.4); }
.btn-lg{ padding:1rem 1.8rem; font-size:.92rem; }
.btn-ghost, .btn.btn-ghost{
  background:transparent; color:var(--text);
  border:2px solid var(--text); box-shadow:none;
}
.btn-ghost:hover{ background:var(--text); color:var(--bg); transform:translateY(-2px); box-shadow:0 8px 20px -10px rgba(0,0,0,.4); }
.btn-ghost:active{ transform:translateY(1px); }
/* primary CTA: deep magenta→purple slice (white text ≥5.8:1; the old rainbow fill fell to ~1.4:1 on the lime/yellow stops) */
.btn-grad, .btn.btn-grad{ background:linear-gradient(160deg,#c01578,#7b2ff7); color:#fff; box-shadow:0 4px 0 0 #5a1b9e, 0 10px 22px -10px rgba(123,47,247,.6); }
.btn-grad:hover{ box-shadow:0 6px 0 0 #5a1b9e, 0 16px 30px -12px rgba(123,47,247,.7); }
.btn-mag{ background:var(--accent); color:#fff; box-shadow:0 4px 0 0 #9c0f63, 0 10px 22px -10px rgba(225,29,143,.6); }

/* ======================================================================
   HERO: type-led, live claim input, blob + rainbow decor (no orb shader)
   ====================================================================== */
.hero{ min-height:auto; display:block; overflow:visible; position:relative;
  padding-top:clamp(120px,18vh,200px); padding-bottom:clamp(50px,8vh,90px); }
.hero-gl, .hero-veil, .hero-scroll, #heroShader, canvas#heroShader{ display:none !important; }
.hero .wrap, .hero-inner{ display:flex; flex-direction:column; align-items:flex-start; gap:clamp(1rem,2vw,1.4rem); max-width:1000px; position:relative; z-index:2; }
.hero-inner .display, .hero .display{ font-size:clamp(3rem,9vw,7rem); text-transform:none; }
.hero .lead{ max-width:50ch; }

/* live claim input: chunky rounded field + sticker submit */
.hero .claim, .claim.glass-pill{
  margin-top:.6rem; width:min(560px,100%); display:flex; align-items:stretch; gap:0;
  background:#fff; border:2px solid var(--text); border-radius:999px; padding:6px;
  box-shadow:0 4px 0 0 var(--text); -webkit-backdrop-filter:none; backdrop-filter:none;
  transition:box-shadow .2s var(--ease);
}
.hero .claim:focus-within{ box-shadow:0 4px 0 0 var(--accent); }
.claim .pre{ display:flex; align-items:center; padding-left:1rem; color:var(--faint); font-family:var(--mono); font-size:.95rem; }
.claim input{ flex:1; min-width:0; background:transparent; border:0; color:var(--text); font-family:var(--mono); font-size:1rem; padding:.7rem .4rem; }
.claim input::placeholder{ color:var(--faint); }
.claim .btn{ flex:none; }
.hero-trust{ display:flex; align-items:center; gap:.8rem; margin-top:.4rem; color:var(--muted); font-family:var(--mono); font-size:.8rem; }
.hero-trust .avatars span{ width:28px; height:28px; border-radius:50%; margin-left:-8px; border:2px solid var(--bg); background:var(--bg-2) center/cover; }
.hero-trust .avatars span:first-child{ margin-left:0; }

/* hero brand art: mascot + blob + rainbow + squiggles */
.hero-art{ position:absolute; right:clamp(-30px,1vw,40px); top:50%; transform:translateY(-48%); width:min(40vw,500px); aspect-ratio:1; z-index:1; pointer-events:none; }
.hero-blob{ position:absolute; inset:0; width:100%; height:100%; fill:var(--text); animation:blobspin 28s linear infinite; transform-origin:52% 52%; }
@keyframes blobspin{ to{ transform:rotate(360deg); } }
.hero-rainbow{ position:absolute; left:-4%; bottom:14%; width:84%; height:16px; border-radius:16px; background:var(--rainbow); transform:rotate(-9deg); box-shadow:0 8px 24px -8px rgba(123,47,247,.5); }
.hero-mascot{ position:absolute; width:50%; left:25%; top:23%; filter:drop-shadow(0 22px 40px rgba(123,47,247,.4)); animation:floaty 5s var(--ease) infinite; }
@keyframes floaty{ 0%,100%{ transform:translateY(0) rotate(-2deg); } 50%{ transform:translateY(-14px) rotate(2deg); } }
.hero-squig{ position:absolute; } .hero-squig .squiggle{ stroke:var(--text); }
.hero-squig.s1{ top:2%; right:2%; width:110px; height:38px; }
.hero-squig.s2{ bottom:2%; left:-2%; width:64px; height:64px; } .hero-squig.s2 .squiggle{ stroke:var(--accent); }
@media (max-width:980px){ .hero-art{ display:none; } }
@media (prefers-reduced-motion:reduce){ .hero-blob,.hero-mascot{ animation:none; } }

/* ======================================================================
   MARQUEE / PROOF
   ====================================================================== */
.marquee{ border-block:1px solid var(--line); background:var(--bg-2);
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee span{ color:var(--muted); font-family:var(--mono); font-size:.82rem; }
.marquee svg{ fill:var(--muted); }
.comm-cols{ gap:14px; }
.comm-card{ border:1px solid var(--line); border-radius:var(--radius); background:#fff;
  padding:.7rem .85rem; transition:transform .35s var(--spring), border-color .25s var(--ease), box-shadow .25s; }
.comm-card:hover{ transform:translateY(-4px); border-color:var(--line-2); box-shadow:0 12px 24px -16px rgba(0,0,0,.3); }
.comm-h{ font-family:var(--mono); text-transform:uppercase; letter-spacing:.1em; font-size:.8rem; color:var(--muted); }
.comm-h svg{ fill:var(--accent); }

.proof{ border:1px solid var(--line); border-radius:var(--radius-lg); background:#fff; padding:clamp(1.4rem,3vw,2.2rem); }
.proof-num, .stat-num{ font-family:var(--display); font-weight:800; font-size:clamp(2rem,3.6vw,3rem); letter-spacing:-.03em; color:var(--accent); }
.proof-lbl{ font-family:var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); }
.proof-sep{ background:var(--line); }

/* ======================================================================
   CARDS: white sticker panels, playful lift + colored shadow
   ====================================================================== */
.card{
  position:relative; overflow:hidden;
  border:1px solid var(--line-2); border-radius:var(--radius-lg); background:#fff;
  padding:clamp(1.4rem,2.2vw,2rem);
  box-shadow:0 2px 0 0 var(--line-2);
  transition:transform .4s var(--spring), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.card:hover{ transform:translateY(-6px); border-color:var(--text); box-shadow:0 16px 30px -18px rgba(0,0,0,.4); }
.card::after{ content:""; position:absolute; top:14px; right:14px; width:8px; height:8px; border-radius:50%; background:var(--accent); opacity:.5; }
.card.spot::before{ content:""; position:absolute; inset:0; pointer-events:none; opacity:0; transition:opacity .3s var(--ease);
  background:radial-gradient(300px circle at var(--mx,50%) var(--my,0%), rgba(225,29,143,.10), transparent 60%); }
.card.spot:hover::before{ opacity:1; }
.card h3{ font-size:clamp(1.15rem,1.7vw,1.45rem); margin-bottom:.5rem; letter-spacing:-.02em; }
.card p{ color:var(--muted); font-size:.96rem; }
.card .ico{ width:46px; height:46px; border-radius:var(--radius-sm); margin-bottom:1.1rem; display:grid; place-items:center;
  background:var(--grad-mascot); border:0; }
.card .ico svg{ width:22px; height:22px; stroke:#fff; fill:none; }

/* hover-motion demos */
.demo{ margin-top:1.1rem; height:54px; display:flex; align-items:center; gap:6px; }
.demo-bars span{ display:block; width:8px; height:14px; border-radius:3px; background:var(--accent); opacity:.5; transition:height .5s var(--spring), opacity .3s var(--ease); }
.card:hover .demo-bars span{ opacity:1; }
.card:hover .demo-bars span:nth-child(1){height:40px}.card:hover .demo-bars span:nth-child(2){height:22px}
.card:hover .demo-bars span:nth-child(3){height:52px}.card:hover .demo-bars span:nth-child(4){height:30px}.card:hover .demo-bars span:nth-child(5){height:46px}
.demo-pulse{ width:14px; height:14px; border-radius:50%; background:var(--accent); transition:transform .5s var(--spring); }
.card:hover .demo-pulse{ transform:scale(1.4); box-shadow:0 0 0 6px var(--accent-dim); }
.demo-slide{ font-family:var(--mono); font-size:.8rem; color:var(--muted); transition:transform .5s var(--spring), color .3s; }
.card:hover .demo-slide{ transform:translateX(10px); color:var(--accent); }

/* phones */
.phone{ border-radius:30px; background:#fff; border:2px solid var(--text); padding:8px;
  box-shadow:0 30px 60px -28px rgba(0,0,0,.4), 8px 8px 0 0 var(--text); transition:transform .5s var(--spring); }

.step h3{ font-size:clamp(1.1rem,1.6vw,1.4rem); } .step p{ color:var(--muted); }
.steps-planet{ box-shadow:0 0 0 4px var(--bg), 0 0 0 5px var(--accent); }

/* ======================================================================
   COMPARE TABLE
   ====================================================================== */
.table-wrap{ border:1px solid var(--line-2); border-radius:var(--radius-lg); overflow:hidden; background:#fff; }
.cmp{ width:100%; border-collapse:collapse; }
.cmp th, .cmp td{ padding:.95rem 1rem; text-align:center; border-bottom:1px solid var(--line); font-size:.92rem; }
.cmp th:first-child, .cmp td:first-child{ text-align:left; color:var(--text); }
.cmp thead th{ font-family:var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--faint); font-weight:600; }
.cmp thead th.hl{ -webkit-text-fill-color:var(--accent-text); color:var(--accent-text); }
/* the Orbt highlight column: reset the gradient .hl utility's transparent text-fill +
   background-clip:text so the cell text is solid ink and the tint fills the cell (not the glyphs) */
.cmp th.hl, .cmp td.hl{ background:var(--accent-dim); color:var(--text);
  -webkit-text-fill-color:var(--text); -webkit-background-clip:border-box; background-clip:border-box; }
.cmp td{ color:var(--muted); font-family:var(--mono); }
.cmp .ck{ width:20px;height:20px;stroke:var(--ok);fill:none;stroke-width:2.6;margin:0 auto; }
.cmp .dash{ width:20px;height:20px;stroke:var(--no);fill:none;stroke-width:2.6;margin:0 auto; }

.import-box{ border:1px solid var(--line-2); border-radius:var(--radius-lg); background:#fff; padding:clamp(1.3rem,2.2vw,1.9rem); }
.import-field{ background:var(--bg-2); border:1px solid var(--line); border-radius:var(--radius-sm); padding:.85rem 1rem; margin:.7rem 0; font-family:var(--mono); }
.import-typed{ color:var(--text); } .import-typed::after{ content:"_"; color:var(--accent); animation:blink 1s steps(1) infinite; }
@keyframes blink{50%{opacity:0}}
.import-arrow{ color:var(--accent); text-align:center; } .import-result{ color:var(--accent); font-family:var(--mono); }

/* ======================================================================
   PRICING
   ====================================================================== */
.price{ position:relative; border:1px solid var(--line-2); border-radius:var(--radius-lg); background:#fff;
  padding:clamp(1.5rem,2.3vw,2.1rem); display:flex; flex-direction:column; gap:.55rem;
  box-shadow:0 2px 0 0 var(--line-2); transition:transform .4s var(--spring), border-color .25s var(--ease), box-shadow .3s; }
.price:hover{ transform:translateY(-6px); border-color:var(--text); box-shadow:0 16px 30px -18px rgba(0,0,0,.4); }
.price .tag{ font-family:var(--mono); font-size:.74rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); }
.price .amt{ font-family:var(--display); font-weight:800; font-size:clamp(2.2rem,3.4vw,3rem); letter-spacing:-.03em; }
.price .amt small{ font-size:.85rem; color:var(--muted); font-family:var(--mono); letter-spacing:0; }
.price .amt-alt{ font-family:var(--mono); font-size:.8rem; color:var(--accent-text); }
.price ul{ list-style:none; display:flex; flex-direction:column; gap:.6rem; margin:.6rem 0 1.2rem; }
.price li{ display:flex; gap:.6rem; align-items:flex-start; color:var(--muted); font-size:.92rem; }
.price li svg{ width:17px;height:17px;flex:none;stroke:var(--accent);fill:none;margin-top:.15rem; }
.price .btn, .price .btn-ghost{ margin-top:auto; width:100%; justify-content:center; }
.price.feat{ border-color:var(--text); border-width:2px; background:linear-gradient(180deg, rgba(225,29,143,.06), #fff 38%); box-shadow:8px 8px 0 0 var(--text); }
.price-badge{ position:absolute; top:-12px; left:18px; font-family:var(--mono); font-size:.7rem; font-weight:700;
  letter-spacing:.06em; background:var(--accent); color:#fff; padding:.3rem .7rem; border-radius:999px; }

.savage{ border:1px solid var(--line-2); border-radius:var(--radius-lg); background:#fff;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:clamp(1rem,4vw,3rem);
  padding:clamp(1.4rem,3vw,2.4rem); margin-top:clamp(1.4rem,3vw,2rem); box-shadow:0 2px 0 0 var(--line-2); }
.savage .col{ display:flex; flex-direction:column; gap:.3rem; } .savage .col.them{ text-align:right; }
.savage .lbl{ font-family:var(--mono); font-size:.74rem; text-transform:uppercase; letter-spacing:.12em; color:var(--faint); }
.savage .big{ font-family:var(--display); font-weight:800; font-size:clamp(1.8rem,4vw,3.2rem); letter-spacing:-.03em; }
.savage .them .big{ color:var(--muted); text-decoration:line-through; text-decoration-color:var(--no); }
.savage .us .big{ color:var(--accent); }
.savage .sub{ font-family:var(--mono); font-size:.78rem; color:var(--muted); }
.savage .vs{ font-family:var(--mono); font-size:.8rem; color:var(--faint); padding:.4rem .6rem; border:1px solid var(--line-2); border-radius:50%; }
@media (max-width:620px){ .savage{ grid-template-columns:1fr; gap:1.2rem; } .savage .col.them{text-align:left} .savage .vs{justify-self:start} }

/* ======================================================================
   FAQ
   ====================================================================== */
.q{ border:1px solid var(--line-2); border-radius:var(--radius); background:#fff; margin-bottom:10px; overflow:hidden; }
.q button{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.1rem 1.3rem; text-align:left; font-family:var(--display); font-weight:700; font-size:1.02rem; color:var(--text); }
.q .plus{ position:relative; width:16px; height:16px; flex:none; }
.q .plus::before, .q .plus::after{ content:""; position:absolute; inset:0; margin:auto; background:var(--accent); transition:transform .35s var(--spring); }
.q .plus::before{ width:16px; height:2px; } .q .plus::after{ width:2px; height:16px; }
.q.open .plus::after{ transform:scaleY(0); }
.q .ans{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s var(--ease); }
.q.open .ans{ grid-template-rows:1fr; }
.q .ans-in{ overflow:hidden; } .q .ans p{ padding:0 1.3rem 1.2rem; color:var(--muted); }

/* ======================================================================
   CTA BAND: rainbow wash
   ====================================================================== */
.cta-band{ border-top:1px solid var(--line); text-align:center; position:relative; overflow:hidden; background:var(--bg-2); }
.cta-band .wrap{ display:flex; flex-direction:column; align-items:center; gap:1rem; position:relative; z-index:2; }
.cta-band h2{ font-size:clamp(2.4rem,6vw,4.5rem); }
.cta-field{ display:none; } .cta-band .claim{ margin-inline:auto; }

/* ======================================================================
   FOOTER
   ====================================================================== */
footer{ border-top:1px solid var(--line); background:var(--bg-2); padding-block:clamp(2.8rem,5vw,4.5rem) 2rem; }
footer .logo{ font-size:1.2rem; }
.foot-blurb{ color:var(--muted); max-width:32ch; margin:.7rem 0 1.1rem; font-size:.92rem; }
.foot-social a{ width:38px;height:38px;border-radius:10px;display:grid;place-items:center;border:1px solid var(--line-2);margin-right:.45rem;transition:border-color .2s var(--ease),transform .3s var(--spring),background .2s; }
.foot-social a:hover{ border-color:var(--text); transform:translateY(-2px); background:#fff; }
.foot-social svg{ width:16px;height:16px;fill:var(--muted); } .foot-social a:hover svg{ fill:var(--accent); }
footer h5{ font-family:var(--mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.14em; color:var(--text); margin-bottom:.9rem; }
.foot-grid a{ display:block; color:var(--muted); padding:.28rem 0; font-size:.92rem; transition:color .2s var(--ease); }
.foot-grid a:hover{ color:var(--accent); }
/* the footer wordmark must stay flex so the 32x32 .logo-badge crest keeps its box
   (the display:block above was collapsing the empty inline badge to 0 width) */
.foot-grid a.logo{ display:inline-flex; color:var(--text); padding:0; }
.foot-grid a.logo:hover{ color:var(--text); }
.foot-bottom{ border-top:1px solid var(--line); margin-top:2.2rem; padding-top:1.4rem; color:var(--faint); font-family:var(--mono); font-size:.78rem; }

/* ======================================================================
   PAGE HEAD + misc
   ====================================================================== */
.page-head{ padding-top:clamp(120px,16vh,180px); position:relative; }
.page-head .hero-glow{ display:none; }
.page-head .display{ font-size:clamp(2.8rem,7vw,5.5rem); }
.head-facts{ display:flex; flex-wrap:wrap; justify-content:center; gap:1rem; margin-top:1.4rem; font-family:var(--mono); font-size:.82rem; color:var(--muted); }
.head-facts b{ color:var(--accent-text); }
.head-facts .sep{ width:1px; height:1em; background:var(--line-2); }
.orbt-divider span{ background:linear-gradient(90deg,transparent,var(--line-2),transparent); }
.mobile-menu{ background:var(--bg); border-bottom:1px solid var(--line); }
.mobile-menu a{ font-family:var(--mono); color:var(--text); }
.legal-body{ color:var(--muted); } .legal-body h2,.legal-body h3{ color:var(--text); }

.swatch.active, .color-dot.active, [data-swatch].active{ box-shadow:0 0 0 2px var(--bg), 0 0 0 4px var(--accent) !important; }

@media (prefers-reduced-motion: reduce){ *{ animation-duration:.001ms !important; } .card:hover,.price:hover,.comm-card:hover,.phone{ transform:none; } }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
/* tablet + phone nav: styles.css only shows the hamburger ≤680px, but this layer hides
   .nav-links from 860px: surface the toggle (and the app's ≤680 ghost-btn behavior)
   across the whole 681-860 gap too. The .mobile-menu overlay rules in styles.css are
   width-independent (driven by body.menu-open), so they already work here. */
@media (max-width:860px){
  .nav-links{ display:none; }
  .nav-toggle{ display:grid; }
  /* hide BOTH header pills (Log in + Claim) on mobile: one uncramped tap target (the
     hamburger), with the full CTA living inside the menu so it never crowds the logo */
  .nav-cta .btn{ display:none; }
}
@media (max-width:560px){ .hero .claim{ flex-wrap:wrap; } .claim .pre{ padding:.4rem .8rem; } .savage{ text-align:left; } }

/* ======================================================================
   OAUTH
   ====================================================================== */
.oauth-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
/* one live provider: full width, otherwise it strands half a row (auth.js sets this) */
.oauth-grid.is-solo{ grid-template-columns:1fr; }
.oauth-btn{ display:flex; align-items:center; justify-content:center; gap:.55rem; padding:.72rem .8rem;
  border:1px solid var(--line-2); border-radius:var(--radius-sm); background:#fff; color:var(--text);
  font-family:var(--mono); font-size:.82rem; font-weight:600; cursor:pointer;
  transition:transform .12s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.oauth-btn:hover{ border-color:var(--text); background:var(--bg-2); transform:translateY(-1px); }
.oauth-btn:active{ transform:translateY(1px); }
.oauth-btn:disabled{ opacity:.5; cursor:default; transform:none; }
.oauth-btn svg{ width:18px; height:18px; flex:none; display:block; }
.oauth-btn.loading{ color:transparent; position:relative; } .oauth-btn.loading > *{ visibility:hidden; }
.oauth-btn.loading::after{ content:""; position:absolute; width:15px; height:15px; border-radius:50%;
  border:2px solid var(--line-2); border-top-color:var(--accent); animation:oauthspin .7s linear infinite; }
@keyframes oauthspin{ to{ transform:rotate(360deg); } }
.oauth-divider{ display:flex; align-items:center; gap:.8rem; margin:1.15rem 0; color:var(--faint); font-family:var(--mono); font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; }
.oauth-divider::before, .oauth-divider::after{ content:""; flex:1; height:1px; background:var(--line); }
@media (max-width:380px){ .oauth-grid{ grid-template-columns:1fr; } }
