/* ─────────────────────────────────────────────────────────────────────
   XRaise Landing v3 — Stripe-style modern, no grants/fundraising
   ───────────────────────────────────────────────────────────────────── */

:root {
  /* Neutrals — derived from the style guide neutral scale */
  --ink:        #0F172A;
  --ink-2:      #1E293B;
  --paper:      #ffffff;
  --paper-2:    #F7F9FC;
  --paper-3:    #EFF2F8;
  --rule:       rgba(15, 23, 42, 0.10);
  --rule-soft:  rgba(15, 23, 42, 0.06);
  --muted:      #64748B;
  --muted-2:    #CBD5E1;

  /* Brand — Primary Colors from style guide */
  --blue:        #245BFF;   /* Primary */
  --blue-deep:   #1A45D6;
  --blue-tint:   #E7EEFF;
  --blue-glow:   #3B82FF;   /* Secondary */

  /* Cyan accent + neutral support */
  --cyan:        #32C7FF;   /* Tertiary */
  --violet:      #3B82FF;
  --indigo:      #245BFF;
  --pink:        #32C7FF;
  --mint:        #DDF5E4;
  --sky:         #DCEAFF;
  --lavender:    #E7EEFF;

  --green:      #0e7c45;

  --f-display: "Satoshi", "Sora", ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  --f-sans:    "Satoshi", "Sora", ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --f-eyebrow: "Satoshi", ui-sans-serif, -apple-system, sans-serif;

  --maxw:       1320px;
  --pad-x:      48px;
  --gutter:     32px;
}

[data-theme="ink"] {
  /* Dark mode palette from style guide */
  --ink:        #F7F9FC;
  --ink-2:      #CBD5E1;
  --paper:      #071120;
  --paper-2:    #0B1730;
  --paper-3:    #101A2B;
  --rule:       rgba(247, 249, 252, 0.12);
  --rule-soft:  rgba(247, 249, 252, 0.06);
  --muted:      rgba(247, 249, 252, 0.62);
  --muted-2:    rgba(247, 249, 252, 0.36);
  --blue:       #4A8DFF;
  --blue-glow:  #6FE3FF;
  --blue-tint:  #1A235A;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.556;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ──────────────────────── Type primitives ──────────────────────── */
.mono         { font-family: var(--f-mono); font-feature-settings: "tnum"; }
.eyebrow      { font-family: var(--f-mono); font-size: 11px; font-weight: 500;
                letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.tnum         { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; }

/* ──────────────────────── Layout ──────────────────────── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}
.rule        { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.section     { padding: 120px 0; }
.section-sm  { padding: 72px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.section-head .lhs { max-width: 720px; }
.section-head .lbl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-head .lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  opacity: 0.8;
}
.lbl-text {
  background: none;
  padding-bottom: 0;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 22ch;
  color: var(--ink);
}
.section-head h2 .accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head .rhs {
  font-size: 14px;
  line-height: 1.429;
  color: var(--muted);
  max-width: 36ch;
}

/* ──────────────────────── Buttons ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), background .15s, box-shadow .25s;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 6px 14px -8px rgba(10,13,31,.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 14px 26px -10px rgba(10,13,31,.4); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translate(2px, -2px); }

.btn-blue {
  background: linear-gradient(180deg, #3B82FF, #245BFF);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 6px 22px -8px rgba(36,91,255,.55);
}
.btn-blue:hover {
  background: linear-gradient(180deg, #3a6cff, #1846e6);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 18px 34px -8px rgba(36,91,255,.55);
}

.btn-outline {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(10,13,31,0.04), 0 1px 2px rgba(10,13,31,0.04);
}
.btn-outline:hover {
  background: var(--paper-2);
  border-color: var(--ink);
}

.btn-sm { height: 40px; padding: 0 16px; font-size: 13.5px; border-radius: 8px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s, gap .15s;
  font-weight: 500;
}
.link-arrow:hover { color: var(--blue); gap: 10px; }

/* ──────────────────────── Stripe-style mesh gradient ──────────────────────── */
.mesh-bg {
  position: absolute;
  inset: -10% -5% 30% -5%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  filter: blur(60px);
  background:
    radial-gradient(40% 40% at 12% 30%, color-mix(in srgb, var(--cyan) 80%, transparent), transparent 70%),
    radial-gradient(38% 40% at 88% 20%, color-mix(in srgb, var(--violet) 70%, transparent), transparent 65%),
    radial-gradient(50% 50% at 50% 80%, color-mix(in srgb, var(--blue) 55%, transparent), transparent 60%),
    radial-gradient(34% 34% at 75% 60%, color-mix(in srgb, var(--pink) 35%, transparent), transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1%) scale(1.06); }
}

/* ──────────────────────── Nav ──────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-logo .wm {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.has-badge::after {
  content: "NEW";
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  vertical-align: middle;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .sign-in {
  font-size: 14.5px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}
.nav-cta .sign-in:hover { color: var(--blue); }

/* ──────────────────────── Hero ──────────────────────── */
.hero {
  position: relative;
  padding: 56px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 6px 18px -10px rgba(36,91,255,0.18);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 24%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 22%, transparent); }
  50%      { box-shadow: 0 0 0 8px color-mix(in srgb, var(--blue) 4%, transparent); }
}
.hero-eyebrow .txt {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(24px, 6.8vw, 50px);
  line-height: 1.125;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 600;
}
.hero h1 .line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .hero h1 .line { white-space: normal; }
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shift 6s ease-in-out infinite;
}
@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-sub {
  margin-top: 40px;
  max-width: 44ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-sub .accent { color: var(--blue); font-weight: 600; }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-micro {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.hero-micro .item { display: inline-flex; align-items: center; gap: 6px; }
.hero-micro .check {
  width: 14px; height: 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.hero-trust {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  backdrop-filter: blur(2px);
}
.hero-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15a554;
  box-shadow: 0 0 0 4px rgba(21, 165, 84, 0.12);
}
.hero-trust-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hero-trust-text strong {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ──────────────────────── Logo Constellation (Hero right) ──────────────────────── */
.constellation {
  position: relative;
  aspect-ratio: 1 / 0.95;
  width: 100%;
  isolation: isolate;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
}
.constellation::before { content: none; }

.constellation .lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.constellation .lines path {
  stroke: var(--blue);
  stroke-width: 0.5;
  stroke-dasharray: 0.6 2;
  stroke-linecap: round;
  opacity: 0.45;
  fill: none;
}
.constellation .lines .glow-line {
  stroke: var(--blue);
  stroke-width: 0.8;
  stroke-dasharray: 0.7 2;
  opacity: 0.85;
  fill: none;
}
.constellation .lines .fade-line {
  stroke: var(--blue);
  stroke-width: 0.4;
  stroke-dasharray: 0.5 2.5;
  opacity: 0.2;
  fill: none;
}
.constellation .lines .badge-line {
  stroke: var(--blue);
  stroke-width: 0.6;
  stroke-dasharray: 0.6 1.8;
  opacity: 0.55;
  fill: none;
}
@keyframes dashshift {
  to { stroke-dashoffset: -36; }
}

.logo-node {
  position: absolute;
  width: 46px;
  height: 46px;
  background: var(--paper);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  z-index: 2;
  opacity: 1;
  filter: none;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease;
  animation: float 8s ease-in-out infinite;
  margin-left: -23px;
  margin-top: -23px;
  box-shadow:
    0 0 0 3px rgba(36, 91, 255, 0.06),
    0 0 12px rgba(36, 91, 255, 0.18);
}
.logo-node.outer {
  width: 46px;
  height: 46px;
  padding: 9px;
  margin-left: -23px;
  margin-top: -23px;
  z-index: 1;
  opacity: 0.9;
  border-color: rgba(100, 116, 139, 0.3);
  box-shadow: none;
}
.logo-node.fade {
  width: 38px;
  height: 38px;
  padding: 7px;
  margin-left: -19px;
  margin-top: -19px;
  z-index: 0;
  opacity: 0.55;
  filter: none;
  animation-duration: 9s;
  border-color: rgba(100, 116, 139, 0.2);
  box-shadow: none;
}
/* All rings — uniform slate border */
.logo-node.accent {
  border-color: rgba(100, 116, 139, 0.3);
  box-shadow: none;
}
.logo-node:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 1;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 91, 255, 0.1), 0 0 18px rgba(36, 91, 255, 0.2);
}
.logo-node.accent:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 91, 255, 0.1), 0 0 18px rgba(36, 91, 255, 0.2);
}
.logo-node img,
.logo-node svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) opacity(0.28);
  transition: filter .2s ease;
}
.logo-node:hover img,
.logo-node:hover svg {
  filter: brightness(0) opacity(0.78);
}
.logo-node .wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

/* Center pulse marker (XRaise hub) */
.constellation .hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2px solid rgba(36, 91, 255, 0.4);
  box-shadow:
    0 0 0 4px rgba(36, 91, 255, 0.1),
    0 0 0 10px rgba(36, 91, 255, 0.04),
    0 0 30px rgba(36, 91, 255, 0.35);
}
.constellation .hub::before,
.constellation .hub::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0.4;
  animation: ringpulse 3s ease-out infinite;
}
.constellation .hub::after { animation-delay: 1.5s; }
@keyframes ringpulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0;   }
}
.constellation .hub img {
  width: 42px; height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Floating stat sticker */
.const-sticker {
  position: absolute;
  background: transparent;
  color: var(--ink);
  padding: 4px 6px;
  z-index: 4;
  text-align: center;
}
.const-sticker .num {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--blue);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}
.const-sticker .lbl {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--muted);
}

/* +200 more badge — sits between Techstars and the hub */
.const-badge {
  position: absolute;
  top: 18%;
  left: 22%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 11px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  z-index: 4;
  box-shadow: 0 8px 20px -10px rgba(36, 91, 255, 0.25);
}
.const-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blue-glow), var(--blue));
  box-shadow: 0 0 0 3px rgba(36, 91, 255, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

/* ──────────────────────── Logo marquee ──────────────────────── */
.logo-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
.logo-strip::before, .logo-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 180px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before { left: 0;  background: linear-gradient(to right, var(--paper), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(to left,  var(--paper), transparent); }
.logo-strip .label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--paper);
  padding-right: 24px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.4;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 60s linear infinite;
  width: max-content;
  padding-left: 340px;
  align-items: center;
}
.marquee-item {
  height: 32px;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity .2s;
}
.marquee-item:hover { opacity: 1; }
.marquee-item img,
.marquee-item svg {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.marquee-item .wordmark {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-2);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────── Numbers ──────────────────────── */
.numbers {
  position: relative;
  background: #071120;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.numbers::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(35% 50% at 18% 30%, color-mix(in srgb, var(--violet) 70%, transparent), transparent 60%),
    radial-gradient(35% 50% at 82% 70%, color-mix(in srgb, var(--blue) 70%, transparent), transparent 60%),
    radial-gradient(25% 35% at 60% 20%, color-mix(in srgb, var(--cyan) 50%, transparent), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  opacity: 0.7;
}
.numbers-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.num-cell {
  padding: 80px 36px;
  border-right: 1px solid rgba(247,248,255,0.14);
  position: relative;
}
.num-cell:last-child { border-right: 0; }
.num-cell .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,248,255,0.6);
  margin-bottom: 20px;
}
.num-cell .val {
  font-family: var(--f-display);
  font-size: clamp(48px, 5.4vw, 80px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.num-cell .val .accent {
  background: linear-gradient(90deg, var(--cyan), var(--blue-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.num-cell .sub {
  margin-top: 18px;
  font-size: 13.5px;
  color: rgba(247,248,255,0.7);
  max-width: 28ch;
  line-height: 1.55;
}
.num-cell .tick {
  position: absolute;
  top: 20px; right: 20px;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.2);
}

/* ──────────────────────── How it works ──────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 60%; height: 70%;
  background: radial-gradient(circle at 50% 50%, var(--accent, var(--blue-tint)), transparent 60%);
  opacity: 0.35;
  filter: blur(20px);
  pointer-events: none;
  transition: opacity .3s;
}
.step:nth-child(1) { --accent: var(--sky); }
.step:nth-child(2) { --accent: var(--lavender); }
.step:nth-child(3) { --accent: var(--mint); }
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(36,91,255,0.16);
  border-color: var(--blue);
}
.step:hover::before { opacity: 0.7; }

.step .num {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 5px 11px;
  border: 1px solid color-mix(in srgb, var(--blue) 24%, transparent);
  border-radius: 999px;
  background: var(--blue-tint);
}
.step .visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  border-radius: 14px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 4px 0 6px;
}
.viz-form {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.viz-form .row {
  height: 26px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--muted);
}
.viz-form .row.filled {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  border-color: transparent;
  color: #fff;
}
.viz-form .row .caret {
  width: 1.5px; height: 12px;
  background: var(--ink);
  margin-left: 4px;
  animation: blink 1.1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.viz-scan {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viz-scan .pin {
  position: absolute;
  width: 32px; height: 32px;
  border-radius: 9px;
  border: 1px solid var(--rule);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 6px 14px -8px rgba(10,13,31,0.25);
}
.viz-scan .pin.p1 { left: 12%; top: 18%; background: #ff6b1a; color: #fff; }
.viz-scan .pin.p2 { right: 16%; top: 26%; background: #ff9900; color: #fff; }
.viz-scan .pin.p3 { left: 24%; bottom: 14%; background: #000; color: #fff; }
.viz-scan .pin.p4 { right: 12%; bottom: 22%; background: #635bff; color: #fff; }
.viz-scan .radar {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  animation: ping 2.6s ease-out infinite;
  position: absolute;
}
.viz-scan .radar.r2 { animation-delay: 1s; }
@keyframes ping {
  0%   { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.viz-scan .center {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
}

.viz-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.viz-submit .doc {
  width: 60%;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.viz-submit .doc .ln {
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
}
.viz-submit .doc .ln:nth-child(1) { width: 80%; background: var(--ink); }
.viz-submit .doc .ln:nth-child(2) { width: 90%; }
.viz-submit .doc .ln:nth-child(3) { width: 65%; }
.viz-submit .btn-mock {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color: #fff;
  padding: 7px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px -6px rgba(36,91,255,0.5);
}

.step h3 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.286;
  letter-spacing: -0.02em;
  font-weight: 600;
  max-width: 18ch;
  color: var(--ink);
}
.step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 32ch;
}

/* ──────────────────────── Categories ──────────────────────── */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cat {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 26px 26px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 60%; height: 70%;
  background: radial-gradient(circle at 50% 50%, var(--cat-accent, var(--blue-tint)), transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  filter: blur(20px);
  pointer-events: none;
}
.cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px -20px rgba(36,91,255,0.18);
  border-color: var(--blue);
}
.cat:hover::before { opacity: 0.45; }

.cat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat:nth-child(1) { --cat-accent: var(--blue-tint); }
.cat:nth-child(2) { --cat-accent: var(--sky); }
.cat:nth-child(3) { --cat-accent: var(--lavender); }
.cat:nth-child(4) { --cat-accent: #d4f5e6; }
.cat:nth-child(5) { --cat-accent: #ffe5cc; }
.cat:nth-child(6) { --cat-accent: var(--sky); }
.cat:nth-child(1) .cat-icon { background: linear-gradient(135deg, var(--blue), var(--violet)); color: #fff; }
.cat:nth-child(2) .cat-icon { background: linear-gradient(135deg, #1A45D6, #3B82FF); color: #fff; }
.cat:nth-child(3) .cat-icon { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; }
.cat:nth-child(4) .cat-icon { background: linear-gradient(135deg, #14b8a6, #0e7c45); color: #fff; }
.cat:nth-child(5) .cat-icon { background: linear-gradient(135deg, #f59e0b, #ea580c); color: #fff; }
.cat:nth-child(6) .cat-icon { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #fff; }

.cat-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cat-count {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--paper-2);
}
.cat h4 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.286;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.cat p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36ch;
  flex: 1;
}
.cat .arrow {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  transition: color .15s, gap .15s;
}
.cat:hover .arrow { color: var(--blue); gap: 12px; }

/* ──────────────────────── Compare ──────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-col {
  padding: 36px 36px 40px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  position: relative;
}
.compare-col.with {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-color: var(--blue);
  box-shadow: 0 24px 60px -28px rgba(36,91,255,0.4);
}
.compare-col.with::after {
  content: "Recommended";
  position: absolute;
  top: 28px; right: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}
.compare-col h4 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--ink);
}
.compare-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.compare-col li {
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  gap: 14px;
  color: var(--ink);
}
.compare-col li:first-child { border-top: 0; }
.compare-col li .mark {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted-2);
  flex-shrink: 0;
}
.compare-col.with li .mark {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  border-color: transparent;
}

/* ──────────────────────── Testimonials — multi-card grid ──────────────────────── */
.testimonial-section {
  background: var(--paper-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.testimonial-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 50% at 20% 30%, color-mix(in srgb, var(--cyan) 30%, transparent), transparent 60%),
    radial-gradient(40% 50% at 80% 70%, color-mix(in srgb, var(--violet) 30%, transparent), transparent 60%);
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
}

.t-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.t-head .lbl {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.t-head .lbl::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
  opacity: 0.8;
}
.t-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
}
.t-head h2 .accent {
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-head p {
  margin: 18px auto 0;
  font-size: 17px;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.5;
}

.t-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding-bottom: 16px;
  margin: 0 calc(var(--pad-x) * -1);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.t-grid::-webkit-scrollbar { display: none; }
/* Drag-to-scroll affordance (mouse/pen); touch uses native scrolling */
.t-grid { cursor: grab; }
.t-grid.t-grabbing { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.t-grid.t-grabbing a { pointer-events: none; }

.t-card {
  flex: 0 0 420px;
  min-width: 0;
  scroll-snap-align: start;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.t-card::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 60%; height: 70%;
  background: radial-gradient(circle at 50% 50%, var(--blue-tint), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -24px rgba(36,91,255,0.20);
  border-color: var(--blue);
}
.t-card:hover::before { opacity: 0.5; }
.t-card > * { position: relative; z-index: 1; }

.t-card-lg {
  /* uniform carousel: same treatment as other cards */
}
.t-card-lg::after {
  display: none;
}

.t-quote-mark {
  font-family: var(--f-display);
  font-size: 84px;
  line-height: 0.6;
  height: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.06em;
  margin-bottom: -8px;
}

.t-card blockquote {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: 450;
  flex: 1;
}
.t-card .t-hl {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.t-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px rgba(10,13,31,0.25);
}
.t-av-1 { background: linear-gradient(135deg, #245BFF, #32C7FF); }
.t-av-2 { background: linear-gradient(135deg, #1A45D6, #3B82FF); }
.t-av-3 { background: linear-gradient(135deg, #32C7FF, #245BFF); }

.t-meta { min-width: 0; }
.t-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.t-role {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.t-result {
  text-align: right;
  border-left: 1px solid var(--rule);
  padding-left: 14px;
}
.t-result .v {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
}
.t-result .l {
  margin-top: 4px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.t-foot {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.t-foot-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.t-foot-v {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.035em;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-foot-l {
  font-size: 14.5px;
  color: var(--muted);
}
.t-foot-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.t-foot-stars .stars {
  background: linear-gradient(90deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 16px;
  letter-spacing: 0.1em;
}

@media (max-width: 1080px) {
  .t-card { flex: 0 0 380px; }
}
@media (max-width: 720px) {
  .t-card { flex: 0 0 calc(100% - 32px); }
  .t-foot { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────── Final CTA ──────────────────────── */
.final-cta {
  position: relative;
  background: #071120;
  color: var(--paper);
  padding: 140px 0;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(40% 50% at 20% 80%, color-mix(in srgb, var(--violet) 75%, transparent), transparent 60%),
    radial-gradient(40% 50% at 80% 80%, color-mix(in srgb, var(--blue) 80%, transparent), transparent 60%),
    radial-gradient(30% 40% at 50% 100%, color-mix(in srgb, var(--cyan) 50%, transparent), transparent 60%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.85;
  animation: drift 14s ease-in-out infinite alternate;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.125;
  letter-spacing: -0.035em;
  font-weight: 600;
  max-width: 18ch;
  margin: 0 auto;
  color: var(--paper);
}
.final-cta h2 .accent {
  background: linear-gradient(90deg, var(--cyan), var(--blue-glow), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shift 6s ease-in-out infinite;
}
.final-cta p {
  margin: 32px auto 0;
  max-width: 52ch;
  font-size: 18px;
  color: rgba(247,248,255,0.7);
  line-height: 1.556;
  font-size: 18px;
  color: rgba(247,248,255,0.7);
  line-height: 1.55;
}
.final-cta .cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.final-cta .btn {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 6px 18px -6px rgba(247,248,255,0.3);
}
.final-cta .btn:hover {
  background: #EDF6FF;
  color: var(--ink);
}
.final-cta .btn-ghost-dark {
  background: transparent;
  border: 1px solid rgba(247,248,255,0.3);
  color: var(--paper);
  box-shadow: none;
}
.final-cta .btn-ghost-dark:hover {
  background: rgba(247,248,255,0.06);
  border-color: var(--paper);
}
.final-cta .micro {
  margin-top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,248,255,0.55);
}
.final-cta .micro .star { color: var(--cyan); }

/* ──────────────────────── Footer ──────────────────────── */
.footer {
  background: var(--paper);
  padding: 72px 0 36px;
  border-top: 1px solid var(--rule);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand .wm {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.footer-brand p {
  margin: 14px 0 24px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.55;
}
.footer-brand .socials {
  display: flex;
  gap: 8px;
}
.footer-brand .socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.footer-brand .socials a svg {
  width: 16px; height: 16px;
  fill: currentColor;
  display: block;
}
.footer-brand .socials a:hover {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--paper);
  border-color: transparent;
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--ink); text-decoration: none; font-weight: 500; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ──────────────────────── Perk Negotiation Agent ──────────────────────── */
.pna {
  padding: 110px 0 100px;
  background: var(--paper-2);
  position: relative;
}
.pna-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pna-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.1;
}
.pna-sub {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
.pna-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.pna-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(15, 23, 42, 0.04),
    0 24px 60px -32px rgba(15, 23, 42, 0.18);
}

/* Demo shield — this dashboard is a non-interactive mockup; the overlay
   intercepts all pointer events so none of the fake controls react. */
.pna-shield {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: transparent;
  cursor: default;
}

/* Dashboard chrome bar */
.pna-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #071120;
  color: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(36, 91, 255, 0.18);
}
.pna-chrome-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pna-chrome-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 0 3px rgba(59, 130, 255, 0.18);
}
.pna-chrome-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.pna-chrome-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 249, 252, 0.78);
}
.pna-live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15a554;
  box-shadow: 0 0 0 4px rgba(21, 165, 84, 0.18);
  animation: pna-pulse 2s ease-in-out infinite;
}
@keyframes pna-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

/* Card primitive */
.pna-card {
  background: var(--paper);
  border: 0;
  border-radius: 0;
  padding: 22px 24px;
  box-shadow: none;
  position: relative;
}
.pna-card + .pna-card { border-top: 1px solid var(--rule-soft); }

.pna-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.pna-card-h {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.pna-card-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.pna-card-link {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.pna-card-link:hover { text-decoration: underline; }
.pna-card-meter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.pna-meter-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pna-meter-val {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ── Step timeline ── */
.pna-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  position: relative;
  padding: 4px 0 4px;
}
.pna-steps::before {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: linear-gradient(to right,
    #15a554 0 71%,
    var(--blue) 71% 79%,
    #d8dde8 79% 100%);
  z-index: 0;
  border-radius: 2px;
}
.pna-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
  gap: 10px;
}
.pna-step-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: var(--paper);
  font-variant-numeric: tabular-nums;
}
.pna-step.done .pna-step-icon {
  background: #15a554;
  color: #fff;
  border: 2px solid #15a554;
  box-shadow: 0 0 0 4px rgba(21, 165, 84, 0.08);
}
.pna-step.done .pna-step-icon svg { width: 14px; height: 14px; }
.pna-step.active .pna-step-icon {
  background: var(--paper);
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 91, 255, 0.1);
}
.pna-step.todo .pna-step-icon {
  background: var(--paper);
  color: var(--muted);
  border: 2px solid #d8dde8;
}
.pna-step-label {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--ink);
  min-height: 32px;
  display: flex;
  align-items: center;
}

/* Pills */
.pna-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.pna-pill-done {
  background: rgba(21, 165, 84, 0.1);
  color: #0f7d3f;
  border: 1px solid rgba(21, 165, 84, 0.22);
}
.pna-pill-active {
  background: rgba(36, 91, 255, 0.08);
  color: var(--blue);
  border: 1px solid rgba(36, 91, 255, 0.22);
}
.pna-pill-warn {
  background: rgba(204, 124, 0, 0.08);
  color: #b07206;
  border: 1px solid rgba(204, 124, 0, 0.22);
}
.pna-pill-todo {
  background: rgba(100, 116, 139, 0.08);
  color: var(--muted);
  border: 1px solid rgba(100, 116, 139, 0.18);
}

/* ── Row layout (timeline + right stack) ── */
.pna-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--rule-soft);
}
.pna-row > .pna-card { border-top: 0; }
.pna-row > .pna-card-tl { border-right: 1px solid var(--rule-soft); }
.pna-stack {
  display: flex;
  flex-direction: column;
}
.pna-stack > .pna-card + .pna-card { border-top: 1px solid var(--rule-soft); }

/* ── Activity timeline ── */
.pna-tl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pna-tl-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  align-items: start;
  position: relative;
}
.pna-tl-item.is-active {
  background: rgba(36, 91, 255, 0.05);
  border: 1px solid rgba(36, 91, 255, 0.18);
}
.pna-tl-rail {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 30px;
}
.pna-tl-item:not(:last-child) .pna-tl-rail::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: -16px;
  left: 50%;
  width: 1.5px;
  background: var(--rule);
  transform: translateX(-50%);
}
.pna-tl-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--muted);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.pna-tl-icon svg { width: 13px; height: 13px; }
.pna-tl-icon-send {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 91, 255, 0.12);
}
.pna-tl-body { min-width: 0; padding-top: 4px; }
.pna-tl-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.pna-tl-top strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.pna-tl-time {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.pna-tl-body p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Perk Applications table ── */
.pna-table {
  display: flex;
  flex-direction: column;
}
.pna-thead, .pna-trow {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 0.7fr 0.5fr;
  gap: 12px;
  align-items: center;
  padding: 12px 4px;
}
.pna-thead {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
}
.pna-trow {
  border-bottom: 1px solid var(--rule-soft);
  font-size: 13px;
  color: var(--ink);
}
.pna-trow:last-child { border-bottom: 0; }
.pna-th-actions, .pna-td-actions { text-align: right; }
.pna-td-vendor {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pna-vendor-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #071120;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.pna-td-tier { color: var(--muted); font-weight: 500; }
.pna-td-eta {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pna-td-actions button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: background .15s, color .15s;
}
.pna-td-actions button:hover {
  background: var(--paper-2);
  color: var(--blue);
}
.pna-td-actions svg { width: 14px; height: 14px; }

/* ── Benefits Redeemed cards ── */
.pna-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.pna-benefit {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.pna-benefit:hover {
  border-color: rgba(36, 91, 255, 0.3);
  box-shadow: 0 4px 12px -6px rgba(36, 91, 255, 0.18);
}
.pna-benefit > .pna-pill { align-self: flex-start; }
.pna-benefit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pna-benefit-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pna-benefit-id strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pna-benefit-amt {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.pna-benefit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  margin-top: 2px;
  transition: background .15s, border-color .15s;
}
.pna-benefit-btn:hover {
  background: var(--paper-2);
  border-color: rgba(36, 91, 255, 0.3);
  color: var(--blue);
}
.pna-benefit-btn svg { width: 14px; height: 14px; }
.pna-benefit-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.pna-benefit-foot svg { width: 12px; height: 12px; }
.pna-benefit-note {
  font-size: 12.5px;
  color: var(--muted);
  margin: 2px 0 0;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .pna-row { grid-template-columns: 1fr; }
  .pna-row > .pna-card-tl { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
  .pna-steps { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .pna-steps::before { display: none; }
  .pna-thead, .pna-trow { grid-template-columns: 1.4fr 1fr 1.4fr 0.7fr 0.5fr; font-size: 12px; }
}
@media (max-width: 640px) {
  .pna { padding: 72px 0 64px; }
  .pna-head h2 { font-size: 30px; }
  .pna-sub { font-size: 18px; }
  .pna-steps { grid-template-columns: repeat(2, 1fr); }
  .pna-benefits { grid-template-columns: 1fr; }
  .pna-thead { display: none; }
  .pna-trow { grid-template-columns: 1fr; gap: 4px; }
  .pna-card-header { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ──────────────────────── Featured Perks ──────────────────────── */
.featured-perks {
  padding: 96px 0 88px;
  background: var(--paper);
  position: relative;
}
.featured-perks::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 64px;
  background-image: radial-gradient(rgba(10,13,31,0.08) 1px, transparent 1px);
  background-size: 14px 14px;
  background-position: 0 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
}

.fp-head {
  text-align: center;
  margin-bottom: 56px;
}
.fp-head h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.1;
}
.fp-head p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fp-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.fp-card:hover {
  border-color: rgba(36, 91, 255, 0.35);
  box-shadow: 0 8px 28px -16px rgba(36, 91, 255, 0.25);
  transform: translateY(-1px);
}

.fp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.fp-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f6f7fb;
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  overflow: hidden;
}
.fp-logo svg { width: 100%; height: 100%; max-width: 28px; max-height: 28px; }
.fp-logo-wm {
  font-family: var(--f-sans);
  font-size: 7px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.fp-logo-wm-lg {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.fp-badge-dot { font-size: 9px; }
.fp-badge-popular {
  background: #E7EEFF;
  color: #245BFF;
  border: 1px solid rgba(36, 91, 255, 0.18);
}
.fp-badge-value {
  background: #e8f7ee;
  color: #0e7c45;
  border: 1px solid rgba(14, 124, 69, 0.18);
}

.fp-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.fp-offer {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}
.fp-desc {
  font-size: 14px;
  color: rgba(10, 13, 31, 0.65);
  line-height: 1.5;
  margin: 0 0 24px;
  flex: 1;
}

.fp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(36, 91, 255, 0.35);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.fp-btn:hover {
  background: #f4f7ff;
  border-color: var(--blue);
}
.fp-btn-arr { font-size: 14px; line-height: 1; }

.fp-foot {
  margin-top: 48px;
  text-align: center;
}
.fp-all {
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fp-all:hover { text-decoration: underline; }
.fp-all span { transition: transform .15s ease; }
.fp-all:hover span { transform: translateX(3px); }

@media (max-width: 980px) {
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .fp-grid { grid-template-columns: 1fr; }
  .fp-head h2 { font-size: 28px; }
  .featured-perks { padding: 64px 0; }
}

/* ──────────────────────── Responsive ──────────────────────── */
@media (max-width: 1180px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 14px; }
  .nav-cta { gap: 10px; }
  :root { --pad-x: 32px; }
  /* Keep the orbit visual beside the title on laptops — tighten instead of stacking */
  .hero-inner { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 40px; }
  .hero h1 { font-size: clamp(26px, 3.9vw, 46px); }
  .hero h1 .line { white-space: normal; }
  .orbit-cstl { max-width: 400px; }
  .constellation { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 880px) {
  :root { --pad-x: 24px; }
  .nav-links { display: none; }
  /* Tablet/mobile: stack the hero — visual moves below the title */
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .orbit-cstl { max-width: 420px; }
  .hero h1 { font-size: clamp(24px, 6.8vw, 44px); }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .num-cell { border-bottom: 1px solid rgba(247,248,255,0.14); }
  .num-cell:nth-child(2) { border-right: 0; }
  .num-cell:nth-child(3) { border-right: 0; border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .cats { grid-template-columns: 1fr; }
  .testimonial-section { padding: 80px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }

  /* Section padding reduction */
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .hero { padding: 40px 0 72px; }
  .final-cta { padding: 96px 0; }

  /* Section heads */
  .section-head { gap: 16px; margin-bottom: 40px; }
  .section-head .rhs { font-size: 14.5px; max-width: 56ch; }

  /* Logo strip — label moves above marquee on mobile */
  .logo-strip { padding: 28px 0; }
  .logo-strip .label {
    position: static;
    transform: none;
    background: transparent;
    padding: 0 var(--pad-x) 16px;
    max-width: none;
    text-align: left;
  }
  .marquee-track { padding-left: 0; gap: 48px; }
  .logo-strip::before, .logo-strip::after { width: 80px; }

  /* Hero buttons full-width on mobile */
  .hero-cta { width: 100%; gap: 10px; margin-top: 40px; }
  .hero-cta .btn { flex: 1 1 240px; justify-content: center; }
  .hero-sub { margin-top: 28px; font-size: 17px; }
  .hero-trust { margin-top: 24px; }

  /* Constellation — pull floaters in, shrink hub */
  .constellation { max-width: 460px; aspect-ratio: 1 / 1; }
  .const-sticker .num { font-size: 24px; }
  .const-sticker .lbl { font-size: 9px; }
  .const-badge { font-size: 10px; padding: 6px 11px 6px 9px; top: 14%; left: 18%; }
  .constellation .hub { width: 64px; height: 64px; }
  .constellation .hub img { width: 34px; height: 34px; }

  /* Compare card padding */
  .compare-col { padding: 28px 24px 30px; }
  .compare-col h4 { font-size: 24px; margin-bottom: 18px; }
  .compare-col.with::after { top: 22px; right: 22px; }

  /* Step + cat */
  .step { padding: 24px; gap: 14px; }
  .step h3 { font-size: 22px; }
  .cat { padding: 24px 22px 22px; }
  .cat h4 { font-size: 22px; }

  /* Final CTA */
  .final-cta h2 { font-size: clamp(30px, 7vw, 56px); }
  .final-cta p { font-size: 16px; margin-top: 24px; }
  .final-cta .cta-row { margin-top: 32px; gap: 10px; width: 100%; }
  .final-cta .cta-row .btn { flex: 1 1 240px; justify-content: center; }
  .final-cta .micro { font-size: 11px; }

  /* Featured perks head */
  .fp-head { margin-bottom: 40px; }

  /* Testimonials head */
  .t-head { margin-bottom: 40px; }
  .t-head h2 { font-size: clamp(26px, 5.5vw, 38px); }
  .t-head p { font-size: 15.5px; }

  /* PNA spacing */
  .pna { padding: 80px 0 72px; }
  .pna-head { margin-bottom: 36px; }

  /* Footer bottom stacks */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
  .footer { padding: 56px 0 32px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  /* Nav — drop "Log in", keep CTA */
  .nav-inner { height: 64px; }
  .nav-cta .sign-in { display: none; }
  .nav-logo .wm { font-size: 19px; }
  .nav-logo img { height: 26px; }

  /* Hero copy tightens */
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .hero-sub { font-size: 16px; line-height: 1.5; }
  .hero-trust-text { font-size: 12.5px; }

  /* Numbers → 1 col */
  .numbers-inner { grid-template-columns: 1fr; }
  .num-cell { padding: 56px 28px; border-right: 0; border-bottom: 1px solid rgba(247,248,255,0.14); }
  .num-cell:last-child { border-bottom: 0; }
  .num-cell .val { font-size: clamp(44px, 12vw, 64px); }
  .num-cell .sub { max-width: none; }

  /* Footer → 1 col on very small */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .footer-brand p { max-width: none; }

  /* Section heads & headings */
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .section-head h2,
  .t-head h2,
  .fp-head h2,
  .pna-head h2 { font-size: clamp(24px, 7vw, 32px); }
  .pna { padding: 64px 0 56px; }
  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: clamp(28px, 8vw, 44px); }

  /* Buttons keep height but tighter */
  .btn { height: 48px; padding: 0 20px; font-size: 14px; }

  /* Constellation — keep but compact */
  .constellation { max-width: 360px; }
  .logo-node { width: 40px; height: 40px; padding: 8px; margin-left: -20px; margin-top: -20px; }
  .logo-node.outer { width: 40px; height: 40px; padding: 8px; margin-left: -20px; margin-top: -20px; }
  .logo-node.fade { width: 32px; height: 32px; padding: 6px; margin-left: -16px; margin-top: -16px; }
  .constellation .hub { width: 56px; height: 56px; }
  .constellation .hub img { width: 28px; height: 28px; }
  .const-sticker { display: none; }
  .const-badge { top: 12%; left: 14%; font-size: 9.5px; padding: 5px 10px 5px 8px; }

  /* Featured perks card padding */
  .fp-card { padding: 22px 22px 20px; min-height: 0; }
  .fp-card-top { margin-bottom: 20px; }
  .fp-desc { margin-bottom: 18px; }

  /* Steps + cats — preserve images but tighter */
  .step { padding: 22px; border-radius: 16px; }
  .cat { padding: 22px 20px 20px; border-radius: 16px; }
  .step h3, .cat h4 { font-size: 20px; }
  .step p, .cat p { font-size: 14px; }

  /* Compare list */
  .compare-col { padding: 24px 20px 26px; border-radius: 16px; }
  .compare-col li { font-size: 14px; padding: 14px 0; gap: 12px; }
  .compare-col.with::after { top: 18px; right: 18px; font-size: 9px; padding: 4px 8px; }

  /* PNA — make table rows readable as cards */
  .pna-card { padding: 20px 18px; }
  .pna-card-header { margin-bottom: 16px; }
  .pna-meter-val { font-size: 18px; }
  .pna-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pna-thead { display: none; }
  .pna-trow {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: var(--paper-2);
    align-items: center;
  }
  .pna-td-vendor { grid-column: 1 / 2; grid-row: 1; }
  .pna-trow > span:nth-child(3) { grid-column: 2 / 3; grid-row: 1; justify-self: end; }
  .pna-td-tier { grid-column: 1 / 2; grid-row: 2; font-size: 12px; }
  .pna-td-tier::before { content: "Tier · "; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
  .pna-td-eta { grid-column: 2 / 3; grid-row: 2; justify-self: end; font-size: 12px; }
  .pna-td-eta::before { content: "ETA · "; font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-right: 2px; }
  .pna-td-actions { display: none; }

  /* PNA timeline list spacing */
  .pna-tl-item { padding: 10px 10px; grid-template-columns: 28px 1fr; gap: 10px; }
  .pna-tl-icon { width: 24px; height: 24px; }
  .pna-tl-top { flex-wrap: wrap; }
  .pna-tl-time { font-size: 10px; }
}

@media (max-width: 420px) {
  :root { --pad-x: 16px; }
  .nav-logo .wm { display: none; }
  .nav-inner { height: 60px; }
  .hero-cta .btn,
  .final-cta .cta-row .btn { flex: 1 1 100%; }
  .const-badge { display: none; }
  .marquee-item img,
  .marquee-item svg { height: 24px; }
  .marquee-track { gap: 36px; }
}


/* ════════════════════════════════════════════════════════════════════
   SAPPHIRE "ORBIT" HERO  —  newest XRaise Design System hero
   Dark navy-blue surface + resource-network orbit visual.
   Activated via <header class="hero" data-bg="orbit">
   ════════════════════════════════════════════════════════════════════ */
.orbit-cstl { position: relative; display: block; width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 1 / 1; animation: orbFloat 9s ease-in-out infinite; }
.orbit-svg { width: 100%; height: auto; display: block; overflow: visible; }
.orb-hub-logo { position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; transform: translate(-50%, -50%); object-fit: contain; pointer-events: none; filter: drop-shadow(0 0 8px rgba(50, 199, 255, 0.45)); }
.orb-label { font-family: var(--f-mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.12em; fill: rgba(228, 237, 255, 0.6); text-transform: uppercase; }
.orb-ring-rot { transform-box: fill-box; transform-origin: center; animation: orbRot 80s linear infinite; }
.orb-pulse { transform-box: fill-box; transform-origin: center; opacity: 0; animation: orbPulse 4.2s ease-out infinite; }
.orb-pulse-2 { animation-delay: 2.1s; }
.orb-node { animation: orbTwinkle 5s ease-in-out infinite; animation-delay: var(--d, 0s); }
.orb-label-you { fill: #BFEFFF; font-weight: 700; letter-spacing: 0.18em; font-size: 11px; }
.orb-you-pulse { transform-box: fill-box; transform-origin: center; opacity: 0; animation: orbYouPulse 3.6s ease-out infinite; }
@keyframes orbYouPulse { 0% { transform: scale(0.8); opacity: 0.6; } 70% { opacity: 0; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes orbRot { to { transform: rotate(360deg); } }
@keyframes orbPulse { 0% { transform: scale(0.9); opacity: 0.5; } 70% { opacity: 0; } 100% { transform: scale(3.6); opacity: 0; } }
@keyframes orbTwinkle { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }
@keyframes orbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) {
  .orbit-cstl, .orb-ring-rot, .orb-pulse, .orb-node, .orb-you-pulse { animation: none !important; }
  .orb-pulse, .orb-you-pulse { display: none; }
}

/* Gentle entrance — text rises, orbit fades in */
@media (prefers-reduced-motion: no-preference) {
  .hero[data-bg="orbit"] .hero-left > * { animation: heroRise .7s cubic-bezier(.2,.7,.3,1) backwards; }
  .hero[data-bg="orbit"] .hero-left > *:nth-child(2) { animation-delay: .08s; }
  .hero[data-bg="orbit"] .hero-left > *:nth-child(3) { animation-delay: .16s; }
  .hero[data-bg="orbit"] .hero-left > *:nth-child(4) { animation-delay: .24s; }
  .hero[data-bg="orbit"] .hero-right { animation: heroFade 1s ease .2s backwards; }
}
@keyframes heroRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

.hero[data-bg="orbit"] {
  margin-top: -72px;
  padding-top: 128px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 -1px 0 rgba(111, 227, 255, 0.14) inset;
  background:
    linear-gradient(95deg, rgba(2,6,16,0.80) 0%, rgba(2,6,16,0.58) 22%, rgba(2,6,16,0.20) 42%, transparent 58%),
    radial-gradient(58% 70% at 90% 16%, rgba(59,130,255,0.42) 0%, transparent 55%),
    radial-gradient(50% 60% at 100% 62%, rgba(50,199,255,0.26) 0%, transparent 60%),
    radial-gradient(46% 60% at 80% 94%, rgba(74,141,255,0.20) 0%, transparent 60%),
    linear-gradient(120deg, transparent 30%, rgba(36,91,255,0.10) 62%, transparent 80%),
    linear-gradient(165deg, #0A1B3F 0%, #0B1C38 38%, #0A192F 64%, #071120 100%);
}
.hero[data-bg="orbit"] .hero-left h1,
.hero[data-bg="orbit"] .hero-left h1 .line { color: #fff; }
.hero[data-bg="orbit"] .hero-left h1 .accent {
  background: linear-gradient(90deg, #4A8DFF, #32C7FF);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero[data-bg="orbit"] .hero-sub { color: #CBD5E1; }
.hero[data-bg="orbit"] .hero-sub strong { color: #fff; }
.hero[data-bg="orbit"] .hero-trust { background: rgba(11,23,48,0.55); border-color: rgba(255,255,255,0.09); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero[data-bg="orbit"] .hero-trust-text { color: #94A3B8; }
.hero[data-bg="orbit"] .hero-trust-text strong { color: #fff; }
.hero[data-bg="orbit"] .btn-blue {
  background: linear-gradient(180deg, #2F6BFF, #1F50EA); color: #fff;
  box-shadow: 0 1px 0 rgba(255,255,255,0.22) inset, 0 0 18px rgba(36,91,255,0.35), 0 10px 26px -10px rgba(36,91,255,0.65);
}
.hero[data-bg="orbit"] .btn-blue:hover {
  background: linear-gradient(180deg, #3A78FF, #2459F2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.28) inset, 0 0 24px rgba(50,199,255,0.35), 0 16px 32px -10px rgba(36,91,255,0.7);
}
.hero[data-bg="orbit"] .btn-outline { background: rgba(11,23,48,0.6); color: #fff; border-color: rgba(255,255,255,0.14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero[data-bg="orbit"] .btn-outline:hover { background: rgba(16,26,43,0.85); border-color: rgba(255,255,255,0.26); }

/* ── Transparent, inverted nav while at the top of the page (over the dark hero).
   On scroll past the hero, JS removes .hero-top and the nav returns to its
   normal solid translucent-white state — keeping links legible over light content. */
.nav { transition: background .25s ease, border-color .25s ease; }
.nav-logo .logo-light { display: none; }
body.hero-top .nav {
  background: rgba(7, 17, 32, 0.55);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
body.hero-top .nav-logo .logo-dark { display: none; }
body.hero-top .nav-logo .logo-light { display: block; }
body.hero-top .nav-logo .wm { color: #fff; }
body.hero-top .nav-links a { color: rgba(226,232,240,0.82); }
body.hero-top .nav-links a:hover { color: #fff; }
body.hero-top .nav-cta .sign-in { color: rgba(226,232,240,0.82); }
body.hero-top .nav-cta .sign-in:hover { color: #fff; }
