:root {
  --bg: #f3f0ea;
  --bg-elev: #fffdfa;
  --ink: #142033;
  --muted: #5c6573;
  --line: rgba(15, 39, 68, 0.14);
  --navy: #0f2744;
  --navy-dim: #163556;
  --navy-deep: #0a1a2e;
  --navy-night: #071422;
  --teal: #1d8a96;
  --teal-soft: #29a9c0;
  --ok: #2a7a40;
  --warn: #9a6d14;
  --risk: #b4453a;
  --paper: #f7f4f0;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid #7ec8d4; outline-offset: 3px; }

.site { position: relative; min-height: 100dvh; overflow-x: clip; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px max(24px, var(--safe-r)) 14px max(24px, var(--safe-l));
  padding-top: calc(14px + var(--safe-t));
}
.topnav--over {
  position: absolute;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(7, 20, 34, 0.55), transparent);
  color: var(--paper);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--paper);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
}
.brand-mark.sm { width: 24px; height: 24px; font-size: 13px; border-radius: 7px; }
.topnav--over .brand-mark { background: var(--paper); color: var(--navy-deep); }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-link {
  color: rgba(247, 244, 240, 0.72);
  font-size: 0.92rem;
  padding: 8px 10px;
}
.nav-link:hover { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
  font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-lg { min-height: 52px; padding: 0 24px; font-size: 1.02rem; }
.btn-primary { background: var(--navy); color: var(--paper); }
.btn-primary:hover { background: var(--navy-dim); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { background: rgba(29, 138, 150, 0.06); }
.btn-light { background: var(--paper); color: var(--navy-deep); }
.btn-light:hover { background: #fff; }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(247, 244, 240, 0.35);
  color: var(--paper);
}
.btn-ghost-light:hover { background: rgba(247, 244, 240, 0.1); }
.btn:disabled { opacity: 0.65; cursor: wait; }

.hero-bleed {
  position: relative;
  color: var(--paper);
  min-height: min(100dvh, 920px);
  display: flex;
  flex-direction: column;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 18%, rgba(29, 138, 150, 0.38), transparent 55%),
    linear-gradient(105deg, rgba(7, 20, 34, 0.94) 0%, rgba(15, 39, 68, 0.82) 46%, rgba(7, 20, 34, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 20, 34, 0.2) 0%, rgba(7, 20, 34, 0.55) 100%);
}
.hero-orb {
  position: absolute;
  width: 48vw;
  height: 48vw;
  right: -8%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 169, 192, 0.28), transparent 68%);
  filter: blur(8px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(100px, 14vw, 140px) max(24px, var(--safe-r)) 36px max(24px, var(--safe-l));
}

.brand-hero {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}
.hero-copy h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: rgba(247, 244, 240, 0.92);
}
.hero-line2 { display: block; color: #9ee3ee; margin-top: 0.15em; }
.hero-lead {
  margin: 18px 0 0;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(247, 244, 240, 0.72);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin: 16px 0 0; font-size: 0.9rem; color: rgba(247, 244, 240, 0.62); }
.hero-note a { color: #c8eef4; text-decoration: underline; text-underline-offset: 3px; }

.reveal { animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-delay { animation-delay: 0.18s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.hero-stage { position: relative; padding-top: 28px; }
.float-chip {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.94);
  color: var(--navy-deep);
  font-size: 0.75rem;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: floaty 5s ease-in-out infinite;
  white-space: nowrap;
}
.float-chip--a { top: -10px; right: 10%; }
.float-chip--b { bottom: -6px; left: 6%; }
.float-chip--c { top: 18%; right: -8%; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.central-shell {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--bg-elev);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.central-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 10px;
  background: var(--navy-deep);
  color: rgba(247, 244, 240, 0.55);
  font-size: 0.68rem;
  font-weight: 650;
}
.rail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7dcea0; margin: 0 0 10px 4px;
  box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.2);
  animation: pulse 2.2s ease infinite;
}
.rail-item { padding: 7px 8px; border-radius: 8px; }
.rail-item.is-on { background: rgba(247, 244, 240, 0.12); color: var(--paper); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(125, 206, 160, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(125, 206, 160, 0.05); }
}
.central-main {
  padding: 12px;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, #fffdfa, #eef4f6);
}
.central-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.central-bar strong { display: block; font-family: var(--font-serif); font-size: 0.95rem; }
.central-bar span { font-size: 0.72rem; color: var(--muted); }
.live-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem !important; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ok) !important;
}
.live-pulse::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok); animation: pulse 1.6s ease infinite;
}
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.metric {
  position: relative; overflow: hidden; padding: 10px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
}
.metric .label { display: block; font-size: 0.68rem; color: var(--muted); margin-bottom: 4px; }
.metric .value {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
}
.metric .value.ok { color: var(--ok); }
.metric .value.warn { color: var(--warn); }
.metric .spark {
  position: absolute; right: 0; bottom: 0; width: 55%; height: 28px;
  background: linear-gradient(90deg, transparent, rgba(29, 138, 150, 0.2));
  clip-path: polygon(0 80%, 20% 60%, 40% 70%, 60% 35%, 80% 50%, 100% 20%, 100% 100%, 0 100%);
}
.exception {
  display: grid; gap: 4px; padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; border-left: 3px solid var(--teal);
}
.exception:last-child { border-left-color: var(--warn); }
.exception-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.exception h3 { margin: 0; font-size: 0.84rem; font-weight: 650; }
.exception p { margin: 0; font-size: 0.76rem; color: var(--muted); line-height: 1.35; }
.badge {
  display: inline-flex; padding: 2px 7px; border-radius: 999px;
  font-size: 0.66rem; font-weight: 700;
}
.badge.warn { background: rgba(154, 109, 20, 0.14); color: var(--warn); }
.badge.ok { background: rgba(42, 122, 64, 0.12); color: var(--ok); }
.exception-action { margin-top: 2px; font-size: 0.74rem; font-weight: 700; color: var(--teal); }

.channel-marquee {
  position: relative; z-index: 2; overflow: hidden;
  border-top: 1px solid rgba(247, 244, 240, 0.12);
  background: rgba(7, 20, 34, 0.72);
  backdrop-filter: blur(10px);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 40px; width: max-content; padding: 14px 0;
  animation: marquee 32s linear infinite;
}
.marquee-item {
  font-size: 0.82rem; font-weight: 650; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(247, 244, 240, 0.55); white-space: nowrap;
}
.marquee-item::before { content: "·"; margin-right: 40px; opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.highlights {
  background: radial-gradient(800px 400px at 100% 0%, rgba(29, 138, 150, 0.12), transparent 60%), var(--bg);
  padding: clamp(56px, 9vw, 100px) 0;
}
.highlights-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 max(24px, var(--safe-r)) 0 max(24px, var(--safe-l));
}
.highlights-head { max-width: 36rem; margin-bottom: 36px; }
.highlights-head h2 {
  margin: 10px 0 0; font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.12;
}
.eyebrow {
  margin: 0; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal);
}
.eyebrow.light { color: rgba(247, 244, 240, 0.65); }

.hl-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.hl-card {
  padding: 22px 20px 24px; border-radius: 18px;
  background: var(--bg-elev); border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hl-card:hover { transform: translateY(-4px); border-color: rgba(29, 138, 150, 0.4); }
.hl-card--accent {
  background: linear-gradient(160deg, var(--navy-deep), var(--teal));
  color: var(--paper); border-color: transparent;
}
.hl-card--accent .hl-num { color: rgba(247, 244, 240, 0.45); }
.hl-card--accent p { color: rgba(247, 244, 240, 0.78); }
.hl-num {
  display: block; margin-bottom: 28px; font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 700; color: rgba(15, 39, 68, 0.28); letter-spacing: -0.03em;
}
.hl-card h3 { margin: 0 0 10px; font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; }
.hl-card p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--muted); }

.section {
  max-width: 1180px; margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) max(24px, var(--safe-r)) clamp(56px, 9vw, 100px) max(24px, var(--safe-l));
}
.section--tight { padding-top: 24px; }
.section-head { max-width: 40rem; margin-bottom: 36px; }
.section-head--wide { max-width: 44rem; }
.section-head h2 {
  margin: 10px 0 0; font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12;
}

.pain-visual { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pain-panel {
  padding: 24px 22px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.9), rgba(230, 238, 240, 0.5)), var(--bg-elev);
  border: 1px solid var(--line);
}
.pain-icon { width: 48px; height: 48px; color: var(--teal); margin-bottom: 16px; }
.pain-icon svg { width: 100%; height: 100%; }
.pain-panel h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; }
.pain-panel p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 0.95rem; }

.how-band { background: var(--navy-night); color: var(--paper); padding: clamp(56px, 9vw, 100px) 0; }
.how-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 0 max(24px, var(--safe-r)) 0 max(24px, var(--safe-l));
}
.how-band h2 { color: var(--paper); }
.how-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px;
}
.how-steps li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.how-n {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 700;
  color: #7ec8d4; letter-spacing: -0.04em; line-height: 1;
}
.how-steps h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; }
.how-steps p { margin: 0; color: rgba(247, 244, 240, 0.68); line-height: 1.5; font-size: 0.95rem; }
.flow-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px;
  margin-top: 40px; padding: 18px 20px; border-radius: 16px;
  background: rgba(247, 244, 240, 0.06); border: 1px solid rgba(247, 244, 240, 0.1);
  font-size: 0.88rem; font-weight: 650;
}
.flow-strip i { width: 28px; height: 1px; background: rgba(247, 244, 240, 0.3); }
.flow-end { color: #9ee3ee; }

.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vs-panel { padding: 28px 26px; border-radius: 20px; border: 1px solid var(--line); }
.vs-panel--them { background: #ebe7e0; color: var(--muted); }
.vs-panel--us {
  background: var(--navy-deep); color: var(--paper); border-color: transparent; transform: scale(1.02);
}
.vs-label {
  margin: 0 0 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.vs-panel--them .vs-label { color: var(--ink); }
.vs-panel--us .vs-label { color: #7ec8d4; }
.vs-panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.vs-panel li { padding-left: 18px; position: relative; font-size: 1rem; line-height: 1.4; }
.vs-panel li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.45;
}
.vs-panel--us li::before { background: #9ee3ee; opacity: 1; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-pills span {
  padding: 10px 14px; border-radius: 999px;
  background: rgba(29, 138, 150, 0.08); border: 1px solid rgba(29, 138, 150, 0.16);
  font-size: 0.85rem; font-weight: 650; color: var(--navy);
}

.start-bleed {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 480px;
  background: var(--navy-night);
  color: var(--paper);
}
.start-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 72px) clamp(28px, 4vw, 56px);
}
.start-copy h2 {
  margin: 10px 0 0; font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -0.03em; line-height: 1.12;
}
.start-copy > p {
  margin: 16px 0 0; max-width: 34rem;
  color: rgba(247, 244, 240, 0.7); line-height: 1.55; font-size: 1.05rem;
}
.start-form {
  display: grid; gap: 12px;
  padding: clamp(36px, 6vw, 72px) max(24px, var(--safe-r));
  align-content: center;
}
.start-form label { display: grid; gap: 6px; font-size: 0.82rem; font-weight: 650; color: rgba(247, 244, 240, 0.7); }
.start-form input {
  min-height: 48px; border-radius: 12px; border: 1px solid rgba(247, 244, 240, 0.16);
  background: rgba(247, 244, 240, 0.08); color: var(--paper);
  padding: 0 14px; font: inherit; font-size: 1rem;
}
.start-form input:focus { outline: 2px solid #7ec8d4; }
.start-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.start-msg { min-height: 1.2em; font-size: 0.88rem; color: #9ee3ee; }
.start-msg.is-err { color: #f3b4ad; }
.start-ok {
  display: none; padding: 22px; border-radius: 16px;
  background: rgba(247, 244, 240, 0.08); border: 1px solid rgba(247, 244, 240, 0.12);
}
.start-ok.is-on { display: block; }
.start-ok h3 { margin: 0 0 8px; font-family: var(--font-serif); }
.start-ok p { margin: 0; color: rgba(247, 244, 240, 0.72); line-height: 1.5; }

.closing-band {
  text-align: center;
  padding: clamp(72px, 12vw, 120px) max(24px, var(--safe-r));
  background: radial-gradient(600px 280px at 50% 0%, rgba(29, 138, 150, 0.14), transparent 70%), var(--bg);
}
.closing-band h2 {
  margin: 0; font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.035em; line-height: 1.1;
}
.closing-sub {
  margin: 8px 0 0; font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem); color: var(--teal); letter-spacing: -0.03em;
}
.closing-band .hero-ctas { justify-content: center; margin-top: 28px; }

.site-footer {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px;
  padding: 24px max(24px, var(--safe-r)) calc(24px + var(--safe-b)) max(24px, var(--safe-l));
  border-top: 1px solid var(--line); color: var(--muted); font-size: 0.88rem;
}
.footer-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 650; }
.site-footer a:hover { color: var(--ink); }

.site--pricing { background: var(--navy-night); color: var(--paper); }
.price-hero {
  padding: clamp(110px, 14vw, 140px) max(24px, var(--safe-r)) 48px max(24px, var(--safe-l));
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(29, 138, 150, 0.35), transparent 55%),
    var(--navy-night);
}
.price-hero-inner { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.price-hero h1 {
  margin: 12px 0 0; font-family: var(--font-serif);
  font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.12;
}
.price-hero h1 em { font-style: italic; font-weight: 600; color: #9ee3ee; }
.price-lead {
  margin: 16px auto 0; max-width: 42rem;
  color: rgba(247, 244, 240, 0.68); line-height: 1.55; font-size: 1.05rem;
}
.billing-toggle {
  display: inline-flex; margin-top: 28px; padding: 5px; border-radius: 999px;
  background: rgba(247, 244, 240, 0.08); border: 1px solid rgba(247, 244, 240, 0.12); gap: 4px;
}
.billing-toggle button {
  appearance: none; border: 0; background: transparent;
  color: rgba(247, 244, 240, 0.7); font: inherit; font-weight: 650; font-size: 0.92rem;
  min-height: 42px; padding: 0 18px; border-radius: 999px; cursor: pointer;
}
.billing-toggle button.is-on { background: var(--paper); color: var(--navy-deep); }
.save-pill {
  margin-left: 6px; font-size: 0.68rem; font-weight: 700; padding: 3px 8px;
  border-radius: 999px; background: rgba(29, 138, 150, 0.18); color: #c8eef4;
}
.billing-toggle button.is-on .save-pill { color: var(--teal); background: rgba(29, 138, 150, 0.12); }
.price-grid {
  max-width: 1180px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
  padding: 0 max(24px, var(--safe-r)) 72px max(24px, var(--safe-l));
}
.price-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 22px 18px 20px; border-radius: 22px;
  background: rgba(255, 253, 250, 0.06); border: 1px solid rgba(247, 244, 240, 0.12);
}
.price-card.is-featured {
  background: linear-gradient(165deg, #1d8a96 0%, #163556 55%, #0a1a2e 100%);
  border-color: rgba(158, 227, 238, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(-8px);
}
.plan-badge {
  position: absolute; top: 14px; right: 14px; padding: 4px 10px; border-radius: 999px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(247, 244, 240, 0.14);
}
.price-card h2 { margin: 8px 0 0; font-family: var(--font-serif); font-size: 1.45rem; }
.price-card .blurb { margin: 0; color: rgba(247, 244, 240, 0.68); font-size: 0.92rem; line-height: 1.4; }
.price-amount { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em; }
.price-amount small { font-size: 0.95rem; font-weight: 600; opacity: 0.7; }
.price-note { font-size: 0.78rem; color: rgba(247, 244, 240, 0.55); }
.price-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; flex: 1; }
.price-card li { font-size: 0.9rem; color: rgba(247, 244, 240, 0.8); padding-left: 14px; position: relative; }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: #9ee3ee;
}
.price-card .btn { width: 100%; }
.price-disc {
  max-width: 720px; margin: 0 auto 48px; text-align: center;
  color: rgba(247, 244, 240, 0.5); font-size: 0.85rem; padding: 0 24px;
}
.site--pricing .site-footer {
  border-top-color: rgba(247, 244, 240, 0.1); color: rgba(247, 244, 240, 0.55);
}
.site--pricing .footer-brand { color: var(--paper); }
.site--pricing .site-footer a:hover { color: var(--paper); }

@media (max-width: 1100px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card.is-featured { transform: none; }
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; align-items: start; padding-top: clamp(88px, 18vw, 110px); }
  .float-chip--b, .float-chip--c { display: none; }
  .hl-grid { grid-template-columns: 1fr 1fr; }
  .pain-visual, .how-steps, .vs-grid, .start-bleed { grid-template-columns: 1fr; }
  .vs-panel--us { transform: none; }
  .nav-link { display: none; }
  .central-rail { display: none; }
  .central-shell { grid-template-columns: 1fr; }
  .start-form .row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hl-grid, .price-grid { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row .metric:last-child { grid-column: 1 / -1; }
  .hero-ctas .btn { width: 100%; }
  .brand-hero { font-size: clamp(2.8rem, 14vw, 3.6rem); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .float-chip, .marquee-track, .rail-dot, .live-pulse::before, html {
    animation: none !important;
    scroll-behavior: auto;
  }
}
