/* =========================================================
   HALDEN:Dental AI Receptionist
   Design tokens, base styles, components
   ========================================================= */

:root {
  /* Palette:warm midnight teal, healthcare warmth, gold restraint */
  --cream-50: #FAF7F0;
  --cream-100: #F4EDE0;
  --cream-200: #EAE0CC;
  --line: #D8CDB6;
  --line-strong: #BFB090;

  --ink-950: #061820;          /* deepest midnight:backgrounds */
  --ink-900: #0A2C31;          /* deep teal:primary brand */
  --ink-800: #113A42;
  --ink-700: #1B5260;
  --ink-600: #276273;
  --ink-500: #3A7F8E;
  --ink-300: #6FA8B3;

  --text: #192628;
  --text-muted: #56666A;
  --text-faint: #8E9A9D;

  --accent: #C68B3B;            /* gold/amber */
  --accent-soft: #E5C58A;
  --accent-deep: #9A6724;

  --success: #2A7A52;
  --alert: #B14B2A;

  --shadow-sm: 0 1px 2px rgba(6,24,32,.06), 0 1px 1px rgba(6,24,32,.04);
  --shadow-md: 0 4px 16px rgba(6,24,32,.07), 0 2px 6px rgba(6,24,32,.05);
  --shadow-lg: 0 20px 48px -16px rgba(6,24,32,.28), 0 8px 24px -10px rgba(6,24,32,.16);

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --font-display: "Cabinet Grotesk", "General Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "General Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 44px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ink-900); color: var(--cream-50); }

a { color: var(--ink-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink-900); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- typography ---------- */
.display, .h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink-900);
  margin: 0;
}
.display { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.h-display { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.1; }
.display__alt {
  display: block;
  color: var(--ink-600);
  font-weight: 500;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0;
}

/* Kicker:small label, NOT a headline */
.kicker {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 14px;
}
.section--dark .kicker { color: var(--accent-soft); }

/* ---------- layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container--wide { max-width: 1500px; }

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.section--tight { padding: clamp(64px, 8vw, 108px) 0; }
.section--soft { background: var(--cream-100); }
.section--accent { background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%); }
.section--dark {
  background: var(--ink-950);
  color: #DDD5C4;
  border-top: 1px solid var(--ink-800);
}
.section--dark .h-display,
.section--dark .display { color: var(--cream-50); }
.section--dark .section__sub { color: #A8B5B8; }

.section__head { max-width: 780px; margin: 0 0 64px; }
.section__head--dark .h-display { color: var(--cream-50); }
.section__sub {
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 60ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: .96rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--primary {
  background: var(--accent);
  color: var(--ink-950);
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, var(--shadow-md);
}
.btn--primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--cream-100); border-color: var(--ink-700); color: var(--ink-900); }
.section--dark .btn--ghost { color: var(--cream-50); border-color: rgba(255,255,255,.22); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.07); }

/* ---------- sticky bar ---------- */
.sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink-950);
  border-bottom: 1px solid var(--ink-800);
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform .3s var(--ease);
  will-change: transform;
}
.sticky-bar.is-visible {
  transform: translateY(0);
}
.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-bar__text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: #C8CDD0;
}
.sticky-bar__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  animation: stickyPulse 2s ease-in-out infinite;
}
@keyframes stickyPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(198,139,59,.4); }
  50% { opacity: .7; box-shadow: 0 0 0 5px rgba(198,139,59,0); }
}
.sticky-bar__actions { display: flex; gap: 8px; }
@media (max-width: 640px) {
  .sticky-bar__text { display: none; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,240,.90);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink-900);
  flex: 0 0 auto;
}
.brand__mark {
  width: 34px; height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
  color: var(--ink-900);
}
.brand--footer .brand__word { color: var(--cream-50); }

.nav__links {
  display: flex; gap: 24px;
  font-size: .92rem;
}
.nav__links a { color: var(--text-muted); font-weight: 500; }
.nav__links a:hover { color: var(--ink-900); }

.nav__hipaa-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(10,44,49,.06);
  border: 1px solid rgba(10,44,49,.14);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-700);
  font-weight: 400;
}
.nav__hipaa-badge svg { color: var(--success); flex: 0 0 auto; }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0; position: relative;
}
.nav__toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink-900); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad-x) 24px;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--text);
}
.nav__mobile a:last-child {
  margin-top: 12px; border-bottom: none;
  justify-content: center;
}
.nav__mobile.is-open { display: flex; }

@media (max-width: 1020px) {
  .nav__links, .nav__hipaa-badge { display: none; }
  .nav__cta { gap: 8px; }
}
@media (max-width: 700px) {
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 600px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(64px, 9vw, 112px) 0 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--cream-100);
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(42,122,82,.15);
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 32px 0 24px;
}

/* Trust badges */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(42,122,82,.07);
  border: 1px solid rgba(42,122,82,.2);
  border-radius: 999px;
  font-size: .78rem;
  color: var(--success);
  font-weight: 500;
}
.trust-badge svg { flex: 0 0 auto; }

/* Audio listen CTA */
.hero__listen {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--ink-700);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.hero__listen:hover { color: var(--ink-900); border-color: var(--ink-700); }
.hero__listen-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--cream-50);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.hero__listen-icon svg { fill: currentColor; }

/* hero panel */
.hero__panel {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--cream-200);
  font-size: .82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.panel__dots { display: inline-flex; gap: 5px; }
.panel__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-strong);
}
.panel__dots span:first-child { background: var(--accent); }

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

/* ================================================================
   LIVE CALL DASHBOARD (LCD)
   ================================================================ */
.lcd__head { justify-content: space-between; }
.lcd__title-group {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1; min-width: 0;
}
.lcd__title-text {
  font-weight: 500; font-size: .82rem;
  color: var(--ink-900); letter-spacing: .01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lcd__badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 999px;
  font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .09em; text-transform: uppercase;
  border: 1px solid var(--line-strong); background: var(--cream-200);
  color: var(--text-faint);
  transition: background .5s, color .5s, border-color .5s;
  white-space: nowrap; flex-shrink: 0;
}
.lcd__badge[data-state="live"] {
  background: rgba(198,139,59,.13); border-color: rgba(198,139,59,.45);
  color: var(--accent-deep);
}
.lcd__badge[data-state="live"]::before {
  content: '';
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: lcdPulse 1.5s ease-in-out infinite;
}
@keyframes lcdPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.65); }
}
.lcd__timer {
  font-family: var(--font-mono); font-size: .76rem;
  color: var(--text-faint); letter-spacing: .07em;
  min-width: 32px; text-align: right; flex-shrink: 0;
}
.lcd__split {
  display: grid; grid-template-columns: 1fr 152px;
  height: 284px; overflow: hidden; position: relative;
}
.lcd.hero__panel::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23g)' opacity='0.024'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 5;
}
.lcd__wave-pane {
  background: var(--ink-950);
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: stretch;
  position: relative; border-left: 1px solid var(--line); overflow: hidden;
}
.lcd__wave-pane::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,138,43,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,138,43,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.lcd__canvas { display: block; width: 100%; height: 100%; position: relative; z-index: 1; }
.lcd__wave-label {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .2em;
  color: rgba(201,138,43,.28); z-index: 2; white-space: nowrap; pointer-events: none;
}
.lcd__tx-pane {
  position: relative; display: flex; flex-direction: column;
  overflow: hidden; background: var(--cream-100);
}
.lcd__tx-pane::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,138,43,.04) 0%, transparent 70%);
  pointer-events: none;
}
.lcd__tx-scroll {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  padding: 16px 18px 36px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.lcd__tx-scroll::-webkit-scrollbar { display: none; }
.lcd__tx-lines {
  display: flex; flex-direction: column; gap: 12px;
  justify-content: flex-end; min-height: 100%;
}
.lcd__tx-fade {
  position: absolute; top: 0; left: 0; right: 0; height: 48px;
  background: linear-gradient(to bottom, var(--cream-100) 10%, transparent);
  pointer-events: none; z-index: 2;
}
.lcd__line {
  display: grid; grid-template-columns: 58px 1fr; gap: 8px;
  align-items: baseline; opacity: 0;
  animation: lcdLineIn .3s var(--ease) forwards;
}
@keyframes lcdLineIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.lcd__line--past   { opacity: .36; animation: none; }
.lcd__line--active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .lcd__line { animation: none; opacity: 1; }
}
.lcd__speaker {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-faint); padding-top: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lcd__line--ai .lcd__speaker     { color: var(--accent); }
.lcd__line--caller .lcd__speaker { color: var(--text-muted); }
.lcd__text { font-size: .88rem; line-height: 1.5; color: var(--text); }
.lcd__line--past .lcd__text { color: var(--text-muted); }
.lcd__caret {
  display: inline-block; width: 1.5px; height: .82em;
  background: var(--accent); vertical-align: text-bottom;
  margin-left: 1px; border-radius: 1px;
  animation: lcdCaret .95s ease-in-out infinite;
}
@keyframes lcdCaret { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .lcd__caret { animation: none; opacity: 1; } }
.lcd__idle-msg {
  grid-column: 1 / -1; padding: 40px 8px;
  text-align: center; font-family: var(--font-mono);
  font-size: .76rem; color: var(--text-faint); letter-spacing: .05em;
}
.lcd__foot {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 16px; border-top: 1px solid var(--line);
  background: var(--cream-200);
}
.lcd__play-btn {
  flex: 0 0 30px; width: 30px; height: 30px;
  border-radius: 50%; border: 1.5px solid var(--line-strong);
  background: var(--cream-50); display: grid; place-items: center;
  color: var(--ink-900);
  transition: background .18s, border-color .18s, color .18s;
}
.lcd__play-btn:hover, .lcd__play-btn:focus-visible {
  background: var(--ink-900); border-color: var(--ink-900); color: var(--cream-50);
}
.lcd__play-btn svg { width: 11px; height: 11px; fill: currentColor; }
.lcd__play-btn svg rect { fill: currentColor; }
.lcd__progress-track {
  flex: 1; height: 3px;
  background: var(--cream-100); border: 1px solid var(--line);
  border-radius: 3px; overflow: hidden;
}
.lcd__progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 3px; transition: width .12s linear;
}
.lcd__duration {
  font-family: var(--font-mono); font-size: .7rem;
  color: var(--text-faint); min-width: 28px; text-align: right; flex-shrink: 0;
}
.hidden { display: none !important; }

@media (max-width: 900px) {
  .lcd__split {
    grid-template-columns: 1fr; grid-template-rows: 130px 1fr; height: 380px;
  }
  .lcd__wave-pane { border-left: none; border-bottom: 1px solid var(--line); order: -1; }
}
@media (max-width: 520px) {
  .lcd__split { height: 340px; grid-template-rows: 110px 1fr; }
}

/* ---------- logo strip ---------- */
.logo-strip {
  border-top: 1px dashed var(--line);
  padding: 32px 0 0;
}
.logo-strip__label {
  text-align: center; margin: 0 0 18px;
  font-family: var(--font-mono); font-size: .72rem;
  font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-faint);
}
.logo-marquee {
  overflow: hidden; padding-bottom: 40px; min-height: 100px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee__track {
  display: flex; width: max-content;
  will-change: transform;
  animation: logoMarquee 24s linear infinite;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__group {
  display: flex; align-items: center; gap: 22px; padding-right: 22px;
}
.logo-marquee__item {
  width: 168px; height: 76px; flex: 0 0 168px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(200,182,150,.4);
  border-radius: 16px; overflow: hidden;
}
.logo-marquee img {
  max-height: 38px; max-width: 128px;
  width: auto; height: auto; object-fit: contain;
  filter: none; opacity: 1;
}
.logo-marquee img.logo--weave {
  max-width: 152px; max-height: 48px;
  transform: scale(1.18); transform-origin: center;
}
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; } }
@media (max-width: 620px) {
  .logo-marquee__item { width: 142px; height: 66px; flex-basis: 142px; }
  .logo-marquee img { max-width: 108px; max-height: 32px; }
  .logo-marquee img.logo--weave { max-width: 124px; max-height: 40px; transform: scale(1.16); }
}

/* ---------- proof strip ---------- */
.proof-strip {
  background: var(--ink-950);
  padding: clamp(48px, 7vw, 80px) 0;
  border-top: 1px solid var(--ink-800);
}
.proof-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.proof-kpi {
  background: var(--ink-950);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-kpi__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream-50);
  line-height: 1;
  letter-spacing: -.02em;
}
.proof-kpi__label {
  font-size: .84rem;
  color: #8A9699;
  line-height: 1.4;
}
.proof-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0;
}
.proof-quote p {
  font-size: 1.02rem;
  color: #C8D0D3;
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}
.proof-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  color: #6A7A7D;
  letter-spacing: .06em;
  font-style: normal;
  text-transform: uppercase;
}

@media (max-width: 900px) { .proof-kpis { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .proof-kpis { grid-template-columns: 1fr 1fr; }
  .proof-quotes { grid-template-columns: 1fr; }
}

/* ---------- problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.problem-card {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.problem-card__num {
  font-family: var(--font-mono); font-size: .66rem;
  color: var(--accent-deep); letter-spacing: .12em; margin-bottom: 12px;
}
.problem-card h3 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; margin: 0 0 8px; color: var(--ink-900); line-height: 1.2;
}
.problem-card p { margin: 0; color: var(--text-muted); font-size: .88rem; line-height: 1.5; }

@media (max-width: 980px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .problem-grid { grid-template-columns: 1fr; } }

/* ---------- emotional section ---------- */
.emotional-section {
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  border-top: 1px solid var(--line);
}
.emotional-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.emotional-intro .section__sub { margin-left: auto; margin-right: auto; }
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-card {
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ba-card--before {
  background: #FDF6EF;
  border: 1px solid #E4C8A8;
}
.ba-card--after {
  background: var(--ink-950);
  border: 1px solid var(--ink-800);
}
.ba-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ba-card--before .ba-card__label { color: #9A6724; }
.ba-card--after .ba-card__label { color: var(--accent-soft); }
.ba-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
}
.ba-dot--before { background: #C68B3B; }
.ba-dot--after  { background: var(--success); box-shadow: 0 0 0 3px rgba(42,122,82,.2); }
.ba-time {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ba-card--before .ba-time { color: #B8956A; }
.ba-card--after .ba-time  { color: var(--accent-soft); }
.ba-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 8px;
  line-height: 1.2;
}
.ba-card--before h3 { color: var(--ink-900); }
.ba-card--after  h3 { color: var(--cream-50); }
.ba-card p {
  font-size: .91rem;
  line-height: 1.55;
  margin: 0 0 28px;
}
.ba-card--before p { color: var(--text-muted); }
.ba-card--after  p { color: #8E9EA2; }
.ba-card p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* ---------- steps (How it works) ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}
.step {
  background: var(--ink-950);
  padding: 22px 18px;
}
.step__num {
  font-family: var(--font-display); font-weight: 800;
  color: var(--accent-soft); font-size: 1.5rem; margin-bottom: 10px; line-height: 1;
}
.step h3 {
  font-family: var(--font-display); font-size: .92rem; font-weight: 700;
  margin: 0 0 6px; color: var(--cream-50);
}
.step p { margin: 0; color: rgba(174,188,192,.72); font-size: .8rem; line-height: 1.5; }

.how-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: flex-start;
}

@media (max-width: 1100px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .steps { grid-template-columns: 1fr 1fr; } .step:last-child { grid-column: 1 / -1; } }
@media (max-width: 460px)  { .steps { grid-template-columns: 1fr; } }

/* ---------- audio demo section ---------- */
.audio-demo-section {
  background: var(--cream-50);
}
.audio-scenes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audio-scene {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.audio-scene:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.audio-scene__header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.audio-scene__tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 400;
  background: var(--ink-900);
  color: var(--cream-50);
  border: 1px solid var(--ink-900);
}
.audio-scene__tag--alert {
  background: rgba(177,75,42,.12);
  color: var(--alert);
  border-color: rgba(177,75,42,.25);
}
.audio-scene__tag--gold {
  background: rgba(198,139,59,.12);
  color: var(--accent-deep);
  border-color: rgba(198,139,59,.3);
}
.audio-scene__duration {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--text-faint);
  flex-shrink: 0;
}
.audio-scene__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.25;
}
.audio-scene__desc {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.audio-scene__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--cream-50);
  color: var(--ink-900);
  font-weight: 600;
  font-size: .88rem;
  transition: background .18s, border-color .18s, color .18s, transform .15s;
  align-self: flex-start;
}
.audio-scene__play:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--cream-50);
  transform: translateY(-1px);
}
.audio-scene__play-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  flex: 0 0 auto;
  transition: background .18s;
}
.audio-scene__play:hover .audio-scene__play-icon { background: var(--accent-soft); }
.audio-scene__play-icon svg { fill: var(--ink-900); }
.audio-note {
  text-align: center;
  margin: 32px auto 0;
  max-width: 62ch;
  font-size: .94rem;
  color: var(--text-muted);
}
.audio-note strong { color: var(--ink-900); }

@media (max-width: 900px) { .audio-scenes { grid-template-columns: 1fr; } }

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.features--workflow {
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.feature {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-2px); border-color: var(--ink-700); box-shadow: var(--shadow-md); }
.feature h3 {
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  margin: 0 0 6px; color: var(--ink-900);
}
.feature p { margin: 0; color: var(--text-muted); font-size: .82rem; line-height: 1.45; }

@media (max-width: 1240px) { .features--workflow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 920px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ---------- testimonials ---------- */
.testimonials-section {
  background: var(--cream-100);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial-card--featured {
  background: var(--ink-950);
  border-color: var(--ink-800);
}
.testimonial-card__stars {
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: .06em;
}
.testimonial-card--featured .testimonial-card__stars { color: var(--accent-soft); }
.testimonial-card__quote {
  font-size: .98rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  flex: 1;
}
.testimonial-card--featured .testimonial-card__quote { color: #A8B5B8; }
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-card--featured .testimonial-card__footer { border-top-color: rgba(255,255,255,.1); }
.testimonial-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink-900);
  color: var(--cream-50);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: .92rem;
  flex: 0 0 auto;
}
.testimonial-card--featured .testimonial-card__avatar { background: var(--accent); color: var(--ink-950); }
.testimonial-card__name {
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-900);
}
.testimonial-card--featured .testimonial-card__name { color: var(--cream-50); }
.testimonial-card__role { font-size: .8rem; color: var(--text-muted); }
.testimonial-card--featured .testimonial-card__role { color: #7A8D91; }
.testimonial-card__metric {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-faint);
  padding: 10px 14px;
  background: var(--cream-100);
  border-radius: var(--radius);
  line-height: 1.4;
}
.testimonial-card--featured .testimonial-card__metric {
  background: rgba(255,255,255,.06);
  color: #8A9699;
}
.testimonial-card__metric strong {
  color: var(--ink-900);
  font-size: .94rem;
}
.testimonial-card--featured .testimonial-card__metric strong { color: var(--accent-soft); }

@media (max-width: 1000px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 600px) and (max-width: 1000px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:nth-child(3) { grid-column: 1 / -1; }
}

/* ---------- ROI ---------- */
.roi {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.roi__assumptions {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
  font-size: .92rem; color: var(--text-muted);
  border-top: 1px solid var(--line); padding-top: 20px;
}
.roi__assumptions strong { color: var(--ink-900); font-weight: 600; }
.roi__lead-cta {
  margin-top: 28px;
  padding: 20px 22px;
  background: rgba(198,139,59,.08);
  border: 1px solid rgba(198,139,59,.2);
  border-radius: var(--radius-lg);
}
.roi__lead-cta p {
  margin: 0 0 12px;
  font-size: .96rem;
  font-weight: 600;
  color: var(--ink-900);
}
.roi__calc {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.roi__head {
  font-family: var(--font-display); font-size: 1.2rem;
  margin: 0 0 20px; color: var(--ink-900); font-weight: 700;
}
.field { display: block; margin-bottom: 20px; }
.field__label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .92rem; color: var(--text); font-weight: 500; margin-bottom: 9px;
}
.field__hint { color: var(--text-faint); font-weight: 400; font-size: .84rem; }
.field__label output {
  font-family: var(--font-mono);
  background: var(--ink-900); color: var(--cream-50);
  padding: 3px 10px; border-radius: 999px; font-size: .82rem;
}
.field__scale {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: .7rem; color: var(--text-faint);
  margin-top: 5px;
}
input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px;
  background: var(--cream-200); border-radius: 999px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink-900);
  border: 3px solid var(--cream-50);
  box-shadow: 0 0 0 1px var(--ink-900), var(--shadow-md);
  cursor: pointer; transition: transform .15s var(--ease);
}
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink-900); border: 3px solid var(--cream-50); cursor: pointer;
}
input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.08); }
.select, input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 12px 14px;
  background: var(--cream-50); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: 1rem; color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.select:focus, input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--ink-700);
  box-shadow: 0 0 0 3px rgba(27,82,96,.1);
}
textarea { resize: vertical; min-height: 88px; }
.roi__results {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 22px 0 4px;
}
.roi__stat {
  background: var(--cream-100); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
}
.roi__stat-label {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
}
.roi__stat-value {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.55rem; color: var(--ink-900); margin: 6px 0 4px;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.roi__stat-value--accent { color: var(--accent-deep); }
.roi__stat-sub { font-size: .8rem; color: var(--text-muted); }
.roi__cta { margin-top: 20px; width: 100%; justify-content: center; }

@media (max-width: 900px) { .roi { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .roi__results { grid-template-columns: 1fr; } }

/* ===================================================
   PRICING:px-section redesign
   =================================================== */

.px-section {
  position: relative;
  background: linear-gradient(165deg, #0B3039 0%, #071C22 52%, #060E18 100%);
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.px-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 38% at 50% 0%,  rgba(198,139,59,.16) 0%, transparent 60%),
    radial-gradient(ellipse 42% 44% at 86% 82%,  rgba(198,139,59,.09) 0%, transparent 55%),
    radial-gradient(ellipse 48% 42% at 10% 82%,  rgba(10,120,130,.2)  0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.px-section > .container { position: relative; z-index: 1; }

/* Header */
.px-header { text-align: center; max-width: 620px; margin: 0 auto 36px; }

.px-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(198,139,59,.85);
  background: rgba(198,139,59,.08);
  border: 1px solid rgba(198,139,59,.2);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 18px;
}

.px-headline {
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 2.9rem);
  font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -.025em;
  margin: 0 0 14px; font-style: normal;
}

.px-headline__em { color: #C68B3B; font-style: normal; }

.px-sub {
  font-size: .95rem; color: rgba(255,255,255,.4);
  line-height: 1.6; margin: 0 0 22px;
}

/* Billing toggle (dark version:keeps .billing-toggle__btn for JS hooks) */
.px-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 4px; margin-top: 6px;
}

.px-toggle .billing-toggle__btn {
  border: 0; background: transparent;
  padding: 8px 20px; border-radius: 999px;
  font-weight: 500; font-size: .88rem;
  color: rgba(255,255,255,.48);
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
}

.px-toggle .billing-toggle__btn strong { color: #C68B3B; }

.px-toggle .billing-toggle__btn.is-active {
  background: rgba(198,139,59,.16);
  color: #E6B86A;
  border: 1px solid rgba(198,139,59,.28);
}

/* Social proof strip */
.px-proof {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 18px;
  margin: 0 auto 48px;
  padding: 14px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px; max-width: 880px;
}

.px-proof__item {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,.42);
}

.px-proof__item svg { color: rgba(198,139,59,.7); flex-shrink: 0; }
.px-proof__item strong { color: rgba(255,255,255,.8); }

.px-proof__sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.1); flex-shrink: 0;
}

/* Plan grid:3 cols desktop, responsive below */
.px-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: start;
  margin-bottom: 16px;
}

/* Base card */
.px-card {
  position: relative;
  background: rgba(10,44,49,.25);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.px-card:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,.28); }

/* Starter:gold glow */
.px-card--star {
  background: rgba(12,50,56,.4);
  border-color: rgba(198,139,59,.38);
  box-shadow: 0 0 0 1px rgba(198,139,59,.08), 0 8px 40px rgba(198,139,59,.14);
  padding-top: 46px;
}

.px-card--star:hover {
  box-shadow: 0 0 0 1px rgba(198,139,59,.22), 0 18px 56px rgba(198,139,59,.22);
  border-color: rgba(198,139,59,.5);
}

/* Growth:teal accent */
.px-card--growth {
  background: rgba(10,44,49,.35);
  border-color: rgba(10,180,200,.2);
  padding-top: 46px;
}

.px-card--growth:hover { border-color: rgba(10,180,200,.38); }

/* Badges */
.px-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 16px; border-radius: 999px;
  font-size: .71rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}

.px-card__badge--gold {
  background: linear-gradient(135deg, #C68B3B, #9A6726);
  color: #fff;
  box-shadow: 0 4px 18px rgba(198,139,59,.5);
}

.px-card__badge--teal {
  background: rgba(10,180,200,.12);
  color: #7ECFD6;
  border: 1px solid rgba(10,180,200,.22);
}

/* Card head */
.px-card__head { margin-bottom: 14px; }

.px-card__name {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: #fff; margin: 0 0 3px; letter-spacing: -.01em;
}

.px-card__tag { font-size: .8rem; color: rgba(255,255,255,.38); margin: 0 0 12px; }

.px-price {
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px;
}

.px-price__cur { font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,.5); }

.px-price__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.8rem; line-height: 1; color: #fff;
  letter-spacing: -.03em; font-feature-settings: "tnum" 1;
}

.px-card--star .px-price__num { color: #E6B86A; }
.px-card--growth .px-price__num { color: #B2EAED; }

.px-price__per { font-size: .88rem; color: rgba(255,255,255,.38); margin-left: 4px; }

.px-card__setup {
  display: inline-block; font-size: .75rem;
  color: rgba(198,139,59,.72);
  background: rgba(198,139,59,.07);
  border: 1px solid rgba(198,139,59,.15);
  border-radius: 6px; padding: 4px 10px;
  font-family: var(--font-mono); letter-spacing: .02em;
}

/* ── Morning summary mockup ── */
.px-mockup {
  background: rgba(4,10,18,.7);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; overflow: hidden;
  margin: 14px 0 16px;
  font-family: var(--font-mono); font-size: .7rem;
}

.px-mockup__bar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.px-mockup__dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

.px-mockup__dot--r { background: #FF5F57; }
.px-mockup__dot--y { background: #FEBC2E; }
.px-mockup__dot--g { background: #28C840; }

.px-mockup__title {
  flex: 1; text-align: center; font-size: .64rem;
  color: rgba(255,255,255,.32); letter-spacing: .04em;
  margin-left: -17px;
}

.px-mockup__ts { color: rgba(198,139,59,.65); font-size: .64rem; flex-shrink: 0; }

.px-mockup__body { padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }

.px-mockup__row {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,.62); font-size: .7rem; line-height: 1.4;
}

.px-mockup__row--alert { color: rgba(252,165,165,.82); }
.px-mockup__row--dim   { color: rgba(255,255,255,.27); justify-content: center; font-size: .65rem; }

.px-mockup__ok   { color: #4ADE80; flex-shrink: 0; font-weight: 700; }
.px-mockup__warn { color: #F87171; flex-shrink: 0; font-weight: 700; }

.px-mockup__rule { height: 1px; background: rgba(255,255,255,.07); margin: 2px 0; }

/* Feature list */
.px-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 9px; flex: 1;
}

.px-list li {
  position: relative; padding-left: 20px;
  font-size: .88rem; color: rgba(255,255,255,.62); line-height: 1.45;
}

.px-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 10px; height: 2px;
  background: rgba(198,139,59,.45); border-radius: 2px;
}

.px-card--star .px-list li::before   { background: rgba(198,139,59,.8); }
.px-card--growth .px-list li::before { background: rgba(10,180,200,.55); }

.px-list__section {
  color: rgba(255,255,255,.3) !important;
  font-size: .72rem !important;
  text-transform: uppercase; letter-spacing: .08em;
  font-family: var(--font-mono);
}

.px-list__section::before { display: none !important; }

/* Overage */
.px-overage {
  font-family: var(--font-mono); font-size: .7rem;
  color: rgba(255,255,255,.25); margin: 0 0 14px; letter-spacing: .02em;
}

/* CTAs */
.px-card__cta {
  display: flex !important; align-items: center; justify-content: center;
  width: 100%; border-radius: 10px;
  font-size: .9rem; font-weight: 700;
  padding: 14px 20px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.px-cta--gold {
  background: linear-gradient(135deg, #C68B3B 0%, #A87030 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 22px rgba(198,139,59,.4);
}

.px-cta--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198,139,59,.58) !important;
}

.px-cta--teal {
  border-color: rgba(10,180,200,.3) !important;
  color: rgba(126,207,214,.85) !important;
}

.px-cta--teal:hover {
  border-color: rgba(10,180,200,.55) !important;
  color: #7ECFD6 !important;
}

.px-card__cta.btn--ghost:not(.px-cta--teal) {
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.65) !important;
}

.px-card__cta.btn--ghost:not(.px-cta--teal):hover {
  border-color: rgba(255,255,255,.36) !important;
  color: #fff !important;
}

/* Reassurance line */
.px-card__reassure {
  text-align: center; font-size: .7rem;
  color: rgba(255,255,255,.24);
  margin: 10px 0 0; font-family: var(--font-mono); letter-spacing: .02em;
}

/* DSO Enterprise banner */
.px-enterprise {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  background: rgba(10,44,49,.2);
  border: 1px solid rgba(198,139,59,.16);
  border-radius: 16px; padding: 28px 32px;
  margin-bottom: 36px; position: relative; overflow: hidden;
}

.px-enterprise::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 100% at 0% 50%, rgba(198,139,59,.05) 0%, transparent 60%);
  pointer-events: none;
}

.px-enterprise__l { display: flex; align-items: center; gap: 16px; }
.px-enterprise__icon { flex-shrink: 0; }

.px-enterprise__name {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: #fff; margin: 0 0 4px;
}

.px-enterprise__tag { font-size: .78rem; color: rgba(255,255,255,.38); margin: 0; }

.px-enterprise__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 7px 20px;
}

.px-enterprise__list li {
  font-size: .82rem; color: rgba(255,255,255,.52);
  position: relative; padding-left: 14px;
}

.px-enterprise__list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 1.5px; background: rgba(198,139,59,.5); border-radius: 2px;
}

.px-enterprise__cta {
  white-space: nowrap;
  border-color: rgba(198,139,59,.28) !important;
  color: rgba(198,139,59,.8) !important;
  flex-shrink: 0;
}

.px-enterprise__cta:hover {
  border-color: rgba(198,139,59,.55) !important;
  color: #C68B3B !important;
}

/* Trust badges */
.px-trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; padding-top: 24px; margin-bottom: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.px-trust__badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px; font-size: .78rem;
  color: rgba(255,255,255,.52); font-weight: 500;
}

.px-trust__badge svg { color: rgba(10,180,200,.7); flex-shrink: 0; }

/* Fine print */
.px-note {
  text-align: center; font-size: .8rem; color: rgba(255,255,255,.2);
  max-width: 600px; margin: 0 auto; line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 1060px) {
  .px-grid { grid-template-columns: 1fr 1fr; }
  .px-card--star { grid-column: 1 / -1; }
  .px-mockup { max-width: 480px; }
}

@media (max-width: 900px) {
  .px-enterprise { grid-template-columns: 1fr; gap: 20px; }
  .px-enterprise__cta { width: 100%; justify-content: center !important; }
}

@media (max-width: 600px) {
  .px-section { padding: 56px 0 64px; }
  .px-grid { grid-template-columns: 1fr; }
  .px-card--star { grid-column: auto; }
  .px-proof { border-radius: var(--radius-lg); gap: 8px 12px; }
  .px-proof__sep { display: none; }
  .px-headline { font-size: 1.8rem; }
  .px-enterprise { padding: 22px 20px; }
}

/* ---------- niches ---------- */
.niches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.niche {
  background: var(--cream-100); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease);
}
.niche:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.niche__tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: .62rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-50); background: var(--ink-900);
  padding: 3px 9px; border-radius: 999px; align-self: flex-start;
}
.niche h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: .96rem; margin: 0; color: var(--ink-900); line-height: 1.25;
}
.niche__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line); padding-top: 10px;
}
.niche__list li {
  position: relative; padding-left: 14px;
  font-size: .8rem; color: var(--text-muted); line-height: 1.4;
}
.niche__list li::before {
  content: "·"; position: absolute; left: 0;
  color: var(--accent); font-size: .9rem;
}

@media (max-width: 980px) { .niches { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .niches { grid-template-columns: 1fr 1fr; } .niche:last-child { grid-column: 1 / -1; } }

/* ---------- security & compliance (renewed) ---------- */

/* ── Section shell + ambient atmosphere ────────────────────────── */
.sec-x {
  position: relative;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(198,139,59,.07), transparent 60%),
    radial-gradient(900px 540px at -10% 30%, rgba(10,44,49,.06), transparent 60%),
    linear-gradient(180deg, #FCFAF4 0%, #F7F1E3 100%);
  overflow: hidden;
  padding-top: clamp(72px, 9vw, 120px);
  padding-bottom: clamp(72px, 9vw, 120px);
}
.sec-x__bg { position: absolute; inset: 0; pointer-events: none; }
.sec-x__bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,44,49,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,44,49,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 35%, #000 30%, transparent 80%);
  opacity: .55;
}
.sec-x__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.sec-x__glow--1 { top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(198,139,59,.28), transparent 70%); }
.sec-x__glow--2 { bottom: -160px; left: -100px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(10,44,49,.16), transparent 70%); }
.sec-x__inner { position: relative; }

/* ── Header (single column, centered max-width) ───────────────── */
.sec-x__head {
  max-width: 760px;
  margin: 0 0 clamp(36px, 5vw, 56px);
}
.sec-x__head-em {
  font-style: normal;
  color: var(--accent-deep);
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-x__lede { margin-top: 18px; max-width: 56ch; }

/* ── Compliance chip bar ──────────────────────────────────────── */
.sec-x__trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 clamp(40px, 5vw, 56px);
  padding: 14px 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sec-x__chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em;
  color: var(--ink-800);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 13px 7px 11px;
  white-space: nowrap;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.sec-x__chip svg { width: 14px; height: 14px; color: var(--ink-700); flex-shrink: 0; }
.sec-x__chip:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.sec-x__chip--soft { background: transparent; color: var(--text-muted); border-style: dashed; }
.sec-x__chip--soft em { font-style: normal; color: var(--text-faint); font-size: .68rem; margin-left: 2px; }

/* ── Trust Vault:animated data-flow ─────────────────────────── */
.sec-x__vault {
  background: linear-gradient(180deg, var(--ink-950) 0%, #08222A 100%);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 44px) clamp(36px, 4vw, 52px);
  margin-bottom: clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-800);
  box-shadow: 0 30px 70px -32px rgba(6,24,32,.7);
}
.sec-x__vault::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 50% -10%, rgba(198,139,59,.16), transparent 65%),
    radial-gradient(500px 280px at 20% 110%, rgba(61,214,140,.06), transparent 70%);
  pointer-events: none;
}
.sec-x__vault-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(80px, 1.2fr) minmax(140px, 1fr) minmax(80px, 1.2fr) minmax(140px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 0 32px;
  z-index: 1;
}

/* Vault nodes */
.vnode {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; text-align: center;
}
.vnode__core {
  width: 86px; height: 86px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.1);
  color: var(--cream-100);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.vnode__core svg { width: 36px; height: 36px; }
.vnode__core--gold {
  background: linear-gradient(180deg, rgba(198,139,59,.22), rgba(198,139,59,.06));
  border-color: rgba(198,139,59,.55);
  color: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(198,139,59,.18), 0 12px 32px -10px rgba(198,139,59,.45), inset 0 0 22px rgba(198,139,59,.18);
}
.vnode__halo {
  position: absolute; top: 0; left: 50%;
  width: 96px; height: 96px; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
}
.vnode__ring {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 86px; height: 86px; border-radius: 50%;
  border: 1px solid rgba(198,139,59,.32);
  animation: vringPulse 3.2s cubic-bezier(.2,.7,.2,1) infinite;
}
.vnode__ring--2 { width: 116px; height: 116px; top: -15px; animation-delay: .6s; opacity: .65; }
.vnode__ring--3 { width: 146px; height: 146px; top: -30px; animation-delay: 1.2s; opacity: .4; }
@keyframes vringPulse {
  0%   { transform: translateX(-50%) scale(.95); opacity: .8; }
  70%  { transform: translateX(-50%) scale(1.18); opacity: 0; }
  100% { transform: translateX(-50%) scale(1.18); opacity: 0; }
}
.vnode__label {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--cream-100); margin-top: 4px;
}
.vnode__label--vault { color: var(--accent-soft); }
.vnode__meta {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .08em;
  color: #6E848A; text-transform: uppercase;
}

/* Pipes & traveling dots */
.vpipe {
  position: relative;
  height: 64px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(198,139,59,.45);
}
.vpipe__line { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
.vpipe__dot {
  position: absolute; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 12px rgba(229,197,138,.9), 0 0 4px rgba(229,197,138,1);
  margin-top: -4px;
  animation: vdotMove 3.4s cubic-bezier(.6,.05,.4,.95) infinite;
}
.vpipe__dot--b { animation-delay: 1.7s; background: #C9F0DE; box-shadow: 0 0 12px rgba(61,214,140,.7); }
.vpipe__dot--reverse { animation-name: vdotMoveRev; }
@keyframes vdotMove {
  0%   { left: -2%; opacity: 0; transform: scale(.6); }
  10%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 1; transform: scale(1); }
  100% { left: 102%; opacity: 0; transform: scale(.6); }
}
@keyframes vdotMoveRev {
  0%   { left: 102%; opacity: 0; transform: scale(.6); }
  10%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 1; transform: scale(1); }
  100% { left: -2%; opacity: 0; transform: scale(.6); }
}
.vpipe__check {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--accent-soft);
  background: var(--ink-950);
  border: 1px solid rgba(198,139,59,.4);
  border-radius: 10px;
  padding: 6px 8px 4px;
  z-index: 2;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.6);
}
.vpipe__check svg { width: 20px; height: 20px; }
.vpipe__check-lbl {
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-soft);
}

/* Vault meta row: zeros card + bullets */
.sec-x__vault-meta {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
  margin-top: 8px;
}

/* Three-zero counter */
.sec-zeros {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
}
.sec-zeros::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(160px 60px at 50% 0, rgba(61,214,140,.16), transparent 70%);
  pointer-events: none;
}
.sec-zeros__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.sec-zeros__tag {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: #6E848A;
}
.sec-zeros__verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: #B7E7C9;
}
.sec-zeros__verified svg { width: 11px; height: 11px; }
.sec-zeros__row {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 8px; padding: 4px 0 6px;
}
.sec-zero { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sec-zero__num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1;
  background: linear-gradient(180deg, #E3FBEF 0%, #6FCFA0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 28px rgba(61,214,140,.18);
  transition: transform .25s var(--ease);
}
.sec-zero__num.is-locked { animation: secxLock .55s cubic-bezier(.2,.7,.2,1) 1; }
@keyframes secxLock {
  0%   { transform: scale(1.18); }
  60%  { transform: scale(.94); }
  100% { transform: scale(1); }
}
.sec-zero__lbl {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: #8E9EA1;
}
.sec-zero__sep {
  width: 1px; height: 36px; background: rgba(255,255,255,.1);
}
.sec-zeros__foot {
  margin: 14px 0 0; font-size: .8rem; color: #8E9EA1; line-height: 1.5;
}

/* Vault bullets */
.sec-x__vault-bullets {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.sec-x__vault-bullets li {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
  color: #CDD7D9; font-size: .95rem; line-height: 1.55;
}
.sec-x__vault-bullets strong { color: var(--cream-50); font-weight: 700; }
.vb__check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(61,214,140,.14);
  border: 1px solid rgba(61,214,140,.4);
  color: #C9F0DE;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.vb__check svg { width: 14px; height: 14px; }

/* ── Controls grid (compact horizontal layout) ────────────────── */
.sec-x__controls { margin-bottom: clamp(48px, 6vw, 72px); }
.sec-x__controls-head { max-width: 60ch; margin: 0 0 22px; }
.sec-x__controls-head h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700; color: var(--ink-900); margin: 0 0 6px; letter-spacing: -.015em;
}
.sec-x__controls-head p { color: var(--text-muted); margin: 0; font-size: .92rem; }

.sec-x__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sec-ctrl {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  position: relative; overflow: hidden;
}
.sec-ctrl::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent); opacity: 0;
  transition: opacity .2s var(--ease);
}
.sec-ctrl:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.sec-ctrl:hover::before { opacity: 1; }
.sec-ctrl--feat {
  background: linear-gradient(180deg, var(--ink-950) 0%, #0A2A33 100%);
  border-color: var(--ink-800);
  color: var(--cream-100);
}
.sec-ctrl--feat::before { background: var(--accent-soft); opacity: 1; }

.sec-ctrl__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(10,44,49,.06);
  border: 1px solid var(--line);
  color: var(--ink-700);
  flex-shrink: 0;
}
.sec-ctrl__icon svg { width: 20px; height: 20px; }
.sec-ctrl--feat .sec-ctrl__icon {
  background: rgba(198,139,59,.14);
  border-color: rgba(198,139,59,.32);
  color: var(--accent-soft);
}
.sec-ctrl__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.sec-ctrl__row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.sec-ctrl__status {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(42,122,82,.1); color: var(--success); border: 1px solid rgba(42,122,82,.25);
  flex-shrink: 0;
}
.sec-ctrl__status::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 5px currentColor;
  animation: secxStatusPulse 2.4s ease-in-out infinite;
}
@keyframes secxStatusPulse {
  0%, 100% { opacity: .55; transform: scale(.9); }
  50%      { opacity: 1;   transform: scale(1.1); }
}
.sec-ctrl__status--cfg  { background: rgba(198,139,59,.1); color: var(--accent-deep); border-color: rgba(198,139,59,.3); }
.sec-ctrl__status--soft { background: rgba(86,102,106,.1); color: var(--text-muted); border-color: rgba(86,102,106,.22); }
.sec-ctrl--feat .sec-ctrl__status { background: rgba(61,214,140,.16); color: #C9F0DE; border-color: rgba(61,214,140,.32); }
.sec-ctrl--feat .sec-ctrl__status--cfg { background: rgba(229,197,138,.16); color: var(--accent-soft); border-color: rgba(229,197,138,.32); }

.sec-ctrl h4 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--ink-900); margin: 0; line-height: 1.2;
}
.sec-ctrl--feat h4 { color: var(--cream-50); }
.sec-ctrl p { margin: 0; font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.sec-ctrl--feat p { color: #A9BCBF; }
.sec-ctrl__foot {
  margin-top: 4px;
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em;
  color: var(--text-muted);
}
.sec-ctrl__foot span { color: var(--text-faint); margin-right: 3px; }
.sec-ctrl--feat .sec-ctrl__foot { color: #8E9EA1; }
.sec-ctrl--feat .sec-ctrl__foot span { color: #6E848A; }

/* ── "Never does" conviction panel (compact) ──────────────────── */
.sec-x__never {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
  background: linear-gradient(150deg, #1A1212 0%, #2A1818 60%, #341A1A 100%);
  color: var(--cream-100);
  box-shadow: 0 24px 56px -28px rgba(40,12,12,.6);
  border: 1px solid rgba(177,75,42,.22);
}
.sec-x__never-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(177,75,42,.22), transparent 65%),
    radial-gradient(500px 280px at 0% 100%, rgba(177,75,42,.12), transparent 70%);
}
.sec-x__never-inner {
  position: relative; z-index: 1;
  padding: clamp(26px, 3.5vw, 40px) clamp(22px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 3vw, 28px);
}
.sec-x__never-kicker { color: #F4B89A; }
.sec-x__never-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 24px; align-items: end;
}
.sec-x__never-head h3 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800; color: var(--cream-50); margin: 0; letter-spacing: -.02em; line-height: 1.1;
}
.sec-x__never-head h3 em { font-style: italic; color: #F4B89A; }
.sec-x__never-head p { margin: 0; color: #BEA8A5; font-size: .9rem; line-height: 1.5; }

.sec-x__never-list {
  margin: 0; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.sec-x__never-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.sec-x__never-list li:hover {
  background: rgba(255,255,255,.04);
  border-color: rgba(244,184,154,.25);
  transform: translateX(2px);
}
.never-x {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(177,75,42,.18);
  border: 1px solid rgba(244,184,154,.32);
  color: #F4B89A;
  flex-shrink: 0;
}
.never-x svg { width: 12px; height: 12px; }
.sec-x__never-list strong {
  display: block; color: var(--cream-50); font-family: var(--font-display);
  font-size: .92rem; font-weight: 700; margin-bottom: 2px; line-height: 1.25;
}
.sec-x__never-list span {
  display: block; font-size: .78rem; color: #BEA8A5; line-height: 1.45;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Stay horizontal but tighten columns so dots have real travel distance */
  .sec-x__vault-rail {
    grid-template-columns: 1fr 1.1fr 1fr 1.1fr 1fr;
    gap: 4px;
    align-items: start;
    padding: 28px 0 28px;
  }
  .vpipe {
    height: 60px;
    width: 100%;
    transform: none;
    margin: 6px 0 0;
  }
  .vnode__core { width: 64px; height: 64px; }
  .vnode__core svg { width: 26px; height: 26px; }
  .vnode__halo { width: 72px; height: 72px; }
  .vnode__ring { width: 64px; height: 64px; }
  .vnode__ring--2 { width: 84px; height: 84px; top: -10px; }
  .vnode__ring--3 { width: 104px; height: 104px; top: -20px; }
  .vnode__label { font-size: .8rem; word-break: break-word; line-height: 1.2; }
  .vnode__meta { font-size: .56rem; letter-spacing: .06em; line-height: 1.3; }
  .sec-x__vault-meta { grid-template-columns: 1fr; }
  .sec-x__grid { grid-template-columns: 1fr 1fr; }
  .sec-x__never-head { grid-template-columns: 1fr; gap: 10px; align-items: start; }
  .sec-x__never-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sec-x__trust { padding: 12px; }
  .sec-x__chip { font-size: .68rem; padding: 6px 10px; }
  .sec-x__vault { padding: 22px 14px 28px; }
  .sec-x__vault-rail { gap: 2px; padding: 24px 0 24px; }
  .vnode__core { width: 52px; height: 52px; }
  .vnode__core svg { width: 22px; height: 22px; }
  .vnode__halo { width: 58px; height: 58px; }
  .vnode__ring { width: 52px; height: 52px; }
  .vnode__ring--2 { width: 70px; height: 70px; top: -9px; }
  .vnode__ring--3 { width: 88px; height: 88px; top: -18px; }
  .vnode__label { font-size: .7rem; }
  .vnode__meta { display: none; }
  .vpipe { height: 44px; margin-top: 4px; }
  .vpipe__check { padding: 4px 6px; gap: 2px; border-radius: 7px; }
  .vpipe__check svg { width: 14px; height: 14px; }
  .vpipe__check-lbl { font-size: .48rem; letter-spacing: .08em; }
  .sec-x__grid { grid-template-columns: 1fr; }
  .sec-x__never-list { grid-template-columns: 1fr; }
  .sec-zeros__row { grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
  .sec-zero__sep { display: none; }
}
@media (max-width: 460px) {
  .sec-x__vault { padding: 18px 10px 22px; }
  .sec-x__vault-rail { gap: 0; padding: 20px 0 20px; }
  .vnode__core { width: 42px; height: 42px; }
  .vnode__core svg { width: 18px; height: 18px; }
  .vnode__halo { width: 48px; height: 48px; }
  .vnode__ring { width: 42px; height: 42px; }
  .vnode__ring--2 { width: 56px; height: 56px; top: -7px; }
  .vnode__ring--3 { width: 70px; height: 70px; top: -14px; }
  .vnode__label { font-size: .62rem; margin-top: 2px; line-height: 1.15; }
  .vpipe { height: 32px; margin-top: 2px; }
  .vpipe__check { padding: 3px 4px; border-radius: 6px; gap: 0; }
  .vpipe__check svg { width: 12px; height: 12px; }
  .vpipe__check-lbl { display: none; }
  .sec-zero__num { font-size: 2.2rem; }
  .sec-ctrl { padding: 14px 14px; gap: 12px; }
  .sec-ctrl__row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .vnode__ring, .vpipe__dot, .sec-ctrl__status::before { animation: none !important; }
  .vpipe__dot { opacity: .85; left: 50%; }
}

/* ---------- timeline ---------- */
.timeline {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.timeline__item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 18px 14px;
}
.timeline__item--accent {
  background: rgba(198,139,59,.11); border-color: rgba(198,139,59,.3);
}
.timeline__item--accent .timeline__day { color: var(--accent); }
.timeline__item--accent h3 { color: var(--cream-50); }
.timeline__item--accent p { color: rgba(229,197,138,.75); }
.timeline__day {
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 8px;
}
.timeline__item h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; margin: 0 0 5px; color: var(--cream-50);
}
.timeline__item p { margin: 0; color: rgba(174,188,192,.68); font-size: .8rem; line-height: 1.5; }

@media (max-width: 1080px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .timeline { grid-template-columns: 1fr 1fr; } .timeline__item:last-child { grid-column: 1 / -1; } }
@media (max-width: 460px)  { .timeline { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__list {
  max-width: 840px; margin: 0 auto; display: grid; gap: 10px;
}
.faq__item {
  background: var(--cream-100); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.faq__item[open] { background: var(--cream-50); border-color: var(--ink-300); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-weight: 600; font-family: var(--font-display); font-size: 1.04rem;
  color: var(--ink-900); display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 600;
  font-size: 1.4rem; color: var(--ink-700);
  transition: transform .25s var(--ease); flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__body { padding: 0 24px 22px; color: var(--text-muted); font-size: .97rem; line-height: 1.65; }
.faq__body p { margin: 0; }

/* ---------- contact ---------- */
.section--contact { background: var(--cream-100); }
.contact {
  display: grid; grid-template-columns: .85fr 1.1fr;
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
.contact__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 14px; font-size: .95rem; color: var(--text-muted);
}
.contact__list li { display: flex; align-items: flex-start; gap: 12px; }
.contact__list li svg { color: var(--success); flex: 0 0 auto; margin-top: 2px; }
.contact__list strong { color: var(--ink-900); font-weight: 600; }
.contact__security {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact__security svg { color: var(--success); }
.contact__form {
  background: var(--cream-50); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field__error {
  display: block; font-size: .82rem; color: var(--alert); margin-top: 5px; min-height: 1em;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--alert); box-shadow: 0 0 0 3px rgba(177,75,42,.1);
}
.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 8px; flex-wrap: wrap;
}
.form-foot__alt { font-size: .9rem; color: var(--text-muted); margin: 0; }
.form-success {
  margin-top: 16px; padding: 14px 18px;
  background: #D8EDE0; border: 1px solid #B2D4C0; color: #1C5234;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink-950); color: #A8B5B8; padding: 72px 0 0;
}
.footer__inner {
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: clamp(28px, 4vw, 56px); padding-bottom: 56px;
}
.footer__tag { margin: 16px 0 0; max-width: 38ch; font-size: .94rem; color: #8A9699; }
.footer__trust {
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.footer__trust-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .12em; text-transform: uppercase; color: #8A9699;
}
.footer__cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.footer__cols h4 {
  font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  letter-spacing: .04em; color: var(--cream-50); margin: 0 0 14px;
}
.footer__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .91rem; }
.footer__cols a { color: #8A9699; }
.footer__cols a:hover { color: var(--cream-50); }
.footer__legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0 32px; font-size: .84rem; color: #627275;
}
.footer__legal-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer__legal p { margin: 0; }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; padding-bottom: 36px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- entry animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
  }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ================================================================
   PHASE 2:Cinema-Grade UI Additions
   ================================================================ */

/* ---------- dark hero ---------- */
.hero--dark {
  background: linear-gradient(160deg, #05111A 0%, #0B2535 55%, #0A2C31 100%);
  position: relative;
  overflow: hidden;
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero--dark .hero__grid {
  position: relative;
  z-index: 1;
}
.hero--dark .display { color: #F0EBE0; }
.hero--dark .display__alt { color: var(--accent-soft); font-weight: 500; }
.hero--dark .lede { color: rgba(210,200,185,.72); }
.hero--dark .eyebrow {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  color: rgba(210,200,185,.65);
}
.hero--dark .eyebrow .dot { background: var(--success); box-shadow: 0 0 0 4px rgba(42,122,82,.2); }
.hero--dark .trust-badge {
  background: rgba(42,122,82,.13);
  border-color: rgba(42,122,82,.28);
  color: #6DC595;
}
.hero--dark .hero__listen {
  color: rgba(229,197,138,.8);
  border-color: rgba(229,197,138,.22);
}
.hero--dark .hero__listen:hover {
  color: var(--accent-soft);
  border-color: rgba(229,197,138,.55);
}
.hero--dark .hero__listen-icon { background: var(--accent); }
.hero--dark .logo-strip { border-top-color: rgba(255,255,255,.07); }
.hero--dark .logo-strip__label { color: rgba(255,255,255,.28); }
.hero--dark .logo-marquee__item {
  background: #ffffff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 2px 16px rgba(0,0,0,0.28);
}
.hero--dark .logo-marquee img { opacity: 1; filter: none; }
.hero--dark .btn--ghost {
  color: rgba(229,197,138,.85);
  border-color: rgba(229,197,138,.28);
}
.hero--dark .btn--ghost:hover {
  background: rgba(229,197,138,.08);
  border-color: rgba(229,197,138,.5);
  color: var(--accent-soft);
}

/* ---------- GSAP word spans ---------- */
.display .word { display: inline-block; }

/* ---------- glass panel (hero LCD on dark bg) ---------- */
.glass-panel {
  background: rgba(10,30,40,.55) !important;
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  border-color: rgba(255,255,255,.11) !important;
  box-shadow: 0 24px 64px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06) !important;
}
.glass-panel .panel__head {
  background: rgba(0,0,0,.22);
  border-bottom-color: rgba(255,255,255,.07);
}
.glass-panel .lcd__title-text { color: var(--cream-50); }
.glass-panel .lcd__timer { color: rgba(255,255,255,.35); }
.glass-panel .lcd__tx-pane { background: rgba(6,18,26,.55); }
.glass-panel .lcd__tx-fade {
  background: linear-gradient(to bottom, rgba(6,18,26,.75) 10%, transparent);
}
.glass-panel .lcd__foot {
  background: rgba(0,0,0,.28);
  border-top-color: rgba(255,255,255,.07);
}
.glass-panel .lcd__play-btn {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: var(--cream-50);
}
.glass-panel .lcd__play-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-950);
}
.glass-panel .lcd__text { color: #CEC5B4; }
.glass-panel .lcd__line--past .lcd__text { color: rgba(206,197,180,.45); }
.glass-panel .lcd__progress-track { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.08); }
.glass-panel .lcd__duration { color: rgba(255,255,255,.3); }

/* ---------- shimmer CTA button ---------- */
.btn--shimmer { position: relative; overflow: hidden; }
.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: skewX(-15deg);
  animation: shimmerSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep {
  0%, 55% { left: -100%; }
  100% { left: 220%; }
}

/* ---------- showcase play button ---------- */
.showcase-play-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 52px 0 60px;
}
.showcase-play-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}
.showcase-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: ringPulse 3.2s ease-out infinite;
}
.showcase-ring--1 { width: 100px; height: 100px; animation-delay: 0s; }
.showcase-ring--2 { width: 148px; height: 148px; animation-delay: 1.06s; }
.showcase-ring--3 { width: 200px; height: 200px; animation-delay: 2.12s; }
@keyframes ringPulse {
  0%   { opacity: 0.85; transform: scale(0.78); }
  55%  { opacity: 0.22; }
  100% { opacity: 0; transform: scale(1.22); }
}
.showcase-btn {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  display: grid;
  place-items: center;
  color: var(--ink-950);
  cursor: pointer;
  box-shadow: 0 0 44px rgba(198,139,59,.38), 0 8px 28px rgba(198,139,59,.2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  flex-shrink: 0;
}
.showcase-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 72px rgba(198,139,59,.6), 0 8px 40px rgba(198,139,59,.3);
}
.showcase-btn:active { transform: scale(0.96); }
.showcase-btn svg { margin-left: 4px; }
.showcase-play-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-700);
  letter-spacing: -.01em;
  margin: 0;
  text-align: center;
}
@media (max-width: 560px) {
  .showcase-play-center { padding: 36px 0 44px; }
  .showcase-btn { width: 74px; height: 74px; }
  .showcase-ring--3 { width: 164px; height: 164px; }
}

/* ---------- midnight counter ---------- */
.midnight-banner {
  background: var(--ink-950);
  border: 1px solid var(--ink-800);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.midnight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(198,139,59,.06) 0%, transparent 70%);
  pointer-events: none;
}
.midnight-banner__left { position: relative; z-index: 1; }
.midnight-banner__label {
  display: block;
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #5A6E72;
  margin-bottom: 10px;
}
.midnight-loss {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--cream-50);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.midnight-banner__patients {
  margin-top: 10px;
  font-size: .92rem;
  color: #6A7A7D;
}
#midnightPatients {
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: .88rem;
}
.midnight-banner__live {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4A5E61;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.midnight-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(42,122,82,.5); }
  50%       { box-shadow: 0 0 0 7px rgba(42,122,82,0); }
}
@media (max-width: 700px) {
  .midnight-banner { padding: 22px 24px; }
  .midnight-banner__live { display: none; }
}

/* ---------- ROI section variant ---------- */
.section--roi {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}

/* patients stat spanning full row */
.roi__stat--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.roi__stat--wide .roi__stat-label,
.roi__stat--wide .roi__stat-sub { flex: 0 0 auto; }
.roi__stat--wide .roi__stat-value { margin: 0; flex-shrink: 0; }
.roi__stat-value--patients {
  color: var(--accent-deep);
  font-size: 1.85rem;
}

/* ---------- gradient text utility ---------- */
.gradient-text {
  background: linear-gradient(120deg, var(--cream-50) 10%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   HALDEN LOGS:Call Intelligence Archive
   ================================================================ */

/* ── section shell ── */
.logs-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, #071620 0%, #050F19 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
/* ambient radial glow top-left */
.logs-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(58,127,142,.06) 0%, transparent 70%);
  pointer-events: none;
}
/* ambient radial glow bottom-right */
.logs-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,139,59,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── header ── */
.logs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.logs-header__left { max-width: 640px; }
.logs-heading {
  color: var(--cream-50) !important;
  margin-bottom: 16px;
}
.logs-heading__accent { color: var(--accent-soft); }
.logs-subhead {
  font-size: 1.02rem;
  color: rgba(200,192,178,.6);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}
.logs-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.logs-system-tag {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  white-space: nowrap;
}
.logs-system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(109,197,149,.65);
}
.logs-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@media (max-width: 760px) { .logs-header__right { display: none; } }

/* ── grid ── */
.logs-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ── card base ── */
.log-card {
  background: rgba(255,255,255,.028);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-xl);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.log-card:hover {
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 24px 64px -20px rgba(0,0,0,.5);
  transform: translateY(-4px);
}

/* background watermark number */
.log-card__watermark {
  position: absolute;
  bottom: -16px; right: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11rem;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: color .3s var(--ease);
}
.log-card:hover .log-card__watermark { color: rgba(255,255,255,.06); }

/* ── priority card (emergency) ── */
.log-card--priority {
  background: rgba(177,75,42,.05);
  border-color: rgba(177,75,42,.2);
}
.log-card--priority:hover {
  border-color: rgba(177,75,42,.4);
  box-shadow: 0 24px 64px -20px rgba(177,75,42,.25), 0 0 0 1px rgba(177,75,42,.1);
}
.log-card__priority-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--alert), rgba(177,75,42,.3));
  font-family: var(--font-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  color: rgba(177,75,42,.7);
  text-align: center;
  line-height: 3px;
  overflow: hidden;
}
/* animate a scan highlight across the priority bar */
.log-card__priority-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: rgba(255,255,255,.4);
  animation: scanLine 2.8s ease-in-out infinite;
}
@keyframes scanLine {
  0%, 100% { left: -60%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

/* ── gold card (implant) ── */
.log-card--gold {
  background: rgba(198,139,59,.04);
  border-color: rgba(198,139,59,.14);
}
.log-card--gold:hover {
  border-color: rgba(198,139,59,.32);
  box-shadow: 0 24px 64px -20px rgba(198,139,59,.2), 0 0 0 1px rgba(198,139,59,.08);
}

/* ── card header ── */
.log-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.log-case-id {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.log-case-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
}

/* ── status badges ── */
.log-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.log-status__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.log-status__dot--blink { animation: lcdPulse 1.4s ease-in-out infinite; }
.log-status--booked {
  background: rgba(42,122,82,.15);
  border: 1px solid rgba(42,122,82,.3);
  color: #6DC595;
}
.log-status--booked .log-status__dot { background: var(--success); }
.log-status--escalated {
  background: rgba(177,75,42,.15);
  border: 1px solid rgba(177,75,42,.35);
  color: #E07A5A;
}
.log-status--escalated .log-status__dot { background: var(--alert); }
.log-status--qualified {
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.3);
  color: var(--accent-soft);
}
.log-status--qualified .log-status__dot { background: var(--accent); }

/* ── card title ── */
.log-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--cream-50);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.log-card--priority .log-card__title { color: #F5E5DF; }
.log-card--gold    .log-card__title { color: var(--accent-soft); }

/* ── waveform ── */
.log-wave {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 60px;
  padding: 4px 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.log-wave > span {
  flex: 1 1 0;
  min-width: 2px;
  height: var(--h, 18px);
  border-radius: 3px;
  transform-origin: center;
  opacity: 0.55;
  transition: opacity .3s ease;
}
/* teal bars:default */
.log-wave--teal > span  { background: #3A7F8E; }
/* alert bars:emergency */
.log-wave--alert > span { background: #C05840; }
/* gold bars:implant */
.log-wave--gold > span  { background: #C68B3B; }

/* bar animation on hover */
.log-card:hover .log-wave > span {
  animation: barDance .85s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * 28ms);
  opacity: 0.9;
}
@keyframes barDance {
  from { transform: scaleY(0.28); }
  to   { transform: scaleY(1.06); }
}

/* ── card description ── */
.log-card__desc {
  font-size: .9rem;
  color: rgba(200,192,178,.55);
  line-height: 1.6;
  margin: 0 0 auto;
  padding-bottom: 24px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── card footer ── */
.log-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 1;
}
.log-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.log-chip {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  white-space: nowrap;
}

/* ── play button (per-card) ── */
.log-play-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.log-play-btn svg { margin-left: 3px; }
.log-play-btn:hover {
  transform: scale(1.1);
  color: var(--ink-950);
}

/* teal card play button */
.log-card:not(.log-card--priority):not(.log-card--gold) .log-play-btn:hover {
  background: #3A7F8E;
  border-color: #3A7F8E;
  box-shadow: 0 0 24px rgba(58,127,142,.45);
}
/* alert card play button */
.log-card--priority .log-play-btn {
  border-color: rgba(177,75,42,.3);
  color: #E07A5A;
}
.log-card--priority .log-play-btn:hover {
  background: var(--alert);
  border-color: var(--alert);
  box-shadow: 0 0 24px rgba(177,75,42,.5);
}
/* gold card play button */
.log-card--gold .log-play-btn {
  border-color: rgba(198,139,59,.25);
  color: var(--accent-soft);
}
.log-card--gold .log-play-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(198,139,59,.45);
}

/* ── footer note ── */
.logs-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.logs-footer__text {
  font-size: .9rem;
  color: rgba(200,192,178,.42);
  max-width: 60ch;
}
.logs-footer__text strong { color: rgba(200,192,178,.7); font-weight: 600; }
.logs-footer .btn--ghost {
  color: rgba(229,197,138,.8);
  border-color: rgba(229,197,138,.22);
  white-space: nowrap;
  flex-shrink: 0;
}
.logs-footer .btn--ghost:hover {
  background: rgba(229,197,138,.08);
  border-color: rgba(229,197,138,.5);
  color: var(--accent-soft);
}

/* ── responsive ── */
@media (max-width: 1040px) {
  .logs-grid { grid-template-columns: 1fr 1fr; }
  .log-card:last-child { grid-column: 1 / -1; }
  .log-card__watermark { font-size: 9rem; }
}
@media (max-width: 680px) {
  .logs-grid { grid-template-columns: 1fr; }
  .log-card:last-child { grid-column: unset; }
  .logs-footer { flex-direction: column; align-items: flex-start; }
}


/* SENTINEL:Halden Neural Call Monitor */

:root {
  --s-bg:         #030D1A;
  --s-bg2:        #060F1E;
  --s-cyan:       #00CFE8;
  --s-cyan-dim:   rgba(0,207,232,.35);
  --s-cyan-faint: rgba(0,207,232,.07);
  --s-gold:       #C68B3B;
  --s-green:      #1AC99B;
  --s-border:     rgba(0,207,232,.10);
  --s-border-hi:  rgba(0,207,232,.22);
  --s-text:       rgba(185,235,245,.90);
}

.sentinel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--s-bg);
  border: 1px solid var(--s-border-hi);
  box-shadow: 0 0 0 1px rgba(0,207,232,.04), 0 30px 64px rgba(0,0,0,.60), 0 0 80px rgba(0,207,232,.05), inset 0 1px 0 rgba(0,207,232,.14);
  display: flex;
  flex-direction: column;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  min-height: 360px;
  transition: box-shadow .4s ease, border-color .4s ease;
}
.sentinel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,207,232,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(0,207,232,.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.sentinel--live {
  border-color: rgba(0,207,232,.28);
  box-shadow: 0 0 0 1px rgba(0,207,232,.07), 0 30px 64px rgba(0,0,0,.60), 0 0 100px rgba(0,207,232,.10), inset 0 1px 0 rgba(0,207,232,.18);
}
.sentinel__scanlines {
  position: absolute; inset: 0; z-index: 20; pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.065) 2px, rgba(0,0,0,.065) 3px);
  border-radius: inherit;
}
.sentinel__corner { position:absolute; width:15px; height:15px; z-index:6; pointer-events:none; opacity:.30; }
.sentinel__corner--tl { top:9px; left:9px; border-top:1px solid var(--s-cyan); border-left:1px solid var(--s-cyan); }
.sentinel__corner--tr { top:9px; right:9px; border-top:1px solid var(--s-cyan); border-right:1px solid var(--s-cyan); }
.sentinel__corner--bl { bottom:9px; left:9px; border-bottom:1px solid var(--s-cyan); border-left:1px solid var(--s-cyan); }
.sentinel__corner--br { bottom:9px; right:9px; border-bottom:1px solid var(--s-cyan); border-right:1px solid var(--s-cyan); }
.sentinel__head { position:relative; z-index:2; display:flex; align-items:center; gap:10px; padding:11px 14px; border-bottom:1px solid var(--s-border); background:rgba(0,0,0,.22); flex-shrink:0; }
.sentinel__head-left { display:flex; align-items:center; gap:8px; flex:1; }
.sentinel__macdots { display:flex; gap:4.5px; }
.sentinel__macdots span { width:9px; height:9px; border-radius:50%; }
.sentinel__macdots span:nth-child(1) { background:#FF5F56; }
.sentinel__macdots span:nth-child(2) { background:#FFBD2E; }
.sentinel__macdots span:nth-child(3) { background:#28C840; }
.sentinel__brand { font-size:.60rem; letter-spacing:.20em; color:var(--s-cyan); opacity:.60; text-transform:uppercase; }
.sentinel__badge { font-size:.58rem; letter-spacing:.14em; text-transform:uppercase; padding:3px 9px; border-radius:4px; border:1px solid var(--s-border-hi); color:var(--s-cyan-dim); background:var(--s-cyan-faint); transition:all .35s ease; }
.sentinel__badge[data-state="live"] { color:var(--s-green); background:rgba(26,201,155,.12); border-color:rgba(26,201,155,.42); box-shadow:0 0 10px rgba(26,201,155,.22); animation:sentBadgeLock .55s ease; }
@keyframes sentBadgeLock { 0%,20%,40%,60% { opacity:.15; } 10%,30%,50%,80%,100% { opacity:1; } }
.sentinel__elapsed { font-size:.74rem; color:var(--s-cyan); opacity:.48; min-width:36px; text-align:right; letter-spacing:.04em; }
.sentinel__body { display:flex; flex:1; min-height:230px; position:relative; z-index:1; }
.sentinel__radar { width:172px; flex-shrink:0; position:relative; border-right:1px solid var(--s-border); display:flex; align-items:center; justify-content:center; overflow:hidden; align-self:stretch; }
.sentinel__radar::before { content:''; position:absolute; inset:0; background:radial-gradient(circle at 50% 50%, rgba(0,207,232,.055) 0%, transparent 65%); z-index:1; pointer-events:none; }
.sentinel__radar::after { content:''; position:absolute; inset:0; background-image:radial-gradient(circle, rgba(0,207,232,.13) 1px, transparent 1px); background-size:18px 18px; z-index:1; pointer-events:none; opacity:.45; }
.sentinel__ring { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); border:1px solid rgba(0,207,232,.10); border-radius:50%; pointer-events:none; z-index:2; animation:sentRingBreath 4.5s ease-in-out infinite; }
.sentinel__ring--1 { width:64px;  height:64px;  animation-delay:0s; }
.sentinel__ring--2 { width:114px; height:114px; animation-delay:.9s; }
.sentinel__ring--3 { width:162px; height:162px; animation-delay:1.8s; border-color:rgba(0,207,232,.05); }
@keyframes sentRingBreath { 0%,100% { opacity:.14; } 50% { opacity:.28; } }
.sentinel__canvas { position:relative; z-index:3; width:100%; height:100%; display:block; }
.sentinel__radar-lbl { position:absolute; bottom:8px; left:50%; transform:translateX(-50%); font-size:.51rem; letter-spacing:.18em; color:var(--s-cyan-dim); text-transform:uppercase; z-index:4; white-space:nowrap; }
.sentinel__intel { flex:1; display:flex; flex-direction:column; min-width:0; }
.sentinel__classif { display:flex; gap:5px; padding:8px 10px; border-bottom:1px solid var(--s-border); flex-shrink:0; flex-wrap:wrap; }
.sentinel__tag { display:inline-flex; align-items:center; gap:4px; font-size:.55rem; letter-spacing:.10em; text-transform:uppercase; color:rgba(0,207,232,.28); padding:2px 6px; border:1px solid transparent; border-radius:3px; transition:all .4s ease; white-space:nowrap; }
.sentinel__tag--on { color:var(--s-cyan); border-color:rgba(0,207,232,.22); background:rgba(0,207,232,.06); }
.sentinel__tag--booking { color:var(--s-gold); border-color:rgba(198,139,59,.32); background:rgba(198,139,59,.08); }
.sentinel__tag-dot { width:5px; height:5px; border-radius:50%; background:var(--s-cyan); flex-shrink:0; }
.sentinel__tag-dot--gold  { background:var(--s-gold); }
.sentinel__tag-dot--green { background:var(--s-green); }
.sentinel__tx { flex:1; overflow-y:auto; padding:10px 12px 6px; min-height:0; scrollbar-width:thin; scrollbar-color:rgba(0,207,232,.12) transparent; }
.sentinel__tx::-webkit-scrollbar { width:2px; }
.sentinel__tx::-webkit-scrollbar-thumb { background:rgba(0,207,232,.18); border-radius:2px; }
.sentinel .lcd__line { display:flex; flex-direction:column; gap:1px; margin-bottom:7px; }
.sentinel .lcd__speaker { font-family:'JetBrains Mono',ui-monospace,monospace; font-size:.54rem; letter-spacing:.12em; text-transform:uppercase; color:var(--s-cyan-dim); margin-bottom:1px; }
.sentinel .lcd__line--ai .lcd__speaker     { color:var(--s-cyan); opacity:.65; }
.sentinel .lcd__line--caller .lcd__speaker { color:var(--s-gold); opacity:.65; }
.sentinel .lcd__text { font-family:'General Sans',ui-sans-serif,system-ui,sans-serif; font-size:.79rem; line-height:1.48; color:rgba(185,235,245,.60); }
.sentinel .lcd__line--active .lcd__text { color:var(--s-text); }
.sentinel .lcd__line--past   .lcd__text { opacity:.36; }
.sentinel .lcd__line--oldest .lcd__text { opacity:.20; }
.sentinel .lcd__caret { display:inline-block; width:6px; height:1px; background:var(--s-cyan); margin-left:2px; vertical-align:middle; animation:sentCaret .65s step-end infinite; }
@keyframes sentCaret { 0%,100% { opacity:1; } 50% { opacity:0; } }
.sentinel .lcd__idle-msg { font-family:'JetBrains Mono',ui-monospace,monospace; font-size:.68rem; color:var(--s-cyan-dim); text-align:center; padding:20px 10px; letter-spacing:.05em; line-height:1.65; }
.sentinel__meters { padding:7px 12px 9px; border-top:1px solid var(--s-border); display:flex; flex-direction:column; gap:4px; flex-shrink:0; }
.sentinel__meter { display:flex; align-items:center; gap:8px; }
.sentinel__m-lbl { font-size:.51rem; letter-spacing:.09em; text-transform:uppercase; color:rgba(0,207,232,.27); width:68px; flex-shrink:0; }
.sentinel__m-track { flex:1; height:2px; background:rgba(0,207,232,.07); border-radius:2px; overflow:hidden; }
.sentinel__m-fill { height:100%; background:var(--s-cyan); border-radius:2px; transition:width .65s ease; }
.sentinel__m-fill--gold  { background:var(--s-gold); }
.sentinel__m-fill--green { background:var(--s-green); }
.sentinel__m-val { font-size:.51rem; letter-spacing:.08em; color:var(--s-cyan-dim); width:40px; text-align:right; flex-shrink:0; text-transform:uppercase; transition:color .4s ease; }
.sentinel__m-val--green { color:var(--s-green); }
.sentinel__foot { position:relative; z-index:2; display:flex; align-items:center; gap:14px; padding:12px 16px; border-top:1px solid var(--s-border); background:rgba(0,0,0,.22); flex-shrink:0; }
.sentinel__play-area { display:flex; flex-direction:column; align-items:center; gap:5px; flex-shrink:0; }
.sentinel__play-btn {
  position:relative; width:50px; height:50px; border-radius:50%;
  background:var(--s-cyan); border:2px solid rgba(0,207,232,.55); color:#030D1A;
  display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0;
  transition:background .2s ease, transform .18s ease, box-shadow .2s ease;
  box-shadow:0 0 22px rgba(0,207,232,.45), 0 4px 16px rgba(0,0,0,.5);
}
.sentinel__play-btn::before {
  content:''; position:absolute; inset:-5px; border-radius:50%;
  border:1px solid rgba(0,207,232,.50);
  animation:sentPlayRing1 2.4s ease-out infinite; pointer-events:none;
}
.sentinel__play-btn::after {
  content:''; position:absolute; inset:-5px; border-radius:50%;
  border:1px solid rgba(0,207,232,.28);
  animation:sentPlayRing2 2.4s ease-out infinite .7s; pointer-events:none;
}
@keyframes sentPlayRing1 { 0% { transform:scale(1); opacity:.6; } 100% { transform:scale(1.75); opacity:0; } }
@keyframes sentPlayRing2 { 0% { transform:scale(1); opacity:.4; } 100% { transform:scale(2.10); opacity:0; } }
.sentinel--live .sentinel__play-btn::before,
.sentinel--live .sentinel__play-btn::after { display:none; }
.sentinel--live .sentinel__play-btn { background:rgba(0,207,232,.14); color:var(--s-cyan); border-color:rgba(0,207,232,.35); box-shadow:none; }
.sentinel__play-btn:hover { transform:scale(1.08); box-shadow:0 0 34px rgba(0,207,232,.65), 0 4px 20px rgba(0,0,0,.5); }
.sentinel--live .sentinel__play-btn:hover { transform:scale(1.06); box-shadow:0 0 16px rgba(0,207,232,.3); }
.sentinel__play-btn svg { width:15px; height:15px; fill:currentColor; position:relative; z-index:1; }
.sentinel__play-btn svg.hidden { display:none; }
.sentinel__play-lbl { font-size:.52rem; letter-spacing:.16em; color:var(--s-cyan); opacity:.55; text-transform:uppercase; white-space:nowrap; transition:opacity .3s; }
.sentinel--live .sentinel__play-lbl { opacity:0; pointer-events:none; }
.sentinel__prog-area { flex:1; display:flex; align-items:center; gap:10px; min-width:0; }
.sentinel__prog { flex:1; height:3px; background:rgba(0,207,232,.08); border-radius:2px; overflow:hidden; cursor:pointer; }
.sentinel__prog-fill { height:100%; width:0%; background:linear-gradient(90deg,var(--s-cyan) 0%,var(--s-gold) 100%); border-radius:2px; transition:width .25s linear; }
.sentinel__dur { font-size:.64rem; color:var(--s-cyan-dim); letter-spacing:.05em; flex-shrink:0; min-width:32px; text-align:right; }
@media (max-width:920px) { .sentinel { min-height:300px; } .sentinel__radar { width:148px; } }

/* =========================================================
   ROI V2:"The Hemorrhage"
   Dark emotional estimator section
   ========================================================= */

/* ---------- ROI calculator (Halden cream + gold + ink) ---------- */
.roi-v2 {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-200) 100%);
  padding: 88px 0 104px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(198,139,59,.18);
  border-bottom: 1px solid rgba(198,139,59,.18);
}
.roi-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 40% at 50% 0%,  rgba(198,139,59,.10) 0%, transparent 65%),
    radial-gradient(ellipse 38% 44% at 82% 65%, rgba(198,139,59,.06) 0%, transparent 58%),
    radial-gradient(ellipse 48% 40% at 10% 80%, rgba(10,44,49,.05)  0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.roi-v2 .container { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.roi-v2__header { margin-bottom: 44px; }
.roi-v2__kicker {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.roi-v2__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink-900);
  margin: 0 0 18px;
  letter-spacing: -.025em;
  font-style: normal;
}
.roi-v2__hl-gold {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}
.roi-v2__sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 540px;
}
.roi-v2__sub strong { color: var(--ink-900); font-weight: 600; }

/* ---------- Body grid ---------- */
.roi-v2__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ---------- Bars ---------- */
.roi-v2__bars {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 6px 22px -16px rgba(10,44,49,.18);
}
.roi-v2__bar-row { margin-bottom: 20px; }
.roi-v2__bar-row:last-child { margin-bottom: 0; }
.roi-v2__bar-row--plan .roi-v2__bar-track { opacity: .8; }
.roi-v2__bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.roi-v2__bar-label {
  font-size: .82rem;
  color: var(--ink-800);
  font-family: var(--font-body);
}
.roi-v2__bar-label em { color: var(--text-faint); font-style: normal; font-size: .72rem; }
.roi-v2__bar-amount {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.roi-v2__bar-amount--red  { color: var(--alert); }
.roi-v2__bar-amount--gold { color: var(--accent-deep); }
.roi-v2__bar-amount--dim  { color: var(--text-faint); font-size: .82rem; font-weight: 600; }
.roi-v2__bar-track {
  height: 8px;
  background: rgba(10,44,49,.07);
  border-radius: 100px;
  overflow: hidden;
}
.roi-v2__bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width .5s cubic-bezier(.2,.7,.2,1);
  min-width: 2px;
}
.roi-v2__bar-fill--red {
  background: linear-gradient(90deg, rgba(177,75,42,.65) 0%, var(--alert) 100%);
}
.roi-v2__bar-fill--gold {
  background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 100%);
}
.roi-v2__bar-fill--plan {
  background: var(--ink-700);
}
.roi-v2__plan-badge {
  font-size: .68rem;
  color: var(--accent-deep);
  background: rgba(198,139,59,.10);
  border: 1px solid rgba(198,139,59,.28);
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  letter-spacing: .03em;
  font-style: normal;
}

/* ---------- Impact cards ---------- */
.roi-v2__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.roi-v2__card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .3s ease, box-shadow .3s ease, transform .25s var(--ease);
}
.roi-v2__card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 6px 18px -10px rgba(10,44,49,.18);
  transform: translateY(-1px);
}
.roi-v2__card--patients {
  background: rgba(177,75,42,.05);
  border-color: rgba(177,75,42,.22);
}
.roi-v2__card--net {
  background: rgba(198,139,59,.08);
  border-color: rgba(198,139,59,.32);
}
.roi-v2__card--break {
  background: rgba(42,122,82,.06);
  border-color: rgba(42,122,82,.24);
}
.roi-v2__card-sublbl {
  font-size: .65rem;
  font-family: var(--font-mono);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.roi-v2__card-val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--alert);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.roi-v2__card-val--net  { color: var(--accent-deep); font-size: 1.15rem; }
.roi-v2__card-val--break { color: var(--success); font-size: .95rem; font-weight: 700; }
.roi-v2__card-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ---------- CTA ---------- */
.roi-v2__cta {
  width: 100%;
  justify-content: center;
  font-size: .92rem;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px -12px rgba(198,139,59,.55);
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.roi-v2__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(198,139,59,.7);
  color: #fff;
}

/* ---------- Right controls panel ---------- */
.roi-v2__controls {
  position: sticky;
  top: 84px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-100) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 12px 32px -18px rgba(10,44,49,.22);
}
.roi-v2__controls-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 22px;
  letter-spacing: .01em;
}
.roi-v2__field { margin-bottom: 22px; }
.roi-v2__field:last-of-type { margin-bottom: 0; }
.roi-v2__field-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.roi-v2__field label {
  font-size: .82rem;
  color: var(--ink-800);
  font-family: var(--font-body);
  font-weight: 500;
}
.roi-v2__output {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.roi-v2__output--gold { color: var(--accent-deep); }
.roi-v2__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: .62rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
}

/* Range input: WebKit */
.roi-v2__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: rgba(10,44,49,.12);
  outline: none;
  cursor: pointer;
}
.roi-v2__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--cream-50);
  box-shadow: 0 0 0 1px var(--ink-700), 0 4px 10px rgba(10,44,49,.28);
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
}
.roi-v2__range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 1px var(--ink-900), 0 6px 14px rgba(10,44,49,.35);
}
.roi-v2__range--gold::-webkit-slider-thumb {
  background: var(--accent);
  border-color: var(--cream-50);
  box-shadow: 0 0 0 1px var(--accent-deep), 0 4px 10px rgba(198,139,59,.4);
}
.roi-v2__range--gold::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 1px var(--accent-deep), 0 6px 14px rgba(198,139,59,.55);
}
/* Range: Firefox */
.roi-v2__range::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink-900);
  border: 2px solid var(--cream-50);
  box-shadow: 0 0 0 1px var(--ink-700), 0 4px 10px rgba(10,44,49,.28);
  cursor: pointer;
}
.roi-v2__range--gold::-moz-range-thumb {
  background: var(--accent);
  border-color: var(--cream-50);
  box-shadow: 0 0 0 1px var(--accent-deep), 0 4px 10px rgba(198,139,59,.4);
}

/* Select */
.roi-v2__field--select { margin-top: 8px; }
.roi-v2__field--select label {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
  color: var(--ink-800);
  font-family: var(--font-body);
  font-weight: 500;
}
.roi-v2__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: var(--cream-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230A2C31' stroke-opacity='0.55' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 36px 10px 12px;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--ink-900);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.roi-v2__select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198,139,59,.18);
}
.roi-v2__select option { background: #FFFFFF; color: var(--ink-900); }

/* Fine print */
.roi-v2__fine {
  margin-top: 20px;
  font-size: .72rem;
  color: var(--text-faint);
  line-height: 1.55;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .roi-v2__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Flip order on tablet/mobile: controls first so users set their numbers before seeing results */
  .roi-v2__controls { order: -1; position: static; }
  .roi-v2__headline { font-size: clamp(1.7rem, 5vw, 2.4rem); }
}
@media (max-width: 600px) {
  .roi-v2 { padding: 52px 0 64px; }
  .roi-v2__header { margin-bottom: 32px; }
  .roi-v2__headline { font-size: 1.65rem; line-height: 1.15; }
  .roi-v2__sub { font-size: .82rem; }
  .roi-v2__cards { grid-template-columns: 1fr 1fr; }
  .roi-v2__card--break { grid-column: 1 / -1; }
  .roi-v2__card-val { font-size: 1.25rem; }
  .roi-v2__card-val--net { font-size: 1.05rem; }
  .roi-v2__bar-amount { font-size: .88rem; }
  .roi-v2__bars { padding: 18px 16px 16px; }
  .roi-v2__controls { padding: 20px 16px 18px; }
  .roi-v2__cta { font-size: .84rem; padding: 14px 20px; }
}
@media (max-width:560px) { .sentinel__radar { width:116px; } .sentinel__classif { display:none; } .sentinel__play-btn { width:44px; height:44px; } }

/* ===================================================
   HOW IT WORKS:Night Shift merged section
   =================================================== */

.hw-section {
  background: linear-gradient(168deg, #0B3039 0%, #071C22 48%, #060E18 100%);
  padding: 88px 0 96px;
  border-top: 1px solid rgba(198,139,59,.28);
  position: relative;
  overflow: hidden;
}

/* Soft gold radial glow behind the header */
.hw-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 820px; height: 480px;
  background: radial-gradient(ellipse at top center,
    rgba(198,139,59,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hw-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  position: relative; /* sits above ::before */
}

/* Kicker:branded gold on dark */
.hw-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C68B3B !important;
  background: rgba(198,139,59,.1);
  border: 1px solid rgba(198,139,59,.22);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

/* Headline */
.hw-headline {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

.hw-headline__gold {
  color: #C68B3B;
}

.hw-subhead {
  font-size: .97rem;
  color: rgba(255,255,255,.46);
  line-height: 1.65;
  margin: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hw-flow {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.hw-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  padding-bottom: 44px;
  position: relative;
}

.hw-step:last-child { padding-bottom: 0; }

/* Aside: icon + connector line */
.hw-step__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hw-step__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hw-step__icon--cyan {
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.3);
  color: #06B6D4;
}

.hw-step__icon--gold {
  background: rgba(198,139,59,.15);
  border: 1px solid rgba(198,139,59,.4);
  color: #C68B3B;
  box-shadow: 0 0 22px rgba(198,139,59,.22);
}

.hw-step__icon--alert {
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.3);
  color: #EF4444;
}

.hw-step__icon--green {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #22C55E;
}

.hw-step__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(198,139,59,.28) 0%, rgba(198,139,59,.04) 100%);
  margin-top: 6px;
  min-height: 24px;
}

/* Body */
.hw-step__body { padding-bottom: 4px; }

.hw-step__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hw-step__num {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(198,139,59,.55);
  letter-spacing: .08em;
}

.hw-step__time {
  font-size: .7rem;
  color: rgba(100,185,200,.5);
  letter-spacing: .04em;
}

.hw-step__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px;
}

.hw-step__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin: 0 0 12px;
}

.hw-step__proof {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  border-left: 2px solid rgba(255,255,255,.12);
  padding-left: 12px;
  font-style: italic;
  margin: 0 0 12px;
  line-height: 1.5;
}

.hw-step__proof--gold {
  color: rgba(198,139,59,.72);
  border-left-color: rgba(198,139,59,.35);
}

/* Featured step */
.hw-step--featured {
  background: rgba(198,139,59,.04);
  border: 1px solid rgba(198,139,59,.13);
  border-radius: 16px;
  padding: 22px 22px 22px 18px;
  margin-bottom: 20px;
  grid-template-columns: 56px 1fr;
}

/* Capability tags */
.hw-caps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.hw-cap {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .04em;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.09);
}

.hw-cap--gold {
  background: rgba(198,139,59,.1);
  color: rgba(198,139,59,.88);
  border-color: rgba(198,139,59,.22);
}

.hw-cap--alert {
  background: rgba(220,38,38,.08);
  color: rgba(239,68,68,.88);
  border-color: rgba(220,38,38,.18);
}

.hw-cap--green {
  background: rgba(34,197,94,.08);
  color: rgba(34,197,94,.88);
  border-color: rgba(34,197,94,.18);
}

/* CTA row below the flow */
.how-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 600px) {
  .hw-section { padding: 52px 0 60px; }
  .hw-header { margin-bottom: 36px; }
  .hw-headline { font-size: 1.75rem; }
  .hw-step { grid-template-columns: 42px 1fr; gap: 0 14px; padding-bottom: 32px; }
  .hw-step__icon { width: 40px; height: 40px; }
  .hw-step__title { font-size: 1rem; }
  .hw-step__desc { font-size: .84rem; }
  .hw-step--featured { padding: 16px 14px; }
  .how-cta { flex-direction: column; align-items: center; }
}

/* ===================================================
   NICHES TEASER:compact pill strip
   =================================================== */

.niches-teaser { padding: 64px 0; }
.niches-teaser .section__head { margin-bottom: 36px; }

.niche-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.niche-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-800);
  background: #fff;
  border: 1.5px solid var(--line);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}

.niche-pill:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: #fdf7ee;
  box-shadow: 0 4px 12px rgba(198,139,59,.12);
}

.niche-pill__emoji {
  font-size: 1rem;
  line-height: 1;
}

.niches-teaser__cta {
  text-align: center;
}

@media (max-width: 600px) {
  .niches-teaser { padding: 44px 0 48px; }
  .niche-pills { gap: 8px; }
  .niche-pill { font-size: .82rem; padding: 8px 16px; }
}

/* ===================================================
   FAQ TEASER:3 quick answers + link
   =================================================== */

.faq-teaser { padding: 64px 0; }
.faq-teaser .section__head { margin-bottom: 36px; }

.faq-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 36px;
}

.faq-quick {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}

.faq-quick strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.faq-quick span {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.faq-teaser__cta {
  text-align: center;
}

@media (max-width: 720px) {
  .faq-teaser__grid { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 600px) {
  .faq-teaser { padding: 44px 0 48px; }
}

/* ===================================================
   STANDALONE PAGE:faq.html / practices.html shared
   =================================================== */

.page-hero {
  background: var(--ink-900);
  padding: 80px 0 72px;
  text-align: center;
}

.page-hero .kicker { color: rgba(255,255,255,.45); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 20px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.52);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.page-hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero__cta .btn--ghost {
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.28);
}

.page-hero__cta .btn--ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
}

/* FAQ full page */
.faq-page .faq__list { max-width: 760px; margin: 0 auto; }

/* Practices full page */
.practice-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.practice-section:last-of-type { border-bottom: none; }

.practice-section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  align-items: start;
  margin-bottom: 40px;
}

.practice-section__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(198,139,59,.08);
  border: 1px solid rgba(198,139,59,.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.practice-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0;
}

.practice-section__desc {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 8px;
}

.practice-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.5;
}

.practice-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%23C68B3B' stroke-width='1.5'/%3E%3Cpath d='M6.5 10l2.5 2.5L13.5 8' stroke='%23C68B3B' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .practice-section__head { grid-template-columns: 1fr; gap: 16px; }
  .practice-features { grid-template-columns: 1fr; }
}

/* ===================================================
   PROBLEM + HUMAN COST:merged section  (v2 dark)
   =================================================== */

/* ── Section shell + ambient glow ── */
.pc-section {
  position: relative;
  background: linear-gradient(168deg, #0A2C31 0%, #071C22 50%, #060E18 100%);
  padding: 96px 0 0;
  overflow: hidden;
  isolation: isolate;
}

.pc-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 52% at 18% 38%, rgba(185,28,28,.02) 0%, transparent 62%),
    radial-gradient(ellipse 46% 52% at 82% 54%, rgba(10,140,150,.06) 0%, transparent 62%),
    radial-gradient(ellipse 36% 42% at 80% 50%, rgba(198,139,59,.04) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.pc-section > .container {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.pc-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.pc-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F87171;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.22);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.pc-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 18px;
}

.pc-intro {
  font-size: 1.02rem;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Stats strip (glassmorphism) ── */
.pc-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 56px;
}

.pc-stat {
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
}

.pc-stat.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger by DOM position:dividers sit at child 2/4/6, stats at 1/3/5/7 */
.pc-stat:nth-child(1) { transition-delay: 0s; }
.pc-stat:nth-child(3) { transition-delay: .1s; }
.pc-stat:nth-child(5) { transition-delay: .2s; }
.pc-stat:nth-child(7) { transition-delay: .3s; }

.pc-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #F87171;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.pc-stat__label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.45;
  max-width: 160px;
  margin: 0 auto;
}

.pc-stat__divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.08);
  flex-shrink: 0;
}

/* ── Column labels ── */
.pc-compare {
  margin-bottom: 0;
}

.pc-compare__heads {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  margin-bottom: 0;
}

.pc-col-gap {
  /* transparent spacer:matches divider column width */
  background: transparent;
}

.pc-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.pc-col-label--before {
  background: rgba(185,28,28,.12);
  color: #FCA5A5;
  border: 1px solid rgba(220,38,38,.18);
  border-bottom: none;
}

.pc-col-label--after {
  background: rgba(10,44,49,.4);
  color: #7ECFD6;
  border: 1px solid rgba(10,180,200,.14);
  border-bottom: none;
}

.pc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pc-dot--red {
  background: #DC2626;
  box-shadow: 0 0 8px rgba(220,38,38,.7);
  animation: dotPulse 2s ease-in-out infinite;
}

.pc-dot--teal {
  background: #0BB8C8;
  box-shadow: 0 0 8px rgba(11,184,200,.7);
  animation: dotPulse 2s ease-in-out infinite .6s;
}

/* ── Moment rows ── */
.pc-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
}

.pc-moment {
  padding: 28px;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}

.pc-moment--before {
  background: rgba(185,28,28,.07);
  border-left: 1px solid rgba(220,38,38,.13);
  border-bottom-color: rgba(220,38,38,.1);
  transform: translateX(-28px);
}

.pc-moment--after {
  background: rgba(10,44,49,.28);
  border-right: 1px solid rgba(10,180,200,.12);
  border-bottom-color: rgba(10,180,200,.1);
  transform: translateX(28px);
}

/* Trigger state added by JS IntersectionObserver */
.pc-row.is-visible .pc-moment {
  opacity: 1;
  transform: translateX(0);
}

.pc-row.is-visible .pc-moment--after {
  transition-delay: .12s;
}

.pc-row:last-child .pc-moment {
  border-bottom-width: 1px;
}

.pc-moment__time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pc-moment--before .pc-moment__time { color: rgba(248,113,113,.55); }
.pc-moment--after  .pc-moment__time { color: rgba(126,207,214,.5); }

.pc-moment h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
}

.pc-moment--before h3 { color: #FCA5A5; }
.pc-moment--after  h3 { color: #B2EAED; }

.pc-moment p {
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.pc-moment--before p { color: rgba(252,165,165,.55); }
.pc-moment--after  p { color: rgba(178,234,237,.45); }

/* Loss / Win tags */
.pc-loss,
.pc-win {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: auto;
}

.pc-loss {
  background: rgba(220,38,38,.06);
  color: #FCA5A5;
  border: 1px solid rgba(220,38,38,.12);
}

.pc-win {
  background: rgba(198,139,59,.1);
  color: #E6B86A;
  border: 1px solid rgba(198,139,59,.22);
  animation: winGlow 3s ease-in-out infinite .5s;
}

.pc-loss__icon,
.pc-win__icon {
  flex-shrink: 0;
  font-weight: 800;
  margin-top: 1px;
}

.pc-loss__icon { color: #F87171; }
.pc-win__icon  { color: #C68B3B; }

/* ── Centre divider column ── */
.pc-row__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  z-index: 2;
}

/* Glowing vertical timeline line */
.pc-row__divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(198,139,59,0) 0%,
    rgba(198,139,59,.35) 20%,
    rgba(198,139,59,.35) 80%,
    rgba(198,139,59,0) 100%
  );
  transform: translateX(-50%);
  z-index: 0;
}

/* First row: line starts from middle of node, not top */
.pc-row--first .pc-row__divider::before {
  top: 50%;
}

/* Last row: line ends at middle of node */
.pc-row--last .pc-row__divider::before {
  bottom: 50%;
}

/* ── Timeline node ── */
.pc-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pc-node__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C68B3B;
  border: 2px solid rgba(198,139,59,.35);
  box-shadow: 0 0 0 0 rgba(198,139,59,.5);
  animation: nodeGlow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.pc-node__label {
  font-family: var(--font-mono);
  font-size: .52rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(198,139,59,.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  user-select: none;
  line-height: 1;
}

/* ── Human cost closer ── */
.pc-human {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(120deg, rgba(10,44,49,.85) 0%, rgba(6,20,28,.92) 100%);
  border: 1px solid rgba(10,180,200,.1);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px 40px;
  margin-top: 0;
  flex-wrap: wrap;
}

.pc-human__icon {
  width: 52px;
  height: 52px;
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C68B3B;
  flex-shrink: 0;
}

.pc-human__text {
  flex: 1;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
  min-width: 200px;
}

.pc-human__text strong {
  color: rgba(255,255,255,.88);
}

.pc-human__cta {
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Keyframe animations ── */
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .55; transform: scale(.8); }
}

@keyframes nodeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,59,.5); }
  50%       { box-shadow: 0 0 0 7px rgba(198,139,59,0); }
}

@keyframes bleedPulse {
  0%, 100% { border-color: rgba(220,38,38,.12); }
  50%       { border-color: rgba(220,38,38,.2); }
}

@keyframes winGlow {
  0%, 100% { border-color: rgba(198,139,59,.22); box-shadow: none; }
  50%       { border-color: rgba(198,139,59,.4); box-shadow: 0 2px 14px rgba(198,139,59,.1); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pc-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    padding: 28px 24px;
  }
  .pc-stat__divider:nth-child(2) { display: none; }
  .pc-stat__divider:nth-child(4) { display: none; }
  .pc-stat__divider:nth-child(6) {
    grid-column: 1 / -1;
    width: 100%; height: 1px;
  }
}

@media (max-width: 700px) {
  .pc-section { padding: 56px 0 0; }
  .pc-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
    padding: 22px 18px;
    border-radius: var(--radius);
    margin-bottom: 36px;
  }
  .pc-stat__divider { display: none !important; }
  .pc-stat__num { font-size: 1.4rem; }
  .pc-stat__label { font-size: .7rem; }

  .pc-compare__heads { grid-template-columns: 1fr 36px 1fr; }
  .pc-col-label { padding: 12px 16px; font-size: .7rem; }

  .pc-row { grid-template-columns: 1fr 36px 1fr; }
  .pc-moment { padding: 18px 14px; }
  .pc-moment h3 { font-size: .92rem; }
  .pc-moment p { font-size: .82rem; }

  .pc-human {
    padding: 24px 20px;
    gap: 16px;
    border-radius: 0;
  }
  .pc-human__icon { display: none; }
  .pc-human__text { font-size: .88rem; }
}

@media (max-width: 480px) {
  .pc-row { grid-template-columns: 1fr 28px 1fr; }
  .pc-compare__heads { grid-template-columns: 1fr 28px 1fr; }
  .pc-node__label { display: none; }
  .pc-moment { padding: 14px 10px; }
  .pc-loss, .pc-win { display: none; }
}

/* ===================================================
   GLOBAL MOBILE COMPACTION
   =================================================== */

/* Tighten section padding on mobile */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .section--tight { padding: 40px 0; }
  .section__head { margin-bottom: 28px; }
  .section__head h2, .section__head .h-display { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section__sub { font-size: .88rem; }

  /* Problem grid 2-col on mobile */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 20px; }
  .problem-card h3 { font-size: 1rem; }
  .problem-card p { font-size: .85rem; }

  /* Emotional section */
  .emotional-section { padding: 48px 0; }
  .before-after-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-card { padding: 22px 20px; }

  /* Audio logs grid */
  .logs-section { padding: 52px 0; }
  .logs-grid { grid-template-columns: 1fr; gap: 14px; }
  .logs-header { flex-direction: column; }
  .logs-header__right { display: none; }

  /* Hide 3rd testimonial on small screens */
  .testimonials-grid .testimonial-card:nth-child(3) { display: none; }
  .testimonials-section { padding: 52px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 20px; }
  .testimonial-card__quote { font-size: .88rem; }

  /* Pricing */
  .plans { grid-template-columns: 1fr; gap: 16px; }
  .plan { padding: 24px 20px; }
  .plan__list { font-size: .85rem; }
  .plan__list li { padding: 5px 0; }

  /* Proof strip */
  .proof-strip { padding: 36px 0; }
  .proof-kpis { grid-template-columns: 1fr 1fr; gap: 16px; }
  .proof-kpi__value { font-size: 1.8rem; }
  .proof-kpi__label { font-size: .75rem; }
  .proof-quotes { grid-template-columns: 1fr; gap: 12px; }
  .proof-quote { padding: 16px 18px; font-size: .84rem; }

  /* Contact section */
  .section--contact { padding: 52px 0; }
  .contact { grid-template-columns: 1fr; }
  .contact__copy { display: none; }
  .contact__form { padding: 24px 20px; }

  /* Footer */
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer__inner { gap: 32px; }
}

/* =========================================================
   v2 SECTIONS (hero-call, cgd, sec2, how2)
   Mobile-first, Halden-branded, no em-dashes
   ========================================================= */

/* shared scroll-reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero CTA card (Halden cream + gold + ink) ---------- */
.hero-call {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(198,139,59,.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-200) 100%);
  border: 1px solid rgba(198,139,59,.28);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3.5vw, 40px);
  box-shadow:
    0 24px 56px -28px rgba(10,44,49,.28),
    0 2px 6px -2px rgba(10,44,49,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
  isolation: isolate;
}
.hero-call__halo {
  position: absolute; inset: -40% -10% auto -10%;
  height: 240px;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(198,139,59,.22), transparent 70%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
}
.hero-call__corner {
  position: absolute; width: 16px; height: 16px; opacity: .55; pointer-events: none; z-index: 1;
}
.hero-call__corner--tl { top: 12px; left: 12px; border-top: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.hero-call__corner--tr { top: 12px; right: 12px; border-top: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.hero-call__corner--bl { bottom: 12px; left: 12px; border-bottom: 1px solid var(--accent); border-left: 1px solid var(--accent); }
.hero-call__corner--br { bottom: 12px; right: 12px; border-bottom: 1px solid var(--accent); border-right: 1px solid var(--accent); }
.hero-call__inner { position: relative; z-index: 2; }
.hero-call__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(198,139,59,.10);
  border: 1px solid rgba(198,139,59,.32);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero-call__pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px rgba(198,139,59,.6);
  animation: hcLiveDot 2s ease-in-out infinite;
}
@keyframes hcLiveDot {
  0%, 100% { opacity: .6; transform: scale(.9); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.hero-call__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.18;
  letter-spacing: -.018em;
  margin: 0 0 18px;
}
.hero-call__number {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-100) 100%);
  border: 1px solid rgba(198,139,59,.45);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: .04em;
  margin-bottom: 18px;
  transition: transform .25s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 22px -14px rgba(198,139,59,.28);
}
.hero-call__number:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px -14px rgba(198,139,59,.45);
}
.hero-call__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: rgba(198,139,59,.14);
  border: 1px solid rgba(198,139,59,.42);
  border-radius: 50%;
  color: var(--accent-deep);
  animation: hcRing 2.6s ease-in-out infinite;
}
@keyframes hcRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,59,.45); }
  50%      { box-shadow: 0 0 0 10px rgba(198,139,59,0); }
}
.hero-call__digits { white-space: nowrap; }
.hero-call__copy {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.6;
  margin: 0 0 18px;
}
.hero-call__bullets {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
}
.hero-call__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem;
  color: var(--ink-800);
}
.hero-call__check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.42);
  color: var(--accent-deep);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .hero-call { padding: 24px 20px; }
  .hero-call__title { font-size: 1.25rem; }
  .hero-call__number { padding: 12px 16px; font-size: 1.2rem; gap: 10px; }
  .hero-call__icon { width: 32px; height: 32px; }
}

/* ---------- COST OF GOING DARK (rebranded) ---------- */
.cgd {
  position: relative;
  background: linear-gradient(180deg, #FAF7F0 0%, #F4EDE0 100%);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
  isolation: isolate;
}
.cgd__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.cgd__bg-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .42;
}
.cgd__bg-glow--gold {
  top: -120px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(198,139,59,.26), transparent 70%);
}
.cgd__bg-glow--teal {
  bottom: -160px; left: -100px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(10,44,49,.16), transparent 70%);
}
.cgd__inner { position: relative; z-index: 1; }
.cgd__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.cgd__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.cgd__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.cgd__title-em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cgd__lede {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.cgd__stats {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cgd__stat {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 14px;
  text-align: center;
  transition: transform .25s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.cgd__stat:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.cgd__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.cgd__stat-lbl {
  display: block;
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* timeline */
.cgd__timeline {
  position: relative;
  max-width: 880px;
  margin: 0 auto 32px;
  padding: 8px 0 16px;
}
.cgd__rail {
  position: absolute;
  top: 28px; bottom: 28px;
  left: 18px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(198,139,59,.42) 12%,
    rgba(198,139,59,.42) 88%,
    transparent 100%);
}
.cgd__moment {
  position: relative;
  padding-left: 48px;
  padding-bottom: 22px;
}
.cgd__moment:last-child { padding-bottom: 0; }
.cgd__node {
  position: absolute; left: 11px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #FAF7F0;
  box-shadow: 0 0 0 0 rgba(198,139,59,.45);
  animation: cgdNode 2.4s ease-in-out infinite;
}
@keyframes cgdNode {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,59,.45); }
  50%      { box-shadow: 0 0 0 9px rgba(198,139,59,0); }
}
.cgd__time {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
  display: block;
}
.cgd__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cgd__cell {
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  border: 1px solid;
}
.cgd__cell--off {
  background: rgba(10,44,49,.04);
  border-color: rgba(10,44,49,.12);
}
.cgd__cell--on {
  background: linear-gradient(180deg, rgba(198,139,59,.07) 0%, rgba(198,139,59,.02) 100%);
  border-color: rgba(198,139,59,.32);
}
.cgd__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.cgd__tag--off {
  color: var(--text-muted);
  background: rgba(10,44,49,.08);
  border: 1px solid rgba(10,44,49,.14);
}
.cgd__tag--on {
  color: var(--accent-deep);
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.32);
}
.cgd__cell h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink-900);
  line-height: 1.25;
}
.cgd__cell--on h3 { color: var(--accent-deep); }
.cgd__cell p {
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* closer */
.cgd__closer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(120deg, var(--ink-900) 0%, var(--ink-950) 100%);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  flex-wrap: wrap;
}
.cgd__closer-text {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: rgba(244,237,224,.7);
  font-size: .92rem;
  line-height: 1.55;
}
.cgd__closer-text strong { color: #F4EDE0; }
.cgd__closer-cta { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 760px) {
  .cgd__stats { grid-template-columns: 1fr 1fr; }
  .cgd__grid { grid-template-columns: 1fr; }
  .cgd__moment { padding-left: 38px; padding-bottom: 18px; }
  .cgd__rail { left: 13px; top: 22px; bottom: 22px; }
  .cgd__node { left: 6px; top: 2px; width: 14px; height: 14px; }
  .cgd__closer { padding: 18px 18px; gap: 14px; }
}
@media (max-width: 420px) {
  .cgd__stat { padding: 12px 10px; }
  .cgd__cell { padding: 14px 14px 16px; }
}

/* ---------- SECURITY & COMPLIANCE v2 ---------- */
.sec2 {
  position: relative;
  background: linear-gradient(180deg, #08222A 0%, #061820 100%);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
  isolation: isolate;
}
.sec2__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(198,139,59,.14), transparent 65%),
    radial-gradient(600px 360px at 10% 90%, rgba(111,207,160,.06), transparent 70%);
}
.sec2__inner { position: relative; z-index: 1; }
.sec2__head { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.sec2__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.sec2__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  font-weight: 800;
  color: #F4EDE0;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.sec2__title-em {
  font-style: normal;
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2__lede {
  color: rgba(244,237,224,.62);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.sec2__chips {
  list-style: none; margin: 0 0 28px; padding: 14px 16px;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
}
.sec2__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .04em;
  color: rgba(244,237,224,.78);
  background: rgba(198,139,59,.07);
  border: 1px solid rgba(198,139,59,.22);
  border-radius: 999px;
  padding: 6px 12px;
}
.sec2__chips .sec2__chip--soft {
  background: transparent;
  border-style: dashed;
  color: rgba(244,237,224,.5);
}
.sec2__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6FCFA0;
  box-shadow: 0 0 6px rgba(111,207,160,.7);
}
.sec2__chip--soft .sec2__chip-dot { background: var(--accent-soft); box-shadow: 0 0 6px rgba(229,197,138,.6); }

.sec2__zeros {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 24px 20px;
  margin: 0 auto 36px;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.sec2__zero { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.sec2__zero-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #E3FBEF 0%, #6FCFA0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.sec2__zero-lbl {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,237,224,.55);
}
.sec2__zero-sep {
  width: 1px; height: 36px; background: rgba(255,255,255,.1);
}
.sec2__zero-foot {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(244,237,224,.5);
  line-height: 1.55;
}

.sec2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.sec2__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  transition: transform .25s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.sec2__card:hover {
  transform: translateY(-2px);
  border-color: rgba(198,139,59,.4);
  background: rgba(255,255,255,.06);
}
.sec2__card-icon {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.32);
  color: var(--accent-soft);
  margin-bottom: 12px;
}
.sec2__card h4 {
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 700;
  color: #F4EDE0;
  margin: 0 0 6px;
  line-height: 1.25;
}
.sec2__card p {
  font-size: .82rem;
  color: rgba(244,237,224,.55);
  line-height: 1.55;
  margin: 0;
}

.sec2__never {
  background: linear-gradient(120deg, rgba(10,44,49,.6) 0%, rgba(6,24,32,.85) 100%);
  border: 1px solid rgba(198,139,59,.22);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: start;
}
.sec2__never-head .kicker { margin-bottom: 8px; }
.sec2__never-kicker { color: var(--accent-soft); }
.sec2__never-sub {
  margin: 0;
  color: rgba(244,237,224,.55);
  font-size: .88rem;
  line-height: 1.5;
}
.sec2__never-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
}
.sec2__never-list li {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: .88rem;
  color: rgba(244,237,224,.78);
  line-height: 1.4;
}
.sec2__never-x {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(198,139,59,.16);
  border: 1px solid rgba(198,139,59,.34);
  color: var(--accent-soft);
  font-weight: 800;
  flex-shrink: 0;
  font-size: .92rem;
  line-height: 1;
}

@media (max-width: 880px) {
  .sec2__grid { grid-template-columns: 1fr 1fr; }
  .sec2__never { grid-template-columns: 1fr; padding: 20px 20px; }
}
@media (max-width: 560px) {
  .sec2__grid { grid-template-columns: 1fr; }
  .sec2__zeros { grid-template-columns: 1fr 1fr 1fr; padding: 18px 16px; }
  .sec2__zero-sep { display: none; }
  .sec2__zero-foot { grid-column: 1 / -1; }
  .sec2__chips { padding: 12px; }
  .sec2__chips li { font-size: .65rem; padding: 5px 10px; }
  .sec2__never-list li { font-size: .82rem; }
}

/* ---------- HOW IT WORKS v2 ---------- */
.how2 {
  position: relative;
  background: linear-gradient(168deg, #0B3039 0%, #071C22 60%, #060E18 100%);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid rgba(198,139,59,.22);
  overflow: hidden;
  isolation: isolate;
}
.how2__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(198,139,59,.08), transparent 60%);
}
.how2__inner { position: relative; z-index: 1; }
.how2__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.how2__kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-soft);
  background: rgba(198,139,59,.12);
  border: 1px solid rgba(198,139,59,.3);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.how2__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  font-weight: 800;
  color: #F4EDE0;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.how2__title-em { color: var(--accent-soft); }
.how2__lede {
  color: rgba(244,237,224,.6);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.how2__steps {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 760px;
  display: grid; gap: 12px;
}
.how2__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid rgba(198,139,59,.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform .25s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.how2__step:hover {
  transform: translateX(2px);
  border-left-color: var(--accent);
  background: rgba(255,255,255,.04);
}
.how2__step--feat {
  background: linear-gradient(180deg, rgba(198,139,59,.08) 0%, rgba(198,139,59,.02) 100%);
  border-color: rgba(198,139,59,.35);
  border-left: 3px solid var(--accent);
}
.how2__num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(244,237,224,.32);
  line-height: 1;
  letter-spacing: -.02em;
}
.how2__num--gold { color: var(--accent-soft); }
.how2__body { min-width: 0; }
.how2__time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,237,224,.45);
  margin-bottom: 6px;
}
.how2__time--gold { color: var(--accent-soft); }
.how2__step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #F4EDE0;
  line-height: 1.25;
  margin: 0 0 8px;
}
.how2__step p {
  font-size: .88rem;
  color: rgba(244,237,224,.6);
  line-height: 1.55;
  margin: 0 0 10px;
}
.how2__caps { display: flex; flex-wrap: wrap; gap: 6px; }
.how2__cap {
  display: inline-block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(244,237,224,.55);
  border: 1px solid rgba(255,255,255,.08);
}
.how2__cap--gold {
  background: rgba(198,139,59,.12);
  color: var(--accent-soft);
  border-color: rgba(198,139,59,.3);
}
.how2__cta {
  display: flex; justify-content: center;
  margin-top: 36px;
}
@media (max-width: 600px) {
  .how2__steps { gap: 10px; }
  .how2__step { grid-template-columns: 40px 1fr; gap: 12px; padding: 14px 14px; }
  .how2__num { font-size: 1.15rem; }
  .how2__step h3 { font-size: .95rem; }
  .how2__step p { font-size: .82rem; }
}

/* ---------- GLOBAL: nuke leftover sentinel/proof-strip styles (no markup uses them now) ---------- */
.sentinel, .proof-strip, .testimonials-section, .pc-section, .hw-section, .sec-x { display: none !important; }

/* ===================================================
   LIGHT-CREAM PAGE VARIANT (faq.html, practices.html)
   Body gets `.page-light` -> swap dark surfaces (page-hero,
   CTA strip, footer) to cream while keeping Halden gold/teal
   as accents. Index.html is untouched.
   =================================================== */
.page-light { background: var(--cream-50); }

/* page hero */
.page-light .page-hero {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  border-bottom: 1px solid var(--line);
}
.page-light .page-hero h1 { color: var(--ink-900); }
.page-light .page-hero p { color: var(--text-muted); }
.page-light .page-hero .kicker { color: var(--accent-deep); }
.page-light .page-hero .eyebrow {
  background: rgba(10,44,49,.05);
  border-color: var(--line);
  color: var(--text-muted);
}
.page-light .page-hero .eyebrow .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(198,139,59,.18);
}
.page-light .page-hero__cta .btn--ghost {
  color: var(--ink-900);
  border-color: var(--line-strong);
  background: transparent;
}
.page-light .page-hero__cta .btn--ghost:hover {
  color: var(--ink-900);
  border-color: var(--ink-700);
  background: var(--cream-200);
}

/* practice section dividers stay subtle on cream */
.page-light .practice-section { border-bottom-color: var(--line); }

/* CTA strip — `.section--dark` repurposed as cream on light pages */
.page-light .section--dark.cta-strip {
  background: var(--cream-100);
  color: var(--text);
  border-top: 1px solid var(--line);
}
.page-light .section--dark.cta-strip .kicker { color: var(--accent-deep); }
.page-light .section--dark.cta-strip .h-display { color: var(--ink-900); }
.page-light .section--dark.cta-strip .cta-strip__lede { color: var(--text-muted); }
.page-light .section--dark.cta-strip .btn--ghost {
  color: var(--ink-900);
  border-color: var(--line-strong);
  background: transparent;
}
.page-light .section--dark.cta-strip .btn--ghost:hover {
  color: var(--ink-900);
  border-color: var(--ink-700);
  background: var(--cream-200);
}

/* footer */
.page-light .footer {
  background: var(--cream-100);
  color: var(--text-muted);
  border-top: 1px solid var(--line);
}
.page-light .footer__tag { color: var(--text-muted); }
.page-light .footer__trust-badge {
  background: rgba(10,44,49,.05);
  border-color: var(--line);
  color: var(--ink-700);
}
.page-light .footer__cols h4 { color: var(--ink-900); }
.page-light .footer__cols a { color: var(--text-muted); }
.page-light .footer__cols a:hover { color: var(--ink-900); }
.page-light .footer__legal {
  border-top: 1px solid var(--line);
  color: var(--text-faint);
}
.page-light .footer .brand--footer .brand__word { color: var(--ink-900); }

/* ===================================================
   SECURITY & COMPLIANCE (.sec2) -> cream
   Dark teal -> cream-100/50 gradient. Halden gold/teal
   accents preserved (kicker chip, gold icons, gold em
   gradient, success green for zeros + chip dots).
   =================================================== */
.sec2 {
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  border-top: 1px solid var(--line);
}
.sec2__bg {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(198,139,59,.10), transparent 65%),
    radial-gradient(600px 360px at 10% 90%, rgba(42,122,82,.05), transparent 70%);
}
.sec2__kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.10);
  border-color: rgba(198,139,59,.32);
}
.sec2__title { color: var(--ink-900); }
.sec2__title-em {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2__lede { color: var(--text-muted); }

.sec2__chips {
  background: rgba(10,44,49,.04);
  border-color: var(--line);
}
.sec2__chips li {
  color: var(--text);
  background: rgba(198,139,59,.08);
  border-color: rgba(198,139,59,.28);
}
.sec2__chips .sec2__chip--soft {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--line-strong);
}
.sec2__chip-dot {
  background: var(--success);
  box-shadow: 0 0 6px rgba(42,122,82,.4);
}

.sec2__zeros {
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.35));
  border-color: var(--line);
}
.sec2__zero-num {
  background: linear-gradient(180deg, var(--success) 0%, #1F5C3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2__zero-lbl { color: var(--text-muted); }
.sec2__zero-sep { background: var(--line); }
.sec2__zero-foot { color: var(--text-muted); }

.sec2__card {
  background: rgba(255,255,255,.6);
  border-color: var(--line);
}
.sec2__card:hover {
  background: rgba(255,255,255,.9);
  border-color: rgba(198,139,59,.5);
}
.sec2__card-icon {
  background: rgba(198,139,59,.12);
  border-color: rgba(198,139,59,.3);
  color: var(--accent-deep);
}
.sec2__card h4 { color: var(--ink-900); }
.sec2__card p { color: var(--text-muted); }

.sec2__never {
  background: linear-gradient(120deg, var(--cream-100) 0%, var(--cream-50) 100%);
  border-color: rgba(198,139,59,.3);
}
.sec2__never-kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.10);
  border-color: rgba(198,139,59,.32);
}
.sec2__never-sub { color: var(--text-muted); }
.sec2__never-list li {
  background: rgba(255,255,255,.6);
  border-color: var(--line);
  color: var(--text);
}
.sec2__never-x {
  background: rgba(198,139,59,.14);
  border-color: rgba(198,139,59,.34);
  color: var(--accent-deep);
}

/* ===================================================
   HOW IT WORKS (.how2) -> cream
   =================================================== */
.how2 {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  border-top: 1px solid rgba(198,139,59,.28);
}
.how2__bg {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(198,139,59,.06), transparent 60%);
}
.how2__kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.10);
  border-color: rgba(198,139,59,.32);
}
.how2__title { color: var(--ink-900); }
.how2__title-em { color: var(--accent-deep); }
.how2__lede { color: var(--text-muted); }

.how2__step {
  background: rgba(255,255,255,.6);
  border-color: var(--line);
  border-left-color: rgba(198,139,59,.3);
}
.how2__step:hover {
  background: rgba(255,255,255,.9);
  border-left-color: var(--accent);
}
.how2__step--feat {
  background: linear-gradient(180deg, rgba(198,139,59,.12) 0%, rgba(198,139,59,.03) 100%);
  border-color: rgba(198,139,59,.4);
  border-left: 3px solid var(--accent);
}
.how2__num { color: var(--text-faint); }
.how2__num--gold { color: var(--accent-deep); }
.how2__time { color: var(--text-muted); }
.how2__time--gold { color: var(--accent-deep); }
.how2__step h3 { color: var(--ink-900); }
.how2__step p { color: var(--text-muted); }
.how2__cap {
  background: rgba(10,44,49,.05);
  color: var(--text-muted);
  border-color: var(--line);
}
.how2__cap--gold {
  background: rgba(198,139,59,.12);
  color: var(--accent-deep);
  border-color: rgba(198,139,59,.32);
}

/* ===================================================
   WHITE + HALDEN GREEN refresh
   Sections: .hero-call, .roi-v2, .cgd, .sec2, .how2
   - Surfaces -> closer to white
   - Primary accent -> Halden green (--success #2A7A52)
   - Gold retained sparingly (phone CTA, featured step,
     "never" × icons, ROI gold bar/net card)
   =================================================== */

/* ---------- LIVE DEMO LINE (.hero-call) ---------- */
.hero-call {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42,122,82,.10) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F6F4EE 100%);
  border-color: rgba(42,122,82,.30);
  box-shadow:
    0 24px 56px -28px rgba(10,44,49,.28),
    0 2px 6px -2px rgba(10,44,49,.06),
    inset 0 1px 0 rgba(255,255,255,.85);
}
.hero-call__halo {
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(42,122,82,.22), transparent 70%);
}
.hero-call__corner--tl { border-top-color: var(--success); border-left-color: var(--success); }
.hero-call__corner--tr { border-top-color: var(--success); border-right-color: var(--success); }
.hero-call__corner--bl { border-bottom-color: var(--success); border-left-color: var(--success); }
.hero-call__corner--br { border-bottom-color: var(--success); border-right-color: var(--success); }
.hero-call__pill {
  color: var(--success);
  background: rgba(42,122,82,.10);
  border-color: rgba(42,122,82,.32);
}
.hero-call__pill-dot {
  background: var(--success);
  box-shadow: 0 0 8px rgba(42,122,82,.6);
}
@keyframes hcLiveDot {
  0%, 100% { opacity: .6; transform: scale(.9); box-shadow: 0 0 6px rgba(42,122,82,.5); }
  50%      { opacity: 1;  transform: scale(1.15); box-shadow: 0 0 12px rgba(42,122,82,.7); }
}
/* Phone-number CTA: Halden deep teal gradient with gold text/icon */
.hero-call__number {
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-950) 100%);
  border-color: rgba(10,44,49,.7);
  color: var(--accent);
  box-shadow:
    0 8px 22px -14px rgba(6,24,32,.55),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-call__number:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-900) 100%);
  box-shadow:
    0 14px 32px -14px rgba(6,24,32,.7),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-call__digits { color: var(--accent); }
.hero-call__icon {
  background: rgba(198,139,59,.18);
  border-color: rgba(198,139,59,.55);
  color: var(--accent-soft);
}
@keyframes hcRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,59,.55); }
  50%      { box-shadow: 0 0 0 10px rgba(198,139,59,0); }
}
.hero-call__check {
  background: rgba(42,122,82,.10);
  border-color: rgba(42,122,82,.42);
  color: var(--success);
}

/* ---------- ROI ESTIMATOR (.roi-v2) ---------- */
.roi-v2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
  border-top-color: rgba(42,122,82,.20);
  border-bottom-color: rgba(42,122,82,.20);
}
.roi-v2::before {
  background:
    radial-gradient(ellipse 62% 40% at 50% 0%,  rgba(42,122,82,.10) 0%, transparent 65%),
    radial-gradient(ellipse 38% 44% at 82% 65%, rgba(42,122,82,.06) 0%, transparent 58%),
    radial-gradient(ellipse 48% 40% at 10% 80%, rgba(10,44,49,.04)  0%, transparent 60%);
}
.roi-v2__kicker { color: var(--success); }
.roi-v2__hl-gold { color: var(--accent); }
.roi-v2__bars {
  background: #FFFFFF;
  border-color: rgba(42,122,82,.18);
}
.roi-v2__controls {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
  border-color: rgba(42,122,82,.18);
}
.roi-v2__card {
  background: #FFFFFF;
  border-color: rgba(42,122,82,.18);
}
/* "Net to your practice" card keeps gold — single gold accent in ROI cards */
.roi-v2__card--net {
  background: rgba(198,139,59,.08);
  border-color: rgba(198,139,59,.32);
}
.roi-v2__card--break {
  background: rgba(42,122,82,.07);
  border-color: rgba(42,122,82,.28);
}
/* Primary CTA: Halden gold gradient */
.roi-v2__cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 10px 24px -12px rgba(198,139,59,.55);
}
.roi-v2__cta:hover {
  box-shadow: 0 16px 32px -14px rgba(198,139,59,.7);
}
/* Range thumb -> green */
.roi-v2__range::-webkit-slider-thumb {
  background: var(--success);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 1px #1F5C3D, 0 4px 10px rgba(42,122,82,.32);
}
.roi-v2__range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 1px #1F5C3D, 0 6px 14px rgba(42,122,82,.45);
}
.roi-v2__range::-moz-range-thumb {
  background: var(--success);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 1px #1F5C3D, 0 4px 10px rgba(42,122,82,.32);
}
/* Gold range stays gold (paired with gold bar) — retained accent */
.roi-v2__select:focus {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(42,122,82,.18);
}

/* ---------- COST OF GOING DARK (.cgd) ---------- */
.cgd {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
}
.cgd__bg-glow--gold {
  background: radial-gradient(circle, rgba(42,122,82,.22), transparent 70%);
}
.cgd__bg-glow--teal {
  background: radial-gradient(circle, rgba(10,44,49,.12), transparent 70%);
}
.cgd__kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.12);
  border-color: rgba(198,139,59,.30);
}
.cgd__title-em {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cgd__stat {
  background: rgba(255,255,255,.85);
  border-color: rgba(42,122,82,.18);
}
.cgd__stat:hover { border-color: var(--success); }
.cgd__stat-num { color: var(--success); }
.cgd__rail {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(198,139,59,.45) 12%,
    rgba(198,139,59,.45) 88%,
    transparent 100%);
}
.cgd__node {
  background: var(--accent);
  border-color: #FFFFFF;
}
@keyframes cgdNode {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198,139,59,.50); }
  50%      { box-shadow: 0 0 0 9px rgba(198,139,59,0); }
}
.cgd__time { color: var(--accent-deep); }
.cgd__cell--off {
  background: linear-gradient(180deg, rgba(177,75,42,.08) 0%, rgba(177,75,42,.02) 100%);
  border-color: rgba(177,75,42,.32);
}
.cgd__tag--off {
  color: var(--alert);
  background: rgba(177,75,42,.12);
  border-color: rgba(177,75,42,.32);
}
.cgd__cell--on {
  background: linear-gradient(180deg, rgba(42,122,82,.08) 0%, rgba(42,122,82,.02) 100%);
  border-color: rgba(42,122,82,.32);
}
.cgd__tag--on {
  color: var(--success);
  background: rgba(42,122,82,.12);
  border-color: rgba(42,122,82,.32);
}
.cgd__cell--on h3 { color: var(--success); }
.cgd__closer {
  background: linear-gradient(120deg, #FFFFFF 0%, #FBF8F1 100%);
  border: 1px solid rgba(42,122,82,.30);
  box-shadow: 0 12px 32px -18px rgba(42,122,82,.22);
}
.cgd__closer-text { color: var(--text); }
.cgd__closer-text strong { color: var(--ink-900); }

/* ---------- SECURITY & COMPLIANCE (.sec2) ---------- */
.sec2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
}
.sec2__bg {
  background:
    radial-gradient(700px 360px at 80% 0%, rgba(42,122,82,.10), transparent 65%),
    radial-gradient(600px 360px at 10% 90%, rgba(198,139,59,.05), transparent 70%);
}
.sec2__kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.12);
  border-color: rgba(198,139,59,.32);
}
.sec2__title-em {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec2__chips {
  background: rgba(42,122,82,.04);
  border-color: rgba(42,122,82,.18);
}
.sec2__chips li {
  color: var(--text);
  background: rgba(42,122,82,.08);
  border-color: rgba(42,122,82,.28);
}
.sec2__chip-dot {
  background: var(--success);
  box-shadow: 0 0 6px rgba(42,122,82,.5);
}
.sec2__card {
  background: #FFFFFF;
  border-color: rgba(42,122,82,.16);
}
.sec2__card:hover {
  background: #FFFFFF;
  border-color: var(--success);
}
.sec2__card-icon {
  background: rgba(42,122,82,.10);
  border-color: rgba(42,122,82,.32);
  color: var(--success);
}
.sec2__never {
  background:
    linear-gradient(120deg, rgba(177,75,42,.05) 0%, rgba(177,75,42,.02) 100%),
    /* checkered/grid texture */
    linear-gradient(90deg, rgba(177,75,42,.05) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(0deg,  rgba(177,75,42,.05) 1px, transparent 1px) 0 0 / 14px 14px,
    #FFFCFA;
  border-color: rgba(177,75,42,.32);
}
.sec2__never-kicker {
  color: var(--alert);
  background: rgba(177,75,42,.10);
  border-color: rgba(177,75,42,.30);
}
.sec2__never-list li {
  background:
    /* subtle checker on each item */
    linear-gradient(45deg, rgba(177,75,42,.045) 25%, transparent 25%, transparent 75%, rgba(177,75,42,.045) 75%) 0 0 / 10px 10px,
    linear-gradient(45deg, rgba(177,75,42,.045) 25%, transparent 25%, transparent 75%, rgba(177,75,42,.045) 75%) 5px 5px / 10px 10px,
    #FFFFFF;
  border-color: rgba(177,75,42,.22);
}
.sec2__never-x {
  background: rgba(177,75,42,.14);
  border-color: rgba(177,75,42,.42);
  color: var(--alert);
}

/* ---------- HOW IT WORKS (.how2) ---------- */
.how2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F0 100%);
  border-top-color: rgba(42,122,82,.24);
}
.how2__bg {
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(42,122,82,.06), transparent 60%);
}
.how2__kicker {
  color: var(--accent-deep);
  background: rgba(198,139,59,.12);
  border-color: rgba(198,139,59,.32);
}
.how2__title-em { color: var(--accent); }
.how2__step {
  background: #FFFFFF;
  border-color: rgba(42,122,82,.16);
  border-left-color: rgba(42,122,82,.30);
}
.how2__step:hover {
  background: #FFFFFF;
  border-left-color: var(--success);
}
/* Featured step 03 stays gold — retained gold accent in how-it-works */
.how2__step--feat {
  background: linear-gradient(180deg, rgba(198,139,59,.12) 0%, rgba(198,139,59,.03) 100%);
  border-color: rgba(198,139,59,.40);
  border-left: 3px solid var(--accent);
}
.how2__cap {
  background: rgba(42,122,82,.05);
  color: var(--text-muted);
  border-color: rgba(42,122,82,.16);
}
/* how2__cap--gold (inside featured step) stays gold */

/* ---------- Final green-forward pass on lingering gold ROI internals + sec2 × icons ---------- */
.roi-v2__bar-amount--gold { color: var(--success); }
.roi-v2__bar-fill--gold {
  background: linear-gradient(90deg, #1F5C3D 0%, var(--success) 100%);
}
.roi-v2__plan-badge {
  color: var(--success);
  background: rgba(42,122,82,.10);
  border: 1px solid rgba(42,122,82,.28);
}
.roi-v2__card--net {
  background: rgba(42,122,82,.06);
  border-color: rgba(42,122,82,.30);
}
.roi-v2__card-val--net { color: var(--success); }
.roi-v2__output--gold { color: var(--success); }
.roi-v2__range--gold::-webkit-slider-thumb {
  background: var(--success);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 1px #1F5C3D, 0 4px 10px rgba(42,122,82,.4);
}
.roi-v2__range--gold::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 1px #1F5C3D, 0 6px 14px rgba(42,122,82,.55);
}
.roi-v2__range--gold::-moz-range-thumb {
  background: var(--success);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 1px #1F5C3D, 0 4px 10px rgba(42,122,82,.4);
}

/* ===================================================
   "WHAT HALDEN NEVER DOES" — dark mahogany card
   Full redesign per latest spec
   =================================================== */
.sec2__never {
  display: block;                       /* override 2-col grid */
  background:
    radial-gradient(ellipse 75% 65% at 100% 0%, rgba(255,215,185,.26) 0%, rgba(255,195,155,.10) 40%, transparent 75%),
    linear-gradient(150deg, #3E1F18 0%, #2D1611 55%, #21100C 100%);
  border: 1px solid rgba(177,75,42,.22);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 38px) clamp(22px, 4vw, 34px);
  box-shadow: 0 24px 56px -28px rgba(0,0,0,.55);
}
.sec2__never-head {
  text-align: left;
  margin: 0 0 22px;
  max-width: none;
}
.sec2__never-kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,210,190,.55);
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 14px;
}
.sec2__never-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -.018em;
  margin: 0 0 12px;
}
.sec2__never-title em {
  font-style: italic;
  font-weight: 800;
  color: #EFAA92;                       /* salmon highlight */
  -webkit-text-fill-color: #EFAA92;
  background: none;
}
.sec2__never-sub {
  color: rgba(255,220,205,.55);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
.sec2__never-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 10px;
}
.sec2__never-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255,255,255,.022) 0%, rgba(255,255,255,.008) 100%);
  border: 1px solid rgba(255,170,140,.07);
  border-radius: var(--radius);
  padding: 16px 18px;
  color: inherit;
  font-size: inherit;
}
.sec2__never-x {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(177,75,42,.32);
  border-radius: 50%;
  color: rgba(232,158,128,.55);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.sec2__never-body { min-width: 0; }
.sec2__never-h {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0 0 6px;
  letter-spacing: -.005em;
}
.sec2__never-d {
  font-size: .92rem;
  color: rgba(255,220,205,.55);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 720px) {
  .sec2__never-list li { padding: 14px 14px; gap: 12px; grid-template-columns: 30px 1fr; }
  .sec2__never-x { width: 28px; height: 28px; font-size: .9rem; }
  .sec2__never-h { font-size: .98rem; }
  .sec2__never-d { font-size: .86rem; }
}
