/* ============================================================
   Ranger LES — marketing site
   "Modern Frontier": Texas Rangers heritage, tactile depth.
   NO flat buttons. NO flat spaces. Everything presses, bevels,
   or carries texture. See feedback_no_flat_ui memory.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --font-slab: "Roboto Slab", Rockwell, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --bg: #F4F1EC;
  --card: #FFFFFF;
  --card-2: #FAF8F4;
  --text: #1C2A39;
  --text-2: #5B6471;
  --accent: #C46A2D;
  --accent-link: #A85A24;
  --border: #E2DDD3;
  --navy: #1C2A39;
  --navy-deep: #14202E;
  --cream: #F2E9D8;

  --surface-highlight: rgba(255, 250, 243, 0.6);
  --shadow-card: inset 0 1px 0 var(--surface-highlight),
    0 1px 2px rgba(28, 42, 57, 0.07), 0 6px 16px -6px rgba(28, 42, 57, 0.14);
  --shadow-card-hover: inset 0 1px 0 var(--surface-highlight),
    0 2px 4px rgba(28, 42, 57, 0.08), 0 14px 28px -10px rgba(28, 42, 57, 0.22);
  --shadow-well: inset 0 2px 4px rgba(28, 42, 57, 0.12),
    inset 0 1px 2px rgba(28, 42, 57, 0.18);

  --ok: #3E7C4F;
  --warn: #B07A1E;
  --bad: #A8432F;
  --info: #3E6C95;

  /* black-speck grain for light surfaces */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  /* white-speck grain for dark surfaces */
  --grain-light: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  /* topographic contours — the Texas-terrain motif (copper, faint) */
  --topo: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='640' height='640' fill='none' stroke='%23C46A2D' stroke-width='1'><g stroke-opacity='0.10'><ellipse cx='190' cy='170' rx='52' ry='30' transform='rotate(-14 190 170)'/><ellipse cx='192' cy='172' rx='84' ry='52' transform='rotate(-11 192 172)'/><ellipse cx='196' cy='176' rx='118' ry='76' transform='rotate(-8 196 176)'/><ellipse cx='200' cy='182' rx='154' ry='102' transform='rotate(-6 200 182)'/><ellipse cx='470' cy='480' rx='44' ry='26' transform='rotate(17 470 480)'/><ellipse cx='468' cy='478' rx='76' ry='48' transform='rotate(14 468 478)'/><ellipse cx='465' cy='474' rx='110' ry='72' transform='rotate(11 465 474)'/><ellipse cx='462' cy='470' rx='146' ry='98' transform='rotate(8 462 470)'/><ellipse cx='540' cy='120' rx='36' ry='20' transform='rotate(-22 540 120)'/><ellipse cx='538' cy='122' rx='62' ry='38' transform='rotate(-19 538 122)'/></g></svg>");

  --ease-press: cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

html.dark {
  --bg: #121417;
  --card: #1E2227;
  --card-2: #23282e;
  --text: #E5E7EB;
  --text-2: #9CA3AF;
  --accent: #D17A3A;
  --accent-link: #E08B4C;
  --border: #2A2F36;
  --navy: #161B22;
  --navy-deep: #10141a;
  --cream: #F2E9D8;

  --surface-highlight: rgba(255, 245, 228, 0.09);
  --shadow-card: inset 0 1px 0 var(--surface-highlight),
    0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 20px -6px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: inset 0 1px 0 var(--surface-highlight),
    0 2px 4px rgba(0, 0, 0, 0.45), 0 16px 32px -10px rgba(0, 0, 0, 0.6);
  --shadow-well: inset 0 2px 5px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { font-family: var(--font-slab); line-height: 1.15; margin: 0 0 16px; font-weight: 700; }
h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: 0.01em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); }
h3 { font-size: 21px; }
p { margin: 0 0 16px; }
a { color: var(--accent-link); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
img { max-width: 100%; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: color-mix(in oklab, var(--accent), transparent 70%); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--text-2); }
.small { font-size: 13.5px; }
.nowrap { white-space: nowrap; }

/* ---------- section bands (no flat expanses) ---------- */
.band {
  position: relative;
  padding: 88px 0;
  background-color: var(--bg);
  background-image: var(--grain);
}
html.dark .band { background-image: var(--grain-light); }
.band-alt { background-color: color-mix(in oklab, var(--bg), var(--accent) 3%); }
html.dark .band-alt { background-color: #15181d; }
.band-navy {
  background-color: var(--navy);
  background-image: var(--topo), var(--grain-light);
  color: #E7E3DA;
}
.band-navy h2, .band-navy h3 { color: var(--cream); }
.band-navy .muted { color: #9DA8B5; }
.band-edge-top { box-shadow: inset 0 6px 12px -8px rgba(0, 0, 0, 0.35); }
.band + .band { border-top: 1px solid var(--border); }

/* kicker: patrol-report section label */
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.kicker::before, .kicker::after { content: ""; height: 1px; background: color-mix(in oklab, var(--accent), transparent 55%); flex: 0 0 42px; }
.kicker::after { flex: 1; }
.kicker .star { flex: none; width: 15px; height: 15px; color: var(--accent); filter: drop-shadow(0 1px 1px rgba(0,0,0,0.25)); }
.band-navy .kicker { color: #DF9858; }

/* ---------- buttons: physical, always ---------- */
.btn {
  --press-edge: 3px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 9px;
  font-weight: 600; font-size: 15.5px; line-height: 1; cursor: pointer;
  text-decoration: none !important; user-select: none;
  border: 1px solid;
  transition: transform 130ms var(--ease-press), box-shadow 130ms var(--ease-press), filter 130ms;
  transform: translateY(0);
  position: relative;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--accent), white 16%) 0%,
    var(--accent) 55%,
    color-mix(in oklab, var(--accent), black 12%) 100%);
  border-color: color-mix(in oklab, var(--accent), black 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 var(--press-edge) 0 color-mix(in oklab, var(--accent), black 38%),
    0 6px 14px -4px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4),
    0 calc(var(--press-edge) + 1px) 0 color-mix(in oklab, var(--accent), black 38%),
    0 10px 20px -6px rgba(0, 0, 0, 0.4); }
.btn-primary:active { transform: translateY(var(--press-edge)); filter: brightness(0.94);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3),
    0 0 0 color-mix(in oklab, var(--accent), black 38%),
    0 1px 3px rgba(0, 0, 0, 0.3); }
.btn-paper {
  color: var(--text);
  background: linear-gradient(180deg, color-mix(in oklab, var(--card), white 4%), color-mix(in oklab, var(--card), black 5%));
  border-color: color-mix(in oklab, var(--border), black 12%);
  box-shadow: inset 0 1px 0 var(--surface-highlight),
    0 var(--press-edge) 0 color-mix(in oklab, var(--border), black 22%),
    0 6px 12px -6px rgba(0, 0, 0, 0.25);
}
.btn-paper:hover { transform: translateY(-1px);
  box-shadow: inset 0 1px 0 var(--surface-highlight),
    0 calc(var(--press-edge) + 1px) 0 color-mix(in oklab, var(--border), black 22%),
    0 10px 18px -8px rgba(0, 0, 0, 0.3); }
.btn-paper:active { transform: translateY(var(--press-edge));
  box-shadow: var(--shadow-well); }
.btn-ghost-dark { /* on navy bands / hero */
  color: var(--cream);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border-color: rgba(242, 233, 216, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 var(--press-edge) 0 rgba(0, 0, 0, 0.45), 0 6px 14px -6px rgba(0, 0, 0, 0.5);
}
.btn-ghost-dark:hover { transform: translateY(-1px); background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08)); }
.btn-ghost-dark:active { transform: translateY(var(--press-edge)); box-shadow: inset 0 2px 5px rgba(0,0,0,0.5); }
.btn-lg { padding: 16px 30px; font-size: 17px; border-radius: 10px; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; --press-edge: 2px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background 240ms, box-shadow 240ms, border-color 240ms;
  border-bottom: 1px solid transparent;
}
.nav-inner { display: flex; align-items: center; gap: 26px; height: 64px; }
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--surface-highlight) inset, 0 4px 18px -8px rgba(0, 0, 0, 0.3);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-slab); font-weight: 700; font-size: 18px; letter-spacing: 0.04em; color: var(--cream); }
.nav.scrolled .nav-brand { color: var(--text); }
.nav-brand img { width: 30px; height: 30px; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4)); }
.nav-links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.nav-links a:not(.btn) { color: #E7E3DA; font-weight: 500; font-size: 14.5px; text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.nav.scrolled .nav-links a:not(.btn) { color: var(--text); text-shadow: none; }
.nav-links a:not(.btn):hover { color: var(--accent-link); text-decoration: none; }
@media (max-width: 760px) { .nav-links a.nav-hide-m { display: none; } }
@media (max-width: 640px) {
  .nav-inner { gap: 12px; height: 56px; }
  .nav-brand { font-size: 15px; gap: 7px; }
  .nav-brand img { width: 24px; height: 24px; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.btn) { font-size: 13.5px; white-space: nowrap; }
  .nav-links .btn { padding: 8px 12px; font-size: 12.5px; }
}
@media (max-width: 480px) {
  .nav-links .btn { display: none; } /* hero + bottom bar carry the CTA on phones */
  .nav-brand-txt { display: none; }  /* shield alone is the brand on phones */
  .nav-brand img { width: 28px; height: 28px; }
}

/* theme toggle: machined switch */
.theme-switch {
  display: inline-flex; align-items: center;
  width: 62px; height: 30px; border-radius: 999px; cursor: pointer;
  background: linear-gradient(180deg, #0e131a, #1d2630);
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.65), inset 0 -1px 0 rgba(255, 255, 255, 0.07), 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative; flex: none; padding: 0;
}
.theme-switch .knob {
  position: absolute; top: 2px; left: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 22%), color-mix(in oklab, var(--accent), black 14%));
  border: 1px solid color-mix(in oklab, var(--accent), black 30%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: left 220ms var(--ease-press), transform 130ms;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.theme-switch:active .knob { transform: scale(0.92); }
html.dark .theme-switch .knob { left: 34px; }
.theme-switch svg { width: 13px; height: 13px; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.4)); }
.theme-switch .sun, .theme-switch .moon { position: absolute; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; color: rgba(242, 233, 216, 0.5); }
.theme-switch .sun { left: 9px; } .theme-switch .moon { right: 9px; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  color: var(--cream); overflow: hidden;
}
/* background-image is set inline in HTML (active theme) / deferred via data-defer (other theme) */
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; transition: opacity 700ms ease-out; background-color: #0d1117; }
.hero-bg.day { opacity: 1; }
.hero-bg.night { opacity: 0; }
html.dark .hero-bg.day { opacity: 0; }
html.dark .hero-bg.night { opacity: 1; }
.hero-scrim { position: absolute; inset: 0; transition: opacity 700ms ease-out;
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.32) 0%, rgba(7, 8, 9, 0.42) 55%, rgba(7, 8, 9, 0.72) 100%); }
.hero-scrim.night-scrim { opacity: 0;
  background: linear-gradient(180deg, rgba(7, 8, 9, 0.46) 0%, rgba(7, 8, 9, 0.56) 55%, rgba(7, 8, 9, 0.82) 100%); }
html.dark .hero-scrim.day-scrim { opacity: 0; }
html.dark .hero-scrim.night-scrim { opacity: 1; }
.hero-stars { position: absolute; inset: 0 0 35% 0; opacity: 0; transition: opacity 900ms; pointer-events: none; }
html.dark .hero-stars { opacity: 1; }
.hero-stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.7);
  animation: twinkle 3.4s ease-in-out infinite;
}
@keyframes twinkle { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-shield { width: clamp(110px, 14vw, 170px); filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55)); margin-bottom: 8px; }
.hero h1 { color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55); margin-bottom: 6px; }
.hero .hero-sub {
  font-family: var(--font-slab); font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase;
  font-size: clamp(12px, 1.6vw, 16px); color: #DF9858; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); margin-bottom: 26px;
}
.hero .positioning { font-size: clamp(18px, 2.4vw, 24px); max-width: 720px; margin: 0 auto 36px; color: #F0EBE0; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }
.hero .positioning em { color: #E8A56B; font-style: normal; }
.positioning-sub { font-size: clamp(14px, 1.7vw, 16.5px); color: rgba(240, 235, 224, 0.78); max-width: 640px; margin: -22px auto 34px; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-more { margin-top: 20px; }
.hero-more a { color: #E8A56B; font-weight: 600; font-size: 15px; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(232, 165, 107, 0.45); }
.hero-more a:hover { text-decoration-color: #E8A56B; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 42px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #E7E3DA; background: rgba(10, 12, 14, 0.45); border: 1px solid rgba(242, 233, 216, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-chip .star { width: 12px; height: 12px; color: #DF9858; }
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(242, 233, 216, 0.75); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-scroll::after { content: ""; display: block; width: 1px; height: 34px; margin: 8px auto 0; background: linear-gradient(180deg, rgba(242, 233, 216, 0.8), transparent); }

/* ---------- wedge bar ---------- */
.wedges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.wedge {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--card), white 3%), var(--card));
  border: 1px solid var(--border); border-radius: 9px;
  box-shadow: var(--shadow-card); font-weight: 600; font-size: 14.5px;
}
.wedge svg { width: 22px; height: 22px; color: var(--accent); flex: none; filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2)); }
@media (max-width: 900px) { .wedges { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wedges { grid-template-columns: 1fr; } }

/* ---------- cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-card); padding: 24px;
  transition: transform 160ms var(--ease-press), box-shadow 160ms;
}
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }

/* evidence-tag status chips */
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px 4px 8px; border-radius: 5px;
  border: 1px dashed; background: var(--card-2);
  box-shadow: inset 0 1px 0 var(--surface-highlight), 0 1px 2px rgba(0, 0, 0, 0.12);
}
.tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.45), 0 0 0 1.5px currentColor; background: var(--card); }
.tag-live { color: var(--ok); border-color: color-mix(in oklab, var(--ok), transparent 35%); }
.tag-beta { color: var(--info); border-color: color-mix(in oklab, var(--info), transparent 35%); }
.tag-early { color: var(--warn); border-color: color-mix(in oklab, var(--warn), transparent 35%); }
.tag-soon { color: var(--text-2); border-color: color-mix(in oklab, var(--text-2), transparent 40%); }
.tag-free { color: var(--accent); border-color: color-mix(in oklab, var(--accent), transparent 30%); }

/* ---------- product grid ---------- */
/* 6-track grid, cards span 2 → 3 visual columns. Lets us center an orphaned
   last row (e.g. 14 cards) instead of leaving a missing-tooth gap. */
.prod-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.prod-grid > .prod { grid-column: span 2; }
.prod-grid > .prod:nth-child(3n+1):nth-last-child(2) { grid-column: 2 / span 2; } /* pair on last row */
.prod-grid > .prod:nth-child(3n+2):last-child { grid-column: 4 / span 2; }
.prod-grid > .prod:nth-child(3n+1):last-child { grid-column: 3 / span 2; }        /* lone orphan */
@media (max-width: 1020px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid > .prod { grid-column: auto !important; }
}
@media (max-width: 640px) { .prod-grid { grid-template-columns: 1fr; } }
.prod { padding: 0; overflow: hidden; cursor: pointer; }
.prod-head { display: flex; align-items: center; gap: 14px; padding: 18px 20px 14px; }
.prod-logo { width: 56px; height: 56px; flex: none; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25)); }
.prod-logo-fallback {
  width: 56px; height: 56px; flex: none; border-radius: 50%; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, color-mix(in oklab, var(--navy), white 18%), var(--navy-deep));
  border: 1px solid color-mix(in oklab, var(--accent), transparent 45%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--cream); font-family: var(--font-slab); font-weight: 700; font-size: 16px; letter-spacing: 0.05em;
}
.prod-name { font-family: var(--font-slab); font-weight: 700; font-size: 18px; }
.prod-tagline { padding: 0 20px 16px; color: var(--text-2); font-size: 14px; line-height: 1.5; margin: 0; }
.prod-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 20px 16px; }
.prod-price { font-weight: 700; font-size: 14px; color: var(--accent-link); }
.prod-more {
  max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease-press);
  border-top: 1px dashed var(--border); background: var(--card-2);
}
.prod.open .prod-more { max-height: 340px; }
.prod-more-inner { padding: 16px 20px 20px; }
.prod-more ul { margin: 0 0 14px; padding-left: 20px; font-size: 14px; color: var(--text-2); }
.prod-more li { margin-bottom: 6px; }
.prod-expand-hint { font-size: 12px; color: var(--text-2); transition: transform 200ms; display: inline-block; }
.prod.open .prod-expand-hint { transform: rotate(180deg); }

/* ---------- founder story ---------- */
.story { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.pullquote {
  font-family: var(--font-slab); font-size: clamp(20px, 2.6vw, 26px); line-height: 1.4;
  padding: 28px 30px; position: relative;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.pullquote::before {
  content: "\201C"; position: absolute; top: -22px; left: 18px; font-size: 84px; color: var(--accent);
  font-family: Georgia, serif; text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.pullquote footer { font-family: var(--font-sans); font-size: 13.5px; color: var(--text-2); margin-top: 14px; letter-spacing: 0.04em; }

/* ---------- stat numerals (copper foil) ---------- */
.stat-num {
  font-family: var(--font-slab); font-weight: 700; font-size: clamp(34px, 4.6vw, 54px); line-height: 1;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 25%), color-mix(in oklab, var(--accent), black 18%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
.stat-num.sober { background: none; color: var(--text); filter: none; }

/* ---------- receipts wall ---------- */
.receipts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 880px) { .receipts { grid-template-columns: 1fr; } }
.receipt { padding: 0; overflow: hidden; }
.receipt-head { padding: 20px 22px 6px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.receipt-vendor { font-family: var(--font-slab); font-weight: 700; font-size: 17px; }
.source-chip {
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-2); border: 1px solid var(--border); border-radius: 4px; padding: 3px 8px;
  background: var(--card-2); box-shadow: inset 0 1px 0 var(--surface-highlight);
  white-space: nowrap;
}
.receipt-body { padding: 6px 22px 16px; font-size: 14.5px; color: var(--text-2); }
.receipt-stat { padding: 0 22px 16px; display: flex; align-items: baseline; gap: 10px; }
.receipt-stat .lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); }
.receipt-answer {
  border-top: 1px dashed var(--border); background: var(--card-2);
  max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease-press);
}
.receipt.open .receipt-answer { max-height: 280px; }
.receipt-answer-inner { padding: 16px 22px 18px; font-size: 14.5px; }
.receipt-answer-inner strong { color: var(--accent-link); }
.receipt-toggle {
  width: 100%; text-align: left; padding: 12px 22px; cursor: pointer;
  background: linear-gradient(180deg, color-mix(in oklab, var(--card), white 3%), color-mix(in oklab, var(--card), black 3%));
  border: 0; border-top: 1px solid var(--border);
  font-weight: 600; font-size: 13.5px; color: var(--accent-link);
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: inset 0 1px 0 var(--surface-highlight);
  transition: filter 130ms;
}
.receipt-toggle:hover { filter: brightness(1.04); }
.receipt-toggle:active { box-shadow: var(--shadow-well); }
.receipt-toggle .chev { transition: transform 220ms; }
.receipt.open .receipt-toggle .chev { transform: rotate(180deg); }
.sources-note { margin-top: 26px; padding: 16px 20px; border: 1px dashed var(--border); border-radius: 8px; font-size: 12.5px; color: var(--text-2); background: var(--card-2); }
.sources-note a { color: var(--accent-link); }

/* ---------- integration teaser ---------- */
.teaser-diagram { display: flex; align-items: center; justify-content: center; margin: 10px 0 26px; }

/* ---------- calculator ---------- */
.calc { display: grid; grid-template-columns: 1fr 420px; gap: 26px; align-items: start; }
@media (max-width: 980px) { .calc { grid-template-columns: 1fr; } }

.calc-group { margin-bottom: 22px; }
.calc-group-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-slab); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.calc-group-sub { font-size: 13px; color: var(--text-2); margin-bottom: 12px; }

/* segmented agency-type control */
.seg {
  display: inline-flex; padding: 4px; border-radius: 10px; gap: 4px;
  background: color-mix(in oklab, var(--bg), black 4%);
  border: 1px solid var(--border); box-shadow: var(--shadow-well);
}
html.dark .seg { background: #0e1114; }
.seg button {
  padding: 10px 20px; border-radius: 7px; border: 1px solid transparent; cursor: pointer;
  font-weight: 600; font-size: 14.5px; color: var(--text-2); background: transparent;
  transition: all 150ms var(--ease-press);
}
.seg button:active { transform: translateY(1px); }
.seg button.on {
  color: #fff;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 14%), color-mix(in oklab, var(--accent), black 10%));
  border-color: color-mix(in oklab, var(--accent), black 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 2px 0 color-mix(in oklab, var(--accent), black 38%), 0 4px 8px -2px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

/* stepper */
.stepper { display: inline-flex; align-items: stretch; border-radius: 9px; overflow: visible; }
.stepper button {
  width: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 20px; font-weight: 700; color: var(--text); border: 1px solid color-mix(in oklab, var(--border), black 12%);
  background: linear-gradient(180deg, color-mix(in oklab, var(--card), white 4%), color-mix(in oklab, var(--card), black 6%));
  box-shadow: inset 0 1px 0 var(--surface-highlight), 0 2px 0 color-mix(in oklab, var(--border), black 22%);
  transition: transform 120ms var(--ease-press), box-shadow 120ms;
  position: relative; z-index: 1;
}
.stepper button:first-child { border-radius: 9px 0 0 9px; }
.stepper button:last-child { border-radius: 0 9px 9px 0; }
.stepper button:hover { filter: brightness(1.05); }
.stepper button:active { transform: translateY(2px); box-shadow: var(--shadow-well); }
.stepper input {
  width: 86px; text-align: center; font-family: var(--font-slab); font-size: 22px; font-weight: 700;
  color: var(--text); border: 1px solid color-mix(in oklab, var(--border), black 12%); border-left: 0; border-right: 0;
  background: var(--card); box-shadow: var(--shadow-well); -moz-appearance: textfield; appearance: textfield;
}
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.stepper-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stepper-lbl { font-size: 14px; color: var(--text-2); }

/* product checkbox rows */
.pick-list { display: flex; flex-direction: column; gap: 10px; }
.pick {
  display: flex; align-items: center; gap: 14px; padding: 13px 16px; cursor: pointer;
  background: var(--card); border: 1px solid var(--border); border-radius: 9px;
  box-shadow: var(--shadow-card); transition: transform 140ms var(--ease-press), box-shadow 140ms, border-color 140ms;
  position: relative;
}
.pick:hover { transform: translateY(-1px); box-shadow: var(--shadow-card-hover); }
.pick:active { transform: translateY(1px); }
.pick.on { border-color: color-mix(in oklab, var(--accent), transparent 35%);
  background: linear-gradient(180deg, color-mix(in oklab, var(--card), var(--accent) 4%), var(--card)); }
.pick.disabled { opacity: 0.55; cursor: not-allowed; }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick-box {
  width: 24px; height: 24px; border-radius: 6px; flex: none; position: relative;
  background: color-mix(in oklab, var(--bg), black 3%);
  border: 1px solid color-mix(in oklab, var(--border), black 15%);
  box-shadow: var(--shadow-well); transition: all 150ms var(--ease-press);
}
.pick.on .pick-box {
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 14%), color-mix(in oklab, var(--accent), black 10%));
  border-color: color-mix(in oklab, var(--accent), black 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.pick-box::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transform: scale(0.5);
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4 10-11'/></svg>") center/14px no-repeat;
  transition: all 160ms var(--ease-press);
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.35));
}
.pick.on .pick-box::after { opacity: 1; transform: scale(1); }
.pick-logo { width: 34px; height: 34px; flex: none; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2)); }
.pick-name { font-weight: 600; font-size: 15px; }
.pick-desc { font-size: 12.5px; color: var(--text-2); }
.pick-price { margin-left: auto; text-align: right; font-weight: 700; font-size: 14px; color: var(--accent-link); white-space: nowrap; }
.pick-price .was { text-decoration: line-through; color: var(--text-2); font-weight: 500; margin-right: 6px; }
.pick-price.bumped { animation: price-pulse 600ms var(--ease-press); }
@keyframes price-pulse { 0% { transform: scale(1); } 35% { transform: scale(1.18); color: var(--accent); } 100% { transform: scale(1); } }
.pick-units { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.pick-units .stepper button { width: 34px; font-size: 16px; }
.pick-units .stepper input { width: 52px; font-size: 16px; }

/* tier-A ladder meter */
.ladder {
  display: flex; gap: 6px; align-items: center; margin: 10px 0 2px; font-size: 12.5px; color: var(--text-2);
}
.ladder .rung {
  flex: 1; text-align: center; padding: 7px 4px; border-radius: 6px; border: 1px dashed var(--border);
  background: var(--card-2); box-shadow: inset 0 1px 0 var(--surface-highlight);
  transition: all 220ms var(--ease-press); font-weight: 600;
}
.ladder .rung.hit {
  color: #fff; border-style: solid;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 12%), color-mix(in oklab, var(--accent), black 10%));
  border-color: color-mix(in oklab, var(--accent), black 25%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 2px 5px -2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.bundle-note { font-size: 13px; color: var(--accent-link); font-weight: 600; min-height: 20px; margin-top: 6px; }

/* quote panel: purchase-order paper */
.quote {
  position: sticky; top: 84px;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-card-hover); overflow: hidden;
}
.quote-head {
  padding: 18px 22px 14px; border-bottom: 2px solid var(--text);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  background: var(--card-2);
}
.quote-head h3 { margin: 0; font-size: 18px; letter-spacing: 0.03em; }
.quote-head .small { margin-top: 2px; }
.stamp {
  font-family: var(--font-slab); font-weight: 700; font-size: 12px; letter-spacing: 0.18em;
  color: var(--accent); border: 2px solid var(--accent); border-radius: 6px; padding: 5px 10px;
  transform: rotate(-7deg); opacity: 0.85; text-transform: uppercase;
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--accent), transparent 70%);
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='40'><filter id='r'><feTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='2'/><feColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0.15'/></filter><rect width='120' height='40' filter='url(%23r)'/></svg>");
  mask-size: cover;
}
.quote-lines { padding: 14px 22px; min-height: 120px; }
.qline { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 7px 0; font-size: 14.5px; border-bottom: 1px solid color-mix(in oklab, var(--border), transparent 45%); }
.qline:last-child { border-bottom: 0; }
.qline .nm { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qline .meta { font-size: 12px; color: var(--text-2); }
.qline .amt { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.qline.discount .amt, .qline.discount .nm { color: var(--ok); }
.qline.free .amt { color: var(--accent-link); font-weight: 600; }
.qline .mini-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2); border: 1px dashed var(--border); padding: 1px 6px; border-radius: 4px; }
.quote-empty { padding: 26px 22px; text-align: center; color: var(--text-2); font-size: 14.5px; }
.quote-tear { border: 0; border-top: 2px dashed color-mix(in oklab, var(--border), black 12%); margin: 0 14px; position: relative; }
.quote-totals { padding: 16px 22px 8px; }
.qtotal { display: flex; justify-content: space-between; align-items: baseline; padding: 4px 0; }
.qtotal .lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2); }
.qtotal .val { font-family: var(--font-slab); font-weight: 700; font-size: 22px; font-variant-numeric: tabular-nums; }
.qtotal.grand .val { font-size: 32px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 20%), color-mix(in oklab, var(--accent), black 15%));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2)); }
.annual-row { display: flex; align-items: center; gap: 12px; padding: 12px 22px; border-top: 1px solid var(--border); background: var(--card-2); }
.annual-row .lbl { font-weight: 600; font-size: 14px; }
.annual-row .sub { font-size: 12px; color: var(--text-2); }

/* council meter */
.council { padding: 14px 22px 6px; }
.council-badge { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 13.5px; padding: 10px 14px; border-radius: 8px; border: 1px solid; box-shadow: inset 0 1px 0 var(--surface-highlight), 0 1px 3px rgba(0,0,0,0.12); }
.council-badge.ok { color: var(--ok); border-color: color-mix(in oklab, var(--ok), transparent 50%); background: color-mix(in oklab, var(--ok), var(--card) 92%); }
.council-badge.warn { color: var(--warn); border-color: color-mix(in oklab, var(--warn), transparent 50%); background: color-mix(in oklab, var(--warn), var(--card) 92%); }
.council-badge.bad { color: var(--bad); border-color: color-mix(in oklab, var(--bad), transparent 50%); background: color-mix(in oklab, var(--bad), var(--card) 92%); }
.council-meter { height: 8px; border-radius: 999px; margin: 12px 0 4px; background: color-mix(in oklab, var(--bg), black 5%); box-shadow: var(--shadow-well); overflow: hidden; position: relative; }
.council-meter .fill { height: 100%; border-radius: 999px; transition: width 360ms var(--ease-press), background 360ms;
  background: linear-gradient(180deg, color-mix(in oklab, var(--ok), white 15%), color-mix(in oklab, var(--ok), black 8%));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.council-meter .fill.warn { background: linear-gradient(180deg, color-mix(in oklab, var(--warn), white 15%), color-mix(in oklab, var(--warn), black 8%)); }
.council-meter .fill.bad { background: linear-gradient(180deg, color-mix(in oklab, var(--bad), white 15%), color-mix(in oklab, var(--bad), black 8%)); }
.council-scale { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--text-2); letter-spacing: 0.05em; }
.council-hint { font-size: 12px; color: var(--text-2); margin-top: 8px; }

/* comparison bars */
.compare { padding: 16px 22px 10px; }
.cbar { margin-bottom: 12px; }
.cbar .row { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 4px; }
.cbar .row .who { font-weight: 600; }
.cbar .row .amt { font-variant-numeric: tabular-nums; color: var(--text-2); }
.cbar .track { height: 14px; border-radius: 5px; background: color-mix(in oklab, var(--bg), black 5%); box-shadow: var(--shadow-well); overflow: hidden; }
.cbar .bar { height: 100%; border-radius: 5px; transition: width 420ms var(--ease-press); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3); min-width: 2px; }
.cbar .bar.ranger { background: linear-gradient(180deg, color-mix(in oklab, var(--accent), white 14%), color-mix(in oklab, var(--accent), black 10%)); }
.cbar .bar.them { background: linear-gradient(180deg, #5b6878, #46525f); }
.cbar .bar.band { background: repeating-linear-gradient(45deg, #5b6878 0 8px, #46525f 8px 16px); }
.compare-delta { font-size: 13.5px; font-weight: 600; color: var(--ok); padding: 4px 0 8px; }

.quote-actions { display: flex; gap: 10px; padding: 14px 22px 20px; flex-wrap: wrap; }
.quote-foot { padding: 0 22px 18px; font-size: 11.5px; color: var(--text-2); line-height: 1.5; }

/* mobile bottom bar */
.mobile-total {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--navy); color: var(--cream); padding: 12px 18px;
  border-top: 2px solid var(--accent); box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-total .amt { font-family: var(--font-slab); font-weight: 700; font-size: 22px; }
.mobile-total .per { font-size: 11px; opacity: 0.8; }
@media (max-width: 980px) {
  .mobile-total.show { display: flex; }
  .quote { position: static; }
}

/* ---------- security ---------- */
.sec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .sec-grid { grid-template-columns: 1fr; } }
.sec-card { padding: 24px; }
.sec-card svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 12px; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25)); }
.sec-card h3 { font-size: 17px; }
.sec-card p { font-size: 14px; color: var(--text-2); margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 9px;
  box-shadow: var(--shadow-card); margin-bottom: 10px; overflow: hidden;
  transition: box-shadow 160ms;
}
.faq details[open] { box-shadow: var(--shadow-well), 0 1px 2px rgba(0, 0, 0, 0.1); }
.faq summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-slab); font-size: 20px; color: var(--accent); transition: transform 200ms var(--ease-press); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:active { transform: translateY(1px); }
.faq .faq-body { padding: 0 20px 18px; font-size: 14.5px; color: var(--text-2); }

/* ---------- footer ---------- */
.footer { padding: 56px 0 80px; }
.footer-grid { display: flex; gap: 40px; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; }
.footer .brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-slab); font-weight: 700; font-size: 19px; color: var(--cream); }
.footer .brand img { width: 44px; filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5)); }
.footer a { color: #C8B89B; }
.footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer .col h4 { color: var(--cream); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.footer .col a { display: block; font-size: 14px; margin-bottom: 8px; }
.footer-legal { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(242, 233, 216, 0.15); font-size: 12.5px; color: #8B97A5; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- scroll reveals ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms ease-out, transform 600ms var(--ease-press); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 80ms; } .reveal-d2 { transition-delay: 160ms; } .reveal-d3 { transition-delay: 240ms; }

/* ---------- constellation page ---------- */
.const-hero { position: relative; padding: 140px 0 40px; background-color: var(--navy-deep); background-image: var(--topo), var(--grain-light); color: var(--cream); overflow: hidden; }
.const-stage-wrap { position: relative; background-color: var(--navy-deep); background-image: var(--grain-light); padding-bottom: 40px; }
.const-stage { position: relative; max-width: 1100px; margin: 0 auto; aspect-ratio: 16 / 10.5; }
@media (max-width: 700px) { .const-stage { aspect-ratio: 4 / 5; } }
.const-stage svg.mesh { position: absolute; inset: 0; width: 100%; height: 100%; }
.const-node {
  position: absolute; transform: translate(-50%, -50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 86px; cursor: pointer; transition: opacity 600ms, filter 600ms;
  background: none; border: 0; padding: 0; color: inherit;
}
.const-node img, .const-node .prod-logo-fallback { width: 60px; height: 60px; filter: drop-shadow(0 0 12px rgba(209, 122, 58, 0.35)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); transition: transform 220ms var(--ease-press), filter 220ms; }
.const-node .nm { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: #C8CFD8; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7); white-space: nowrap; }
.const-node:hover img { transform: scale(1.12); filter: drop-shadow(0 0 20px rgba(223, 152, 88, 0.7)) drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5)); }
.const-node.dim { opacity: 0.28; filter: grayscale(0.7); }
.const-node.dim .nm::after { content: " +"; color: var(--accent); }
.const-node.hub { width: 120px; cursor: default; }
.const-node.hub img { width: 92px; height: 92px; filter: drop-shadow(0 0 26px rgba(223, 152, 88, 0.45)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6)); }
.const-node.hub .nm { font-size: 11.5px; }
.const-tip {
  position: absolute; z-index: 6; max-width: 260px; padding: 12px 14px; border-radius: 8px; font-size: 13px; line-height: 1.45;
  background: rgba(14, 18, 24, 0.94); color: #E5E7EB; border: 1px solid rgba(223, 152, 88, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4), 0 10px 26px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none; opacity: 0; transform: translateY(6px); transition: opacity 180ms, transform 180ms var(--ease-press);
}
.const-tip.show { opacity: 1; transform: none; }
.const-tip .t { font-weight: 700; color: #E8A56B; display: block; margin-bottom: 3px; font-size: 12px; letter-spacing: 0.04em; }
.const-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 18px 16px 6px; position: relative; z-index: 4; }
.const-caption { text-align: center; color: #9DA8B5; font-size: 14px; max-width: 620px; margin: 12px auto 0; padding: 0 16px; }
.const-caption em { color: #E8A56B; font-style: normal; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }
.flow-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 880px) { .flow-cards { grid-template-columns: 1fr; } }
.flow-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; }
.flow-card .icons { display: flex; align-items: center; gap: 6px; flex: none; }
.flow-card .icons img { width: 34px; height: 34px; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3)); }
.flow-card .icons .arrow { color: var(--accent); font-weight: 700; }
.flow-card p { margin: 4px 0 0; font-size: 14px; color: var(--text-2); }

.contrast-strip { text-align: center; padding: 72px 24px; }
.contrast-strip h2 { max-width: 760px; margin: 0 auto 12px; }
.contrast-strip .vs { color: var(--accent); }

/* constellation mesh (SVG) */
.strand {
  fill: none; stroke: #D98E50; stroke-width: 1.6; stroke-opacity: 0.45;
  filter: url(#strandGlow);
  animation: strand-pulse 3s ease-in-out infinite alternate;
}
.strand.hot { stroke-opacity: 1; stroke-width: 2.6; stroke: #E8A56B; animation: none; }
@keyframes strand-pulse { from { stroke-opacity: 0.3; } to { stroke-opacity: 0.6; } }
.mesh-dot { fill: #FFD9A8; opacity: 0.9; }
.hub-pulse { fill: none; stroke: #E8A56B; stroke-width: 2; opacity: 0.7; animation: hub-pulse 1.2s ease-out forwards; }
@keyframes hub-pulse { to { r: 330; opacity: 0; stroke-width: 0.5; } }

/* ---------- print: quote only ---------- */
#print-quote { display: none; }
@media print {
  body > *:not(#print-quote) { display: none !important; }
  #print-quote { display: block !important; font-family: Georgia, serif; color: #000; padding: 0.2in; }
  #print-quote h1 { font-size: 22pt; margin: 0 0 2pt; }
  #print-quote .pq-sub { font-size: 10pt; color: #444; margin-bottom: 14pt; }
  #print-quote table { width: 100%; border-collapse: collapse; margin: 10pt 0; }
  #print-quote th, #print-quote td { text-align: left; padding: 5pt 8pt; border-bottom: 1px solid #999; font-size: 11pt; }
  #print-quote td.r, #print-quote th.r { text-align: right; }
  #print-quote .pq-total { font-size: 15pt; font-weight: bold; }
  #print-quote .pq-fine { font-size: 8.5pt; color: #555; margin-top: 12pt; line-height: 1.5; }
}

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 80px); z-index: 80;
  background: var(--navy); color: var(--cream); padding: 12px 20px; border-radius: 9px;
  border: 1px solid color-mix(in oklab, var(--accent), transparent 40%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 30px rgba(0, 0, 0, 0.45);
  font-size: 14px; font-weight: 600; opacity: 0; transition: all 320ms var(--ease-press); pointer-events: none;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-stars i { animation: none; opacity: 0.6; }
}
