@font-face {
  font-family: "Canela";
  src: url("./assets/fonts/Canela-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Soehne";
  src: url("./assets/fonts/Soehne-Buch.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Soehne";
  src: url("./assets/fonts/Soehne-Halbfett.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

:root {
  --bg: #e6ded3;
  --bg-soft: #f6f3ef;
  --surface: rgba(255, 251, 245, 0.76);
  --surface-strong: rgba(255, 251, 245, 0.92);
  --text: #151619;
  --muted: #666058;
  --muted-strong: #4f4943;
  --line: rgba(27, 22, 18, 0.08);
  --accent: #151619;
  --cream: #f0e7db;
  --dark: #151619;
  --dark-soft: #2f3135;
  --dark-muted: #a0978d;
  --blue: #2f4a73;
  --blue-soft: #a2d3e8;
  --shadow-soft: 0 18px 52px rgba(27, 22, 18, 0.06);
  --shadow-strong: 0 34px 100px rgba(18, 15, 12, 0.18);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 243, 239, 0.62), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 48%, #e8dfd4 100%);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
a.button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header,
.hero-section,
.model-section,
.proof-section,
.how-it-works-section,
.authority-section,
.practitioner-proof-section,
.persona-section,
.switch-section,
.coverage-section,
.reimbursement-section,
.testimonials-section,
.plans-section,
.faq-section,
.site-footer {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 16px 28px;
  border-radius: 22px;
  background: rgba(246, 243, 239, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(18px) saturate(124%);
  -webkit-backdrop-filter: blur(18px) saturate(124%);
  box-shadow: 0 8px 24px rgba(24, 20, 17, 0.04);
  overflow: hidden;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    padding 220ms ease,
    top 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(222, 202, 176, 0.22) 16%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
  opacity: 0.72;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Soehne", "Geist", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-mark,
.brand-submark,
.plan-tier,
.footer-brand {
  font-family: "Soehne", "Inter", sans-serif;
}

.brand-mark {
  display: block;
  font-size: 22.5px;
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.94;
  text-transform: none;
}

.brand-submark {
  display: block;
  color: #24221f;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.052em;
  line-height: 0.94;
  text-transform: uppercase;
  transform: translateY(0.7px);
}

.plan-tier,
.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-nav {
  display: flex;
  gap: 32px;
  color: var(--muted-strong);
  font-size: 0.93rem;
}

.site-nav a {
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  color: #2d2a25;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: linear-gradient(180deg, #222429 0%, #151619 100%);
  color: #f7f1ea;
}

.button-dark:disabled,
.button-light:disabled,
.launch-store-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.button-light {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border-color: rgba(27, 22, 18, 0.08);
}

.button-cream {
  background: var(--cream);
  color: #37312c;
}

.ramp-hero-section,
.ramp-proof-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.ramp-hero-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 26px;
  align-items: center;
  min-height: 790px;
  padding: 78px 0 78px;
}

.ramp-hero-copy {
  align-self: center;
  padding-top: 88px;
}

.ramp-review-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 1.08rem;
  font-weight: 500;
}

.ramp-review-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.ramp-hero-copy h1 {
  margin: 22px 0 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(4rem, 5.2vw, 5.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 7.4ch;
}

.ramp-hero-text {
  max-width: 36ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.5;
}

.ramp-hero-value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.ramp-hero-value-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(27, 22, 18, 0.08);
  box-shadow: 0 10px 28px rgba(34, 28, 22, 0.06);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.ramp-hero-actions {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin-top: 26px;
}

.ramp-hero-actions .button {
  min-width: 172px;
}

.ramp-hero-launch-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ramp-hero-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1rem;
  font-weight: 500;
}

.ramp-hero-visual {
  position: relative;
  min-height: 650px;
}

.ramp-hero-visual::before {
  content: "";
  position: absolute;
  inset: 56px 40px 72px 140px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 28%, rgba(47, 74, 115, 0.16), transparent 28%),
    radial-gradient(circle at 30% 74%, rgba(28, 23, 20, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.76), rgba(240, 233, 224, 0.38));
  filter: blur(18px);
}

.ramp-monitor-wrap {
  position: absolute;
  right: 10px;
  top: 16px;
  width: 786px;
  height: 516px;
}

.ramp-monitor-wrap::after {
  content: "";
  position: absolute;
  left: 112px;
  right: 58px;
  bottom: -12px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22, 24, 28, 0.22), rgba(22, 24, 28, 0));
  filter: blur(18px);
}

.ramp-monitor-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f7f3;
  border: 1px solid #cbc6c0;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.18);
  transform: perspective(1400px) rotateX(8deg) rotateY(-18deg) rotateZ(2deg);
  transform-origin: center bottom;
}

.ramp-monitor-screen-media {
  border-radius: 24px;
  background: #18191d;
  border: 1px solid rgba(32, 29, 26, 0.12);
  box-shadow:
    0 34px 90px rgba(19, 15, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.ramp-monitor-media-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.ramp-monitor-screen-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.06), rgba(20, 18, 16, 0.12)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.14), transparent 22%);
  pointer-events: none;
}

.ramp-monitor-overlay {
  position: absolute;
  left: 28px;
  bottom: 24px;
  max-width: 19rem;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(19, 21, 24, 0.74);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(7, 7, 8, 0.24);
}

.ramp-monitor-overlay p {
  margin: 0;
  color: #cdbfae;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ramp-monitor-overlay strong {
  display: block;
  margin-top: 8px;
  color: #f5ede2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

/* ===========================================
   Gabriel web app monitor vignette
   =========================================== */

.ramp-monitor-screen-app {
  padding: 0 !important;
  overflow: hidden;
}

.monitor-app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a1b1f 0%, #0d0e10 100%);
  color: rgba(243, 236, 226, 0.9);
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.monitor-app-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.monitor-app-dots {
  display: flex;
  gap: 6px;
}

.monitor-app-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.monitor-app-dots span:nth-child(1) { background: rgba(255, 95, 86, 0.6); }
.monitor-app-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.monitor-app-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.6); }

.monitor-app-address {
  flex: 1;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 236, 226, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.monitor-app-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  flex: 1;
  min-height: 0;
}

.monitor-app-sidebar {
  padding: 14px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

.monitor-app-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-app-brand span {
  color: rgba(243, 236, 226, 0.86);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.monitor-app-brand em {
  color: rgba(243, 236, 226, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.monitor-app-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.monitor-app-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.64rem;
  font-weight: 500;
}

.monitor-app-nav-item.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 236, 226, 0.9);
}

.monitor-app-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.monitor-app-main {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  overflow: hidden;
}

.monitor-app-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.monitor-app-eyebrow {
  display: block;
  color: rgba(243, 236, 226, 0.4);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.monitor-app-title {
  display: block;
  margin-top: 3px;
  color: rgba(243, 236, 226, 0.95);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.monitor-app-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(162, 211, 232, 0.14);
  color: rgba(162, 211, 232, 0.9);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.monitor-app-balance {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-app-balance strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}

.monitor-app-balance > span {
  display: block;
  margin-top: 4px;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.62rem;
}

.monitor-app-balance-bar {
  margin-top: 12px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.monitor-app-balance-fill {
  width: 81%;
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #6b7d95 100%);
  border-radius: 4px;
}

.monitor-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.monitor-app-tile {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.monitor-app-tile-label {
  display: block;
  color: rgba(243, 236, 226, 0.4);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.monitor-app-tile-value {
  display: block;
  margin-top: 4px;
  color: rgba(243, 236, 226, 0.92);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.monitor-app-tile-detail {
  display: block;
  margin-top: 4px;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.56rem;
}

.monitor-app-tile-accent {
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.14), rgba(107, 175, 122, 0.06));
  border-color: rgba(107, 175, 122, 0.22);
}

.monitor-app-tile-accent .monitor-app-tile-value {
  color: #a3d9b2;
}

.monitor-app-chat {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-app-chat-prompt {
  color: rgba(243, 236, 226, 0.38);
  font-size: 0.66rem;
}

.monitor-app-chat-suggestions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.monitor-app-chat-suggestions span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.58rem;
  font-weight: 500;
}

.ramp-hero-phone-mockup {
  position: absolute;
  right: 38px;
  bottom: 8px;
  width: 214px;
  height: 438px;
  z-index: 2;
}

.ramp-hero-phone-mockup::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -12px;
  height: 46px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(10, 10, 12, 0.28), rgba(10, 10, 12, 0));
  filter: blur(12px);
}

.ramp-hero-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(180deg, #090a0d, #000000);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 80px rgba(8, 7, 8, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ramp-hero-phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
  z-index: 3;
}

.ramp-hero-phone-screen {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: top center;
  border-radius: 30px;
  filter: saturate(0.96) contrast(1.01);
}

.ramp-hero-phone-mask {
  position: absolute;
  left: 10px;
  right: 10px;
  border-radius: 30px;
  pointer-events: none;
  z-index: 2;
}

.ramp-hero-phone-mask-top {
  top: 10px;
  height: 78px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.1));
}

.ramp-hero-phone-mask-bottom {
  bottom: 10px;
  height: 56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.98));
}

.ramp-hero-phone-app-ui {
  position: absolute;
  inset: 0;
  padding: 48px 16px 24px;
  background: linear-gradient(180deg, #1a1b1f 0%, #0f1012 100%);
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-app-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.phone-app-greeting {
  color: rgba(243, 236, 226, 0.72);
  font-size: 0.68rem;
  font-weight: 500;
}

.phone-app-balance {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.phone-app-card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-app-card-label {
  display: block;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-app-card-value {
  display: block;
  margin-top: 4px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.phone-app-card-detail {
  display: block;
  margin-top: 2px;
  color: rgba(243, 236, 226, 0.52);
  font-size: 0.6rem;
}

.phone-app-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.phone-app-metric {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.phone-app-metric span {
  display: block;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-app-metric strong {
  display: block;
  margin-top: 2px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.phone-app-prompt {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(243, 236, 226, 0.28);
  font-size: 0.62rem;
}

.ramp-hero-phone-brandplate {
  position: absolute;
  top: 44px;
  left: 50%;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 237, 226, 0.94);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transform: translateX(-50%);
  z-index: 4;
}

.ramp-hero-card-object {
  position: absolute;
  right: 154px;
  bottom: 18px;
  width: 196px;
  z-index: 3;
  transform: rotate(-10deg);
}

.ramp-hero-card-object-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 28px 56px rgba(13, 10, 8, 0.24);
}

.ramp-hero-side-caption {
  position: absolute;
  right: 24px;
  bottom: 6px;
  width: 220px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 44px rgba(26, 21, 18, 0.12);
  z-index: 1;
}

.ramp-hero-side-caption span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ramp-hero-side-caption strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.launch-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.launch-modal[hidden] {
  display: none;
}

.launch-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 14, 16, 0.44);
  backdrop-filter: blur(10px);
}

.launch-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  width: min(calc(100% - 32px), 940px);
  margin: min(8vh, 72px) auto 0;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 246, 229, 0.44), transparent 18%),
    linear-gradient(180deg, rgba(248, 244, 239, 0.96), rgba(232, 224, 214, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: 0 34px 120px rgba(15, 12, 10, 0.24);
}

.launch-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 22, 25, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.launch-modal-copy h2 {
  margin: 12px 0 0;
  max-width: 12ch;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.launch-modal-text {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.launch-modal-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.launch-modal-actions .button {
  width: 100%;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 12px 18px;
  border: 1px solid rgba(17, 18, 20, 0.88);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #17181c 0%, #0f1013 100%);
  color: #f8f4ef;
  text-align: left;
  box-shadow: 0 18px 40px rgba(17, 14, 12, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 244, 229, 0.32);
  box-shadow: 0 22px 48px rgba(17, 14, 12, 0.24);
}

.store-badge:focus-visible {
  outline: 2px solid rgba(92, 129, 255, 0.45);
  outline-offset: 2px;
}

.store-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: #f8f4ef;
}

.store-badge-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.store-badge-copy {
  display: grid;
  gap: 1px;
}

.store-badge-copy small {
  display: block;
  color: rgba(247, 241, 234, 0.78);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.store-badge-copy strong {
  display: block;
  color: #ffffff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.store-badge-icon-google {
  position: relative;
  width: 28px;
  height: 30px;
}

.store-google-prism {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.store-google-prism-green {
  background: #34a853;
  clip-path: polygon(0 0, 70% 36%, 41% 50%, 0 24%);
}

.store-google-prism-blue {
  background: #4285f4;
  clip-path: polygon(38% 48%, 100% 50%, 0 100%, 0 72%);
}

.store-google-prism-yellow {
  background: #fbbc04;
  clip-path: polygon(0 0, 100% 50%, 38% 48%, 70% 36%);
}

.store-google-prism-red {
  background: #ea4335;
  clip-path: polygon(0 24%, 41% 50%, 0 72%);
}

.store-badge-google .store-badge-copy strong,
.store-badge-google .store-badge-copy small {
  letter-spacing: 0;
}

.launch-modal-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.launch-copy-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 22, 18, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.launch-copy-status {
  color: var(--muted);
  font-size: 0.86rem;
}

.launch-modal-qr {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.launch-modal-qr p {
  max-width: 16ch;
  margin: 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.launch-modal-qr small {
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.launch-qr-shell {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 224px;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(21, 22, 25, 0.98), rgba(32, 34, 40, 1));
  box-shadow: 0 20px 44px rgba(15, 12, 10, 0.18);
}

.launch-qr-shell span {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: rgba(241, 233, 223, 0.18);
}

.launch-qr-shell span:nth-child(1),
.launch-qr-shell span:nth-child(2),
.launch-qr-shell span:nth-child(5),
.launch-qr-shell span:nth-child(7),
.launch-qr-shell span:nth-child(10),
.launch-qr-shell span:nth-child(12),
.launch-qr-shell span:nth-child(13),
.launch-qr-shell span:nth-child(16),
.launch-qr-shell span:nth-child(19),
.launch-qr-shell span:nth-child(21),
.launch-qr-shell span:nth-child(24),
.launch-qr-shell span:nth-child(27),
.launch-qr-shell span:nth-child(30),
.launch-qr-shell span:nth-child(32),
.launch-qr-shell span:nth-child(35),
.launch-qr-shell span:nth-child(36) {
  background: #f3ece2;
}

.ramp-screen-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid #dcd8d2;
  background: #fbfaf6;
}

.ramp-screen-brand,
.ramp-phone-brand,
.ramp-member-card-brand {
  font-family: "Soehne", "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.ramp-screen-brand {
  font-size: 0.88rem;
  font-weight: 600;
  color: #27221d;
}

.ramp-screen-search {
  height: 28px;
  border-radius: 999px;
  border: 1px solid #dcd8d2;
  background: #fff;
}

.ramp-screen-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.ramp-ghost-pill,
.ramp-accent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 600;
}

.ramp-ghost-pill {
  border: 1px solid #dcd8d2;
  color: #55514d;
  background: #fff;
}

.ramp-accent-pill {
  background: linear-gradient(180deg, #222429 0%, #151619 100%);
  color: #f7f1ea;
}

.ramp-screen-shell {
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: calc(100% - 53px);
}

.ramp-screen-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 12px;
  border-right: 1px solid #dcd8d2;
  background: #f5f2ed;
  color: #6d675f;
  font-size: 0.78rem;
}

.ramp-screen-sidebar .is-active {
  color: #16181b;
  font-weight: 600;
}

.ramp-screen-content {
  padding: 22px 22px 18px;
  background: #fffdf9;
}

.ramp-report-header h2 {
  margin: 0;
  color: #27231f;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.ramp-report-tabs {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  color: #787066;
  font-size: 0.78rem;
}

.ramp-chart-card {
  position: relative;
  min-height: 258px;
  margin-top: 20px;
  border: 1px solid #ece6de;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 1));
}

.ramp-chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 112, 102, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 112, 102, 0.06) 1px, transparent 1px);
  background-size: 100% 54px, 76px 100%;
}

.ramp-chart-lines {
  position: absolute;
  inset: 22px 18px 24px 18px;
}

.ramp-line {
  position: absolute;
  left: 2%;
  right: 0;
  height: 100%;
  border-radius: 999px;
  clip-path: polygon(0 88%, 12% 78%, 22% 72%, 35% 65%, 48% 60%, 62% 56%, 74% 50%, 87% 38%, 100% 22%, 100% 100%, 0 100%);
}

.ramp-line-blue {
  background: linear-gradient(180deg, rgba(129, 170, 240, 0.52), rgba(129, 170, 240, 0.24));
}

.ramp-line-green {
  clip-path: polygon(0 92%, 12% 84%, 24% 80%, 36% 76%, 48% 72%, 62% 67%, 76% 61%, 88% 53%, 100% 42%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(180, 216, 169, 0.48), rgba(180, 216, 169, 0.2));
}

.ramp-line-pink {
  clip-path: polygon(0 95%, 14% 90%, 25% 86%, 38% 82%, 51% 78%, 65% 74%, 79% 69%, 90% 61%, 100% 54%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(235, 188, 203, 0.5), rgba(235, 188, 203, 0.2));
}

.ramp-line-gray {
  clip-path: polygon(0 97%, 15% 94%, 27% 91%, 40% 88%, 55% 85%, 68% 81%, 81% 77%, 92% 72%, 100% 67%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(188, 183, 180, 0.38), rgba(188, 183, 180, 0.16));
}

.ramp-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.ramp-summary-card {
  min-height: 92px;
  border: 1px solid #ece6de;
  border-radius: 8px;
  background: #fcfbf8;
}

.ramp-monitor-stand {
  position: absolute;
  left: 58%;
  bottom: 8px;
  width: 118px;
  height: 252px;
  background: linear-gradient(180deg, #c9c6c2, #aeadab);
  clip-path: polygon(24% 0, 76% 0, 68% 100%, 32% 100%);
}

.ramp-monitor-base {
  position: absolute;
  left: 47%;
  bottom: -10px;
  width: 312px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0deda, #bdbab6);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.ramp-phone-shell {
  position: absolute;
  right: 90px;
  bottom: 20px;
  width: 186px;
  height: 392px;
  padding: 10px 10px 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #111214, #050607);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.2);
}

.ramp-phone-notch {
  width: 74px;
  height: 18px;
  margin: 2px auto 10px;
  border-radius: 999px;
  background: #050607;
}

.ramp-phone-screen {
  height: calc(100% - 32px);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #faf8f4);
  overflow: hidden;
}

.ramp-phone-brand {
  padding: 14px 14px 10px;
  color: #59534c;
  font-size: 0.78rem;
  font-weight: 600;
}

.ramp-phone-header-card {
  height: 94px;
  margin: 0 12px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(135deg, #2b2f34, #171a1d);
}

.ramp-phone-list {
  display: grid;
  gap: 10px;
  padding: 14px 12px 12px;
}

.ramp-phone-item {
  height: 46px;
  border-radius: 12px;
  background: #f1ede7;
  border: 1px solid #ebe4db;
}

.ramp-member-card {
  position: absolute;
  right: 214px;
  bottom: 12px;
  width: 188px;
  height: 94px;
  padding: 18px 18px 16px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #1b1d20, #0f1113);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.ramp-member-card-brand {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.ramp-member-card-chip {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #d9dbdf, #8e9399);
}

.ramp-proof-section {
  padding: 18px 0 58px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(246, 243, 239, 0.4) 28%, rgba(246, 243, 239, 0.94) 82%, var(--bg-soft) 100%);
}

.ramp-proof-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.ramp-proof-marquee-shell {
  position: relative;
  display: flex;
  gap: 18px;
  overflow: hidden;
  margin-top: 26px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ramp-proof-marquee-track {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  min-width: max-content;
  animation: ramp-marquee 34s linear infinite;
}

.ramp-proof-marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 28px rgba(24, 20, 17, 0.04);
}

.ramp-proof-marquee-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(47, 74, 115, 0.58);
}

@keyframes ramp-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 18px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ramp-proof-marquee-track {
    animation: none;
  }
}

.ramp-suite-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 46px 0 132px;
}

.ramp-suite-heading {
  max-width: 640px;
  margin-bottom: 36px;
}

.ramp-suite-heading h2,
.ramp-suite-card h3 {
  margin: 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.ramp-suite-heading h2 {
  margin-top: 10px;
  font-size: clamp(3.05rem, 4vw, 4rem);
}

.ramp-suite-heading p:last-child,
.ramp-suite-card p {
  color: var(--muted);
  line-height: 1.6;
}

.ramp-suite-heading p:last-child {
  max-width: 42ch;
  margin-top: 16px;
}

.ramp-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.ramp-suite-card-hero {
  grid-column: span 2;
}

.ramp-suite-card-hero h3 {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.ramp-suite-card-hero .ramp-suite-media {
  min-height: 280px;
}

.ramp-suite-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 438px;
  padding: 20px 16px 0;
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.ramp-suite-card h3 {
  font-size: 1.52rem;
  line-height: 1.04;
}

.ramp-suite-card p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.ramp-suite-card > a {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  font-weight: 500;
}

.ramp-suite-media {
  position: relative;
  align-self: end;
  min-height: 236px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(240, 234, 227, 0.94));
}

.ramp-suite-media-laptop {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(234, 228, 220, 0.92));
}

.suite-laptop-shell {
  position: absolute;
  left: 28px;
  right: 18px;
  bottom: 24px;
  height: 162px;
  border-radius: 12px 12px 8px 8px;
  background: #101216;
  box-shadow: 0 18px 34px rgba(19, 16, 14, 0.18);
}

.suite-laptop-shell::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  bottom: -10px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8d5cf, #bbb7b1);
}

.suite-laptop-screen {
  position: absolute;
  inset: 8px;
  overflow: hidden;
  border-radius: 8px;
  background: #fbf8f3;
}

.suite-laptop-bar {
  height: 16px;
  background: #efe9df;
  border-bottom: 1px solid #e1d9ce;
}

.suite-laptop-layout {
  display: grid;
  grid-template-columns: 48px 1fr;
  height: calc(100% - 16px);
}

.suite-sidebar-mini {
  background: #f0ece5;
  border-right: 1px solid #e2dcd3;
}

.suite-chat-panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(160, 189, 233, 0.18)),
    #fbf8f3;
}

.suite-chat-bubble,
.suite-chat-card {
  position: absolute;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(36, 29, 24, 0.08);
}

.suite-chat-bubble {
  top: 28px;
  left: 24px;
  width: 112px;
  height: 34px;
}

.suite-chat-bubble-small {
  top: 70px;
  width: 128px;
  height: 28px;
}

.suite-chat-card {
  right: 18px;
  bottom: 18px;
  width: 96px;
  height: 62px;
}

.ramp-suite-media-cardstack {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 232, 194, 0.22), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, #2b2b2d, #1b1b1d);
}

.suite-credit-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(248, 242, 234, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 236, 226, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.suite-credit-card-image {
  position: absolute;
  display: block;
  width: 178px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.suite-credit-card-image-back {
  right: 18px;
  bottom: -6px;
  transform: rotate(7deg);
}

.suite-credit-card-image-front {
  left: 28px;
  bottom: 4px;
  transform: rotate(-5deg);
}

.suite-credit-footnote {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  z-index: 3;
  color: rgba(227, 217, 206, 0.86);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.ramp-suite-media-cardstack::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255, 232, 194, 0.18), transparent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.ramp-suite-media-map {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(228, 236, 255, 0.9));
}

.suite-map-shape {
  position: absolute;
  left: -8px;
  right: 48px;
  bottom: 0;
  top: 54px;
  background: #b8c8f0;
  clip-path: polygon(0 22%, 18% 16%, 34% 20%, 52% 14%, 74% 28%, 88% 44%, 82% 74%, 70% 96%, 40% 100%, 18% 82%, 8% 58%);
}

.suite-map-badge {
  position: absolute;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(40, 33, 28, 0.08);
  color: #7d7368;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-one {
  left: 20px;
  top: 40px;
}

.badge-two {
  right: 16px;
  top: 22px;
}

.badge-three {
  left: 92px;
  bottom: 38px;
}

.badge-four {
  right: 18px;
  bottom: 26px;
}

.ramp-suite-media-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, transparent 20%, rgba(162, 211, 232, 0.12) 20.5%, rgba(162, 211, 232, 0.12) 21%, transparent 21.5%),
    linear-gradient(45deg, transparent 40%, rgba(162, 211, 232, 0.12) 40.5%, rgba(162, 211, 232, 0.12) 41%, transparent 41.5%),
    linear-gradient(160deg, transparent 55%, rgba(162, 211, 232, 0.1) 55.5%, rgba(162, 211, 232, 0.1) 56%, transparent 56.5%);
  pointer-events: none;
}

.ramp-suite-media-protocols {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 233, 225, 0.98));
}

.suite-protocol-toolbar {
  display: flex;
  gap: 10px;
  padding: 18px 16px 0;
}

.suite-protocol-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(40, 33, 28, 0.06);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.suite-protocol-chip-muted {
  background: rgba(214, 223, 246, 0.76);
  color: var(--blue);
}

.suite-bottle-group {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 34px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
}

.suite-bottle {
  position: relative;
  border-radius: 18px 18px 16px 16px;
  background:
    linear-gradient(180deg, rgba(39, 41, 45, 0.96), rgba(20, 21, 24, 1)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  box-shadow: 0 20px 36px rgba(20, 16, 13, 0.16);
}

.suite-bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 54%;
  height: 18px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #cdc3b8, #9f968d);
  transform: translateX(-50%);
}

.suite-bottle::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34%;
  height: 28%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.suite-bottle-tall {
  width: 74px;
  height: 108px;
}

.suite-bottle-short {
  width: 64px;
  height: 84px;
}

.suite-bottle-dropper {
  width: 58px;
  height: 92px;
  border-radius: 16px;
}

.suite-bottle-dropper::before {
  width: 18px;
  height: 28px;
  border-radius: 8px 8px 3px 3px;
}

.suite-bottle-tall::after {
  top: 28%;
  height: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.suite-bottle-short::after {
  top: 30%;
  height: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.suite-protocol-tags {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suite-protocol-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 600;
}

.ramp-suite-media-therapies {
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.78), transparent 20%),
    radial-gradient(circle at 30% 70%, rgba(91, 120, 176, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(238, 232, 225, 0.98));
}

.suite-therapy-glow {
  position: absolute;
  right: 30px;
  bottom: 36px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 201, 162, 0.26), rgba(143, 201, 162, 0));
  filter: blur(6px);
}

.suite-therapy-card {
  position: absolute;
  left: 18px;
  right: 82px;
  top: 22px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 28px rgba(40, 33, 28, 0.08);
}

.suite-therapy-card span,
.suite-reimbursement-card span,
.suite-protection-header span,
.suite-guidance-answer span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suite-therapy-card strong,
.suite-reimbursement-card strong,
.suite-protection-header strong,
.suite-guidance-answer strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.suite-therapy-card small,
.suite-reimbursement-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.suite-therapy-pill {
  position: absolute;
  right: 34px;
  bottom: 40px;
  width: 132px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(220, 211, 202, 0.84), rgba(214, 204, 194, 0.76));
}

.suite-therapy-pill::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 74px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #121417, #30333a);
  transform: rotate(-18deg);
}

.suite-therapy-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(40, 33, 28, 0.06);
}

.suite-therapy-tag-top {
  left: 18px;
  bottom: 72px;
}

.suite-therapy-tag-bottom {
  right: 18px;
  bottom: 12px;
}

.ramp-suite-media-therapies::before {
  content: "";
  position: absolute;
  right: 88px;
  top: 18px;
  width: 2px;
  height: 82px;
  background: linear-gradient(180deg, rgba(143, 201, 162, 0.4), rgba(143, 201, 162, 0.08));
  border-radius: 1px;
}

.ramp-suite-media-chatbooking {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(239, 233, 226, 0.98));
}

.suite-chat-thread {
  position: absolute;
  inset: 18px 18px 14px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.suite-chat-message {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 18px 18px 18px 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(40, 33, 28, 0.06);
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.45;
}

.suite-chat-message-user {
  justify-self: end;
  border-radius: 18px 18px 8px 18px;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(21, 22, 25, 1));
  color: #f3ece2;
}

.suite-chat-confirmation {
  margin-top: 6px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(214, 223, 246, 0.82), rgba(236, 242, 255, 0.92));
  box-shadow: 0 14px 28px rgba(40, 33, 28, 0.08);
}

.suite-chat-confirmation span,
.suite-chat-confirmation small {
  display: block;
}

.suite-chat-confirmation span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.suite-chat-confirmation strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.suite-chat-confirmation small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.suite-chat-thread::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  border-radius: 14px 14px 14px 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 16px rgba(40, 33, 28, 0.05);
  background-image: radial-gradient(circle, var(--muted) 2.5px, transparent 2.5px);
  background-size: 14px 14px;
  background-position: 10px center, 24px center, 38px center;
  background-repeat: no-repeat;
  animation: suite-typing 1.4s ease-in-out infinite;
}

@keyframes suite-typing {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.ramp-suite-media-reimbursement {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(239, 233, 226, 0.98));
}

.suite-reimbursement-ticket {
  position: absolute;
  left: 34px;
  top: 28px;
  width: 128px;
  height: 152px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 235, 0.98));
  box-shadow: 0 20px 36px rgba(40, 33, 28, 0.08);
  transform: rotate(-6deg);
}

.suite-reimbursement-ticket::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 44px;
  height: 8px;
  border-radius: 999px;
  background: rgba(28, 30, 34, 0.08);
  box-shadow: 0 26px 0 rgba(28, 30, 34, 0.08), 0 52px 0 rgba(28, 30, 34, 0.08);
}

.suite-reimbursement-ticket::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6BAF7A, #4E9B5F);
  box-shadow: 0 4px 12px rgba(78, 155, 95, 0.3);
}

.suite-reimbursement-card {
  position: absolute;
  right: 18px;
  bottom: 26px;
  left: 72px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(21, 22, 25, 1));
  box-shadow: 0 18px 36px rgba(20, 16, 13, 0.16);
}

.suite-reimbursement-card span,
.suite-reimbursement-card strong,
.suite-reimbursement-card small {
  color: #f3ece2;
}

.suite-reimbursement-card small {
  color: #c7bcae;
}

.suite-reimbursement-chip {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(214, 223, 246, 0.82);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.ramp-suite-media-guidance {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(236, 230, 223, 0.98));
}

.suite-guidance-panel {
  position: absolute;
  inset: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.suite-guidance-question {
  justify-self: end;
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px 18px 8px 18px;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(21, 22, 25, 1));
  color: #f3ece2;
  font-size: 0.86rem;
  line-height: 1.45;
}

.suite-guidance-answer {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 26px rgba(40, 33, 28, 0.06);
}

.suite-guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.suite-guidance-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(40, 33, 28, 0.05);
}

.suite-guidance-actions span:first-child {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.96), rgba(21, 22, 25, 1));
  color: #f3ece2;
  border-color: transparent;
}

.ramp-suite-media-protection {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(224, 234, 255, 0.94));
}

.suite-protection-shell {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  top: 18px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 255, 0.92));
  box-shadow: 0 18px 34px rgba(40, 33, 28, 0.06);
}

.suite-protection-header strong {
  font-size: 1rem;
}

.suite-protection-rows {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.suite-protection-rows div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(214, 223, 246, 0.5);
}

.suite-protection-rows span {
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
}

.suite-protection-rows strong {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.suite-protection-shell::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 32px;
  height: 38px;
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.2), rgba(107, 175, 122, 0.06));
  clip-path: polygon(50% 0%, 100% 18%, 100% 68%, 50% 100%, 0% 68%, 0% 18%);
}

.hero-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 88px;
  align-items: center;
  min-height: 104vh;
  padding: 112px 0 148px;
}

.hero-pill,
.eyebrow,
.screen-label,
.hero-proof span,
.coverage-list span,
.footer-heading {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-pill,
.eyebrow,
.screen-label,
.hero-proof span,
.coverage-list span {
  color: var(--muted);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(27, 22, 18, 0.05);
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b7862;
  box-shadow: 0 0 0 5px rgba(139, 120, 98, 0.12);
}

.hero-copy h1,
.section-heading h2,
.editorial-copy h2,
.faq-section h2,
.footer-brand-column h3,
.phone-screen h3 {
  margin: 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-top: 26px;
  font-size: clamp(3.7rem, 5.2vw, 5.2rem);
}

.hero-text,
.hero-note,
.section-heading p,
.advantage-card p,
.switch-card li,
.coverage-list p,
.plan-summary,
.plan-card li,
.editorial-copy p,
.faq-list p,
.footer-legal {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 37ch;
  margin: 24px 0 0;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  max-width: 34ch;
  margin: 24px 0 0;
  font-size: 0.94rem;
}

.hero-proof-bar strong,
.phone-metrics strong,
.coverage-list strong {
  display: block;
  margin-top: 8px;
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1.08;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.hero-stage {
  position: absolute;
  inset: 42px 24px 88px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.58), transparent 20%),
    radial-gradient(circle at 32% 68%, rgba(132, 183, 186, 0.2), transparent 26%),
    linear-gradient(140deg, rgba(244, 239, 233, 0.94), rgba(228, 221, 211, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 30px 90px rgba(64, 54, 44, 0.08);
}

.hero-editorial {
  position: absolute;
  top: 74px;
  left: 0;
  width: 388px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(245, 240, 233, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 38px 90px rgba(35, 30, 26, 0.18);
}

.hero-editorial-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 244, 239, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.hero-editorial-image {
  min-height: 292px;
  position: relative;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.72), transparent 20%),
    radial-gradient(circle at 76% 78%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #c9c6c0 0%, #d9d7d2 38%, #97a6b7 100%);
}

.hero-editorial-image::before,
.hero-editorial-image::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, #7f7a73, #c8ece8);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-editorial-image::before {
  width: 160px;
  height: 44px;
  left: 18%;
  top: 48%;
  transform: rotate(23deg);
}

.hero-editorial-image::after {
  width: 160px;
  height: 44px;
  right: 15%;
  top: 34%;
  transform: rotate(-20deg);
}

.hero-editorial-copy {
  padding: 24px 24px 26px;
  background: linear-gradient(180deg, #302f2f 0%, #202122 100%);
}

.hero-editorial-copy h2 {
  margin-top: 10px;
  color: #f3eee6;
  font-size: 2.12rem;
  max-width: 12ch;
}

.phone-shell {
  position: absolute;
  right: 46px;
  top: 148px;
  width: 368px;
  padding: 14px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(33, 34, 38, 0.98), rgba(17, 18, 21, 1));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 42px 110px rgba(17, 14, 11, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  color: #c4baae;
  font-size: 0.82rem;
}

.phone-screen {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #101112 0%, #191816 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-screen h3 {
  margin-top: 10px;
  color: #f6efe6;
  font-size: 1.58rem;
  max-width: 12ch;
}

.screen-query {
  margin-top: 20px;
  margin-left: auto;
  max-width: 79%;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.1) 0%, rgba(247, 241, 232, 0.06) 100%);
  color: #f7f0e8;
  line-height: 1.55;
  border: 1px solid rgba(247, 241, 232, 0.06);
}

.provider-surface {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(166, 124, 91, 0.1);
  border: 1px solid rgba(247, 241, 232, 0.06);
}

.provider-surface p {
  margin: 0;
  color: #f5ede3;
}

.provider-surface span {
  color: #b3a89a;
  font-size: 0.9rem;
}

.provider-surface button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: #a67c5b;
  color: #fff8f0;
}

.provider-surface-muted {
  align-items: center;
  background: rgba(247, 241, 232, 0.05);
}

.status-dot {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 999px;
  background: #7fc38a;
  box-shadow: 0 0 0 6px rgba(127, 195, 138, 0.14);
}

.phone-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.phone-metrics div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 241, 232, 0.05);
  border: 1px solid rgba(247, 241, 232, 0.06);
}

.phone-metrics strong {
  color: #f6efe6;
  font-size: 1.9rem;
}

.phone-metrics span {
  color: #b4a99c;
}

.phone-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.phone-composer span {
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(247, 241, 232, 0.05);
  border: 1px solid rgba(247, 241, 232, 0.06);
  color: rgba(247, 241, 232, 0.34);
  font-size: 0.9rem;
}

.phone-send {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #a67c5b;
  color: #fff;
  font-weight: 700;
}

.hero-proof-bar {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof-bar div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 244, 239, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(33, 28, 23, 0.06);
}

.hero-proof-bar span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-proof-bar strong {
  font-size: 0.95rem;
}

.model-section,
.proof-section,
.how-it-works-section,
.authority-section,
.practitioner-proof-section,
.persona-section,
.switch-section,
.coverage-section,
.plans-section {
  padding: 136px 0;
}

.proof-section {
  position: relative;
  padding: 156px 0 148px;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 38px 0 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(47, 74, 115, 0.08), transparent 22%);
  pointer-events: none;
}

.how-it-works-section {
  padding: 128px 0 108px;
}

.authority-section {
  padding: 104px 0 156px;
}

.practitioner-proof-section {
  padding: 0 0 136px;
}

.switch-section {
  padding: 152px 0 146px;
}

.coverage-section {
  padding: 144px 0 118px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-heading h2,
.flow-copy h2,
.editorial-copy h2,
.faq-section h2 {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.section-heading-narrow {
  max-width: 640px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.how-step-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.how-step-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(27, 22, 18, 0.08);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
}

.how-step-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 196px;
  margin: 24px 0 22px;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
}

.how-step-visual-chat {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(180deg, #ede6dc 0%, #e1ddd7 100%);
}

.how-step-visual-match {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(180deg, #dfe7ee 0%, #d0d8e1 100%);
}

.how-step-visual-receipt {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.78), transparent 20%),
    linear-gradient(180deg, #eef0ea 0%, #e1e5dc 100%);
}

.how-chat-bubble,
.how-receipt-card,
.how-match-card,
.how-match-pill,
.how-reimbursement-pill {
  box-shadow: 0 16px 34px rgba(24, 20, 17, 0.08);
}

.how-step-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-step-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 50%, rgba(230, 222, 211, 0.6) 100%);
  pointer-events: none;
}

.how-chat-bubble {
  max-width: 15.5rem;
  padding: 14px 16px;
  border-radius: 20px 20px 20px 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.how-chat-bubble + .how-chat-bubble {
  margin-top: 12px;
}

.how-chat-bubble-user {
  align-self: flex-end;
  border-radius: 20px 20px 8px 20px;
  background: linear-gradient(180deg, rgba(33, 35, 40, 0.96), rgba(21, 22, 25, 0.98));
  color: #f5efe7;
}

.how-match-card {
  max-width: 14rem;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.how-match-card strong,
.how-step-card h3 {
  font-family: "Soehne", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.how-match-card strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 600;
}

.how-match-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.how-match-pill,
.how-reimbursement-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.how-match-pill-muted {
  background: rgba(47, 74, 115, 0.12);
  color: var(--blue);
}

.how-receipt-card {
  display: grid;
  gap: 4px;
  max-width: 14rem;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.how-receipt-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-receipt-card strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.how-step-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.08;
}

.how-step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.proof-shell {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: start;
}

.proof-copy {
  max-width: 38rem;
}

.proof-copy h2,
.authority-card h3 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  letter-spacing: -0.055em;
}

.proof-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.1rem);
  font-weight: 600;
  line-height: 0.95;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.proof-tags,
.authority-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-tags span,
.authority-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 500;
}

.proof-compare-card {
  margin-top: 26px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.76), rgba(248, 243, 236, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.proof-compare-header {
  display: grid;
  gap: 8px;
}

.proof-compare-eyebrow {
  margin: 0;
  color: #7a736a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-compare-header strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.proof-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.proof-compare-side {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.proof-compare-side-featured {
  background: linear-gradient(180deg, rgba(30, 32, 36, 0.99), rgba(18, 20, 23, 1));
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 38px rgba(12, 13, 15, 0.16);
}

.proof-compare-label {
  display: inline-block;
  color: #7a736a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-compare-side strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.72rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-compare-side p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.proof-compare-side-featured .proof-compare-label,
.proof-compare-side-featured p {
  color: #beb3a6;
}

.proof-compare-side-featured strong {
  color: #f3ece2;
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.proof-metric,
.authority-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.proof-metric p,
.authority-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.proof-metric p {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-metric strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.3rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.proof-metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.proof-metric-dark {
  min-height: 268px;
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.99), rgba(18, 20, 23, 1));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.proof-metric-dark p,
.proof-metric-dark span {
  color: #b9afa4;
}

.proof-metric-dark strong {
  color: #f3ece2;
}

.proof-metric-quote {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 24%, rgba(47, 74, 115, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.72), rgba(248, 243, 236, 0.58));
}

.proof-metric-quote strong {
  max-width: 18ch;
  font-size: clamp(1.7rem, 2vw, 2.4rem);
  line-height: 1.02;
}

.proof-image-card {
  position: relative;
  grid-column: span 2;
  min-height: 348px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.proof-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0) 44%, rgba(9, 10, 12, 0.38) 100%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 22%);
  pointer-events: none;
}

.proof-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-image-copy {
  position: absolute;
  left: 30px;
  right: auto;
  bottom: 28px;
  max-width: 26rem;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(22, 24, 28, 0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-image-copy p,
.proof-image-copy strong {
  color: #f1eadf;
}

.proof-image-copy p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-image-copy strong {
  display: block;
  margin-top: 10px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
}

.practitioner-proof-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 22px;
}

.practitioner-proof-card {
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.practitioner-proof-media {
  position: relative;
  overflow: hidden;
  height: 196px;
  margin: -6px 0 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.practitioner-proof-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(14, 11, 10, 0.12)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 26%);
  pointer-events: none;
}

.practitioner-proof-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.practitioner-proof-media-small {
  height: 162px;
  margin: 18px 0 18px;
}

.practitioner-proof-card-dark {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.practitioner-proof-card strong,
.practitioner-proof-list strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
}

.practitioner-proof-card strong {
  margin-top: 10px;
  font-size: clamp(2.8rem, 3vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.practitioner-proof-card h3,
.practitioner-proof-list strong {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.practitioner-proof-card p:last-of-type,
.practitioner-proof-list span {
  color: var(--muted);
  line-height: 1.64;
}

.practitioner-proof-card-dark strong,
.practitioner-proof-card-dark h3 {
  color: #f1e9de;
}

.practitioner-proof-card-dark p:last-of-type,
.practitioner-proof-card-dark span {
  color: #c4b9ac;
}

.practitioner-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.practitioner-proof-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8d0c4;
  font-size: 0.78rem;
  font-weight: 500;
}

.practitioner-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.practitioner-proof-list div {
  padding-top: 14px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.practitioner-proof-list strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.practitioner-proof-list span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
}

.authority-card-dark {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(31, 33, 37, 0.99), rgba(18, 19, 22, 1));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.authority-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.04;
}

.authority-card p:not(.eyebrow) {
  margin-top: 14px;
}

.authority-card-dark h3 {
  color: #efe8de;
}

.authority-card-knowledge {
  display: grid;
  gap: 18px;
}

.authority-inline-media,
.authority-wearable-media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.36);
}

.authority-inline-media {
  min-height: 214px;
  margin: 2px 0 0;
}

.authority-inline-image,
.authority-wearable-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.authority-inline-image {
  object-position: center;
}

.authority-inline-caption,
.authority-wearable-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(19, 20, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(16, 12, 10, 0.16);
}

.authority-inline-caption p,
.authority-wearable-caption p {
  margin: 0;
  color: rgba(229, 221, 210, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.authority-inline-caption strong,
.authority-wearable-caption strong {
  color: #f4ede2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.authority-chip-row-knowledge {
  gap: 8px;
  margin-top: 22px;
}

.authority-chip-row-knowledge span {
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8d0c4;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.authority-chip-row-knowledge strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-right: 6px;
}

.authority-wearable-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.authority-wearable-media {
  height: 220px;
  margin-top: 22px;
}

.authority-wearable-image {
  object-position: center 38%;
}

.authority-access-card {
  display: grid;
  gap: 8px;
  margin: 6px 0 2px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.72), rgba(247, 242, 235, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.authority-access-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.authority-access-card strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.authority-wearable-grid article {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.authority-wearable-grid strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.authority-wearable-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.authority-card-dark p:not(.eyebrow) {
  color: #b6aca0;
}

.authority-card-dark .eyebrow {
  color: #cabfb2;
}

.authority-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.authority-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.authority-stat strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.authority-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.authority-card-footnote {
  margin-top: 2px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.5;
}

.authority-image-wrap {
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.authority-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.advantage-card {
  padding: 34px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
}

.advantage-card-dark {
  background:
    linear-gradient(180deg, rgba(47, 50, 57, 0.98), rgba(21, 22, 25, 0.99));
  color: #efe6db;
}

.advantage-card-dark p {
  color: #c9beb2;
}

.advantage-card h3,
.editorial-card p {
  margin: 14px 0 14px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.switch-comparison {
  display: grid;
  grid-template-columns: 0.68fr 1fr 0.9fr;
  gap: 22px;
  align-items: start;
  padding: 34px 30px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(214, 230, 185, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.58), rgba(243, 237, 229, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 80px rgba(34, 28, 22, 0.08);
}

.switch-label-column {
  display: grid;
  gap: 0;
  padding: 66px 6px 0 2px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.switch-label-column span {
  display: flex;
  align-items: center;
  min-height: 61px;
  padding: 0 8px 0 0;
  border-top: 1px solid rgba(27, 22, 18, 0.06);
}

.switch-label-column span:first-child {
  border-top: 0;
}

.switch-label-column span::after {
  content: "i";
  display: inline-flex;
  width: 14px;
  height: 14px;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  border-radius: 50%;
  border: 1px solid rgba(27, 22, 18, 0.14);
  color: rgba(27, 22, 18, 0.52);
  font-size: 0.62rem;
  font-weight: 600;
  vertical-align: middle;
}

.switch-compare-card {
  min-height: auto;
  padding: 24px 24px 16px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(34, 28, 22, 0.08);
}

.switch-compare-card-primary {
  position: relative;
  z-index: 2;
  transform: translateY(-16px);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 26px 72px rgba(34, 28, 22, 0.11);
}

.switch-compare-card-muted {
  background: rgba(255, 251, 245, 0.5);
}

.switch-compare-title {
  margin: 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.switch-compare-title-muted {
  color: rgba(109, 103, 95, 0.78);
}

.switch-compare-stack {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.switch-compare-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  min-height: 61px;
  padding: 10px 0;
  border-top: 1px solid rgba(27, 22, 18, 0.06);
}

.switch-check {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 50%;
  color: #ffffff;
  background: #78a16c;
  font-size: 0.65rem;
  line-height: 1;
}

.switch-compare-item p {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.34;
}

.switch-compare-item-muted {
  grid-template-columns: 1fr;
  padding-left: 0;
  border-top-color: rgba(27, 22, 18, 0.05);
}

.switch-compare-item-muted p {
  color: rgba(79, 73, 67, 0.94);
  text-align: center;
}

.switch-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.persona-section {
  padding: 0 0 132px;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.persona-card {
  min-height: 248px;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(247, 242, 235, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 24px 60px rgba(34, 28, 22, 0.06);
}

.persona-card-media {
  position: relative;
  overflow: hidden;
  height: 114px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 234, 224, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.persona-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 40%, rgba(21, 22, 25, 0.32) 100%);
  pointer-events: none;
}

.persona-card-media-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.08);
}

.persona-card-media-dark::after {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.04), rgba(8, 9, 12, 0.34));
}

.persona-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.persona-card-image-app {
  object-position: center 34%;
}

.persona-card-image-dark {
  object-position: center 40%;
  filter: saturate(0.84) contrast(1.04);
}

.persona-card .eyebrow {
  margin-bottom: 18px;
}

.persona-card h3 {
  margin: 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.persona-card p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.persona-card-dark {
  background:
    radial-gradient(circle at 84% 22%, rgba(78, 111, 160, 0.16), transparent 30%),
    linear-gradient(180deg, #18191d, #23252c);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(17, 15, 14, 0.18);
}

.persona-card-dark h3,
.persona-card-dark p:last-child {
  color: #f4eee7;
}

.persona-card-dark p:last-child {
  color: rgba(244, 238, 231, 0.72);
}

.reimbursement-section,
.testimonials-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.reimbursement-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
  padding: 0 0 148px;
}

.reimbursement-copy h2,
.allocation-copy h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.reimbursement-copy p:not(.eyebrow),
.allocation-copy p:not(.eyebrow) {
  max-width: 46ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.reimbursement-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.reimbursement-steps span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-strong);
  font-weight: 500;
}

.reimbursement-steps span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1f2124;
  box-shadow: 0 0 0 5px rgba(31, 33, 36, 0.08);
}

.reimbursement-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.58), transparent 20%),
    linear-gradient(145deg, rgba(250, 246, 240, 0.92), rgba(230, 223, 213, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.reimbursement-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 239, 231, 0.64), rgba(244, 239, 231, 0.12) 54%, rgba(18, 18, 21, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(19, 16, 14, 0.12));
  pointer-events: none;
}

.reimbursement-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reimbursement-phone {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 480px;
  margin-left: auto;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, #131416, #090a0c);
  box-shadow: 0 32px 80px rgba(24, 20, 17, 0.18);
}

.reimbursement-phone-top {
  display: flex;
  justify-content: space-between;
  color: #b7aea2;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reimbursement-thread {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.reimbursement-bubble,
.reimbursement-card {
  max-width: 86%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #e8e0d5;
  line-height: 1.55;
}

.reimbursement-bubble-user {
  justify-self: end;
  background: rgba(247, 241, 232, 0.1);
}

.reimbursement-card {
  max-width: 92%;
  margin-top: 6px;
  background: linear-gradient(180deg, rgba(60, 165, 129, 0.16), rgba(60, 165, 129, 0.08));
  border-color: rgba(84, 208, 166, 0.14);
}

.reimbursement-card p {
  margin: 0;
  color: #a9d9c5;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reimbursement-card strong {
  display: block;
  margin-top: 10px;
  color: #eff3ed;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.28rem;
  line-height: 1.1;
}

.reimbursement-card::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 8px rgba(107, 175, 122, 0.4);
}

.coverage-list {
  display: grid;
  gap: 0;
  max-width: 1040px;
}

.coverage-list article {
  display: grid;
  grid-template-columns: 0.95fr 0.7fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.coverage-copy-block {
  display: grid;
  gap: 10px;
}

.coverage-copy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.coverage-copy-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(27, 22, 18, 0.06);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.coverage-list strong {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.16;
  text-align: center;
  text-transform: uppercase;
}

.coverage-status-negative {
  min-height: auto;
  max-width: 19ch;
  padding: 10px 14px;
  background: rgba(27, 22, 18, 0.05);
  border-color: rgba(27, 22, 18, 0.08);
  color: var(--text);
}

.coverage-list p {
  margin: 0;
  max-width: 34ch;
}

.coverage-visual {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.coverage-visual-diagnostics {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(232, 239, 252, 0.88));
}

.coverage-diagnostics-shell {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.coverage-diagnostics-top,
.coverage-diagnostics-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-diagnostics-top span,
.coverage-diagnostics-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 18px rgba(40, 33, 28, 0.05);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 600;
}

.coverage-diagnostics-readout {
  position: relative;
  min-height: 168px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(85, 109, 166, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(21, 23, 27, 0.96), rgba(30, 34, 42, 1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.coverage-diagnostics-readout::before,
.coverage-diagnostics-readout::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(215, 224, 244, 0.18);
}

.coverage-diagnostics-readout::after {
  inset: 42px;
  border-color: rgba(215, 224, 244, 0.24);
  box-shadow: 0 0 0 1px rgba(116, 143, 209, 0.1);
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-bridge-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 104px 0;
  text-align: center;
}

.cta-bridge-shell {
  max-width: 640px;
  margin: 0 auto;
}

.cta-bridge-shell h2 {
  margin: 16px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.cta-bridge-shell > p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.cta-bridge-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.coverage-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.testimonials-section {
  padding: 0 0 148px;
}

.testimonials-layout {
  display: grid;
  gap: 44px;
}

.testimonials-heading {
  margin-bottom: 0;
}

.testimonials-disclaimer {
  max-width: 42ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials-showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
}

.testimonial-video-stack {
  display: grid;
  gap: 28px;
}

.testimonial-video-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.testimonial-video-card-featured .testimonial-video-frame {
  min-height: 488px;
}

.testimonial-video-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 264px;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(31, 33, 38, 0.98), rgba(16, 17, 20, 1));
}

.testimonial-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: #0f1012;
  transition: opacity 180ms ease;
}

.testimonial-video-frame-secondary {
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(42, 42, 45, 0.96), rgba(20, 20, 22, 1));
}

.testimonial-video-frame-tertiary {
  background:
    radial-gradient(circle at 50% 26%, rgba(242, 228, 207, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(37, 35, 31, 0.98), rgba(18, 17, 16, 1));
}

.testimonial-video-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfc6bb;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-video-avatar {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(236, 228, 216, 0.18), rgba(154, 142, 127, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.testimonial-video-avatar span {
  color: #f2ebe1;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.testimonial-video-frame.is-playing .testimonial-video-element {
  opacity: 1;
}

.testimonial-video-frame.is-playing .testimonial-video-avatar {
  opacity: 0;
  transform: scale(0.94);
}

.testimonial-video-frame.is-playing .testimonial-video-badge {
  background: rgba(15, 16, 18, 0.48);
}

.testimonial-video-frame.is-missing .testimonial-play-button {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(242, 235, 225, 0.74);
}

.testimonial-play-button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f2ebe1;
  backdrop-filter: blur(14px);
}

.testimonial-play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #f2ebe1;
}

.testimonial-play-button span {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.testimonial-copy {
  display: grid;
  gap: 0;
  padding: 28px 30px 30px;
}

.testimonial-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.65;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: 28px;
}

.testimonial-meta strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

.editorial-image-asset {
  display: block;
  width: 100%;
}

.eyebrow-inverse {
  color: rgba(236, 231, 222, 0.7);
}

.whoop-membership-section {
  padding: 164px 0 116px;
  background:
    radial-gradient(circle at 50% 0%, rgba(57, 80, 128, 0.16), transparent 26%),
    linear-gradient(180deg, #060607 0%, #050506 100%);
}

.whoop-membership-shell {
  width: min(calc(100% - 56px), 1320px);
  margin: 0 auto;
}

.whoop-membership-heading {
  max-width: 920px;
  margin-bottom: 54px;
}

.whoop-membership-heading h2,
.whoop-app-copy h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #f6f0e8;
}

.whoop-membership-heading p:last-child,
.whoop-app-copy p {
  max-width: 48ch;
  margin: 18px 0 0;
  color: #b5ab9e;
  line-height: 1.7;
}

.whoop-membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.whoop-membership-card {
  display: flex;
  flex-direction: column;
  padding: 22px 18px 20px;
  border-radius: 30px;
  background: #f7f5f1;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.whoop-membership-card-featured {
  position: relative;
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 32px 72px rgba(27, 22, 18, 0.22);
  outline: 1px solid rgba(47, 74, 115, 0.35);
  outline-offset: -1px;
}

.whoop-membership-card-featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.whoop-plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e2b45, #2f4a73);
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(47, 74, 115, 0.35);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .whoop-membership-card-featured {
    transform: none;
    order: -1;
  }
  .whoop-membership-card-featured:hover {
    transform: translateY(-4px);
  }
}

.whoop-plan-visual {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-radius: 22px;
}

.whoop-plan-visual-core {
  background:
    radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(180deg, #f1ede7 0%, #e0ddd8 100%);
}

.whoop-plan-visual-plus {
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(180deg, #dbe3ea 0%, #ccd5de 100%);
}

.whoop-plan-visual-reserve {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 231, 203, 0.14), transparent 22%),
    radial-gradient(circle at 30% 82%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #111214 0%, #23201d 100%);
}

.whoop-plan-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(15, 14, 13, 0.08)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.whoop-plan-card-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.whoop-plan-card {
  display: block;
  width: min(88%, 302px);
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 28px 54px rgba(10, 10, 10, 0.18));
}

.whoop-plan-card-stack-care .whoop-plan-card-care {
  width: min(84%, 282px);
  transform: rotate(-8deg) translateY(6px);
}

.whoop-plan-card-stack-plus::before {
  content: "";
  position: absolute;
  width: min(74%, 244px);
  aspect-ratio: 1.6 / 1;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.22), rgba(18, 19, 22, 0.1));
  box-shadow: 0 24px 40px rgba(18, 19, 22, 0.1);
  transform: rotate(11deg) translate(54px, 8px);
}

.whoop-plan-card-stack-plus .whoop-plan-card-front {
  position: relative;
  z-index: 1;
  width: min(84%, 284px);
  transform: rotate(-6deg) translate(-6px, 3px);
}

.whoop-plan-card-stack-select .whoop-plan-card-select {
  position: relative;
  z-index: 1;
  width: min(90%, 308px);
  transform: rotate(-4deg) translateY(-2px);
}

.whoop-plan-card-halo {
  position: absolute;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(203, 164, 118, 0.24), rgba(203, 164, 118, 0.08) 48%, transparent 70%);
  filter: blur(10px);
  transform: translate(58px, 22px);
}

.whoop-plan-tier,
.whoop-plan-price {
  margin: 0;
  text-align: center;
}

.whoop-plan-kicker,
.whoop-plan-effective {
  margin: 0;
  text-align: center;
}

.whoop-plan-kicker {
  margin-top: 22px;
  color: #7a736a;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whoop-plan-tier {
  margin-top: 10px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #17181b;
}

.whoop-plan-price {
  margin-top: 4px;
  color: #464038;
  font-size: 0.94rem;
  font-weight: 600;
}

.whoop-plan-effective {
  margin-top: 6px;
  color: #8e8479;
  font-size: 0.88rem;
}

.whoop-plan-list {
  margin: 22px 0 0;
  padding: 0 10px;
  list-style: none;
  color: #24211d;
}

.whoop-plan-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.94rem;
  line-height: 1.42;
}

.whoop-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111214;
  box-shadow: 0 0 0 3px rgba(17, 18, 20, 0.08);
}

.whoop-button-primary,
.whoop-button-secondary,
.whoop-outline-button {
  width: 100%;
  margin-top: 12px;
  min-height: 54px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whoop-button-primary {
  background: #060708;
  color: #f6f1e9;
}

.whoop-button-secondary,
.whoop-outline-button {
  background: transparent;
  border-color: rgba(17, 18, 20, 0.28);
  color: #141518;
}

.whoop-plan-note {
  margin: 16px 0 0;
  color: #655f57;
  font-size: 0.9rem;
  text-align: center;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.plan-card {
  padding: 38px;
  border-radius: 26px;
  background: rgba(255, 251, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.plan-card-featured {
  background:
    linear-gradient(180deg, rgba(47, 50, 57, 0.98), rgba(21, 22, 25, 0.99));
  color: #f0e7dc;
  box-shadow: var(--shadow-strong);
}

.plan-card h3 {
  font-size: clamp(2.5rem, 3.4vw, 3.4rem);
}

.plan-summary {
  margin: 18px 0 24px;
  max-width: 36ch;
}

.plan-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.plan-card-featured .plan-summary,
.plan-card-featured li,
.plan-card-featured .plan-tier {
  color: #cfc3b7;
}

.plan-card-featured li {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.dark-zone {
  position: relative;
  padding: 0 0 88px;
  background:
    linear-gradient(180deg, #040405 0%, #111111 14%, #262423 46%, #353230 100%);
}

.dark-zone::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--dark));
  pointer-events: none;
  z-index: 1;
}

.dark-shell {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 12px), 1440px);
  margin: 0 auto;
  padding: 28px 28px 0;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(40, 40, 39, 0.22) 0%, rgba(38, 37, 36, 0.94) 16%, rgba(55, 52, 50, 0.98) 58%, rgba(61, 58, 55, 1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.3);
}

.dark-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 78%);
  pointer-events: none;
}

.whoop-app-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 32px;
  align-items: center;
  min-height: 660px;
  margin-bottom: 72px;
  padding: 76px 68px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #171717 0%, #1d1c1b 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.whoop-app-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
}

.whoop-outline-button {
  max-width: 280px;
  margin-top: 32px;
  color: #efe8de;
  border-color: rgba(255, 255, 255, 0.32);
}

.whoop-app-visual {
  position: relative;
  min-height: 480px;
}

.whoop-app-showcase-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.28);
}

.whoop-app-device {
  position: absolute;
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.24);
}

.whoop-app-band {
  left: 112px;
  top: 26px;
  width: 108px;
  height: 360px;
  border-radius: 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #1b1d20, #0d0f10);
}

.whoop-app-band::after {
  content: "V";
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.24);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.whoop-app-pod {
  left: 278px;
  top: 118px;
  width: 126px;
  height: 186px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(180deg, #34373b, #15171a);
}

.whoop-app-pod::after {
  content: "V";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
}

.whoop-app-phone {
  position: absolute;
  right: 10px;
  top: 16px;
  width: 210px;
  height: 428px;
  padding: 12px 12px 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #0d0e10, #050607);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.26);
}

.whoop-app-phone-notch {
  width: 74px;
  height: 16px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #060708;
}

.whoop-app-phone-screen {
  padding: 18px 16px 16px;
  background:
    radial-gradient(circle at 50% 28%, rgba(65, 217, 150, 0.22), transparent 26%),
    linear-gradient(180deg, #0d1011 0%, #0a0c0d 100%);
}

.whoop-app-date {
  color: #b4ada3;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whoop-app-score {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 18px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(57, 225, 146, 0.2), transparent 58%),
    radial-gradient(circle at center, rgba(146, 255, 212, 0.12), transparent 76%);
  border: 1px solid rgba(101, 239, 179, 0.18);
  color: #f5efe6;
}

.whoop-app-score span {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1;
}

.whoop-app-score small {
  color: #b0aba1;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whoop-app-chart {
  height: 46px;
  margin-top: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.whoop-app-chart-line {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(94, 212, 161, 0.16) 100%),
    linear-gradient(90deg, transparent 0%, transparent 14%, rgba(94, 212, 161, 0.7) 14%, rgba(94, 212, 161, 0.7) 16%, transparent 16%, transparent 28%, rgba(94, 212, 161, 0.7) 28%, rgba(94, 212, 161, 0.7) 34%, transparent 34%, transparent 42%, rgba(94, 212, 161, 0.7) 42%, rgba(94, 212, 161, 0.7) 48%, transparent 48%, transparent 66%, rgba(94, 212, 161, 0.7) 66%, rgba(94, 212, 161, 0.7) 70%, transparent 70%, transparent 100%);
}

.whoop-app-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.whoop-app-card strong {
  display: block;
  color: #f4eee4;
  font-size: 0.98rem;
  font-weight: 600;
}

.whoop-app-card p {
  margin: 10px 0 0;
  color: #b6aea4;
  font-size: 0.88rem;
  line-height: 1.55;
}

.allocation-section {
  padding: 0 26px 84px;
}

.allocation-copy {
  max-width: 760px;
}

.allocation-copy p:not(.eyebrow) {
  color: #b8afa3;
}

.allocation-copy h2 {
  color: #eee6da;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.allocation-card {
  min-height: 220px;
  padding: 30px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.allocation-card strong {
  display: block;
  color: #f1e8dc;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.allocation-card h3 {
  margin: 18px 0 10px;
  color: #dfd7cb;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.allocation-card p {
  margin: 0;
  color: #aea497;
  line-height: 1.65;
}

.allocation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.allocation-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #b9b0a4;
  font-size: 0.9rem;
}

.allocation-viz {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.allocation-donut {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
}

.allocation-donut-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    #f3ece2 0deg 252deg,
    #a2d3e8 252deg 324deg,
    #6b7d95 324deg 360deg
  );
  mask: radial-gradient(circle, transparent 92px, #000 93px);
  -webkit-mask: radial-gradient(circle, transparent 92px, #000 93px);
}

.allocation-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.allocation-donut-center span {
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.allocation-donut-center strong {
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.allocation-legend {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.allocation-legend-item {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.allocation-legend-dot {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  border-radius: 50%;
}

.allocation-legend-item-primary .allocation-legend-dot { background: #f3ece2; }
.allocation-legend-item-secondary .allocation-legend-dot { background: #a2d3e8; }
.allocation-legend-item-tertiary .allocation-legend-dot { background: #6b7d95; }

.allocation-legend-item strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.allocation-legend-item p {
  margin: 6px 0 0;
  color: rgba(243, 236, 226, 0.62);
  font-size: 0.92rem;
  line-height: 1.56;
}

@media (max-width: 900px) {
  .allocation-viz {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }
  .allocation-donut {
    width: 220px;
    height: 220px;
  }
  .allocation-donut-ring {
    mask: radial-gradient(circle, transparent 72px, #000 73px);
    -webkit-mask: radial-gradient(circle, transparent 72px, #000 73px);
  }
}

.editorial-section {
  display: grid;
  grid-template-columns: 1.52fr 0.68fr;
  gap: 18px;
  padding-bottom: 56px;
}

.editorial-feature {
  overflow: hidden;
  min-height: 560px;
  border-radius: 18px;
  background: #e6ded3;
  display: grid;
  grid-template-rows: 1fr auto;
}

.editorial-image-asset {
  min-height: 390px;
  object-fit: cover;
  background: #2f2f2f;
}

.editorial-copy {
  padding: 28px 24px 24px;
  background: #3a3938;
}

.editorial-copy h2 {
  max-width: 17ch;
  color: #f5f0e9;
  margin: 12px 0 16px;
}

.editorial-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.editorial-card {
  min-height: 200px;
  padding: 22px 18px;
  border-radius: 14px;
  background: #efe8de;
  color: #2d2823;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editorial-card p {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  line-height: 1.46;
}

.editorial-card span {
  align-self: end;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #47413c;
  color: #f3ece4;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  padding: 72px 26px 112px;
}

.section-heading-dark p,
.faq-list summary,
.faq-list p,
.footer-legal,
.footer-heading,
.footer-links-grid a {
  color: #bdb4a9;
}

.section-heading-dark h2 {
  max-width: 7ch;
  color: #d7cfc4;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 34px;
}

.faq-list details {
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 220ms ease, border-color 220ms ease;
}

.faq-list details:hover {
  background: rgba(255, 251, 245, 0.09);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-list details[open] {
  background: rgba(255, 251, 245, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding-right: 42px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 50%;
  background:
    linear-gradient(to right, transparent calc(50% - 1px), rgba(243, 236, 226, 0.7) calc(50% - 1px), rgba(243, 236, 226, 0.7) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(to bottom, transparent calc(50% - 1px), rgba(243, 236, 226, 0.7) calc(50% - 1px), rgba(243, 236, 226, 0.7) calc(50% + 1px), transparent calc(50% + 1px));
  transition: transform 260ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 14px 0 0;
  color: rgba(243, 236, 226, 0.72);
  font-size: 0.98rem;
  line-height: 1.62;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 86px;
  padding: 60px 26px 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand-column {
  max-width: 382px;
}

.footer-meta-column {
  display: grid;
  flex: 1;
  gap: 42px;
}

.footer-badge-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f3ede4;
  color: #4d4741;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-v2-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--dark-muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand {
  margin: 0 0 18px;
  color: #d3cbc0;
  font-size: 0.88rem;
}

.footer-brand-column h3 {
  margin: 0 0 24px;
  color: #d3cbc0;
  font-family: "Canela", serif;
  font-size: clamp(2.6rem, 3.4vw, 3.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.footer-signup {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  max-width: 228px;
  padding: 4px 4px 4px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-signup input {
  flex: 1;
  padding: 10px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #e3dbd0;
}

.footer-signup input::placeholder {
  color: #9b9288;
}

.footer-signup button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd5ca;
}

.footer-legal {
  margin: 0;
  font-size: 0.83rem;
  color: #9f968b;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 32px 42px;
}

.footer-links-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-heading {
  margin: 0 0 8px;
  color: #a89f93;
}

.footer-links-grid a {
  font-size: 0.95rem;
  color: #d0c8bd;
}

.footer-contact-row,
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-contact-row {
  padding-top: 4px;
}

.footer-contact-link {
  color: #d3cbc0;
  font-size: 0.94rem;
}

.footer-bottom-bar {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #92897e;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mobile-sticky-cta,
.mobile-sticky-cta-spacer {
  display: none;
}

body.waitlist-page {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.74), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(227, 201, 165, 0.3), transparent 20%),
    linear-gradient(180deg, #f4f0ea 0%, #e6ddd1 58%, #d9d1c6 100%);
}

.waitlist-hero,
.waitlist-benefits-section,
.waitlist-preview-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.waitlist-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  min-height: 88vh;
  padding: 108px 0 128px;
}

.waitlist-copy h1,
.waitlist-form-card h2,
.waitlist-dark-copy h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.waitlist-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 4.8vw, 5rem);
}

.waitlist-text {
  max-width: 38ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.waitlist-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.waitlist-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 500;
}

.waitlist-proof-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.waitlist-proof-list div {
  display: grid;
  gap: 4px;
}

.waitlist-proof-list strong,
.waitlist-benefit-card h3,
.waitlist-preview-card strong,
.waitlist-dark-steps strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.waitlist-proof-list strong {
  color: var(--text);
  font-size: 1.05rem;
}

.waitlist-proof-list span {
  color: var(--muted);
  line-height: 1.6;
}

.waitlist-form-shell {
  display: grid;
  gap: 22px;
}

.waitlist-form-card {
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.74), rgba(247, 242, 235, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.waitlist-form-card h2 {
  font-size: clamp(2.3rem, 3vw, 3rem);
}

.waitlist-form-card p:not(.eyebrow):not(.waitlist-form-note) {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.waitlist-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.waitlist-field,
.waitlist-interest-block {
  display: grid;
  gap: 8px;
}

.waitlist-field span,
.waitlist-field-label {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waitlist-field input {
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(27, 22, 18, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
}

.waitlist-field input::placeholder {
  color: #978d81;
}

.waitlist-interest-block {
  margin-top: 18px;
}

.waitlist-interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist-interest-chips button {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 22, 18, 0.1);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.waitlist-interest-chips button.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.waitlist-submit {
  width: 100%;
  margin-top: 24px;
}

.waitlist-form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.waitlist-visual-card {
  overflow: hidden;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(145deg, rgba(245, 240, 232, 0.96), rgba(226, 219, 208, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.waitlist-visual-card-top span,
.waitlist-preview-kicker,
.waitlist-dark-steps span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist-visual-card-top strong {
  display: block;
  max-width: 18ch;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.waitlist-visual-stack {
  position: relative;
  min-height: 430px;
  margin-top: 20px;
}

.waitlist-monitor-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(20, 16, 13, 0.14);
}

.waitlist-phone {
  position: absolute;
  right: 16px;
  bottom: 2px;
  width: 178px;
  height: 364px;
}

.waitlist-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, #0e1012, #050607);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.waitlist-phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 76px;
  height: 16px;
  border-radius: 999px;
  background: #050608;
  transform: translateX(-50%);
  z-index: 1;
}

.waitlist-phone-screen {
  display: block;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  margin: 9px;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.waitlist-card-object {
  position: absolute;
  right: 132px;
  bottom: 12px;
  width: 160px;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(20, 16, 13, 0.18);
  transform: rotate(-10deg);
}

.waitlist-benefits-section,
.waitlist-preview-section {
  padding: 0 0 132px;
}

.waitlist-benefits-grid,
.waitlist-preview-grid {
  display: grid;
  gap: 22px;
}

.waitlist-benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.waitlist-benefit-card,
.waitlist-preview-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.waitlist-benefit-card h3 {
  margin: 12px 0 10px;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.08;
}

.waitlist-benefit-card p:last-child,
.waitlist-preview-card p:last-child,
.waitlist-dark-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.waitlist-preview-card {
  display: grid;
  gap: 8px;
}

.waitlist-preview-card strong {
  color: var(--text);
  font-size: 2rem;
}

.waitlist-preview-card span {
  color: var(--muted-strong);
  font-weight: 500;
}

.waitlist-preview-card-featured {
  background: linear-gradient(180deg, rgba(32, 34, 39, 0.98), rgba(19, 20, 23, 0.99));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
}

.waitlist-preview-card-featured .waitlist-preview-kicker,
.waitlist-preview-card-featured span,
.waitlist-preview-card-featured p:last-child {
  color: #c9beb2;
}

.waitlist-preview-card-featured strong {
  color: #f4ece2;
}

.waitlist-dark-zone {
  padding-top: 0;
}

.waitlist-dark-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 30px;
  margin-bottom: 68px;
  padding: 68px 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #171717 0%, #1d1c1b 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.waitlist-dark-copy h2 {
  max-width: 11ch;
  color: #f3ece3;
  font-size: clamp(2.8rem, 4vw, 4rem);
}

.waitlist-dark-copy p:last-child {
  max-width: 34ch;
  margin: 18px 0 0;
  color: #bbb1a5;
  line-height: 1.68;
}

.waitlist-dark-steps {
  display: grid;
  gap: 16px;
}

.waitlist-dark-steps article {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.waitlist-dark-steps strong {
  display: block;
  margin: 10px 0 8px;
  color: #f1e8dc;
  font-size: 1.18rem;
}

body.select-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 243, 239, 0.48), transparent 24%),
    linear-gradient(180deg, #f4f0ea 0%, #e6ddd1 52%, #d8d0c5 100%);
}

body.about-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.76), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(227, 201, 165, 0.16), transparent 20%),
    linear-gradient(180deg, #f5f1eb 0%, #e7ded3 54%, #ddd4c9 100%);
}

.about-hero,
.about-story-section,
.about-beliefs-section,
.about-intelligence-section,
.about-team-section,
.about-principles-section,
.about-cta-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

/* PRINCIPLES — moved from homepage to /about (2026-04-20 audit) */
.about-principles-section { padding: 96px 0 80px; }
.about-principles-list { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(20,20,20,.08); }
.about-principle { display: grid; grid-template-columns: 64px 1fr 180px; align-items: center; gap: 32px; padding: 36px 0; border-bottom: 1px solid rgba(20,20,20,.08); }
.about-principle-idx { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.about-principle blockquote { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.35; letter-spacing: -0.012em; color: #141414; }
.about-principle blockquote em { font-family: inherit; font-style: italic; }
.about-principle-tag { font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); text-align: right; }
@media (max-width: 820px) {
  .about-principles-section { padding: 64px 0 56px; }
  .about-principle { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .about-principle-tag { text-align: left; }
}

.about-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
  min-height: 92vh;
  padding: 112px 0 128px;
}

.about-hero-copy h1 {
  margin: 16px 0 0;
  max-width: 9.6ch;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(4rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.about-hero-text,
.about-hero-note,
.about-story-card p,
.about-belief-card p,
.about-intelligence-card p,
.about-team-card p,
.about-cta-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.about-hero-text {
  max-width: 39ch;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.about-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
  margin-top: 20px;
}

.about-chip-row span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.about-hero-note {
  max-width: 40ch;
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.about-hero-visual {
  position: relative;
  min-height: 640px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    radial-gradient(circle at 24% 76%, rgba(47, 74, 115, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(245, 240, 232, 0.96), rgba(226, 219, 208, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.about-hero-panel {
  position: absolute;
  z-index: 2;
  padding: 24px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: 0 22px 64px rgba(34, 28, 22, 0.1);
}

.about-hero-panel h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.88rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.about-hero-panel p:last-child {
  margin: 14px 0 0;
}

.about-hero-panel-dark {
  top: 28px;
  left: 28px;
  right: 188px;
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
}

.about-hero-panel-dark h2,
.about-hero-panel-dark p:last-child {
  color: #f1e9de;
}

.about-hero-panel-dark p:last-child {
  color: #c4b9ac;
}

.about-hero-panel-light {
  right: 32px;
  left: 212px;
  bottom: 34px;
  background: rgba(255, 251, 245, 0.76);
  backdrop-filter: blur(16px);
}

.about-hero-panel-light strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.26rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-hero-image-shell {
  position: absolute;
  right: 28px;
  bottom: 116px;
  left: 116px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 82px rgba(17, 14, 11, 0.18);
}

.about-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.about-story-section,
.about-beliefs-section,
.about-intelligence-section,
.about-team-section,
.about-cta-section {
  padding: 0 0 132px;
}

.about-story-grid,
.about-intelligence-grid,
.about-team-shell {
  display: grid;
  gap: 24px;
}

.about-story-grid {
  grid-template-columns: 1.04fr 0.82fr 0.78fr;
}

.about-story-card,
.about-belief-card,
.about-intelligence-card,
.about-team-card,
.about-cta-card {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.about-story-card,
.about-belief-card,
.about-intelligence-card,
.about-team-card {
  padding: 30px 28px;
  background: rgba(255, 251, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.about-story-card p {
  margin: 0;
}

.about-story-card p + p {
  margin-top: 18px;
}

.about-story-card-stats {
  background:
    radial-gradient(circle at 82% 22%, rgba(47, 74, 115, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.82), rgba(247, 242, 235, 0.72));
}

.about-story-card-visual {
  padding: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(34, 37, 44, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.8), rgba(247, 242, 235, 0.7));
}

.about-story-media-shell {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.about-story-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(15, 12, 10, 0.18)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 28%);
  pointer-events: none;
}

.about-story-media-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.about-story-media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(22, 23, 27, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(16, 12, 10, 0.16);
}

.about-story-media-copy p {
  margin: 0;
  color: rgba(229, 221, 210, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-story-media-copy strong {
  color: #f4ede2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.about-story-stats div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.about-story-stats strong,
.about-intelligence-stats strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.about-story-stats strong {
  font-size: 1.48rem;
}

.about-story-stats span,
.about-intelligence-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.about-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-beliefs-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.about-beliefs-strip-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-soft);
}

.about-beliefs-strip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(18, 15, 13, 0.18)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 30%);
  pointer-events: none;
}

.about-beliefs-strip-card-dark {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.about-beliefs-strip-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 248px;
  object-fit: cover;
  object-position: center;
}

.about-beliefs-strip-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 40px rgba(16, 12, 10, 0.12);
}

.about-beliefs-strip-card-dark .about-beliefs-strip-copy {
  background: rgba(20, 21, 25, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

.about-beliefs-strip-copy p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-beliefs-strip-copy strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.about-beliefs-strip-card-dark .about-beliefs-strip-copy p {
  color: rgba(214, 206, 195, 0.76);
}

.about-beliefs-strip-card-dark .about-beliefs-strip-copy strong {
  color: #f4ede2;
}

.about-belief-card h3,
.about-team-card h3,
.about-intelligence-card h3 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.about-belief-card p:last-child,
.about-team-card p:last-child,
.about-intelligence-card p:last-child {
  margin: 14px 0 0;
}

.about-belief-card-dark,
.about-team-card-dark,
.about-intelligence-card-dark {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.about-belief-card-dark h3,
.about-team-card-dark h3,
.about-intelligence-card-dark h3,
.about-intelligence-card-dark strong {
  color: #f1e9de;
}

.about-belief-card-dark p:last-child,
.about-team-card-dark p:last-child,
.about-intelligence-card-dark p:last-child,
.about-intelligence-card-dark span {
  color: #c4b9ac;
}

.about-intelligence-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.about-intelligence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.about-intelligence-stats div {
  padding: 18px 16px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-intelligence-stats strong {
  font-size: 1.5rem;
}

.about-intelligence-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.about-intelligence-list li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-top: 1px solid rgba(27, 22, 18, 0.06);
  color: var(--muted-strong);
  line-height: 1.55;
}

.about-intelligence-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #17191c;
}

.about-intelligence-image {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.about-team-shell {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-team-image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}

.about-cta-card {
  display: grid;
  grid-template-columns: 1.04fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 34px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.76), rgba(247, 242, 235, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.about-cta-copy h2 {
  margin: 12px 0 0;
  max-width: 12ch;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.6rem, 3.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.about-cta-copy p:last-child {
  max-width: 42ch;
  margin: 16px 0 0;
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.select-hero,
.select-problem,
.select-included,
.select-screening,
.select-compare,
.select-investment {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

.select-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  min-height: 92vh;
  padding: 110px 0 126px;
}

.select-coming,
.select-hero-note {
  color: var(--muted);
}

.select-coming {
  margin: 18px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.select-hero-copy .eyebrow .select-coming,
.select-hero-copy .eyebrow + .select-coming {
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(47, 74, 115, 0.12);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-hero-copy h1 {
  margin: 18px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(4rem, 5vw, 5.3rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.94;
  max-width: 9ch;
}

.select-hero-text {
  max-width: 38ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.select-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.select-hero-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(250, 246, 240, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.select-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.select-hero-note {
  margin: 18px 0 0;
  font-size: 0.94rem;
}

.select-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.select-stat-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.select-stat-card strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.select-stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.46;
}

.select-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.76), transparent 20%),
    radial-gradient(circle at 28% 78%, rgba(88, 126, 195, 0.14), transparent 24%),
    linear-gradient(145deg, rgba(245, 240, 232, 0.96), rgba(226, 219, 208, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.select-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 14, 12, 0.12)),
    linear-gradient(110deg, rgba(245, 240, 232, 0.48), transparent 28%, rgba(255, 255, 255, 0.08) 74%, rgba(15, 15, 17, 0.16) 100%);
  pointer-events: none;
}

.select-hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
}

.select-hero-card {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 230px;
  padding: 24px 24px 22px;
  border-radius: 22px;
  background: rgba(250, 246, 240, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

.select-hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.select-hero-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.16;
}

.select-hero-card-main {
  top: 34px;
}

.select-hero-card-alt {
  top: 170px;
  right: 300px;
  left: 84px;
}

.select-hero-phone {
  position: absolute;
  z-index: 2;
  right: 42px;
  top: 54px;
  width: 236px;
  height: 492px;
  padding: 12px 12px 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #121315, #050607);
  box-shadow: 0 42px 90px rgba(24, 20, 17, 0.24);
}

.select-hero-phone-top {
  width: 78px;
  height: 16px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #070809;
}

.select-hero-phone-screen {
  height: calc(100% - 26px);
  padding: 24px 18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 22%, rgba(86, 221, 169, 0.22), transparent 24%),
    linear-gradient(180deg, #101214 0%, #0a0c0d 100%);
}

.select-hero-orb {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 12px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(82, 223, 161, 0.16), transparent 60%),
    radial-gradient(circle at center, rgba(178, 255, 220, 0.12), transparent 78%);
  border: 1px solid rgba(118, 241, 187, 0.16);
}

.select-hero-orb span {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f3eee7;
}

.select-hero-orb small {
  color: #ada69a;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-hero-row {
  height: 18px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.select-hero-row-short {
  width: 70%;
}

.select-problem,
.select-included,
.select-screening,
.select-compare,
.select-investment {
  padding: 0 0 132px;
}

.select-problem-grid,
.select-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.select-problem-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
  margin-top: 22px;
}

.select-problem-card,
.select-feature-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.select-problem-card p,
.select-feature-card p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.68;
}

.select-problem-media,
.select-screening-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.select-problem-media {
  min-height: 268px;
}

.select-problem-media-wide {
  min-height: 320px;
}

.select-problem-media img,
.select-feature-media img,
.select-screening-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.select-problem-media::after,
.select-feature-media::after,
.select-screening-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(14, 12, 11, 0.26)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.select-problem-media-copy,
.select-screening-visual-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(20, 21, 24, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.select-problem-media-copy p,
.select-screening-visual-copy p {
  margin: 0;
  color: #c8beb2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-problem-media-copy strong,
.select-screening-visual-copy strong {
  display: block;
  margin-top: 8px;
  color: #f4ede4;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.select-feature-card h3 {
  margin: 0 0 12px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.select-feature-card-media {
  padding: 0;
  overflow: hidden;
}

.select-feature-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.select-feature-copy {
  padding: 24px 26px 26px;
}

.select-screening-visual {
  min-height: 360px;
  margin-bottom: 24px;
}

.select-screening-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.select-screening-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.select-screening-card-dark {
  background: linear-gradient(180deg, rgba(40, 42, 47, 0.98), rgba(20, 21, 24, 0.99));
  color: #efe7db;
}

.select-screening-card-dark .eyebrow {
  color: #cfc3b6;
}

.select-screening-card ul,
.select-investment-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.select-screening-card li,
.select-investment-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted-strong);
  line-height: 1.55;
}

.select-screening-card-dark li {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #d6cabd;
}

.select-screening-card strong {
  display: block;
  margin-top: 20px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.select-screening-card-dark strong {
  color: #f2eadf;
}

.select-compare-table {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.select-compare-head,
.select-compare-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 22px 26px;
}

.select-compare-head {
  background: rgba(255, 255, 255, 0.42);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-compare-row {
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.select-compare-row span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.52;
}

.select-compare-row strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.52;
}

.select-investment-card {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(40, 42, 47, 0.98), rgba(20, 21, 24, 0.99));
  box-shadow: var(--shadow-strong);
}

.select-investment-copy h2,
.select-investment-breakdown strong,
.select-price strong {
  color: #f3ece3;
}

.select-investment-copy h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.96;
  max-width: 10ch;
}

.select-investment-copy p:not(.eyebrow):not(.select-hero-note) {
  max-width: 38ch;
  margin: 18px 0 0;
  color: #bbb1a5;
  line-height: 1.68;
}

.select-investment-copy .select-hero-note {
  color: #a79f94;
}

.select-waitlist-form {
  display: grid;
  gap: 14px;
  max-width: 380px;
  margin-top: 24px;
}

.select-waitlist-field {
  display: grid;
  gap: 8px;
}

.select-waitlist-field span {
  color: #d6cabd;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.select-waitlist-field input {
  min-height: 56px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #f0e9df;
}

.select-waitlist-field input::placeholder {
  color: #9e958a;
}

.select-investment-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.select-investment-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(10, 9, 9, 0.22)),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
}

.select-investment-image {
  display: block;
  width: 100%;
  height: 196px;
  object-fit: cover;
  object-position: center;
}

.select-investment-media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(17, 18, 21, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.select-investment-media-copy p {
  margin: 0;
  color: #bdb3a7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-investment-media-copy strong {
  display: block;
  margin-top: 8px;
  color: #f3ece3;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.select-price,
.select-breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.select-price {
  padding-top: 0;
  border-top: 0;
}

.select-price span,
.select-breakdown-row span {
  color: #bfb5a9;
  line-height: 1.5;
}

.select-price strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.select-breakdown-row strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
}

.select-investment-note {
  margin: 16px 0 0;
  color: #aa9f92;
  font-size: 0.92rem;
  line-height: 1.6;
}

.select-investment-list li {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #d7cdc1;
}

.select-dark-zone {
  padding-top: 0;
}

.is-scrolled {
  top: 12px;
  padding: 15px 30px;
  background: rgba(243, 237, 228, 0.82);
  border-color: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(24px) saturate(136%);
  -webkit-backdrop-filter: blur(24px) saturate(136%);
  box-shadow:
    0 14px 42px rgba(24, 20, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.is-scrolled::before {
  opacity: 0.92;
}

/* Universal card hover lift */
.ramp-suite-card,
.persona-card,
.how-step-card,
.whoop-membership-card,
.compare-covered-card,
.select-feature-card,
.wearable-pillar {
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ramp-suite-card:hover,
.persona-card:hover,
.how-step-card:hover,
.whoop-membership-card:hover,
.compare-covered-card:hover,
.select-feature-card:hover,
.wearable-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(27, 22, 18, 0.12);
}

/* Wearable section */
.wearable-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 120px;
}

.wearable-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  margin-top: 44px;
}

.wearable-media-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.wearable-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.wearable-media-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(21, 22, 25, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wearable-media-caption p {
  margin: 0;
  color: rgba(243, 236, 226, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wearable-media-caption strong {
  display: block;
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wearable-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wearable-pillar {
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
}

.wearable-pillar-index {
  display: inline-block;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.wearable-pillar strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.wearable-pillar p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.wearable-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0.74;
}

.wearable-logo-row span {
  padding: 4px 0;
}

@media (max-width: 900px) {
  .wearable-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .wearable-media-card {
    min-height: 320px;
  }
  .wearable-logo-row {
    gap: 20px;
    font-size: 0.88rem;
  }
}

/* Authority solo card */
.authority-card-solo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 52px;
  border-radius: 32px;
  margin-top: 44px;
}

.authority-card-solo .authority-card-content {
  min-width: 0;
}

.authority-card-solo .authority-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.authority-card-solo .authority-image-wrap {
  position: relative;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

.authority-card-solo .authority-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .authority-card-solo {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }
  .authority-card-solo .authority-image-wrap {
    min-height: 280px;
  }
}

/* Giant footer wordmark */
.footer-wordmark {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(243, 236, 226, 0.08);
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.footer-wordmark span {
  font-size: clamp(4rem, 14vw, 10rem);
  text-transform: lowercase;
}

.footer-wordmark em {
  color: rgba(243, 236, 226, 0.06);
  font-size: clamp(3.4rem, 12vw, 8.6rem);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .footer-wordmark {
    margin-top: 40px;
    padding-top: 24px;
  }
}

/* Scroll fade animations */
[data-scroll-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

[data-scroll-fade].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-fade] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .hero-section,
  .reimbursement-section,
  .select-hero,
  .about-hero,
  .about-story-grid,
  .about-intelligence-grid,
  .about-cta-card,
  .select-investment-card,
  .faq-section,
  .editorial-section,
  .whoop-app-panel {
    grid-template-columns: 1fr;
  }

  .select-problem-grid,
  .select-feature-grid,
  .select-screening-grid,
  .about-beliefs-strip,
  .about-beliefs-grid,
  .about-team-shell,
  .proof-board,
  .how-it-works-grid,
  .authority-grid,
  .ramp-suite-grid,
  .whoop-membership-grid,
  .advantage-grid,
  .plans-grid,
  .switch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ramp-suite-card-hero {
    grid-column: auto;
  }

  .select-problem-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .select-problem-media-wide {
    grid-column: span 2;
  }

  .testimonials-showcase {
    grid-template-columns: 1fr;
  }

  .testimonial-video-card-featured .testimonial-video-frame {
    min-height: 380px;
  }

  .coverage-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer {
    flex-direction: column;
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .authority-card-dark {
    grid-row: auto;
  }

  .whoop-app-visual {
    min-height: 430px;
  }

  .footer-badge-row {
    justify-content: flex-start;
  }

  .reimbursement-visual {
    min-height: auto;
  }

  .allocation-grid {
    grid-template-columns: 1fr;
  }

  .select-hero-visual {
    min-height: 560px;
  }

  .about-hero {
    min-height: auto;
    padding-bottom: 116px;
  }

  .about-hero-visual {
    min-height: 620px;
  }

  .about-story-card-stats,
  .about-intelligence-card-dark {
    order: -1;
  }

  .about-story-card-visual {
    padding: 14px;
  }

  .about-story-media-image {
    min-height: 280px;
  }

  .about-belief-card-dark,
  .about-team-card-dark {
    grid-column: span 2;
  }

  .select-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .select-waitlist-form {
    max-width: 100%;
  }

  .select-compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .select-compare-head,
  .select-compare-row {
    grid-template-columns: 1.2fr repeat(3, minmax(180px, 1fr));
    min-width: 720px;
  }

  .switch-comparison {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .persona-card-dark {
    grid-column: span 2;
  }

  .switch-label-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    padding: 0;
  }

  .switch-compare-card-primary {
    min-height: auto;
    transform: none;
  }

  .switch-compare-card {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
  }

  .hero-section {
    min-height: auto;
    padding-top: 72px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-stage,
  .hero-editorial,
  .phone-shell,
  .hero-proof-bar {
    position: static;
    width: 100%;
    right: auto;
    left: auto;
  }

  .hero-editorial,
  .phone-shell,
  .hero-proof-bar {
    margin-top: 16px;
  }

  .hero-proof-bar {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-metric-dark,
  .proof-metric-quote {
    grid-column: auto;
    grid-row: auto;
  }

  .whoop-app-panel {
    padding: 38px 28px;
    min-height: auto;
  }

  .whoop-app-visual {
    min-height: 520px;
  }

  .whoop-app-band {
    left: 18px;
  }

  .whoop-app-pod {
    left: 150px;
    top: 138px;
  }

  .whoop-app-phone {
    right: 0;
  }

  .site-footer {
    gap: 48px;
  }

  .footer-contact-row,
  .footer-bottom-bar {
    justify-content: flex-start;
  }

  .reimbursement-section {
    gap: 28px;
  }

  .reimbursement-phone {
    margin: 0;
    max-width: 100%;
  }

  .reimbursement-scene-image {
    object-position: center top;
  }

  .switch-label-column {
    grid-template-columns: 1fr;
  }

  .select-hero {
    min-height: auto;
    gap: 28px;
    padding-top: 76px;
    padding-bottom: 104px;
  }

  .select-hero-text {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.62;
  }

  .select-hero-chips {
    gap: 8px;
    margin-top: 16px;
  }

  .select-hero-chips span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .select-hero-actions {
    flex-direction: column;
  }

  .select-stat-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }

  .select-problem-grid,
  .select-feature-grid,
  .select-screening-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .select-problem-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .select-problem-media-wide {
    grid-column: auto;
  }

  .select-waitlist-form {
    max-width: 100%;
  }

  .select-investment-card {
    gap: 20px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .select-investment-media {
    margin-bottom: 16px;
    border-radius: 20px;
  }

  .select-investment-image {
    height: 180px;
  }

  .select-investment-copy h2 {
    max-width: none;
    font-size: clamp(2.4rem, 8vw, 3.1rem);
  }

  .select-investment-copy p:not(.eyebrow):not(.select-hero-note) {
    max-width: none;
  }

  .select-investment-list {
    margin-top: 16px;
  }

  .select-problem-media {
    min-height: 260px;
  }

  .select-problem-media-wide {
    min-height: 300px;
  }

  .select-screening-visual {
    min-height: 300px;
    margin-bottom: 18px;
  }

  .select-feature-media {
    height: 180px;
  }

  .select-hero-card {
    right: 24px;
    padding: 20px;
  }

  .select-hero-card-alt {
    right: 180px;
    left: 50px;
  }

  .select-hero-phone {
    right: 18px;
    top: 176px;
    width: 200px;
    height: 420px;
  }

  .about-hero {
    gap: 28px;
    padding-top: 88px;
    padding-bottom: 104px;
  }

  .about-hero-text,
  .about-hero-note {
    max-width: 100%;
  }

  .about-hero-visual {
    min-height: 620px;
  }

  .about-hero-panel-dark {
    right: 30px;
  }

  .about-hero-panel-light {
    left: 150px;
  }

  .about-hero-image-shell {
    left: 70px;
    bottom: 104px;
  }

  .about-story-section,
  .about-beliefs-section,
  .about-intelligence-section,
  .about-team-section,
  .about-cta-section {
    padding-bottom: 104px;
  }

  .about-beliefs-grid,
  .about-team-shell {
    gap: 18px;
  }

  .about-beliefs-strip {
    gap: 16px;
    margin-bottom: 18px;
  }

  .about-story-card,
  .about-belief-card,
  .about-intelligence-card,
  .about-team-card,
  .about-cta-card {
    padding: 26px 24px;
  }

  .about-story-stats,
  .about-intelligence-stats {
    gap: 10px;
  }

  .authority-inline-media,
  .authority-wearable-media {
    border-radius: 18px;
  }

  .authority-inline-caption,
  .authority-wearable-caption,
  .about-story-media-copy,
  .about-beliefs-strip-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-section,
  .reimbursement-section,
  .testimonials-section,
  .select-hero,
  .select-problem,
  .select-included,
  .select-screening,
  .select-compare,
  .select-investment,
  .about-hero,
  .about-story-section,
  .about-beliefs-section,
  .about-intelligence-section,
  .about-team-section,
  .about-cta-section,
  .model-section,
  .proof-section,
  .how-it-works-section,
  .authority-section,
  .persona-section,
  .switch-section,
  .coverage-section,
  .faq-section,
  .site-footer {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-copy h1,
  .section-heading h2,
  .editorial-copy h2,
  .faq-section h2 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .button {
    width: 100%;
  }

  .site-header {
    overflow: visible;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    order: 2;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-radius: 18px;
    background: rgba(21, 22, 25, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    z-index: 30;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    display: block;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  .site-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header > .button {
    order: 3;
  }

  .coverage-list strong {
    font-size: 1.7rem;
  }

  .dark-shell {
    width: min(calc(100% - 8px), 1440px);
    padding: 12px 12px 0;
  }

  .whoop-membership-shell {
    width: min(calc(100% - 24px), 1320px);
  }

  .whoop-membership-heading h2,
  .whoop-app-copy h2 {
    font-size: clamp(2.7rem, 11vw, 3.5rem);
  }

  .whoop-membership-card {
    padding: 14px 12px 14px;
  }

  .whoop-plan-tier {
    font-size: 1.7rem;
    letter-spacing: 0.16em;
  }

  .whoop-app-panel {
    padding: 30px 18px;
  }

  .whoop-app-visual {
    min-height: 460px;
  }

  .whoop-app-band {
    width: 84px;
    height: 280px;
  }

  .whoop-app-pod {
    left: 112px;
    top: 114px;
    width: 92px;
    height: 140px;
  }

  .whoop-app-phone {
    width: 172px;
    height: 360px;
  }

  .footer-meta-column {
    gap: 28px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .how-step-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .how-step-visual {
    min-height: 172px;
    padding: 16px;
  }

  .footer-brand-column h3 {
    font-size: 2.35rem;
  }

  .footer-bottom-bar {
    padding-top: 18px;
    font-size: 0.72rem;
  }

  .reimbursement-section,
  .testimonials-section {
    padding-bottom: 104px;
  }

  .proof-section,
  .how-it-works-section,
  .authority-section,
  .persona-section {
    padding: 104px 0;
  }

  .proof-metric,
  .authority-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .proof-copy h2 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .authority-card h3 {
    font-size: 1.42rem;
  }

  .reimbursement-visual {
    padding: 14px;
    border-radius: 24px;
  }

  .reimbursement-visual::after {
    background:
      linear-gradient(180deg, rgba(244, 239, 231, 0.22), rgba(18, 16, 15, 0.18)),
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(19, 16, 14, 0.1));
  }

  .reimbursement-phone {
    padding: 16px;
    border-radius: 24px;
  }

  .testimonial-video-frame {
    min-height: 236px;
  }

  .testimonial-video-card-featured .testimonial-video-frame {
    min-height: 320px;
  }

  .testimonial-copy {
    padding: 24px;
  }

  .testimonial-video-avatar {
    width: 112px;
    height: 112px;
  }

  .allocation-section {
    padding: 0 8px 52px;
  }

  .allocation-card {
    min-height: auto;
    padding: 22px 18px;
  }

  .allocation-tags span {
    width: 100%;
    justify-content: center;
  }

  .switch-comparison {
    padding: 20px 14px 0;
    border-radius: 24px;
  }

  .switch-compare-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .switch-compare-title {
    font-size: 2rem;
  }

  .switch-compare-item {
    min-height: auto;
  }

  .select-hero-copy h1 {
    font-size: clamp(3.1rem, 12vw, 4.2rem);
  }

  .select-hero {
    gap: 22px;
    padding: 92px 0 88px;
  }

  .select-hero-text,
  .select-hero-note {
    max-width: 100%;
  }

  .select-hero-text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .select-hero-note {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .select-hero-chips {
    gap: 7px;
    max-width: none;
    margin-top: 14px;
  }

  .select-hero-chips span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .select-stat-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .select-waitlist-form {
    gap: 12px;
    margin-top: 20px;
  }

  .select-waitlist-field span {
    font-size: 0.74rem;
  }

  .select-waitlist-field input {
    min-height: 52px;
    border-radius: 14px;
  }

  .select-waitlist-form .button {
    min-height: 50px;
  }

  .select-stat-card {
    padding: 16px 16px 14px;
    border-radius: 16px;
  }

  .select-stat-card strong {
    font-size: 1.18rem;
  }

  .select-stat-card span {
    font-size: 0.82rem;
  }

  .select-hero-visual {
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
  }

  .select-hero-scene {
    object-position: center 18%;
  }

  .select-hero-card {
    top: 14px;
    left: 14px;
    right: 14px;
    padding: 16px 16px 14px;
    border-radius: 16px;
  }

  .select-hero-card strong {
    font-size: 1.04rem;
  }

  .select-hero-card-alt {
    display: none;
  }

  .select-hero-phone {
    right: 14px;
    top: 122px;
    width: 150px;
    height: 308px;
  }

  .select-hero-orb {
    width: 112px;
    height: 112px;
  }

  .select-hero-orb span {
    font-size: 1.72rem;
  }

  .select-hero-row {
    height: 16px;
    margin-top: 14px;
  }

  .select-problem,
  .select-included,
  .select-screening,
  .select-compare,
  .select-investment {
    padding-bottom: 88px;
  }

  .select-problem-card,
  .select-feature-card,
  .select-screening-card,
  .select-investment-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .select-investment-media {
    margin-bottom: 14px;
    border-radius: 18px;
  }

  .select-investment-image {
    height: 156px;
  }

  .select-investment-media-copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 12px 11px;
    border-radius: 14px;
  }

  .select-investment-media-copy strong {
    font-size: 0.96rem;
  }

  .select-feature-card h3 {
    font-size: 1.18rem;
  }

  .select-feature-card-media {
    padding: 0;
  }

  .select-feature-media {
    height: 156px;
  }

  .select-feature-copy {
    padding: 18px 18px 20px;
  }

  .select-problem-media,
  .select-problem-media-wide,
  .select-screening-visual {
    min-height: 236px;
    border-radius: 20px;
  }

  .select-problem-media-copy,
  .select-screening-visual-copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 12px 11px;
    border-radius: 14px;
  }

  .select-problem-media-copy strong,
  .select-screening-visual-copy strong {
    font-size: 0.96rem;
  }

  .select-problem-card p,
  .select-feature-card p,
  .select-screening-card li {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .select-price,
  .select-breakdown-row {
    flex-direction: column;
  }

  .select-compare-head,
  .select-compare-row {
    gap: 10px;
    padding: 18px 18px;
  }

  .select-compare-row span,
  .select-compare-row strong {
    font-size: 0.92rem;
  }

  .select-investment-copy h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .select-price strong {
    font-size: 2rem;
  }

  .select-investment-note {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .about-hero {
    gap: 24px;
    padding: 92px 0 88px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .about-hero-text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .about-chip-row {
    gap: 8px;
    margin-top: 16px;
  }

  .about-chip-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
    text-align: center;
  }

  .about-hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .about-hero-note {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .about-hero-visual {
    min-height: 470px;
    border-radius: 28px;
  }

  .about-hero-panel {
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  .about-hero-panel h2 {
    font-size: 1.28rem;
  }

  .about-hero-panel-dark {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .about-hero-panel-light {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .about-hero-image-shell {
    left: 14px;
    right: 14px;
    bottom: 96px;
    border-radius: 20px;
  }

  .about-story-section,
  .about-beliefs-section,
  .about-intelligence-section,
  .about-team-section,
  .about-cta-section {
    padding-bottom: 88px;
  }

  .about-story-card,
  .about-belief-card,
  .about-intelligence-card,
  .about-team-card,
  .about-cta-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .about-story-stats,
  .about-intelligence-stats,
  .about-beliefs-strip,
  .about-beliefs-grid,
  .about-team-shell {
    grid-template-columns: 1fr;
  }

  .about-story-stats div,
  .about-intelligence-stats div {
    padding: 16px 14px 14px;
  }

  .about-belief-card h3,
  .about-team-card h3,
  .about-intelligence-card h3 {
    font-size: 1.24rem;
  }

  .about-team-image {
    height: 138px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .about-story-media-image,
  .about-beliefs-strip-image {
    min-height: 220px;
  }

  .about-intelligence-image {
    border-radius: 18px;
  }

  .about-cta-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .about-cta-actions {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .ramp-hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-bottom: 56px;
  }

  .ramp-hero-copy {
    padding-top: 24px;
  }

  .ramp-hero-visual {
    min-height: 760px;
  }

  .ramp-monitor-wrap {
    right: 0;
    left: 0;
    width: 100%;
  }

  .ramp-proof-marquee-track {
    gap: 14px;
  }

  .ramp-proof-marquee-track span {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .ramp-hero-actions {
    flex-direction: column;
    max-width: 100%;
    gap: 10px;
  }

  .ramp-hero-actions .button {
    min-width: 0;
  }

  .ramp-hero-visual {
    min-height: 700px;
  }

  .proof-board,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .ramp-monitor-wrap {
    top: 0;
    height: 430px;
  }

  .ramp-monitor-screen {
    transform: none;
  }

  .ramp-monitor-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .ramp-hero-phone-mockup {
    right: 18px;
    width: 188px;
    height: 384px;
  }

  .ramp-hero-card-object {
    right: 118px;
    width: 170px;
  }

  .ramp-hero-side-caption {
    right: 12px;
    bottom: 4px;
    width: 188px;
    padding: 12px 14px;
  }

  .ramp-proof-section {
    padding-bottom: 48px;
  }

  .ramp-proof-marquee-shell {
    margin-top: 22px;
  }

  .ramp-proof-marquee-track span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .ramp-suite-grid,
  .whoop-membership-grid,
  .advantage-grid,
  .plans-grid,
  .switch-grid {
    grid-template-columns: 1fr;
  }

  .ramp-suite-card-hero {
    grid-column: auto;
  }

  .testimonial-video-stack {
    grid-template-columns: 1fr;
  }

  .testimonials-actions {
    flex-direction: column;
  }

  .cta-bridge-section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 72px 0;
  }

  .cta-bridge-actions {
    flex-direction: column;
  }

  .launch-modal-dialog {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .launch-modal-copy h2 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ramp-hero-section,
  .ramp-proof-section,
  .ramp-suite-section {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .ramp-hero-copy h1 {
    font-size: clamp(3.1rem, 12vw, 4.2rem);
  }

  .ramp-hero-text {
    max-width: 100%;
  }

  .ramp-hero-actions {
    max-width: 100%;
  }

  .ramp-hero-visual {
    min-height: 580px;
  }

  .ramp-monitor-wrap {
    height: 332px;
  }

  .ramp-monitor-screen-media {
    border-radius: 20px;
  }

  .ramp-monitor-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .ramp-monitor-overlay strong {
    font-size: 1.02rem;
  }

  .ramp-hero-phone-mockup {
    right: 10px;
    width: 160px;
    height: 328px;
  }

  .ramp-hero-phone-frame {
    border-radius: 32px;
  }

  .ramp-hero-phone-screen,
  .ramp-hero-phone-mask {
    border-radius: 24px;
  }

  .ramp-hero-phone-brandplate {
    top: 34px;
    font-size: 0.64rem;
  }

  .ramp-hero-card-object {
    right: 96px;
    width: 138px;
  }

  .ramp-hero-side-caption {
    right: 8px;
    width: 164px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .ramp-hero-side-caption strong {
    font-size: 0.88rem;
  }

  .ramp-proof-copy {
    font-size: 0.9rem;
  }

  .ramp-proof-marquee-shell {
    margin-top: 18px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }

  .ramp-proof-marquee-track span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .launch-modal-dialog {
    width: min(calc(100% - 18px), 940px);
    margin-top: 16px;
    padding: 22px;
    border-radius: 26px;
  }

  .launch-modal-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .launch-modal-qr {
    padding: 18px;
  }

  .launch-qr-shell {
    width: 176px;
    padding: 14px;
    gap: 5px;
    border-radius: 20px;
  }
}

body.compare-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 243, 239, 0.52), transparent 22%),
    linear-gradient(180deg, #f4f0ea 0%, #e7ddd2 48%, #ddd3c8 100%);
}

.compare-hero,
.compare-matrix-section,
.compare-covered-section,
.compare-practitioner-section,
.compare-stories-section,
.compare-membership-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
}

/* STORIES moved from homepage to /compare (2026-04-20 simplification) */
.compare-stories-section { padding: 96px 0 80px; }
.compare-stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.compare-story-card { padding: 0 0 32px; background: #fff; border: 1px solid rgba(20,20,20,.08); border-radius: 12px; display: flex; flex-direction: column; gap: 18px; overflow:hidden; }
.compare-story-photo { width:100%; aspect-ratio: 4/3; overflow:hidden; margin:0; }
.compare-story-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.compare-story-card > p.compare-story-idx,
.compare-story-card > blockquote,
.compare-story-card > .compare-story-stat,
.compare-story-card > p.compare-story-fit { margin-left: 28px; margin-right: 28px; }
.compare-story-card-featured { background: linear-gradient(180deg, #141414 0%, #1a1a1a 100%); color: #f5f1eb; border-color: #1a1a1a; }
.compare-story-card-featured blockquote, .compare-story-card-featured .compare-story-stat-l span { color: rgba(245,241,235,.82); }
.compare-story-card-featured .compare-story-stat-n { color: #c7a96a; }
.compare-story-idx { font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin: 0; }
.compare-story-card-featured .compare-story-idx { color: rgba(199,169,106,.85); }
.compare-story-card blockquote { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.4; letter-spacing: -0.008em; color: #141414; }
.compare-story-stat { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-top: 1px solid rgba(20,20,20,.1); }
.compare-story-card-featured .compare-story-stat { border-top-color: rgba(245,241,235,.14); }
.compare-story-stat-n { font-family: "Soehne", "Inter", sans-serif; font-size: clamp(26px, 2.2vw, 34px); font-weight: 600; letter-spacing: -0.035em; color: #141414; line-height: 1; }
.compare-story-stat-l { font-size: 11.5px; letter-spacing: .05em; color: var(--muted); line-height: 1.4; }
.compare-story-fit { margin: 0; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }
.compare-story-fit strong { color: #141414; font-weight: 600; }
.compare-story-card-featured .compare-story-fit strong { color: #f5f1eb; }
.compare-story-fit span { text-transform: none; letter-spacing: .02em; font-size: 12px; }
.compare-stories-foot { margin: 32px auto 0; max-width: 70ch; text-align: center; font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .compare-stories-grid { grid-template-columns: 1fr; } }

.compare-hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  min-height: 92vh;
  padding: 112px 0 128px;
}

.compare-hero-copy h1 {
  max-width: 10ch;
  margin: 16px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(4rem, 5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.compare-hero-text {
  max-width: 39ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.compare-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 18px;
}

.compare-hero-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.compare-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.compare-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.compare-stat-card {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 251, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.compare-stat-card strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.44rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.compare-stat-card span,
.compare-hero-note {
  color: var(--muted);
}

.compare-stat-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.compare-hero-note {
  max-width: 44ch;
  margin: 18px 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
}

.compare-hero-visual {
  position: relative;
  min-height: 660px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.58), transparent 24%),
    radial-gradient(circle at 76% 20%, rgba(47, 74, 115, 0.16), transparent 28%),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(145deg, rgba(245, 240, 232, 0.94), rgba(226, 219, 208, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.compare-visual-card {
  position: absolute;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(27, 22, 18, 0.08);
}

.compare-visual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-visual-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.compare-visual-card-float {
  top: 28px;
  left: 30px;
  right: 194px;
}

.compare-visual-card-main {
  top: 170px;
  left: 38px;
  right: 264px;
}

.compare-visual-card-bottom {
  right: 198px;
  bottom: 30px;
  left: 112px;
}

.compare-visual-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.compare-visual-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.45;
}

.compare-visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #17191c;
}

.compare-phone {
  position: absolute;
  right: 34px;
  bottom: 44px;
  width: 236px;
  height: 492px;
  padding: 12px 12px 14px;
  border-radius: 40px;
  background: linear-gradient(180deg, #121315, #050607);
  box-shadow: 0 38px 96px rgba(24, 20, 17, 0.28);
}

.compare-phone-notch {
  width: 74px;
  height: 15px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #060709;
}

.compare-phone-screen {
  height: calc(100% - 25px);
  padding: 22px 16px 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 16%, rgba(79, 132, 211, 0.22), transparent 24%),
    linear-gradient(180deg, #111315 0%, #08090b 100%);
}

.compare-phone-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6cec2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-phone-bubble {
  margin-top: 18px;
  padding: 14px 14px 14px 16px;
  border-radius: 20px 20px 20px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8d0c4;
  font-size: 0.94rem;
  line-height: 1.5;
}

.compare-phone-bubble-dark {
  margin-left: auto;
  max-width: 88%;
  border-radius: 20px 20px 10px 20px;
  background: rgba(104, 141, 202, 0.28);
  color: #f4efe7;
}

.compare-phone-summary {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-phone-summary strong {
  display: block;
  color: #f3ece3;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.compare-phone-summary span {
  display: block;
  margin-top: 8px;
  color: #b3ab9f;
  font-size: 0.82rem;
  line-height: 1.45;
}

.compare-phone-row {
  height: 14px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.compare-phone-row-short {
  width: 66%;
}

.compare-matrix-section,
.compare-covered-section,
.compare-practitioner-section,
.compare-membership-section {
  padding: 0 0 132px;
}

.compare-matrix-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 32px 0 34px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.compare-matrix-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare-matrix-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 14, 12, 0.24)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.compare-matrix-visual-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 34rem;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(20, 21, 24, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.compare-matrix-visual-copy p {
  margin: 0;
  color: #c8beb2;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-matrix-visual-copy strong {
  display: block;
  margin-top: 8px;
  color: #f4ede4;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.compare-table {
  overflow: hidden;
  margin-top: 34px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.compare-table-head,
.compare-table-row {
  display: grid;
  grid-template-columns: 0.84fr 1fr 1fr;
  gap: 18px;
  padding: 22px 24px;
}

.compare-table-head {
  background: rgba(255, 255, 255, 0.42);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table-brand {
  color: var(--text);
}

.compare-table-muted {
  color: var(--muted);
}

.compare-table-row {
  align-items: start;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.compare-table-label {
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.compare-table-cell {
  min-height: 120px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.compare-table-cell-primary {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 48px rgba(27, 22, 18, 0.05);
}

.compare-table-cell-muted {
  background: rgba(255, 255, 255, 0.22);
}

.compare-table-cell strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.compare-table-cell p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.compare-covered-grid,
.compare-membership-grid {
  display: grid;
  gap: 22px;
}

.compare-covered-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-covered-card,
.compare-membership-card {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.compare-covered-card {
  min-height: 260px;
  padding: 30px 28px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.compare-covered-card-large {
  grid-column: span 2;
  min-height: 320px;
  background:
    radial-gradient(circle at 82% 26%, rgba(47, 74, 115, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.8), rgba(247, 242, 235, 0.62));
}

.compare-covered-card-media {
  padding: 0;
  overflow: hidden;
}

.compare-covered-card-large-media {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 251, 245, 0.56);
}

.compare-covered-background,
.compare-covered-media img,
.compare-practitioner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.compare-covered-background {
  position: absolute;
  inset: 0;
}

.compare-covered-card-large-media::after,
.compare-covered-media::after,
.compare-practitioner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 14, 12, 0.28)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.compare-covered-overlay,
.compare-covered-copy,
.compare-practitioner-copy {
  position: relative;
  z-index: 1;
}

.compare-covered-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 30px 28px;
}

.compare-covered-card-large-media .eyebrow,
.compare-covered-card-large-media h3,
.compare-covered-card-large-media p:last-child {
  color: #f2ebe1;
}

.compare-covered-media,
.compare-practitioner-media {
  position: relative;
  overflow: hidden;
}

.compare-covered-media {
  height: 188px;
}

.compare-covered-copy,
.compare-practitioner-copy {
  padding: 24px 26px 26px;
}

.compare-covered-card h3 {
  margin: 12px 0 14px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.compare-covered-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.compare-practitioner-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 22px;
}

.compare-practitioner-card {
  padding: 30px 28px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.compare-practitioner-card-media {
  padding: 0;
  overflow: hidden;
}

.compare-practitioner-media {
  height: 190px;
}

.compare-practitioner-card-dark {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.compare-practitioner-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.compare-practitioner-card h3 {
  margin: 12px 0 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.44rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.compare-practitioner-card p:last-of-type,
.compare-practitioner-card span {
  color: var(--muted);
  line-height: 1.62;
}

.compare-practitioner-card-dark strong,
.compare-practitioner-card-dark h3 {
  color: #f1e9de;
}

.compare-practitioner-card-dark p:last-of-type,
.compare-practitioner-card-dark span {
  color: #c4b9ac;
}

.compare-practitioner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.compare-practitioner-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8d0c4;
  font-size: 0.78rem;
  font-weight: 500;
}

.compare-membership-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-membership-card {
  padding: 28px;
  background: rgba(255, 251, 245, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.compare-membership-card-featured {
  background: linear-gradient(180deg, rgba(29, 31, 35, 0.98), rgba(19, 20, 24, 0.99));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.compare-membership-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-membership-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.compare-membership-card p:last-of-type {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.compare-membership-card .button {
  width: 100%;
  margin-top: 24px;
}

.compare-membership-card-featured .compare-membership-kicker {
  color: #b6ab9f;
}

.compare-membership-card-featured strong,
.compare-membership-card-featured p:last-of-type {
  color: #f0e7da;
}

.compare-membership-card-featured p:last-of-type {
  color: #c1b7aa;
}

.compare-dark-zone {
  padding-top: 0;
}

@media (max-width: 1180px) {
  .compare-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding-bottom: 116px;
  }

  .compare-hero-visual {
    min-height: 720px;
  }

  .compare-covered-grid,
  .compare-practitioner-shell,
  .compare-membership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-covered-card-large {
    grid-column: span 2;
  }

  .compare-covered-card-large-media {
    grid-column: span 2;
  }

  .compare-practitioner-card-dark {
    grid-column: span 2;
  }

  .compare-table-head,
  .compare-table-row {
    grid-template-columns: 0.8fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .compare-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .compare-hero-chips,
  .compare-stat-grid,
  .compare-covered-grid,
  .compare-practitioner-shell,
  .compare-membership-grid {
    grid-template-columns: 1fr;
  }

  .compare-covered-card-large {
    grid-column: auto;
  }

  .compare-covered-card-large-media {
    grid-column: auto;
  }

  .compare-practitioner-card-dark {
    grid-column: auto;
  }

  .compare-practitioner-card {
    padding: 24px 22px;
  }

  .compare-practitioner-card h3 {
    font-size: 1.26rem;
  }

  .compare-practitioner-card strong {
    font-size: clamp(2.2rem, 7vw, 2.9rem);
  }

  .compare-practitioner-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .compare-practitioner-tags span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .compare-covered-media,
  .compare-practitioner-media {
    height: 180px;
  }

  .compare-matrix-visual {
    min-height: 280px;
    margin: 24px 0 28px;
  }

  .compare-hero {
    gap: 28px;
    padding: 90px 0 108px;
  }

  .compare-hero-text,
  .compare-hero-note {
    max-width: 100%;
  }

  .compare-hero-text {
    font-size: 1rem;
    line-height: 1.62;
  }

  .compare-hero-note {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .compare-hero-visual {
    min-height: 760px;
  }

  .compare-visual-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .compare-visual-card strong {
    font-size: 1.12rem;
  }

  .compare-visual-card-float,
  .compare-visual-card-main,
  .compare-visual-card-bottom {
    left: 24px;
    right: 24px;
  }

  .compare-visual-card-main {
    top: 150px;
  }

  .compare-visual-card-bottom {
    bottom: 24px;
  }

  .compare-phone {
    right: 24px;
    top: 320px;
    bottom: auto;
    width: 184px;
    height: 388px;
  }

  .compare-table {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .compare-table-head {
    display: none;
  }

  .compare-table-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0 0;
    border-top: 0;
  }

  .compare-table-label {
    padding: 0 6px;
  }

  .compare-table-cell {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .compare-hero,
  .compare-matrix-section,
  .compare-covered-section,
  .compare-practitioner-section,
  .compare-membership-section {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .compare-hero {
    gap: 24px;
    padding: 92px 0 88px;
  }

  .compare-hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4rem);
  }

  .compare-hero-text,
  .compare-hero-note {
    max-width: 100%;
  }

  .compare-hero-chips {
    gap: 8px;
    max-width: none;
    margin-top: 16px;
  }

  .compare-hero-chips span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .compare-hero-visual {
    min-height: 540px;
    border-radius: 28px;
  }

  .compare-visual-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .compare-visual-card strong {
    font-size: 1.16rem;
  }

  .compare-visual-card-float,
  .compare-visual-card-bottom {
    display: none;
  }

  .compare-visual-card-main {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .compare-phone {
    left: 14px;
    right: 14px;
    top: 180px;
    width: auto;
    height: 320px;
    padding: 10px 10px 12px;
    border-radius: 34px;
  }

  .compare-phone-screen {
    padding: 18px 14px 16px;
    border-radius: 24px;
  }

  .compare-phone-summary strong {
    font-size: 1.56rem;
  }

  .compare-table-cell {
    padding: 16px;
    border-radius: 18px;
  }

  .compare-covered-card,
  .compare-practitioner-card,
  .compare-membership-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .compare-covered-card-media,
  .compare-practitioner-card-media {
    padding: 0;
  }

  .compare-covered-media,
  .compare-practitioner-media {
    height: 156px;
  }

  .compare-covered-copy,
  .compare-practitioner-copy {
    padding: 18px 18px 20px;
  }

  .compare-covered-card-large-media {
    min-height: 280px;
  }

  .compare-covered-overlay {
    padding: 22px 18px;
  }

  .compare-matrix-visual {
    min-height: 236px;
    margin: 22px 0 24px;
    border-radius: 20px;
  }

  .compare-matrix-visual-copy {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 12px 11px;
    border-radius: 14px;
  }

  .compare-matrix-visual-copy strong {
    font-size: 0.96rem;
  }

  .compare-practitioner-shell {
    gap: 16px;
  }

  .compare-practitioner-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .compare-practitioner-card h3 {
    font-size: 1.18rem;
  }

  .compare-practitioner-card strong {
    font-size: 2.2rem;
  }

  .compare-table-row {
    padding: 16px 0 0;
  }

  .compare-table-label {
    font-size: 0.88rem;
  }

  .compare-practitioner-tags {
    gap: 6px;
    margin-top: 16px;
  }

  .compare-practitioner-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .compare-covered-card h3 {
    font-size: 1.34rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px 16px;
    top: 10px;
    padding: 14px 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 4px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.38);
  }

  .site-header > .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .ramp-hero-section {
    gap: 32px;
    padding: 58px 0 40px;
  }

  .ramp-hero-copy {
    padding-top: 0;
    max-width: 38rem;
  }

  .ramp-review-row {
    font-size: 0.95rem;
  }

  .ramp-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(3.4rem, 10vw, 4.6rem);
    max-width: 7.8ch;
  }

  .ramp-hero-text {
    max-width: 34ch;
    margin-top: 18px;
    font-size: 1rem;
  }

  .ramp-hero-actions {
    margin-top: 22px;
  }

  .ramp-hero-launch-note {
    margin-top: 12px;
    font-size: 0.88rem;
  }

  .ramp-hero-link {
    margin-top: 18px;
  }

  .ramp-hero-visual {
    min-height: 620px;
    margin-top: 6px;
  }

  .ramp-monitor-wrap {
    height: 390px;
  }

  .ramp-hero-phone-mockup {
    right: 8px;
    bottom: 4px;
    width: 178px;
    height: 364px;
  }

  .ramp-hero-card-object {
    right: 92px;
    bottom: 10px;
    width: 156px;
  }

  .ramp-hero-side-caption {
    right: 8px;
    bottom: -6px;
    width: 176px;
  }

  .ramp-suite-section {
    padding: 24px 0 92px;
  }

  .ramp-suite-heading {
    margin-bottom: 28px;
  }

  .ramp-suite-heading h2 {
    font-size: clamp(2.7rem, 8.8vw, 3.45rem);
  }

  .ramp-suite-grid {
    gap: 14px;
  }

  .ramp-suite-card {
    min-height: auto;
    padding: 18px 16px 0;
    border-radius: 20px;
  }

  .ramp-suite-card h3 {
    font-size: 1.34rem;
  }

  .ramp-suite-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .ramp-suite-card > a {
    margin-top: 14px;
  }

  .ramp-suite-media {
    min-height: 208px;
    margin-top: 16px;
    border-radius: 16px 16px 0 0;
  }

  .how-it-works-section {
    padding: 92px 0 84px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .how-it-works-grid {
    gap: 18px;
  }

  .how-step-card {
    padding: 24px;
  }

  .proof-section {
    padding: 96px 0 88px;
  }

  .proof-shell {
    gap: 28px;
  }

  .proof-compare-card {
    padding: 22px;
    border-radius: 24px;
  }

  .proof-compare-grid {
    gap: 12px;
  }

  .proof-compare-side {
    padding: 16px;
    border-radius: 18px;
  }

  .proof-board {
    gap: 16px;
  }

  .proof-metric,
  .authority-card {
    padding: 28px;
  }

  .proof-image-card {
    min-height: 300px;
  }

  .proof-image-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 16px 18px;
  }

  .authority-section {
    padding: 88px 0 104px;
  }

  .authority-grid {
    gap: 18px;
  }

  .practitioner-proof-section {
    padding-bottom: 104px;
  }

  .practitioner-proof-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .practitioner-proof-card {
    padding: 26px 24px;
    border-radius: 22px;
  }

  .practitioner-proof-media {
    height: 168px;
    margin: -2px 0 16px;
    border-radius: 18px;
  }

  .practitioner-proof-card h3 {
    font-size: 1.24rem;
  }

  .practitioner-proof-card strong {
    font-size: clamp(2.3rem, 7vw, 3rem);
  }

  .practitioner-proof-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .practitioner-proof-tags span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .authority-stats-grid {
    gap: 10px;
  }

  .authority-access-card {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .authority-access-card strong {
    font-size: 1.08rem;
  }

  .authority-stat {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .authority-stat strong {
    font-size: 1.16rem;
  }

  .switch-section {
    padding: 104px 0 96px;
  }

  .switch-comparison {
    gap: 18px;
    padding: 26px 22px 0;
  }

  .switch-label-column {
    gap: 14px;
    font-size: 0.82rem;
  }

  .switch-compare-card {
    padding: 22px 20px;
  }

  .switch-compare-stack {
    margin-top: 16px;
  }

  .switch-compare-item {
    min-height: auto;
    padding: 10px 0;
  }

  .reimbursement-section {
    gap: 22px;
    padding-bottom: 104px;
  }

  .reimbursement-visual {
    min-height: 420px;
    padding: 20px;
  }

  .reimbursement-phone {
    max-width: 100%;
    padding: 18px;
  }

  .persona-section {
    padding-bottom: 96px;
  }

  .persona-grid {
    gap: 14px;
  }

  .persona-card {
    min-height: 220px;
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .persona-card-media {
    height: 98px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .persona-card h3 {
    font-size: 1.18rem;
  }

  .persona-card p:last-child {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .coverage-section {
    padding: 96px 0;
  }

  .coverage-list article {
    gap: 12px;
    padding: 26px 0;
  }

  .testimonials-section {
    padding-bottom: 96px;
  }

  .testimonials-layout {
    gap: 28px;
  }

  .testimonials-showcase,
  .testimonial-video-stack {
    gap: 20px;
  }

  .whoop-membership-section {
    padding: 120px 0 92px;
  }

  .whoop-membership-heading {
    margin-bottom: 36px;
  }

  .whoop-membership-grid {
    gap: 18px;
  }

  .whoop-membership-card {
    padding: 18px 16px 16px;
    border-radius: 24px;
  }

  .whoop-plan-visual {
    min-height: 248px;
  }

  .whoop-plan-list {
    margin-top: 18px;
    padding: 0 4px;
  }

  .whoop-plan-list li {
    padding: 7px 0 7px 20px;
    font-size: 0.9rem;
  }

  .dark-zone {
    padding-bottom: 64px;
  }

  .dark-shell {
    padding: 20px 20px 0;
    border-radius: 34px;
  }

  .whoop-app-panel {
    margin-bottom: 52px;
    padding: 34px 24px;
    gap: 24px;
  }

  .allocation-section {
    padding: 0 0 64px;
  }

  .allocation-grid {
    gap: 14px;
  }

  .faq-section {
    gap: 32px;
    padding: 56px 0 80px;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-list details {
    padding: 20px 20px;
  }

  .site-footer {
    padding: 42px 0 64px;
    gap: 32px;
  }

  .footer-brand-column {
    max-width: none;
  }

  .footer-signup {
    max-width: 100%;
  }

  .footer-meta-column {
    gap: 28px;
  }

  .footer-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 20px;
    gap: 10px 12px;
  }

  .brand-lockup {
    gap: 2px;
  }

  .brand-mark {
    font-size: 20px;
  }

  .brand-submark {
    font-size: 16px;
  }

  .site-nav {
    gap: 8px;
    padding-top: 2px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .site-header > .button {
    width: auto;
    min-height: 44px;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .ramp-hero-section {
    gap: 24px;
    padding: 42px 0 24px;
  }

  .ramp-review-row {
    gap: 8px;
    font-size: 0.88rem;
  }

  .ramp-review-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }

  .ramp-hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(2.85rem, 13vw, 3.8rem);
    max-width: 7.2ch;
  }

  .ramp-hero-text {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .ramp-hero-value-chips {
    gap: 8px;
    margin-top: 16px;
  }

  .ramp-hero-value-chips span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.78rem;
    white-space: normal;
    text-align: center;
  }

  .ramp-hero-actions {
    gap: 10px;
  }

  .ramp-hero-actions .button {
    min-width: 0;
  }

  .ramp-hero-launch-note {
    font-size: 0.84rem;
  }

  .ramp-hero-link {
    font-size: 0.94rem;
  }

  .ramp-hero-visual {
    min-height: 470px;
  }

  .ramp-monitor-wrap {
    top: 0;
    height: 280px;
  }

  .ramp-monitor-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 14px;
  }

  .ramp-monitor-overlay strong {
    font-size: 0.94rem;
  }

  .ramp-hero-phone-mockup {
    right: 2px;
    bottom: 8px;
    width: 138px;
    height: 286px;
  }

  .ramp-hero-phone-brandplate {
    top: 32px;
    padding: 5px 9px;
    font-size: 0.58rem;
  }

  .ramp-hero-card-object {
    right: 72px;
    bottom: 10px;
    width: 118px;
  }

  .ramp-hero-side-caption {
    right: 0;
    bottom: -6px;
    width: 142px;
    gap: 4px;
    padding: 8px 10px;
  }

  .ramp-hero-side-caption span {
    font-size: 0.62rem;
  }

  .ramp-hero-side-caption strong {
    font-size: 0.78rem;
    line-height: 1.1;
  }

  .ramp-proof-copy {
    font-size: 0.84rem;
    text-align: center;
  }

  .ramp-proof-marquee-shell {
    margin-top: 14px;
  }

  .ramp-proof-marquee-track {
    gap: 10px;
  }

  .ramp-proof-marquee-track span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .ramp-suite-section {
    padding: 18px 0 72px;
  }

  .ramp-suite-heading {
    margin-bottom: 22px;
  }

  .ramp-suite-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .ramp-suite-heading p:last-child {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .ramp-suite-card {
    padding: 16px 14px 0;
    border-radius: 20px;
  }

  .ramp-suite-card h3 {
    font-size: 1.26rem;
  }

  .ramp-suite-card p {
    margin-top: 7px;
    font-size: 0.9rem;
  }

  .ramp-suite-media {
    min-height: 186px;
  }

  .suite-credit-chip {
    top: 14px;
    left: 14px;
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .suite-credit-card-image {
    width: 132px;
    border-radius: 16px;
  }

  .suite-credit-card-image-front {
    left: 22px;
    bottom: -2px;
  }

  .suite-credit-card-image-back {
    right: 14px;
    bottom: -6px;
  }

  .suite-credit-footnote {
    left: 14px;
    right: 14px;
    bottom: 8px;
    font-size: 0.68rem;
  }

  .suite-map-badge {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .suite-protocol-toolbar {
    gap: 8px;
    padding: 14px 12px 0;
  }

  .suite-protocol-chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .suite-bottle-group {
    left: 18px;
    right: 18px;
    bottom: 30px;
    gap: 12px;
  }

  .suite-bottle-tall {
    width: 60px;
    height: 94px;
  }

  .suite-bottle-short {
    width: 52px;
    height: 72px;
  }

  .suite-bottle-dropper {
    width: 48px;
    height: 82px;
  }

  .suite-protocol-tags {
    left: 10px;
    right: 10px;
    gap: 6px;
  }

  .suite-protocol-tags span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .suite-therapy-card {
    left: 12px;
    right: 70px;
    top: 16px;
    padding: 13px 13px 12px;
    border-radius: 16px;
  }

  .suite-therapy-card strong {
    font-size: 0.94rem;
  }

  .suite-therapy-card small {
    font-size: 0.76rem;
  }

  .suite-therapy-pill {
    right: 20px;
    bottom: 32px;
    width: 108px;
    height: 56px;
    border-radius: 18px;
  }

  .suite-therapy-tag {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .suite-chat-thread {
    inset: 12px;
  }

  .suite-chat-message,
  .suite-guidance-question {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  .suite-chat-confirmation,
  .suite-guidance-answer {
    padding: 14px;
    border-radius: 16px;
  }

  .suite-chat-confirmation strong,
  .suite-guidance-answer strong {
    font-size: 0.92rem;
  }

  .suite-chat-confirmation small {
    font-size: 0.76rem;
  }

  .suite-reimbursement-ticket {
    left: 20px;
    top: 22px;
    width: 104px;
    height: 132px;
  }

  .suite-reimbursement-card {
    left: 52px;
    right: 12px;
    bottom: 16px;
    padding: 13px;
    border-radius: 16px;
  }

  .suite-reimbursement-card strong {
    font-size: 0.96rem;
  }

  .suite-reimbursement-card small {
    font-size: 0.76rem;
  }

  .suite-reimbursement-chip {
    top: 12px;
    right: 12px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .suite-guidance-panel {
    inset: 12px;
    gap: 10px;
  }

  .suite-guidance-actions {
    gap: 6px;
  }

  .suite-guidance-actions span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .suite-protection-shell {
    inset: 12px;
    padding: 14px;
  }

  .suite-protection-header strong {
    font-size: 0.92rem;
  }

  .suite-protection-rows {
    gap: 8px;
    margin-top: 14px;
  }

  .suite-protection-rows div {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .proof-section,
  .how-it-works-section,
  .authority-section,
  .practitioner-proof-section,
  .persona-section,
  .switch-section,
  .coverage-section {
    padding: 80px 0;
  }

  .proof-shell {
    gap: 20px;
  }

  .proof-compare-card {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
  }

  .proof-compare-header strong {
    font-size: clamp(1.28rem, 6vw, 1.6rem);
  }

  .proof-compare-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .proof-compare-side {
    padding: 15px 14px 16px;
    border-radius: 16px;
  }

  .proof-compare-side strong {
    font-size: 1.28rem;
  }

  .proof-tags,
  .authority-chip-row {
    gap: 8px;
    margin-top: 20px;
  }

  .proof-tags span,
  .authority-chip-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .authority-chip-row-knowledge {
    gap: 6px;
    margin-top: 18px;
  }

  .authority-chip-row-knowledge span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .authority-chip-row-knowledge strong {
    font-size: 0.84rem;
    margin-right: 5px;
  }

  .proof-board {
    gap: 14px;
  }

  .proof-metric,
  .authority-card,
  .practitioner-proof-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .proof-metric strong {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  .proof-image-card {
    min-height: 248px;
    border-radius: 20px;
  }

  .proof-image-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .proof-image-copy strong {
    font-size: 1.05rem;
  }

  .authority-card h3 {
    font-size: 1.28rem;
  }

  .practitioner-proof-card h3 {
    font-size: 1.18rem;
  }

  .practitioner-proof-card strong {
    font-size: 2.2rem;
  }

  .practitioner-proof-tags {
    gap: 6px;
    margin-top: 16px;
  }

  .practitioner-proof-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .authority-wearable-grid {
    gap: 10px;
    margin-top: 18px;
  }

  .authority-wearable-grid article {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .authority-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
  }

  .authority-stat {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .authority-stat strong {
    font-size: 1.02rem;
  }

  .authority-stat span,
  .authority-card-footnote {
    font-size: 0.76rem;
  }

  .authority-access-card {
    gap: 6px;
    padding: 13px 14px;
    border-radius: 14px;
  }

  .authority-access-card p {
    font-size: 0.72rem;
  }

  .authority-access-card strong {
    font-size: 0.98rem;
  }

  .persona-section {
    padding-top: 8px;
    padding-bottom: 72px;
  }

  .persona-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .persona-card,
  .persona-card-dark {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .persona-card-media {
    height: 86px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .persona-card-dark {
    grid-column: auto;
  }

  .persona-card h3 {
    font-size: 1.08rem;
  }

  .persona-card p:last-child {
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .switch-section {
    padding-top: 88px;
    padding-bottom: 80px;
  }

  .switch-comparison {
    gap: 12px;
    padding: 18px 14px 0;
    border-radius: 20px;
  }

  .switch-label-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    padding: 0 0 4px;
    font-size: 0.76rem;
  }

  .switch-label-column span::after {
    display: none;
  }

  .switch-compare-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  .switch-compare-title {
    font-size: 1.6rem;
  }

  .switch-compare-stack {
    margin-top: 12px;
    gap: 4px;
  }

  .switch-compare-item {
    grid-template-columns: 16px 1fr;
    gap: 10px;
    padding: 9px 0;
  }

  .switch-check {
    width: 16px;
    height: 16px;
    font-size: 0.6rem;
  }

  .switch-compare-item p {
    font-size: 0.84rem;
  }

  .switch-actions {
    margin-top: 20px;
  }

  .reimbursement-section,
  .testimonials-section {
    padding-bottom: 84px;
  }

  .reimbursement-copy h2,
  .allocation-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .reimbursement-steps {
    gap: 10px;
    margin-top: 20px;
  }

  .reimbursement-steps span {
    align-items: flex-start;
    font-size: 0.92rem;
  }

  .reimbursement-visual {
    min-height: auto;
    padding: 12px;
    border-radius: 20px;
  }

  .reimbursement-phone {
    padding: 14px;
    border-radius: 22px;
  }

  .reimbursement-thread {
    gap: 10px;
    margin-top: 14px;
  }

  .reimbursement-bubble,
  .reimbursement-card {
    max-width: 92%;
    padding: 13px 14px;
    font-size: 0.88rem;
  }

  .reimbursement-card strong {
    font-size: 1.06rem;
  }

  .coverage-section {
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .coverage-list article {
    padding: 20px 0;
  }

  .coverage-copy-block {
    gap: 8px;
  }

  .coverage-list strong {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .coverage-image {
    aspect-ratio: 1.2 / 1;
  }

  .coverage-diagnostics-shell {
    gap: 12px;
    padding: 16px;
  }

  .coverage-diagnostics-top span,
  .coverage-diagnostics-pills span {
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .coverage-diagnostics-readout {
    min-height: 136px;
    border-radius: 16px;
  }

  .testimonials-layout {
    gap: 22px;
  }

  .testimonials-showcase,
  .testimonial-video-stack {
    gap: 18px;
  }

  .testimonial-video-card {
    border-radius: 20px;
  }

  .testimonial-video-frame {
    min-height: 220px;
    padding: 20px;
  }

  .testimonial-video-card-featured .testimonial-video-frame {
    min-height: 280px;
  }

  .testimonial-video-badge {
    top: 14px;
    left: 14px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .testimonial-video-avatar {
    width: 88px;
    height: 88px;
  }

  .testimonial-video-avatar span {
    font-size: 1.5rem;
  }

  .testimonial-play-button {
    right: 14px;
    bottom: 14px;
    min-height: 40px;
    gap: 8px;
    padding: 0 14px 0 10px;
  }

  .testimonial-play-button span {
    font-size: 0.78rem;
  }

  .testimonial-copy {
    padding: 18px 18px 20px;
  }

  .testimonial-copy p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .testimonial-meta {
    margin-top: 18px;
  }

  .testimonials-actions {
    gap: 10px;
  }

  .whoop-membership-section {
    padding: 96px 0 80px;
  }

  .whoop-membership-heading {
    margin-bottom: 28px;
  }

  .whoop-membership-heading p:last-child,
  .whoop-app-copy p {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .whoop-membership-card {
    padding: 14px 12px 16px;
    border-radius: 22px;
  }

  .whoop-plan-visual {
    min-height: 226px;
  }

  .whoop-plan-card-stack {
    padding: 20px;
  }

  .whoop-plan-card {
    width: min(86%, 256px);
  }

  .whoop-plan-card-stack-care .whoop-plan-card-care {
    width: min(82%, 236px);
    transform: rotate(-7deg) translateY(6px);
  }

  .whoop-plan-card-stack-plus::before {
    width: min(70%, 210px);
    transform: rotate(10deg) translate(38px, 6px);
  }

  .whoop-plan-card-stack-plus .whoop-plan-card-front {
    width: min(82%, 240px);
    transform: rotate(-6deg) translate(-6px, 2px);
  }

  .whoop-plan-card-stack-select .whoop-plan-card-select {
    width: min(88%, 262px);
    transform: rotate(-3deg) translateY(0);
  }

  .whoop-plan-card-halo {
    width: 144px;
    height: 144px;
    transform: translate(42px, 16px);
  }

  .whoop-plan-kicker {
    margin-top: 14px;
    font-size: 0.68rem;
  }

  .whoop-plan-tier {
    margin-top: 8px;
    font-size: 1.48rem;
    letter-spacing: 0.14em;
  }

  .whoop-plan-price {
    font-size: 0.88rem;
  }

  .whoop-plan-effective {
    font-size: 0.82rem;
  }

  .whoop-plan-list {
    margin: 18px 0 0;
    padding: 0 4px;
  }

  .whoop-plan-list li {
    padding: 7px 0 7px 18px;
    font-size: 0.88rem;
  }

  .whoop-button-primary,
  .whoop-button-secondary,
  .whoop-outline-button {
    min-height: 50px;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
  }

  .whoop-plan-note {
    margin-top: 12px;
    font-size: 0.82rem;
  }

  .dark-zone {
    padding-bottom: 44px;
  }

  .dark-shell {
    width: min(calc(100% - 6px), 1440px);
    padding: 10px 10px 0;
    border-radius: 24px;
  }

  .whoop-app-panel {
    margin-bottom: 40px;
    gap: 18px;
    padding: 22px 14px;
    border-radius: 26px;
  }

  .whoop-app-copy h2 {
    max-width: none;
  }

  .whoop-outline-button {
    max-width: none;
    margin-top: 24px;
  }

  .whoop-app-visual {
    min-height: 320px;
  }

  .whoop-app-showcase-image {
    border-radius: 20px;
  }

  .allocation-section {
    padding: 0 2px 42px;
  }

  .allocation-copy h2 {
    max-width: 12ch;
  }

  .allocation-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .allocation-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .allocation-card strong {
    font-size: 2rem;
  }

  .allocation-card h3 {
    margin: 12px 0 8px;
    font-size: 1.08rem;
  }

  .allocation-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .allocation-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .faq-section {
    gap: 22px;
    padding: 42px 6px 64px;
  }

  .faq-list details {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .faq-list summary {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .faq-list p {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .site-footer {
    gap: 24px;
    padding: 34px 6px 48px;
  }

  .footer-badge-row {
    gap: 8px;
  }

  .footer-badge {
    min-height: 26px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .footer-brand {
    margin-bottom: 14px;
  }

  .footer-brand-column h3 {
    margin-bottom: 18px;
    font-size: 1.9rem;
    line-height: 0.96;
  }

  .footer-signup {
    padding: 4px 4px 4px 12px;
  }

  .footer-signup input {
    font-size: 0.92rem;
  }

  .footer-links-grid {
    gap: 18px;
  }

  .footer-links-group {
    gap: 8px;
  }

  .footer-links-grid a,
  .footer-contact-link {
    font-size: 0.9rem;
  }

  .footer-bottom-bar {
    padding-top: 16px;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .launch-modal-dialog {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .store-badge {
    min-height: 58px;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
  }

  .store-badge-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .store-badge-copy strong {
    font-size: 1.08rem;
  }

  .store-badge-copy small {
    font-size: 0.62rem;
  }

  .launch-modal-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .launch-modal-text {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .launch-modal-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .launch-copy-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .launch-copy-status {
    font-size: 0.8rem;
  }

  .launch-modal-qr p {
    font-size: 1.02rem;
  }

  .launch-qr-shell {
    width: 180px;
    gap: 5px;
    padding: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
  }

  .site-nav {
    display: none;
  }

  .site-header > .button {
    min-width: 0;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .ramp-hero-section {
    gap: 18px;
    padding: 28px 0 20px;
  }

  .ramp-hero-copy {
    max-width: none;
  }

  .ramp-hero-copy h1 {
    font-size: clamp(2.45rem, 15vw, 3.15rem);
    max-width: 6.8ch;
    line-height: 0.92;
  }

  .ramp-hero-text {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .ramp-hero-actions {
    margin-top: 18px;
  }

  .ramp-hero-value-chips {
    gap: 7px;
    max-width: none;
    margin-top: 14px;
  }

  .ramp-hero-value-chips span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
    white-space: normal;
    text-align: center;
  }

  .ramp-hero-actions .button {
    min-height: 48px;
  }

  .ramp-hero-launch-note {
    max-width: 34ch;
    margin-top: 10px;
    font-size: 0.8rem;
  }

  .ramp-hero-link {
    margin-top: 12px;
  }

  .ramp-hero-visual {
    min-height: 388px;
    margin-top: 2px;
  }

  .ramp-monitor-wrap {
    height: 228px;
  }

  .ramp-monitor-screen {
    transform: perspective(920px) rotateX(4deg) rotateY(-10deg) rotateZ(1deg);
  }

  .ramp-monitor-overlay {
    max-width: 11rem;
  }

  .ramp-hero-phone-mockup {
    right: 12px;
    bottom: 2px;
    width: 120px;
    height: 248px;
  }

  .ramp-hero-card-object {
    right: 82px;
    bottom: 8px;
    width: 96px;
  }

  .ramp-hero-side-caption {
    display: none;
  }

  .ramp-proof-section {
    padding: 12px 0 38px;
  }

  .ramp-proof-copy {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .ramp-proof-marquee-shell {
    display: block;
    overflow: visible;
    margin-top: 14px;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .ramp-proof-marquee-track {
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    animation: none;
  }

  .ramp-proof-marquee-track[aria-hidden="true"] {
    display: none;
  }

  .ramp-proof-marquee-track span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
    font-weight: 600;
  }

  .ramp-proof-marquee-track span::before {
    width: 6px;
    height: 6px;
    margin-right: 8px;
  }

  .ramp-suite-section {
    padding-top: 12px;
  }

  .ramp-suite-heading {
    margin-bottom: 18px;
  }

  .ramp-suite-grid {
    gap: 12px;
  }

  .ramp-suite-card {
    box-shadow: 0 14px 30px rgba(24, 20, 17, 0.06);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .proof-section,
  .how-it-works-section,
  .authority-section,
  .practitioner-proof-section,
  .switch-section,
  .coverage-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .whoop-membership-section {
    padding-top: 88px;
  }
}

@media (max-width: 640px) {
  .ramp-hero-visual::before,
  .ramp-hero-phone-mockup,
  .ramp-hero-card-object {
    display: none;
  }

  .ramp-hero-visual {
    min-height: 234px;
    margin-top: 8px;
  }

  .ramp-monitor-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: 234px;
  }

  .ramp-monitor-wrap::after {
    left: 24px;
    right: 24px;
    bottom: -8px;
    height: 38px;
  }

  .ramp-monitor-screen {
    border-radius: 22px;
    transform: none;
  }

  .ramp-monitor-screen-media {
    border-radius: 22px;
  }

  .ramp-monitor-overlay {
    max-width: none;
    border-radius: 16px;
  }

  .ramp-proof-marquee-track span:nth-child(n + 7) {
    display: none;
  }

  .ramp-suite-grid,
  .proof-board,
  .coverage-list,
  .whoop-membership-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .ramp-suite-grid::-webkit-scrollbar,
  .proof-board::-webkit-scrollbar,
  .coverage-list::-webkit-scrollbar,
  .whoop-membership-grid::-webkit-scrollbar {
    display: none;
  }

  .ramp-suite-card,
  .proof-metric,
  .proof-image-card,
  .coverage-list article,
  .whoop-membership-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .proof-image-card {
    min-height: 280px;
  }

  .proof-shell,
  .authority-grid {
    gap: 18px;
  }

  .proof-compare-card {
    margin-top: 18px;
    padding: 16px;
  }

  .switch-label-column,
  .switch-compare-card-muted {
    display: none;
  }

  .switch-comparison {
    display: block;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
  }

  .switch-compare-card-primary {
    min-height: auto;
    transform: none;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .switch-compare-stack .switch-compare-item:nth-child(n + 5) {
    display: none;
  }

  .testimonials-showcase {
    display: block;
  }

  .testimonial-video-stack {
    display: none;
  }

  .testimonials-actions {
    position: static;
    margin-top: 18px;
  }

  .mobile-sticky-cta-spacer {
    display: block;
    height: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(247, 242, 235, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 46px rgba(20, 16, 13, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-sticky-cta .button {
    min-height: 48px;
    width: auto;
  }

  .mobile-sticky-cta .button-light {
    min-width: 96px;
  }

  .launch-modal {
    z-index: 80;
  }
}

@media (max-width: 1180px) {
  .waitlist-hero,
  .waitlist-dark-panel {
    grid-template-columns: 1fr;
  }

  .waitlist-benefits-grid,
  .waitlist-preview-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-proof-list {
    max-width: 40rem;
  }
}

@media (max-width: 900px) {
  .waitlist-hero {
    gap: 28px;
    min-height: auto;
    padding-top: 84px;
  }

  .waitlist-form-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-visual-card {
    padding: 22px;
  }

  .waitlist-visual-stack {
    min-height: 360px;
  }

  .waitlist-monitor-image {
    min-height: 260px;
  }

  .waitlist-phone {
    width: 152px;
    height: 312px;
  }

  .waitlist-card-object {
    right: 108px;
    width: 132px;
  }

  .waitlist-benefits-section,
  .waitlist-preview-section {
    padding-bottom: 104px;
  }

  .waitlist-dark-panel {
    padding: 40px 28px;
    margin-bottom: 48px;
  }
}

@media (max-width: 640px) {
  body.waitlist-page .site-nav {
    display: none;
  }

  .waitlist-hero,
  .waitlist-benefits-section,
  .waitlist-preview-section {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .waitlist-hero {
    gap: 22px;
    padding: 42px 0 88px;
  }

  .waitlist-copy h1 {
    font-size: clamp(2.8rem, 12vw, 3.7rem);
    max-width: 8ch;
  }

  .waitlist-text {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .waitlist-chip-row {
    gap: 8px;
    margin-top: 20px;
  }

  .waitlist-chip-row span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .waitlist-proof-list {
    gap: 14px;
    margin-top: 24px;
  }

  .waitlist-proof-list strong {
    font-size: 0.98rem;
  }

  .waitlist-form-card,
  .waitlist-benefit-card,
  .waitlist-preview-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .waitlist-form-card h2 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .waitlist-form-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .waitlist-field input {
    min-height: 50px;
    border-radius: 14px;
  }

  .waitlist-interest-block {
    margin-top: 14px;
  }

  .waitlist-interest-chips {
    gap: 8px;
  }

  .waitlist-interest-chips button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .waitlist-submit {
    margin-top: 18px;
  }

  .waitlist-visual-card {
    padding: 18px;
    border-radius: 22px;
  }

  .waitlist-visual-card-top strong {
    font-size: 1.05rem;
  }

  .waitlist-visual-stack {
    min-height: 300px;
    margin-top: 16px;
  }

  .waitlist-monitor-image {
    min-height: 220px;
    border-radius: 20px;
  }

  .waitlist-phone {
    right: 10px;
    width: 126px;
    height: 258px;
  }

  .waitlist-phone-frame {
    border-radius: 28px;
  }

  .waitlist-phone-screen {
    border-radius: 20px;
  }

  .waitlist-card-object {
    right: 80px;
    bottom: 8px;
    width: 104px;
    border-radius: 16px;
  }

  .waitlist-benefits-section,
  .waitlist-preview-section {
    padding-bottom: 84px;
  }

  .waitlist-benefit-card h3 {
    font-size: 1.14rem;
  }

  .waitlist-preview-card strong {
    font-size: 1.72rem;
  }

  .waitlist-dark-panel {
    gap: 18px;
    padding: 24px 18px;
    border-radius: 24px;
    margin-bottom: 36px;
  }

  .waitlist-dark-copy h2 {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .waitlist-dark-steps article {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .waitlist-dark-steps strong {
    font-size: 1rem;
  }
}

/* ===========================================
   Wearable data ring visualization
   =========================================== */

.wearable-media-card-vignette {
  background: linear-gradient(180deg, #1a1b1f 0%, #0d0e10 100%);
  overflow: hidden;
}

.wearable-viz {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wearable-viz-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(162, 211, 232, 0.14), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(107, 175, 122, 0.08), transparent 50%);
}

.wearable-viz-ring {
  position: relative;
  width: 280px;
  height: 280px;
  transform: rotate(-90deg);
  z-index: 2;
}

.wearable-viz-ring circle {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
}

.wearable-viz-track {
  stroke: rgba(255, 255, 255, 0.06);
}

.wearable-viz-progress {
  stroke: url(#wearableGrad1);
  stroke: #a2d3e8;
  stroke-dasharray: 653;
  stroke-dashoffset: 118;
}

.wearable-viz-track-inner {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.wearable-viz-progress-inner {
  stroke: #f3ece2;
  stroke-width: 8;
  stroke-dasharray: 502;
  stroke-dashoffset: 140;
  opacity: 0.7;
}

.wearable-viz-track-core {
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 6;
}

.wearable-viz-progress-core {
  stroke: #6BAF7A;
  stroke-width: 6;
  stroke-dasharray: 352;
  stroke-dashoffset: 150;
  opacity: 0.85;
}

.wearable-viz-center {
  position: absolute;
  z-index: 3;
  text-align: center;
}

.wearable-viz-center span {
  display: block;
  color: rgba(243, 236, 226, 0.4);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wearable-viz-center strong {
  display: block;
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.wearable-viz-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 4;
}

.wearable-viz-chip em {
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wearable-viz-chip span {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wearable-viz-chip-1 { top: 32px; left: 32px; }
.wearable-viz-chip-2 { top: 42px; right: 28px; }
.wearable-viz-chip-3 { bottom: 88px; right: 24px; background: rgba(107, 175, 122, 0.14); border-color: rgba(107, 175, 122, 0.24); }
.wearable-viz-chip-3 span { color: #a3d9b2; }

/* ===========================================
   Persona card CSS vignettes
   =========================================== */

.persona-card-media {
  position: relative;
  overflow: hidden;
}

.persona-media-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 30%, rgba(162, 211, 232, 0.22), transparent 55%);
  pointer-events: none;
}

.persona-media-glow-warm {
  background: radial-gradient(circle at 40% 40%, rgba(232, 208, 175, 0.32), transparent 58%);
}

/* Persona 1 — wellness */
.persona-media-wellness {
  background: linear-gradient(160deg, #f0ead9 0%, #e7dfcf 100%);
}

.persona-shape-circle {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(162, 211, 232, 0.5), rgba(47, 74, 115, 0.2));
  filter: blur(0.5px);
}

.persona-media-metric {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(27, 22, 18, 0.08);
}

.persona-media-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.persona-media-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.persona-media-metric small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Persona 2 — founder */
.persona-media-founder {
  background: linear-gradient(160deg, #efe7db 0%, #e2d6c4 100%);
}

.persona-media-stack {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.persona-media-card-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 20px rgba(27, 22, 18, 0.05);
  font-size: 0.76rem;
}

.persona-media-card-mini span {
  color: var(--muted);
  font-weight: 600;
}

.persona-media-card-mini em {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: -0.02em;
}

.persona-card-mini-1 {
  transform: translateX(-12px);
}

.persona-card-mini-3 {
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.14), rgba(107, 175, 122, 0.08));
  border: 1px solid rgba(107, 175, 122, 0.22);
  transform: translateX(14px);
}

.persona-card-mini-3 em {
  color: #2d7b40;
}

/* Persona 3 — family */
.persona-media-family {
  background: linear-gradient(160deg, #e8dfd2 0%, #dcd0bf 100%);
}

.persona-media-nodes {
  position: absolute;
  inset: 20% 12% 30% 12%;
}

.persona-node-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.persona-node-lines path {
  fill: none;
  stroke: rgba(47, 74, 115, 0.24);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
}

.persona-node {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(27, 22, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.persona-node span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.persona-node-1 { top: 30%; left: 16%; }
.persona-node-2 { top: 8%; left: 46%; }
.persona-node-3 { top: 30%; right: 16%; }
.persona-node-4 { bottom: 14%; left: 46%; transform: translateX(-50%); }

.persona-media-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
}

.persona-media-label em {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.persona-media-label span {
  color: var(--muted);
  font-weight: 500;
}

/* Persona 4 — agency (dark card) */
.persona-media-agency {
  background: linear-gradient(160deg, #1e2024 0%, #0f1012 100%);
  overflow: hidden;
}

.persona-media-graph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 20px;
}

.persona-media-graph svg {
  width: 100%;
  height: 60%;
}

.persona-graph-line {
  fill: none;
  stroke: #a2d3e8;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.persona-graph-area {
  fill: url(#agencyGrad);
  fill: rgba(162, 211, 232, 0.14);
}

.persona-media-stat {
  position: absolute;
  left: 24px;
  bottom: 22px;
  right: 24px;
}

.persona-media-stat span {
  display: block;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.persona-media-stat strong {
  display: block;
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.persona-media-stat em {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.7rem;
  font-style: normal;
}

/* ===========================================
   Form states: loading, error, success
   =========================================== */

.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.button.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  margin-left: -9px;
  border-radius: 50%;
  border: 2px solid #f3ece2;
  border-top-color: transparent;
  opacity: 0.7;
  animation: spinner 720ms linear infinite;
}

.button-light.is-loading::after {
  border-color: var(--text);
  border-top-color: transparent;
}

@keyframes spinner {
  to { transform: rotate(360deg); }
}

input.is-invalid {
  border-color: #c96356 !important;
  background: rgba(201, 99, 86, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(201, 99, 86, 0.12) !important;
}

.form-error-message,
.form-success-message {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.form-error-message.is-visible,
.form-success-message.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-error-message {
  color: #c96356;
  background: rgba(201, 99, 86, 0.08);
  border: 1px solid rgba(201, 99, 86, 0.18);
}

.form-success-message {
  color: #2d7b40;
  background: rgba(107, 175, 122, 0.1);
  border: 1px solid rgba(107, 175, 122, 0.22);
}

.form-success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #6BAF7A;
  position: relative;
  flex-shrink: 0;
}

.form-success-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.footer-brand-column .form-success-message,
.footer-brand-column .form-error-message {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-brand-column .form-success-message {
  color: #a3d9b2;
}

.footer-brand-column .form-error-message {
  color: #e89185;
}

/* ===========================================
   Accessibility: focus-visible + skip link
   =========================================== */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.button:focus-visible {
  outline-offset: 4px;
}

a:focus-visible {
  outline-offset: 2px;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 74, 115, 0.18);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--dark);
  color: #f3ece2;
  font-size: 0.9rem;
  font-weight: 600;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

/* ===========================================
   Staggered reveal for child items
   =========================================== */

[data-stagger] [data-stagger-item] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 640ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 640ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

[data-stagger] [data-stagger-item].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-stagger] [data-stagger-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===========================================
   Animated donut draw-in
   =========================================== */

.allocation-donut-ring {
  transform: rotate(-90deg);
  transition: clip-path 1400ms cubic-bezier(0.2, 0.7, 0.2, 1);
  clip-path: polygon(50% 50%, 50% 0%, 50% 0%);
}

.allocation-donut-ring.is-drawn {
  clip-path: polygon(
    50% 50%, 50% 0%,
    100% 0%, 100% 100%,
    0% 100%, 0% 0%,
    50% 0%
  );
}

@media (prefers-reduced-motion: reduce) {
  .allocation-donut-ring {
    transition: none;
    clip-path: none;
  }
}

/* ===========================================
   Cursor-reactive card shine
   =========================================== */

.ramp-suite-card,
.persona-card,
.whoop-membership-card,
.authority-card-solo,
.wearable-pillar {
  position: relative;
  overflow: hidden;
  --shine-x: 50%;
  --shine-y: 50%;
}

.ramp-suite-card::after,
.persona-card::after,
.whoop-membership-card::after,
.authority-card-solo::after,
.wearable-pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--shine-x) var(--shine-y),
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
  z-index: 1;
}

.ramp-suite-card:hover::after,
.persona-card:hover::after,
.whoop-membership-card:hover::after,
.authority-card-solo:hover::after,
.wearable-pillar:hover::after {
  opacity: 1;
}

.ramp-suite-card > *,
.persona-card > *,
.whoop-membership-card > *,
.authority-card-solo > *,
.wearable-pillar > * {
  position: relative;
  z-index: 2;
}

/* ===========================================
   Magnetic button smoothing
   =========================================== */

.button-dark,
.whoop-button-primary {
  transition: transform 140ms ease-out, background-color 180ms ease, box-shadow 180ms ease;
}

/* ===========================================
   Animated ribbon on featured plan
   =========================================== */

.whoop-plan-ribbon {
  animation: ribbon-pulse 3.2s ease-in-out infinite;
}

@keyframes ribbon-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(47, 74, 115, 0.35); }
  50% { box-shadow: 0 12px 28px rgba(47, 74, 115, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .whoop-plan-ribbon {
    animation: none;
  }
}

/* ===========================================
   How It Works step vignettes
   =========================================== */

.how-step-visual {
  position: relative;
  overflow: hidden;
}

.how-vignette {
  position: absolute;
  inset: 0;
  padding: 22px;
}

/* Step 1 — Chat */
.how-vignette-chat {
  background: linear-gradient(180deg, #f6f3ef 0%, #efe9dd 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.how-vignette-bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 6px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(27, 22, 18, 0.05);
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.4;
}

.how-vignette-bubble-user {
  align-self: flex-end;
  border-radius: 18px 18px 6px 18px;
  background: linear-gradient(180deg, #1e1f22 0%, #151619 100%);
  color: #f3ece2;
}

.how-vignette-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #a2d3e8, #2f4a73);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.how-vignette-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  width: 52px;
  border-radius: 14px 14px 14px 4px;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(27, 22, 18, 0.05);
}

.how-vignette-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.4;
  animation: typing 1.2s ease-in-out infinite;
}

.how-vignette-typing span:nth-child(2) { animation-delay: 0.15s; }
.how-vignette-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-2px); }
}

/* Step 2 — Provider match */
.how-vignette-match {
  background: linear-gradient(180deg, #f5f1ea 0%, #ece5d6 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 16px;
}

.how-vignette-match-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 200ms ease;
}

.how-vignette-match-row.is-selected {
  background: #ffffff;
  border-color: rgba(47, 74, 115, 0.3);
  box-shadow: 0 12px 24px rgba(27, 22, 18, 0.08);
  transform: scale(1.02);
}

.how-vignette-match-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8d5b7, #c4a87a);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.how-vignette-match-info {
  flex: 1;
  min-width: 0;
}

.how-vignette-match-info strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.how-vignette-match-info span {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.7rem;
}

.how-vignette-match-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #6BAF7A;
  position: relative;
}

.how-vignette-match-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.how-vignette-match-confirm {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(47, 74, 115, 0.08), rgba(47, 74, 115, 0.04));
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
}

/* Step 3 — Reimbursement receipt */
.how-vignette-receipt {
  background: linear-gradient(180deg, #f0ebe0 0%, #e5ddcb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px;
}

.how-vignette-receipt-paper {
  position: relative;
  width: 108px;
  padding: 14px 14px 16px;
  border-radius: 6px 6px 10px 10px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(27, 22, 18, 0.1);
  transform: rotate(-8deg);
  font-family: "Soehne", "Inter", sans-serif;
}

.how-vignette-receipt-paper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #ffffff 0 8px, transparent 8px 14px);
  mask: linear-gradient(180deg, #000 50%, transparent 50%);
  -webkit-mask: linear-gradient(180deg, #000 50%, transparent 50%);
}

.how-vignette-receipt-header {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgba(27, 22, 18, 0.2);
  color: var(--text);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.how-vignette-receipt-line {
  height: 4px;
  margin-bottom: 6px;
  border-radius: 2px;
  background: rgba(27, 22, 18, 0.1);
}

.how-vignette-receipt-line.short {
  width: 60%;
}

.how-vignette-receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(27, 22, 18, 0.14);
}

.how-vignette-receipt-total span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-vignette-receipt-total strong {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.how-vignette-receipt-card {
  flex: 1;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1e1f22 0%, #141518 100%);
  box-shadow: 0 18px 36px rgba(20, 16, 13, 0.16);
  color: #f3ece2;
}

.how-vignette-receipt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.18);
  color: #a3d9b2;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.how-vignette-receipt-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.how-vignette-receipt-detail {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.52);
  font-size: 0.66rem;
}

/* ===========================================
   Authority intelligence vignette
   =========================================== */

.authority-image-vignette {
  background: linear-gradient(160deg, #1a1b1f 0%, #0d0e10 100%);
  overflow: hidden;
}

.intel-vignette {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.intel-vignette-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(162, 211, 232, 0.14), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(107, 175, 122, 0.08), transparent 50%);
  pointer-events: none;
}

.intel-vignette-query,
.intel-vignette-answer {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.intel-vignette-label,
.intel-vignette-answer-label {
  display: block;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intel-vignette-query-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  font-family: "Soehne", "Inter", sans-serif;
}

.intel-vignette-query-row em {
  flex: 0 0 68px;
  color: rgba(243, 236, 226, 0.52);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
}

.intel-vignette-query-row strong {
  color: #f3ece2;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.intel-vignette-query-row span {
  margin-left: auto;
  color: rgba(243, 236, 226, 0.4);
  font-size: 0.7rem;
  font-weight: 500;
}

.intel-vignette-query-row.is-alert span {
  color: #e89185;
}

.intel-vignette-answer strong {
  display: block;
  margin-top: 8px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.36;
}

.intel-vignette-actions {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

.intel-vignette-action {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 236, 226, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
}

.intel-vignette-action.is-primary {
  background: linear-gradient(180deg, #f3ece2, #d5cbba);
  color: #151619;
}

.intel-vignette-orb {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 211, 232, 0.22), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ===========================================
   Dark app showcase (large)
   =========================================== */

.app-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase-phone {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 540px;
  padding: 16px 14px;
  border-radius: 42px;
  background: linear-gradient(180deg, #2a2b2e, #18191c);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.app-showcase-phone-screen {
  width: 100%;
  height: 100%;
  padding: 20px 16px;
  border-radius: 32px;
  background: linear-gradient(180deg, #0f1013 0%, #070809 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.app-showcase-status {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.app-showcase-status span:first-child {
  color: rgba(243, 236, 226, 0.86);
  font-size: 0.72rem;
  font-weight: 600;
}

.app-showcase-status span:last-child {
  color: rgba(243, 236, 226, 0.4);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-showcase-hello {
  padding: 4px 0 8px;
}

.app-showcase-hello span {
  display: block;
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
}

.app-showcase-hello strong {
  display: block;
  margin-top: 4px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.app-showcase-card {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.app-showcase-card > span:first-child {
  display: block;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-showcase-card strong {
  display: block;
  margin-top: 4px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.app-showcase-detail {
  display: block;
  margin-top: 4px;
  color: rgba(243, 236, 226, 0.46);
  font-size: 0.64rem;
}

.app-showcase-card-primary {
  background: linear-gradient(180deg, rgba(162, 211, 232, 0.14), rgba(47, 74, 115, 0.1));
  border-color: rgba(162, 211, 232, 0.22);
}

.app-showcase-chip-row {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.app-showcase-chip-row em {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(243, 236, 226, 0.1);
  color: rgba(243, 236, 226, 0.8);
  font-size: 0.58rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
}

.app-showcase-chat {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(243, 236, 226, 0.36);
  font-size: 0.7rem;
}

.app-showcase-side-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.app-showcase-side-card span {
  display: block;
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-showcase-side-card strong {
  display: block;
  margin-top: 4px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.app-showcase-side-card em {
  display: block;
  margin-top: 4px;
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.64rem;
  font-style: normal;
}

.app-showcase-side-1 {
  top: 42px;
  left: 10%;
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.16), rgba(107, 175, 122, 0.06));
  border-color: rgba(107, 175, 122, 0.24);
}

.app-showcase-side-1 strong {
  color: #a3d9b2;
}

.app-showcase-side-2 {
  bottom: 60px;
  right: 6%;
  min-width: 180px;
}

.app-showcase-bar {
  margin-top: 10px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.app-showcase-bar > div {
  width: 81%;
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8, #6b7d95);
}

@media (max-width: 900px) {
  .app-showcase {
    min-height: 420px;
  }
  .app-showcase-phone {
    width: 220px;
    height: 460px;
  }
  .app-showcase-side-1 { left: 4%; }
  .app-showcase-side-2 { right: 2%; }
}

/* ===========================================
   Persona photo + data chip hybrid
   =========================================== */

.persona-media-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: linear-gradient(180deg, #f0ead9, #e7dfcf);
}

.persona-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.04) contrast(1.02);
}

.persona-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(21, 22, 25, 0.18) 72%, rgba(21, 22, 25, 0.52) 100%),
    linear-gradient(20deg, rgba(240, 232, 219, 0.2), transparent 55%);
  pointer-events: none;
}

.persona-photo-overlay-dark {
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.2) 0%, rgba(10, 12, 14, 0.55) 60%, rgba(10, 12, 14, 0.85) 100%);
}

.persona-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 30px rgba(27, 22, 18, 0.12);
  max-width: calc(100% - 36px);
}

.persona-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.persona-chip strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.persona-chip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

/* Savings chip — green accent */
.persona-chip-savings strong {
  color: #2d7b40;
}

.persona-chip-savings {
  background: rgba(255, 251, 245, 0.94);
  border: 1px solid rgba(107, 175, 122, 0.3);
}

/* Dark card chip */
.persona-card-dark .persona-chip {
  background: rgba(21, 22, 25, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.persona-card-dark .persona-chip span {
  color: rgba(243, 236, 226, 0.48);
}

.persona-card-dark .persona-chip strong {
  color: #f3ece2;
}

.persona-card-dark .persona-chip small {
  color: rgba(243, 236, 226, 0.5);
}

@media (max-width: 640px) {
  .persona-media-photo {
    min-height: 220px;
  }
  .persona-chip {
    left: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }
  .persona-chip strong {
    font-size: 1.15rem;
  }
}

/* ===========================================
   Authority intelligence — paper card (lighter)
   Replaces the previous dark intel-vignette
   =========================================== */

.authority-image-vignette {
  background: linear-gradient(160deg, #f6f2ea 0%, #ede5d4 100%);
  overflow: hidden;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intel-paper {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 26px 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow:
    0 30px 60px rgba(27, 22, 18, 0.12),
    0 2px 4px rgba(27, 22, 18, 0.04);
  z-index: 2;
}

.intel-paper::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -18px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 211, 232, 0.32), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}

.intel-paper-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.intel-paper-eyebrow {
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intel-paper-timestamp {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.intel-paper-label,
.intel-paper-suggest-label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intel-paper-signal {
  margin-top: 16px;
}

.intel-paper-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intel-paper-row {
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  align-items: center;
  gap: 12px;
}

.intel-paper-row em {
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  font-style: normal;
}

.intel-paper-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(27, 22, 18, 0.08);
  overflow: hidden;
}

.intel-paper-bar > div {
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #6b7d95 100%);
  border-radius: 3px;
}

.intel-paper-row-alert .intel-paper-bar > div {
  background: linear-gradient(90deg, #e8a885 0%, #c96356 100%);
}

.intel-paper-row strong {
  text-align: right;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.intel-paper-suggestion {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(162, 211, 232, 0.14), rgba(162, 211, 232, 0.06));
  border: 1px solid rgba(162, 211, 232, 0.32);
}

.intel-paper-suggestion strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.36;
}

.intel-paper-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.intel-paper-action {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 600;
}

.intel-paper-action.is-primary {
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  border-color: transparent;
  color: #f3ece2;
}

.intel-paper-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 22, 18, 0.06);
  color: var(--muted);
  font-size: 0.72rem;
}

.intel-paper-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.24);
  flex-shrink: 0;
}

/* ===========================================
   Trust row — minimal, honest pre-launch social proof
   =========================================== */

.trust-row-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 0;
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 30px rgba(27, 22, 18, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-row-label {
  margin: 0;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.trust-row-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.trust-logo {
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  opacity: 0.72;
}

.trust-logo-divider {
  width: 1px;
  height: 18px;
  background: rgba(27, 22, 18, 0.14);
}

@media (max-width: 900px) {
  .trust-row-section {
    width: min(calc(100% - 24px), var(--max-width));
  }
  .trust-row {
    padding: 22px 20px;
    gap: 14px;
  }
  .trust-row-logos {
    gap: 14px;
  }
  .trust-logo {
    font-size: 0.82rem;
  }
  .trust-logo-divider {
    display: none;
  }
}

/* ===========================================
   Hero phone — chat interaction (replaces mini-dashboard)
   =========================================== */

.ramp-hero-phone-chat {
  padding: 46px 14px 16px;
  background: linear-gradient(180deg, #f6f3ef 0%, #ece5d6 100%);
  color: var(--text);
  gap: 10px;
}

.phone-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.phone-chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2b45, #2f4a73);
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.phone-chat-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-chat-title strong {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.phone-chat-title span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 500;
}

.phone-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 0;
}

.phone-chat-bubble {
  max-width: 86%;
  padding: 10px 13px;
  border-radius: 14px 14px 14px 4px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.04);
  color: var(--text);
  font-size: 0.7rem;
  line-height: 1.38;
}

.phone-chat-bubble-user {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  color: #f3ece2;
}

.phone-chat-confirm {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(162, 211, 232, 0.26), rgba(162, 211, 232, 0.14));
  border: 1px solid rgba(162, 211, 232, 0.48);
}

.phone-chat-confirm-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(47, 74, 115, 0.14);
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-chat-confirm strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.phone-chat-confirm-detail {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.62rem;
}

.ramp-hero-phone-chat .phone-app-prompt {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(27, 22, 18, 0.06);
  color: var(--muted);
}

/* ===========================================
   Teams section — B2B band
   =========================================== */

.teams-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.teams-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.teams-copy h2 {
  margin: 12px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.teams-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.68;
}

.teams-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin: 32px 0 0;
  padding: 24px 0;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.teams-stat strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.teams-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.teams-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

/* Teams dashboard feature card */
.teams-visual {
  position: relative;
}

.teams-roster {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  box-shadow:
    0 40px 80px rgba(27, 22, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(243, 236, 226, 0.9);
  position: relative;
  overflow: hidden;
}

.teams-roster::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 211, 232, 0.14), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.teams-roster-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.teams-roster-eyebrow {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-roster-count {
  color: rgba(243, 236, 226, 0.56);
  font-size: 0.76rem;
  font-weight: 500;
}

.teams-roster-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}

.teams-roster-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 220ms ease;
}

.teams-roster-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

.teams-roster-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.teams-roster-avatar-1 { background: linear-gradient(135deg, #c4a87a, #8b6f42); }
.teams-roster-avatar-2 { background: linear-gradient(135deg, #6b7d95, #3a4a65); }
.teams-roster-avatar-3 { background: linear-gradient(135deg, #a2d3e8, #5d8eab); }
.teams-roster-avatar-4 { background: linear-gradient(135deg, #8c7f6e, #574c3d); }

.teams-roster-info strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.teams-roster-info span {
  display: block;
  margin-top: 2px;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.72rem;
}

.teams-roster-chip {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.teams-roster-chip-active {
  background: rgba(107, 175, 122, 0.18);
  color: #a3d9b2;
}

.teams-roster-chip-onboarding {
  background: rgba(232, 168, 133, 0.16);
  color: #e8a885;
}

.teams-roster-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.teams-roster-pool {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.teams-roster-pool > span {
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-roster-pool strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.teams-roster-pool-bar {
  margin: 10px 0 8px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.teams-roster-pool-fill {
  width: 76%;
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #6b7d95 100%);
  border-radius: 3px;
}

.teams-roster-pool-note {
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.72rem;
}

@media (max-width: 1180px) {
  .teams-shell {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .teams-section {
    padding: 72px 0;
  }
  .teams-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .teams-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .teams-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .teams-section {
    width: min(calc(100% - 24px), var(--max-width));
    padding: 56px 0;
  }
  .teams-roster {
    padding: 22px 18px;
  }
}

/* ===========================================
   Audit pass 4 fixes
   =========================================== */

/* #1 — Featured plan scale: combine with stagger transforms */
[data-stagger] [data-stagger-item].whoop-membership-card-featured {
  transform: translateY(16px) scale(1.04);
}

[data-stagger] [data-stagger-item].whoop-membership-card-featured.is-revealed {
  transform: translateY(0) scale(1.04);
}

[data-stagger] [data-stagger-item].whoop-membership-card-featured:hover,
[data-stagger] [data-stagger-item].whoop-membership-card-featured.is-revealed:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 1180px) {
  [data-stagger] [data-stagger-item].whoop-membership-card-featured,
  [data-stagger] [data-stagger-item].whoop-membership-card-featured.is-revealed {
    transform: translateY(0);
  }
  [data-stagger] [data-stagger-item].whoop-membership-card-featured:hover {
    transform: translateY(-4px);
  }
}

/* #2 — Reimbursement scene vignette (receipt + approval layered) */
.reimbursement-scene {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.reimbursement-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 219, 198, 0.36), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(107, 175, 122, 0.08), transparent 55%);
  border-radius: 28px;
  pointer-events: none;
}

.reimbursement-receipt {
  position: absolute;
  left: 8%;
  top: 10%;
  width: 240px;
  padding: 20px 22px 22px;
  border-radius: 8px 8px 14px 14px;
  background: #ffffff;
  box-shadow:
    0 40px 72px rgba(27, 22, 18, 0.14),
    0 2px 4px rgba(27, 22, 18, 0.04);
  transform: rotate(-6deg);
  z-index: 1;
  font-family: "Soehne", "Inter", sans-serif;
}

.reimbursement-receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 12px;
  background: repeating-linear-gradient(90deg, #ffffff 0 10px, transparent 10px 18px);
  mask: linear-gradient(180deg, #000 50%, transparent 50%);
  -webkit-mask: linear-gradient(180deg, #000 50%, transparent 50%);
}

.reimbursement-receipt-header {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(27, 22, 18, 0.18);
  text-align: center;
}

.reimbursement-receipt-brand {
  display: block;
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reimbursement-receipt-meta {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
}

.reimbursement-receipt-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(27, 22, 18, 0.18);
}

.reimbursement-receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.reimbursement-receipt-row span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.3;
}

.reimbursement-receipt-row strong {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 600;
}

.reimbursement-receipt-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.reimbursement-receipt-total span {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reimbursement-receipt-total strong {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.reimbursement-approval {
  position: absolute;
  right: 6%;
  bottom: 12%;
  width: 300px;
  padding: 22px 24px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  box-shadow: 0 40px 80px rgba(20, 16, 13, 0.28);
  color: #f3ece2;
  z-index: 2;
  transform: rotate(3deg);
}

.reimbursement-approval-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.reimbursement-approval-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.2);
  color: #a3d9b2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reimbursement-approval-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #6BAF7A;
  position: relative;
  box-shadow: 0 0 0 4px rgba(107, 175, 122, 0.2);
}

.reimbursement-approval-check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.reimbursement-approval-value {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.reimbursement-approval-note {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.56);
  font-size: 0.78rem;
}

.reimbursement-approval-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reimbursement-approval-step {
  text-align: center;
  padding: 6px 4px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.reimbursement-approval-step.is-done {
  background: rgba(107, 175, 122, 0.12);
  color: #a3d9b2;
}

.reimbursement-approval-step.is-active {
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.28), rgba(107, 175, 122, 0.14));
  color: #c5eacf;
  box-shadow: inset 0 0 0 1px rgba(107, 175, 122, 0.32);
}

@media (max-width: 900px) {
  .reimbursement-scene {
    min-height: 360px;
    padding: 20px;
  }
  .reimbursement-receipt {
    width: 180px;
    left: 4%;
    padding: 16px 18px 18px;
  }
  .reimbursement-approval {
    right: 2%;
    width: 240px;
    padding: 18px 20px 20px;
  }
  .reimbursement-approval-value {
    font-size: 1.35rem;
  }
}

/* #3 — Proof section metrics enlarged */
.proof-metric strong {
  font-size: 2.6rem !important;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.proof-metric {
  padding: 28px 26px;
}

.proof-metric p {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.proof-metric span {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.4;
}

/* #4 — Switch Traditional side visibly diminished */
.switch-compare-card-muted {
  opacity: 0.72;
  filter: saturate(0.72);
  background: rgba(255, 251, 245, 0.3) !important;
  box-shadow: 0 8px 24px rgba(27, 22, 18, 0.03) !important;
}

.switch-compare-item-muted p {
  color: var(--muted) !important;
}

.switch-check-muted {
  opacity: 0.5;
}

/* Gabriel side lift */
.switch-compare-card-primary {
  box-shadow: 0 28px 64px rgba(27, 22, 18, 0.1);
}

/* #6 — Trust row taller + bolder */
.trust-row {
  padding: 38px 44px !important;
  gap: 20px !important;
}

.trust-row-label {
  font-size: 0.82rem !important;
  letter-spacing: 0.16em !important;
}

.trust-logo {
  font-size: 1rem !important;
  opacity: 0.8 !important;
}

@media (max-width: 900px) {
  .trust-row {
    padding: 26px 22px !important;
  }
  .trust-row-label {
    font-size: 0.7rem !important;
  }
  .trust-logo {
    font-size: 0.88rem !important;
  }
}

/* #7 — How-it-works step 3 payoff accent */
.how-vignette-receipt {
  background: linear-gradient(180deg, #edf2ea 0%, #d9e7d5 100%) !important;
}

.how-vignette-receipt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(107, 175, 122, 0.22), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(107, 175, 122, 0.1), transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

.how-vignette-receipt > * {
  position: relative;
  z-index: 1;
}

/* #8 — Persona cards equal heights */
.persona-grid {
  align-items: stretch;
}

.persona-card {
  display: flex;
  flex-direction: column;
}

.persona-card > p:last-of-type {
  margin-top: auto;
  min-height: 4.3em;
}

.persona-card h3 {
  min-height: 2.4em;
}

/* #9 — Authority card-solo ratio flipped to favor visual */
.authority-card-solo {
  grid-template-columns: 1fr 1.15fr !important;
}

@media (max-width: 900px) {
  .authority-card-solo {
    grid-template-columns: 1fr !important;
  }
}

/* #10 — Wearable pillars more weight */
.wearable-pillar {
  padding: 32px 34px !important;
}

.wearable-pillar strong {
  font-size: 1.68rem !important;
  line-height: 1 !important;
}

.wearable-pillar p {
  margin-top: 10px !important;
  font-size: 1rem !important;
  line-height: 1.58 !important;
}

.wearable-pillar-index {
  font-size: 0.72rem !important;
  opacity: 0.72;
}

@media (max-width: 900px) {
  .wearable-pillar {
    padding: 24px 26px !important;
  }
  .wearable-pillar strong {
    font-size: 1.4rem !important;
  }
}

/* #11 — Suite card padding breathing space */
.ramp-suite-card {
  padding: 24px 22px 24px !important;
}

.ramp-suite-card-hero {
  padding: 32px 30px 30px !important;
}

/* Keep media flush within cards via margin */
.ramp-suite-card .ramp-suite-media {
  margin: 18px -22px -24px;
  border-radius: 0 0 16px 16px;
}

.ramp-suite-card-hero .ramp-suite-media {
  margin: 22px -30px -30px;
}

@media (max-width: 640px) {
  .ramp-suite-card {
    padding: 20px 18px 20px !important;
  }
  .ramp-suite-card .ramp-suite-media {
    margin: 16px -18px -20px;
  }
}

/* #13 — Allocation subheading style (reinstate paragraph cleanly) */
.allocation-subheading {
  margin: 18px 0 0 !important;
  max-width: 58ch;
  color: rgba(243, 236, 226, 0.68) !important;
  font-size: 1rem !important;
  line-height: 1.62 !important;
}

/* ===========================================
   Audit pass 5 — askgabriel.com integrations
   =========================================== */

/* Authority pull-quote */
.authority-pullquote {
  position: relative;
  margin: 22px 0 0;
  padding: 18px 24px 18px 40px;
  border-left: 2px solid rgba(162, 211, 232, 0.4);
  color: rgba(243, 236, 226, 0.92);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.authority-pullquote-mark {
  position: absolute;
  left: 12px;
  top: 6px;
  color: rgba(162, 211, 232, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  line-height: 1;
}

/* Intel paper: query + evidence ladder */
.intel-paper-query {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(27, 22, 18, 0.04);
  border: 1px solid rgba(27, 22, 18, 0.06);
}

.intel-paper-query-label {
  display: block;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intel-paper-query-text {
  margin: 8px 0 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.intel-paper-evidence {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 22, 18, 0.06);
}

.intel-paper-evidence-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intel-paper-evidence-ladder {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intel-paper-tier {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr 48px;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.72rem;
}

.intel-paper-tier-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(162, 211, 232, 0.08);
  border-right: 2px solid rgba(162, 211, 232, 0.2);
  z-index: 0;
}

.intel-paper-tier em,
.intel-paper-tier span,
.intel-paper-tier strong {
  position: relative;
  z-index: 1;
}

.intel-paper-tier em {
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
}

.intel-paper-tier span {
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 500;
}

.intel-paper-tier strong {
  text-align: right;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.intel-paper-tier-active {
  background: rgba(162, 211, 232, 0.08);
  border: 1px solid rgba(162, 211, 232, 0.28);
}

.intel-paper-tier-active .intel-paper-tier-bar {
  background: linear-gradient(90deg, rgba(162, 211, 232, 0.32), rgba(162, 211, 232, 0.12));
  border-right-color: #2f4a73;
}

.intel-paper-tier-active em,
.intel-paper-tier-active span,
.intel-paper-tier-active strong {
  color: var(--text);
}

.intel-paper-tier-active strong {
  color: var(--blue);
}

/* Hero SMS link */
.ramp-hero-sms-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
  transition: border-color 180ms ease;
}

.ramp-hero-sms-link:hover {
  border-color: var(--blue);
}

/* Suite iMessage card */
.ramp-suite-media-imessage {
  background: linear-gradient(180deg, #f5f1ea 0%, #e9e0cf 100%);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imessage-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.imessage-row-meta {
  text-align: center;
  margin-bottom: 4px;
}

.imessage-row-meta span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
}

.imessage-bubble {
  max-width: 78%;
  padding: 8px 13px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.imessage-bubble-me {
  align-self: flex-end;
  background: linear-gradient(180deg, #2e9bff 0%, #047eff 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 10px rgba(4, 126, 255, 0.18);
}

.imessage-bubble-them {
  align-self: flex-start;
  background: #e8e6e5;
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.imessage-read {
  align-self: flex-end;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
}

/* Health Twin suite card */
.ramp-suite-media-twin {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(238, 232, 222, 0.95));
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.suite-twin-shell {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(27, 22, 18, 0.05);
}

.suite-twin-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.06);
}

.suite-twin-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4a87a, #8b6f42);
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.suite-twin-header strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.suite-twin-header > div > span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
}

.suite-twin-memory {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.suite-twin-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px;
  align-items: baseline;
  font-size: 0.72rem;
}

.suite-twin-row em {
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.suite-twin-row span {
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

.suite-twin-status {
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.14), rgba(107, 175, 122, 0.06));
  color: #2d7b40;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
}

/* Reimbursement iMessage phone vignette */
.reimbursement-imessage {
  position: absolute;
  left: 6%;
  top: 8%;
  width: 280px;
  padding: 16px 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f5f1ea 0%, #e9e0cf 100%);
  box-shadow: 0 36px 64px rgba(27, 22, 18, 0.15);
  transform: rotate(-4deg);
  z-index: 1;
}

.reimbursement-imessage-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.reimbursement-imessage-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2b45, #2f4a73);
  flex-shrink: 0;
}

.reimbursement-imessage-title strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.reimbursement-imessage-title span {
  display: block;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
}

.reimbursement-imessage-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.reimbursement-imessage-bubble {
  max-width: 84%;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 0.76rem;
  line-height: 1.35;
}

.reimbursement-imessage-bubble-me {
  align-self: flex-end;
  background: linear-gradient(180deg, #2e9bff, #047eff);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.reimbursement-imessage-bubble-them {
  align-self: flex-start;
  background: #e8e6e5;
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.reimbursement-imessage-attach {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(27, 22, 18, 0.06);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(27, 22, 18, 0.04);
}

.reimbursement-imessage-attach-icon {
  font-size: 0.86rem;
}

.reimbursement-imessage-bubble-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #1e2024, #151619);
  color: #f3ece2;
  border-bottom-left-radius: 4px;
  max-width: 90%;
}

.reimbursement-imessage-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.22);
  color: #a3d9b2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reimbursement-imessage-bubble-card strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.reimbursement-imessage-bubble-card em {
  color: rgba(243, 236, 226, 0.56);
  font-size: 0.66rem;
  font-style: normal;
}

.reimbursement-imessage-timestamp {
  align-self: center;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 500;
}

/* Hide the old reimbursement-receipt since replaced by imessage phone */
.reimbursement-scene .reimbursement-receipt {
  display: none;
}

/* Reimbursement SMS CTA */
.reimbursement-phone-cta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.reimbursement-phone-cta a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
  transition: border-color 180ms ease;
}

.reimbursement-phone-cta a:hover {
  border-color: var(--blue);
}

@media (max-width: 900px) {
  .reimbursement-imessage {
    left: 4%;
    top: 4%;
    width: 240px;
    padding: 14px 14px 16px;
  }
  .authority-pullquote {
    font-size: 1.05rem;
    padding: 16px 20px 16px 34px;
  }
}

/* ===========================================
   Compare page upgrade — Tiers 1, 2, 3
   =========================================== */

/* Compare hero — SMS accent + simplified visual */
.compare-hero-sms {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.compare-hero-sms a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
  transition: border-color 180ms ease;
}

.compare-hero-sms a:hover {
  border-color: var(--blue);
}

.compare-stat-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  margin-top: 28px !important;
  gap: 14px !important;
}

.compare-stat-card {
  padding: 18px 18px !important;
}

.compare-stat-card strong {
  font-size: 1.3rem !important;
  letter-spacing: -0.03em;
  line-height: 1;
}

.compare-stat-card span {
  margin-top: 6px !important;
  font-size: 0.82rem !important;
  line-height: 1.3;
}

/* Compare hero visual — iMessage bubbles + economic card */
.compare-phone-bubble-imessage-me {
  align-self: flex-end;
  background: linear-gradient(180deg, #2e9bff 0%, #047eff 100%) !important;
  color: #fff !important;
  border-radius: 18px 18px 6px 18px !important;
  box-shadow: 0 4px 10px rgba(4, 126, 255, 0.18);
}

.compare-phone-bubble-imessage-them {
  align-self: flex-start;
  background: #e8e6e5 !important;
  color: var(--text) !important;
  border-radius: 18px 18px 18px 6px !important;
}

.compare-visual-card-economic {
  position: absolute;
  bottom: 5%;
  right: 0;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  color: #f3ece2;
  box-shadow: 0 32px 60px rgba(20, 16, 13, 0.22);
  z-index: 3;
}

.compare-visual-card-economic p {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.compare-visual-card-economic strong {
  display: block;
  margin-top: 8px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.32;
}

/* Economic reality hero card */
.compare-economics {
  margin: 36px 0 44px;
  padding: 34px 40px 36px;
  border-radius: 28px;
  background: linear-gradient(160deg, #f6f2ea 0%, #ede5d4 100%);
  box-shadow: 0 24px 52px rgba(27, 22, 18, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.compare-economics-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.compare-economics-eyebrow {
  display: block;
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-economics-header strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.compare-economics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-economics-column {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.compare-economics-column-muted {
  opacity: 0.72;
  filter: saturate(0.72);
}

.compare-economics-column-primary {
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  border-color: transparent;
  color: #f3ece2;
  box-shadow: 0 22px 44px rgba(27, 22, 18, 0.18);
}

.compare-economics-column-label {
  display: block;
  margin-bottom: 16px;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-economics-column-muted .compare-economics-column-label {
  color: var(--muted);
}

.compare-economics-column-primary .compare-economics-column-label {
  color: rgba(162, 211, 232, 0.9);
}

.compare-economics-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-family: "Soehne", "Inter", sans-serif;
}

.compare-economics-row em {
  font-style: normal;
  font-weight: 500;
}

.compare-economics-column-muted .compare-economics-row em {
  color: var(--muted-strong);
}

.compare-economics-column-primary .compare-economics-row em {
  color: rgba(243, 236, 226, 0.76);
}

.compare-economics-row span {
  font-weight: 500;
}

.compare-economics-column-muted .compare-economics-row span {
  color: var(--text);
}

.compare-economics-column-primary .compare-economics-row span {
  color: #f3ece2;
}

.compare-economics-positive {
  color: #2d7b40 !important;
  font-weight: 600 !important;
}

.compare-economics-column-primary .compare-economics-positive {
  color: #a3d9b2 !important;
}

.compare-economics-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(27, 22, 18, 0.1);
}

.compare-economics-column-primary .compare-economics-total {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.compare-economics-total em {
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-economics-column-primary .compare-economics-total em {
  color: rgba(243, 236, 226, 0.6);
}

.compare-economics-total strong {
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.compare-economics-column-muted .compare-economics-total strong {
  color: var(--text);
}

.compare-economics-column-primary .compare-economics-total strong {
  color: #f3ece2;
}

.compare-economics-footnote {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* Compare table — grouped rows + muted Traditional */
.compare-table-group {
  padding: 18px 24px 10px;
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(47, 74, 115, 0.04);
  border-top: 1px solid rgba(27, 22, 18, 0.06);
}

.compare-table-group:first-child {
  border-top: none;
}

.compare-table-cell-muted {
  opacity: 0.7 !important;
  filter: saturate(0.72);
}

.compare-table-cell-primary {
  background: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 14px 28px rgba(27, 22, 18, 0.04);
}

/* Pull-quote section */
.compare-pullquote-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0;
}

.compare-pullquote {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 48px 32px 72px;
  border-left: 3px solid rgba(47, 74, 115, 0.32);
  background: linear-gradient(90deg, rgba(162, 211, 232, 0.06), transparent);
}

.compare-pullquote-mark {
  position: absolute;
  top: 18px;
  left: 32px;
  color: rgba(47, 74, 115, 0.38);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.compare-pullquote p {
  margin: 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.compare-pullquote cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 500;
}

/* Covered section vignettes */
.compare-covered-card-vignette {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0ead9 0%, #e7dfcf 100%) !important;
  min-height: 400px;
}

.compare-covered-card-functional .compare-covered-vignette-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.compare-covered-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.compare-covered-orb-1 {
  top: -20%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(162, 211, 232, 0.4), transparent 70%);
}

.compare-covered-orb-2 {
  bottom: -20%;
  left: -10%;
  width: 40%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 219, 198, 0.4), transparent 70%);
}

.compare-covered-chip-stack {
  position: absolute;
  top: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  z-index: 1;
}

.compare-covered-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.06);
}

.compare-covered-pill-dark {
  background: linear-gradient(180deg, #1e2024, #151619);
  border-color: transparent;
  color: #f3ece2;
}

.compare-covered-card-functional .compare-covered-overlay {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

/* Supplements vignette */
.compare-covered-media-supplements {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(232, 219, 198, 0.6));
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
  padding: 20px 20px 24px;
  overflow: hidden;
}

.compare-covered-bottle {
  position: relative;
  border-radius: 12px 12px 10px 10px;
  background: linear-gradient(180deg, rgba(39, 41, 45, 0.96), rgba(20, 21, 24, 1));
  box-shadow: 0 12px 22px rgba(20, 16, 13, 0.14);
}

.compare-covered-bottle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 54%;
  height: 12px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #cdc3b8, #9f968d);
  transform: translateX(-50%);
}

.compare-covered-bottle::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 34%;
  height: 28%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.compare-covered-bottle-1 {
  width: 42px;
  height: 68px;
}

.compare-covered-bottle-2 {
  width: 48px;
  height: 86px;
}

.compare-covered-bottle-3 {
  width: 40px;
  height: 60px;
}

.compare-covered-chip-inline {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 10px rgba(27, 22, 18, 0.04);
}

/* IV vignette */
.compare-covered-media-iv {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(238, 232, 225, 0.98));
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.compare-covered-iv-card {
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 26px rgba(27, 22, 18, 0.06);
}

.compare-covered-iv-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.16);
  color: #2d7b40;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compare-covered-iv-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.compare-covered-iv-detail {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.compare-covered-iv-drop {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(143, 201, 162, 0.48), rgba(143, 201, 162, 0.2));
  filter: blur(4px);
  z-index: 1;
}

/* Cannabis vignette */
.compare-covered-media-cannabis {
  position: relative;
  background: linear-gradient(160deg, rgba(230, 240, 220, 0.6), rgba(238, 232, 225, 0.9));
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #4a6b3d;
}

.compare-covered-cannabis-leaf {
  width: 100px;
  height: 100px;
  opacity: 0.72;
  color: #6BAF7A;
}

.compare-covered-cannabis-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.04);
}

.compare-covered-cannabis-label span {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-covered-cannabis-label strong {
  display: block;
  margin-top: 4px;
  color: #2d7b40;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* iMessage booking vignette */
.compare-covered-media-imessage {
  background: linear-gradient(180deg, #f5f1ea 0%, #e9e0cf 100%);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.compare-covered-imessage-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.82rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.compare-covered-imessage-me {
  align-self: flex-end;
  background: linear-gradient(180deg, #2e9bff 0%, #047eff 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 10px rgba(4, 126, 255, 0.18);
}

.compare-covered-imessage-them {
  align-self: flex-start;
  background: #e8e6e5;
  color: var(--text);
  border-bottom-left-radius: 4px;
}

/* Protection vignette */
.compare-covered-media-protection {
  position: relative;
  background: linear-gradient(160deg, #1e2024 0%, #151619 100%);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.compare-covered-shield {
  position: absolute;
  top: 20%;
  right: 14%;
  width: 110px;
  height: 130px;
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.22), rgba(107, 175, 122, 0.04));
  clip-path: polygon(50% 0%, 100% 18%, 100% 68%, 50% 100%, 0% 68%, 0% 18%);
}

.compare-covered-protection-card {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f3ece2;
}

.compare-covered-protection-card span:first-child {
  display: block;
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-covered-protection-card strong {
  display: block;
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.compare-covered-protection-card em {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.78rem;
  font-style: normal;
}

/* Practitioner card upgrades */
.compare-practitioner-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-practitioner-stat-row strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.compare-practitioner-stat-row span {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.82rem;
}

.compare-practitioner-desc {
  margin-top: 16px !important;
  color: rgba(243, 236, 226, 0.72) !important;
  font-size: 0.94rem !important;
  line-height: 1.56;
}

.compare-practitioner-sources {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
}

.compare-practitioner-source-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.2);
  flex-shrink: 0;
}

/* Compact evidence ladder */
.compare-practitioner-card-evidence {
  background: linear-gradient(160deg, #f6f2ea 0%, #ede5d4 100%) !important;
}

.compare-evidence-ladder {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.compare-evidence-tier {
  display: grid;
  grid-template-columns: 30px 1fr 42px;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 8px;
}

.compare-evidence-tier em {
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
}

.compare-evidence-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(162, 211, 232, 0.3);
}

.compare-evidence-tier strong {
  text-align: right;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.compare-evidence-tier-active {
  background: rgba(162, 211, 232, 0.14);
  border: 1px solid rgba(162, 211, 232, 0.3);
}

.compare-evidence-tier-active em {
  color: var(--text);
}

.compare-evidence-tier-active .compare-evidence-bar {
  background: linear-gradient(90deg, rgba(47, 74, 115, 0.8), rgba(162, 211, 232, 0.6));
}

.compare-evidence-tier-active strong {
  color: var(--blue);
}

/* Membership card featured + bullets */
.compare-membership-card {
  position: relative;
}

.compare-membership-card-featured {
  box-shadow: 0 32px 72px rgba(27, 22, 18, 0.22) !important;
  outline: 1px solid rgba(47, 74, 115, 0.35);
  outline-offset: -1px;
  transform: scale(1.04);
  z-index: 2;
}

[data-stagger] [data-stagger-item].compare-membership-card-featured {
  transform: translateY(16px) scale(1.04);
}

[data-stagger] [data-stagger-item].compare-membership-card-featured.is-revealed {
  transform: translateY(0) scale(1.04);
}

[data-stagger] [data-stagger-item].compare-membership-card-featured:hover {
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 1180px) {
  [data-stagger] [data-stagger-item].compare-membership-card-featured,
  [data-stagger] [data-stagger-item].compare-membership-card-featured.is-revealed {
    transform: translateY(0);
  }
}

.compare-membership-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e2b45, #2f4a73);
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(47, 74, 115, 0.35);
  white-space: nowrap;
}

.compare-membership-sub {
  margin: 4px 0 18px !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
}

/* All-in pricing treatment on /compare membership cards (2026-04-20) */
.compare-membership-allin {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68em;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
  vertical-align: 2px;
}
.compare-membership-card-featured .compare-membership-allin { color: rgba(245,241,235,.65); }
.compare-membership-price-break {
  margin: 2px 0 10px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .01em;
  line-height: 1.5;
}
.compare-membership-price-break b {
  color: #141414;
  font-weight: 600;
}
.compare-membership-card-featured .compare-membership-price-break { color: rgba(245,241,235,.75); }
.compare-membership-card-featured .compare-membership-price-break b { color: #f5f1eb; }
.compare-membership-plus {
  color: rgba(20,20,20,.35);
  font-weight: 300;
  margin: 0 2px;
}
.compare-membership-card-featured .compare-membership-plus { color: rgba(245,241,235,.5); }

.compare-membership-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.compare-membership-bullets li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.48;
}

.compare-membership-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Compare teams CTA — inside dark zone */
.compare-teams-cta {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  margin-top: 48px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-teams-cta h3 {
  margin: 8px 0 0;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.compare-teams-cta p {
  margin: 10px 0 0;
  max-width: 52ch;
  color: rgba(243, 236, 226, 0.7);
  font-size: 0.96rem;
  line-height: 1.56;
}

@media (max-width: 900px) {
  .compare-teams-cta {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  .compare-economics {
    padding: 24px 22px;
  }

  .compare-economics-grid {
    grid-template-columns: 1fr;
  }

  .compare-economics-total strong {
    font-size: 1.4rem;
  }

  .compare-pullquote {
    padding: 28px 24px 24px 50px;
  }

  .compare-pullquote p {
    font-size: 1.3rem;
  }

  .compare-pullquote-mark {
    top: 14px;
    left: 18px;
    font-size: 2.4rem;
  }

  .compare-covered-card-vignette {
    min-height: 320px;
  }

  .compare-practitioner-stat-row strong {
    font-size: 1.8rem;
  }

  .compare-visual-card-economic {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }
}

/* ===========================================
   Select page upgrade — Pass 1
   =========================================== */

/* Select hero — SMS + coordinator vignette (replaces entrepreneur photo) */
.select-hero-sms {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.select-hero-sms a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
  transition: border-color 180ms ease;
}

.select-hero-sms a:hover {
  border-color: var(--blue);
}

.select-hero-vignette {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #f0ead9 0%, #e7dfcf 100%);
}

.select-hero-vignette-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/editorial/hero-plunge.jpg');
  background-size: cover;
  background-position: center right;
  filter: saturate(0.95);
}

.select-hero-vignette-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 22, 25, 0) 50%, rgba(21, 22, 25, 0.42) 100%),
    linear-gradient(90deg, rgba(21, 22, 25, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.select-hero-coord-card {
  position: absolute;
  left: 30px;
  top: 34px;
  width: 260px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  box-shadow: 0 32px 64px rgba(20, 16, 13, 0.28);
  color: #f3ece2;
  z-index: 2;
}

.select-hero-coord-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.select-hero-coord-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.24);
  flex-shrink: 0;
}

.select-hero-coord-title strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.select-hero-coord-title span {
  display: block;
  color: rgba(243, 236, 226, 0.52);
  font-size: 0.66rem;
}

.select-hero-coord-status {
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(107, 175, 122, 0.14);
  color: #a3d9b2;
  font-size: 0.68rem;
  font-weight: 600;
  text-align: center;
}

.select-hero-coord-actions {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.select-hero-coord-action {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 236, 226, 0.82);
  font-size: 0.72rem;
  font-weight: 600;
}

.select-hero-coord-action.is-primary {
  background: linear-gradient(180deg, #f3ece2, #d5cbba);
  color: #151619;
}

.select-hero-chip-card {
  position: absolute;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 40px rgba(27, 22, 18, 0.12);
  z-index: 3;
}

.select-hero-chip-card em {
  display: block;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-hero-chip-card strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.select-hero-chip-care-plus {
  right: 30px;
  top: 60px;
  max-width: 220px;
}

.select-hero-chip-cost {
  right: 48px;
  bottom: 34px;
  max-width: 240px;
}

.select-hero-chip-cost span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.34;
}

/* Problem showcase vignettes */
.select-problem-media-vignette {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0ead9 0%, #e7dfcf 100%);
}

.select-problem-ppo {
  position: absolute;
  inset: 24px 24px auto 24px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(27, 22, 18, 0.08);
}

.select-problem-ppo-header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-problem-ppo-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.select-problem-ppo-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.74rem;
}

.select-problem-ppo-row em {
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.select-problem-ppo-row span {
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-weight: 500;
}

.select-problem-ppo-row.is-active {
  background: rgba(107, 175, 122, 0.1);
  border-radius: 8px;
  padding: 6px 10px;
  margin: 0 -10px;
}

.select-problem-ppo-row.is-active span {
  color: #2d7b40;
}

.select-problem-diagnostic {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-problem-diagnostic-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 74, 115, 0.4), rgba(47, 74, 115, 0.1) 60%, transparent);
  filter: blur(12px);
}

.select-problem-diagnostic-chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 40px;
}

.select-problem-diagnostic-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.05);
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.select-problem-family {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px;
}

.select-problem-family-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.14);
}

.select-problem-family-avatar-1 { background: linear-gradient(135deg, #c4a87a, #8b6f42); }
.select-problem-family-avatar-2 { background: linear-gradient(135deg, #6b7d95, #3a4a65); }
.select-problem-family-avatar-3 { background: linear-gradient(135deg, #a2d3e8, #5d8eab); }
.select-problem-family-avatar-4 { background: linear-gradient(135deg, #e8c5a0, #b09070); }

.select-problem-family-coord {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.06);
}

.select-problem-family-coord span {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-problem-family-coord strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
}

/* Select pullquote section */
.select-pullquote-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 56px 0 72px;
}

/* Select feature vignettes */
.select-feature-vignette {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0ead9 0%, #e7dfcf 100%) !important;
}

/* 24/7 vignette */
.select-feature-vignette-247 {
  background: linear-gradient(160deg, #1e2024 0%, #151619 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #f3ece2;
}

.select-vignette-pulse {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 175, 122, 0.28), transparent 70%);
  filter: blur(16px);
}

.select-vignette-247-number {
  position: relative;
  z-index: 1;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #f3ece2;
  line-height: 1;
}

.select-vignette-247-label {
  position: relative;
  z-index: 1;
  color: #a3d9b2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Center of Excellence */
.select-feature-vignette-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.select-vignette-center-orb {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2b45, #2f4a73);
  box-shadow: 0 0 0 8px rgba(47, 74, 115, 0.14), 0 0 0 16px rgba(47, 74, 115, 0.06);
  z-index: 2;
}

.select-vignette-center-chip {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(27, 22, 18, 0.06);
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
}

.select-vignette-center-chip-1 { top: 16%; left: 12%; }
.select-vignette-center-chip-2 { top: 20%; right: 10%; }
.select-vignette-center-chip-3 { bottom: 28%; left: 8%; }
.select-vignette-center-chip-4 { bottom: 20%; right: 14%; }

.select-vignette-center-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  z-index: 3;
}

/* Hospital advocacy */
.select-feature-vignette-hospital {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.select-vignette-hospital-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(27, 22, 18, 0.06);
}

.select-vignette-hospital-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.16);
  color: #2d7b40;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-vignette-hospital-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.select-vignette-hospital-card em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
}

.select-vignette-hospital-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.select-vignette-hospital-steps span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  text-align: center;
}

.select-vignette-hospital-steps span.is-done {
  background: rgba(107, 175, 122, 0.14);
  color: #2d7b40;
}

.select-vignette-hospital-steps span.is-active {
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.28), rgba(107, 175, 122, 0.14));
  color: #1e5930;
  box-shadow: inset 0 0 0 1px rgba(107, 175, 122, 0.4);
}

/* Screening rings */
.select-feature-vignette-screening {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px;
}

.select-vignette-screening-rings svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.select-vignette-ring-track {
  fill: none;
  stroke: rgba(47, 74, 115, 0.1);
  stroke-width: 8;
}

.select-vignette-ring-progress {
  fill: none;
  stroke: #2f4a73;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 58;
}

.select-vignette-ring-progress-2 {
  stroke: #6BAF7A;
  stroke-dasharray: 226;
  stroke-dashoffset: 46;
}

.select-vignette-screening-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.select-vignette-screening-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 4px 10px rgba(27, 22, 18, 0.04);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Travel globe */
.select-feature-vignette-travel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.select-vignette-travel-globe {
  position: relative;
  width: 140px;
  height: 140px;
}

.select-vignette-travel-globe svg {
  width: 100%;
  height: 100%;
}

.select-vignette-travel-sphere {
  fill: rgba(47, 74, 115, 0.08);
  stroke: rgba(47, 74, 115, 0.22);
  stroke-width: 1;
}

.select-vignette-travel-arc {
  fill: none;
  stroke: rgba(47, 74, 115, 0.3);
  stroke-width: 1;
}

.select-vignette-travel-ring {
  fill: none;
  stroke: rgba(47, 74, 115, 0.4);
  stroke-width: 1;
}

.select-vignette-travel-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4a87a;
  box-shadow: 0 0 0 4px rgba(196, 168, 122, 0.2);
}

.select-vignette-travel-pin-1 { top: 30%; left: 18%; }
.select-vignette-travel-pin-2 { top: 44%; right: 18%; }
.select-vignette-travel-pin-3 { bottom: 24%; left: 44%; }

.select-vignette-travel-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Household */
.select-feature-vignette-household {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.select-vignette-household-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.select-vignette-household-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.select-vignette-household-member span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(27, 22, 18, 0.1);
}

.select-vignette-household-member:nth-child(1) span { background: linear-gradient(135deg, #c4a87a, #8b6f42); }
.select-vignette-household-member:nth-child(2) span { background: linear-gradient(135deg, #6b7d95, #3a4a65); }
.select-vignette-household-member:nth-child(3) span { background: linear-gradient(135deg, #a2d3e8, #5d8eab); }
.select-vignette-household-member:nth-child(4) span { background: linear-gradient(135deg, #e8c5a0, #b09070); }

.select-vignette-household-member em {
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
}

.select-vignette-household-label {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted-strong);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
}

/* Vault */
.select-feature-vignette-vault {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, #1e2024 0%, #151619 100%) !important;
  color: #f3ece2;
}

.select-vignette-vault-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.select-vignette-vault-header span {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-vignette-vault-header em {
  color: rgba(243, 236, 226, 0.5);
  font-size: 0.6rem;
  font-style: normal;
}

.select-vignette-vault-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.select-vignette-vault-rows > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.select-vignette-vault-rows em {
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.64rem;
  font-style: normal;
}

.select-vignette-vault-rows span {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Screening section vignette (annual screening report) */
.select-screening-vignette {
  position: relative;
  width: 100%;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #f6f2ea 0%, #ede5d4 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-screening-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(162, 211, 232, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(107, 175, 122, 0.1), transparent 55%);
}

.select-screening-report {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  padding: 28px 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 32px 64px rgba(27, 22, 18, 0.1);
}

.select-screening-report-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(27, 22, 18, 0.08);
}

.select-screening-report-eyebrow {
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.select-screening-report-date {
  color: var(--muted);
  font-size: 0.76rem;
}

.select-screening-report-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.select-screening-metric em {
  display: block;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.select-screening-metric-bar {
  margin: 6px 0;
  height: 5px;
  border-radius: 3px;
  background: rgba(27, 22, 18, 0.08);
  overflow: hidden;
}

.select-screening-metric-bar > div {
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8, #2f4a73);
}

.select-screening-metric-alert .select-screening-metric-bar > div {
  background: linear-gradient(90deg, #e8a885, #c96356);
}

.select-screening-metric strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.select-screening-metric-alert strong {
  color: #c96356;
}

.select-screening-report-plan {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(47, 74, 115, 0.08), rgba(47, 74, 115, 0.04));
  border: 1px solid rgba(47, 74, 115, 0.18);
}

.select-screening-report-plan span {
  display: block;
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-screening-report-plan strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Select compare table elevated */
.select-compare-table-elevated {
  background: rgba(255, 251, 245, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  overflow: hidden;
}

.select-compare-col-muted {
  opacity: 0.7;
  filter: saturate(0.72);
  color: var(--muted);
}

.select-compare-col-primary {
  color: var(--text);
  font-weight: 700 !important;
}

.select-compare-val-muted {
  opacity: 0.68;
  color: var(--muted);
  font-weight: 500 !important;
}

.select-compare-val-primary {
  position: relative;
  color: var(--text);
  font-weight: 600 !important;
  font-family: "Soehne", "Inter", sans-serif;
}

.select-compare-table-elevated .select-compare-row > .select-compare-val-primary {
  background: linear-gradient(180deg, rgba(47, 74, 115, 0.08), rgba(47, 74, 115, 0.02));
  padding: 4px 10px;
  border-radius: 8px;
  margin: -4px -10px;
}

/* Select investment vignette */
.select-investment-vignette {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1e2024 0%, #151619 100%);
  padding: 28px;
  min-height: 280px;
}

.select-investment-dashboard {
  color: #f3ece2;
}

.select-investment-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.select-investment-dashboard-top span:first-child {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-investment-dashboard-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.18);
  color: #a3d9b2;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.select-investment-dashboard-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.32);
}

.select-investment-dashboard-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.select-investment-dashboard-row {
  display: grid;
  grid-template-columns: 14px 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.select-investment-dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.select-investment-dashboard-dot-active {
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.22);
}

.select-investment-dashboard-dot-warn {
  background: #e8a885;
}

.select-investment-dashboard-row em {
  color: rgba(243, 236, 226, 0.52);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-investment-dashboard-row strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Dark zone FAQ (reuse homepage FAQ card styling) */
.select-dark-zone .compare-teams-cta {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .select-hero-vignette {
    min-height: 420px;
  }
  .select-hero-coord-card {
    left: 16px;
    top: 20px;
    width: 220px;
  }
  .select-hero-chip-care-plus {
    right: 16px;
    top: 28px;
    max-width: 160px;
  }
  .select-hero-chip-cost {
    right: 16px;
    bottom: 20px;
    max-width: 220px;
  }
  .select-screening-report {
    padding: 22px 24px;
  }
  .select-screening-report-metrics {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   About page polish — Pass 2
   =========================================== */

.about-hero-sms {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.about-hero-sms a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
}

.about-hero-sms a:hover {
  border-color: var(--blue);
}

.about-pullquote-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0;
}

/* ===========================================
   Waitlist page polish — Pass 2
   =========================================== */

.waitlist-sms {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.waitlist-sms a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
}

.waitlist-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.12);
  color: #2d7b40;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.waitlist-form-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.26);
}

/* ===========================================
   Teams page — Pass 3
   =========================================== */

.teams-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 243, 239, 0.62), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 48%, #e8dfd4 100%);
}

.teams-page-hero {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.teams-page-hero-copy {
  padding-right: 24px;
}

.teams-page-hero-copy h1 {
  margin: 18px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.teams-page-hero-text {
  margin: 28px 0 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.66;
}

.teams-page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
}

.teams-page-hero-chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
}

.teams-page-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.teams-page-hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.teams-page-hero-note a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1px solid rgba(47, 74, 115, 0.24);
}

/* Teams dashboard hero visual */
.teams-page-dashboard {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  box-shadow:
    0 40px 80px rgba(27, 22, 18, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(243, 236, 226, 0.9);
  position: relative;
  overflow: hidden;
}

.teams-page-dashboard::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 211, 232, 0.14), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.teams-page-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.teams-page-dashboard-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.teams-page-dashboard-brand span {
  color: rgba(243, 236, 226, 0.92);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.teams-page-dashboard-brand em {
  color: rgba(162, 211, 232, 0.88);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-page-dashboard-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(107, 175, 122, 0.18);
  color: #a3d9b2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teams-page-dashboard-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.3);
}

.teams-page-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.teams-page-dashboard-stat em {
  display: block;
  color: rgba(243, 236, 226, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-page-dashboard-stat strong {
  display: block;
  margin-top: 6px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.teams-page-dashboard-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.teams-page-dashboard-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
}

.teams-page-dashboard-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.teams-page-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.teams-page-avatar-1 { background: linear-gradient(135deg, #c4a87a, #8b6f42); }
.teams-page-avatar-2 { background: linear-gradient(135deg, #6b7d95, #3a4a65); }
.teams-page-avatar-3 { background: linear-gradient(135deg, #a2d3e8, #5d8eab); }
.teams-page-avatar-4 { background: linear-gradient(135deg, #8c7f6e, #574c3d); }

.teams-page-row-info strong {
  display: block;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.teams-page-row-info span {
  display: block;
  margin-top: 2px;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.66rem;
}

.teams-page-row-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.teams-page-row-chip-active {
  background: rgba(107, 175, 122, 0.18);
  color: #a3d9b2;
}

.teams-page-row-chip-onboarding {
  background: rgba(232, 168, 133, 0.16);
  color: #e8a885;
}

.teams-page-dashboard-pool {
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.teams-page-dashboard-pool-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.teams-page-dashboard-pool-header span {
  color: rgba(243, 236, 226, 0.5);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-page-dashboard-pool-header strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.teams-page-dashboard-pool-bar {
  margin: 10px 0 8px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.teams-page-dashboard-pool-bar > div {
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #6b7d95 100%);
}

.teams-page-dashboard-pool-note {
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.7rem;
}

/* Teams page why section */
.teams-page-why {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.teams-page-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.teams-page-why-card {
  padding: 32px 30px 30px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.teams-page-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(27, 22, 18, 0.12);
}

.teams-page-why-number {
  display: inline-block;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.teams-page-why-card h3 {
  margin: 14px 0 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.teams-page-why-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

/* Teams page pullquote */
.teams-page-pullquote-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 40px 0 56px;
}

/* Teams calculator */
.teams-page-calculator {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.teams-page-calc-shell {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
}

.teams-page-calc-inputs {
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.teams-page-calc-control label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teams-page-calc-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.teams-page-calc-slider-track {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(27, 22, 18, 0.08);
  overflow: hidden;
}

.teams-page-calc-slider-fill {
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #2f4a73 100%);
  position: relative;
}

.teams-page-calc-slider-fill::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f3ece2;
  box-shadow: 0 2px 6px rgba(27, 22, 18, 0.18), inset 0 0 0 2px #2f4a73;
}

.teams-page-calc-slider-value {
  min-width: 100px;
  text-align: right;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.teams-page-calc-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 12px;
  background: rgba(27, 22, 18, 0.06);
  gap: 2px;
}

.teams-page-calc-toggle-option {
  padding: 8px 16px;
  border-radius: 9px;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
}

.teams-page-calc-toggle-option.is-active {
  background: #f3ece2;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(27, 22, 18, 0.06);
}

.teams-page-calc-result {
  padding: 32px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  color: #f3ece2;
  box-shadow: 0 32px 64px rgba(27, 22, 18, 0.2);
}

.teams-page-calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.teams-page-calc-result-row:last-of-type {
  border-bottom: none;
}

.teams-page-calc-result-row span {
  color: rgba(243, 236, 226, 0.72);
  font-size: 0.92rem;
}

.teams-page-calc-result-row strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.teams-page-calc-result-row-highlight {
  padding: 18px 16px;
  margin: 8px -16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(162, 211, 232, 0.1), rgba(162, 211, 232, 0.02));
  border: 1px solid rgba(162, 211, 232, 0.24);
}

.teams-page-calc-result-row-highlight span {
  color: rgba(162, 211, 232, 0.88);
}

.teams-page-calc-result-row-highlight strong {
  color: #f3ece2;
  font-size: 1.4rem;
}

.teams-page-calc-result-row-savings strong {
  font-size: 1rem;
}

.teams-page-calc-positive {
  color: #a3d9b2 !important;
}

.teams-page-calc-note {
  margin: 18px 0 0;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.78rem;
  line-height: 1.5;
}

.teams-page-calc-cta {
  margin-top: 20px;
  width: 100%;
}

/* Teams pricing */
.teams-page-pricing {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.teams-page-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  align-items: start;
}

.teams-page-pricing-card {
  position: relative;
  padding: 34px 32px 32px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.teams-page-pricing-card-featured {
  box-shadow: 0 32px 72px rgba(27, 22, 18, 0.22);
  outline: 1px solid rgba(47, 74, 115, 0.35);
  outline-offset: -1px;
  transform: scale(1.04);
  z-index: 2;
}

[data-stagger] [data-stagger-item].teams-page-pricing-card-featured {
  transform: translateY(16px) scale(1.04);
}

[data-stagger] [data-stagger-item].teams-page-pricing-card-featured.is-revealed {
  transform: translateY(0) scale(1.04);
}

@media (max-width: 1180px) {
  [data-stagger] [data-stagger-item].teams-page-pricing-card-featured,
  [data-stagger] [data-stagger-item].teams-page-pricing-card-featured.is-revealed {
    transform: translateY(0);
  }
}

.teams-page-pricing-kicker {
  margin: 0;
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teams-page-pricing-value {
  display: block;
  margin: 10px 0 0;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.teams-page-pricing-value em {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

.teams-page-pricing-sub {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.teams-page-pricing-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.teams-page-pricing-bullets li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.48;
}

.teams-page-pricing-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* Teams onboarding */
.teams-page-onboarding {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.teams-page-onboarding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.teams-page-onboarding-step {
  padding: 28px 26px 26px;
  border-radius: 22px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.teams-page-onboarding-index {
  color: var(--blue);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.teams-page-onboarding-step strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.teams-page-onboarding-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.56;
}

/* Teams CTA section */
.teams-page-cta {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.teams-page-cta-card {
  padding: 56px 56px 52px;
  border-radius: 30px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  color: #f3ece2;
  text-align: center;
  box-shadow: 0 40px 80px rgba(27, 22, 18, 0.25);
}

.teams-page-cta-card h2 {
  margin: 14px 0 0;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.teams-page-cta-card > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 18px auto 0;
  color: rgba(243, 236, 226, 0.7);
  font-size: 1.04rem;
  line-height: 1.62;
}

.teams-page-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 1180px) {
  .teams-page-hero {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .teams-page-why-grid {
    grid-template-columns: 1fr;
  }
  .teams-page-calc-shell {
    grid-template-columns: 1fr;
  }
  .teams-page-pricing-grid {
    grid-template-columns: 1fr;
  }
  .teams-page-onboarding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .teams-page-hero {
    padding: 48px 0 64px;
  }
  .teams-page-why,
  .teams-page-calculator,
  .teams-page-pricing,
  .teams-page-onboarding {
    padding: 64px 0;
  }
  .teams-page-cta-card {
    padding: 36px 24px;
  }
  .teams-page-cta-actions {
    flex-direction: column;
  }
  .teams-page-onboarding-grid {
    grid-template-columns: 1fr;
  }
  .teams-page-hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .teams-page-hero,
  .teams-page-why,
  .teams-page-calculator,
  .teams-page-pricing,
  .teams-page-onboarding,
  .teams-page-cta {
    width: min(calc(100% - 24px), var(--max-width));
  }
}

/* ===========================================
   Homepage Pass 4 — Product demo, States, Pricing calc, Founder, Security
   =========================================== */

/* Product demo placeholder */
.product-demo-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 64px 0 88px;
}

.product-demo-shell {
  margin-top: 44px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #1e2024 0%, #0d0e10 100%);
  box-shadow: 0 40px 80px rgba(27, 22, 18, 0.22);
}

.product-demo-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-demo-dots {
  display: flex;
  gap: 6px;
}

.product-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.product-demo-dots span:nth-child(1) { background: rgba(255, 95, 86, 0.6); }
.product-demo-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.product-demo-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.6); }

.product-demo-url {
  flex: 1;
  text-align: center;
  color: rgba(243, 236, 226, 0.42);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.product-demo-length {
  color: rgba(243, 236, 226, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
}

.product-demo-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-demo-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(162, 211, 232, 0.16), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(107, 175, 122, 0.1), transparent 50%);
}

.product-demo-play {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), background 220ms ease;
}

.product-demo-play:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.14);
}

.product-demo-play-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: demo-pulse 2.2s ease-in-out infinite;
}

@keyframes demo-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.08); }
}

.product-demo-play-icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 22px solid #f3ece2;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.product-demo-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 420px;
  z-index: 2;
}

.product-demo-caption-eyebrow {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(162, 211, 232, 0.14);
  color: rgba(162, 211, 232, 0.9);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-demo-caption strong {
  display: block;
  margin-top: 10px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.product-demo-caption em {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.48);
  font-size: 0.76rem;
  font-style: normal;
}

.product-demo-timeline {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.product-demo-timeline-dot {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 236, 226, 0.48);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-demo-timeline-dot.is-active {
  background: rgba(162, 211, 232, 0.2);
  color: #f3ece2;
  box-shadow: inset 0 0 0 1px rgba(162, 211, 232, 0.4);
}

@media (max-width: 900px) {
  .product-demo-caption {
    left: 18px;
    bottom: 18px;
    right: 18px;
    max-width: none;
  }
  .product-demo-timeline {
    display: none;
  }
  .product-demo-play {
    width: 72px;
    height: 72px;
  }
}

/* All 50 states section */
.states-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.states-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.states-copy h2 {
  margin: 14px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.states-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.64;
}

.states-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(27, 22, 18, 0.08);
}

.states-stat strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.states-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.states-map {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(160deg, #f6f2ea 0%, #ede5d4 100%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.states-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.states-map-outline {
  fill: rgba(47, 74, 115, 0.04);
  stroke: rgba(47, 74, 115, 0.14);
  stroke-width: 1;
}

.states-map-dot {
  fill: #2f4a73;
  filter: drop-shadow(0 0 3px rgba(47, 74, 115, 0.4));
}

.states-map-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(27, 22, 18, 0.08);
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.states-map-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.3);
}

@media (max-width: 900px) {
  .states-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .states-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Pricing calculator section (replaces CTA bridge) */
.pricing-calc-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 88px 0;
}

.pricing-calc-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}

.pricing-calc-inputs {
  padding: 32px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-calc-control label {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-calc-helper {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: italic;
}

.pricing-calc-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-calc-slider-track {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(27, 22, 18, 0.08);
  overflow: hidden;
}

.pricing-calc-slider-fill {
  height: 100%;
  background: linear-gradient(90deg, #a2d3e8 0%, #2f4a73 100%);
  position: relative;
}

.pricing-calc-slider-fill::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f3ece2;
  box-shadow: 0 2px 6px rgba(27, 22, 18, 0.18), inset 0 0 0 2px #2f4a73;
}

.pricing-calc-slider-value {
  min-width: 80px;
  text-align: right;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-calc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-calc-chip {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(27, 22, 18, 0.08);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 500;
}

.pricing-calc-chip.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.pricing-calc-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 12px;
  background: rgba(27, 22, 18, 0.06);
  gap: 2px;
}

.pricing-calc-toggle-option {
  padding: 10px 18px;
  border-radius: 9px;
  color: var(--muted);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-calc-toggle-option.is-active {
  background: #f3ece2;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(27, 22, 18, 0.06);
}

.pricing-calc-result {
  padding: 36px 38px 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1e2024 0%, #151619 100%);
  color: #f3ece2;
  box-shadow: 0 32px 72px rgba(27, 22, 18, 0.2);
}

.pricing-calc-result-header {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-calc-result-eyebrow {
  color: rgba(162, 211, 232, 0.9);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-calc-result-value {
  display: block;
  margin-top: 10px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-calc-result-value em {
  color: rgba(243, 236, 226, 0.56);
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}

.pricing-calc-result-sub {
  display: block;
  margin-top: 6px;
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.88rem;
}

.pricing-calc-result-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pricing-calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-calc-result-row:last-of-type {
  border-bottom: none;
}

.pricing-calc-result-row span {
  color: rgba(243, 236, 226, 0.72);
  font-size: 0.92rem;
}

.pricing-calc-result-row strong {
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-calc-result-savings {
  padding: 14px 16px;
  margin: 6px -16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(107, 175, 122, 0.16), rgba(107, 175, 122, 0.04));
  border: 1px solid rgba(107, 175, 122, 0.28);
}

.pricing-calc-result-savings span {
  color: rgba(163, 217, 178, 0.92);
}

.pricing-calc-result-savings strong {
  color: #a3d9b2;
  font-size: 1.24rem;
}

.pricing-calc-result-unlocked {
  padding: 14px 16px;
  margin: 0 -16px;
  border-radius: 12px;
  background: rgba(162, 211, 232, 0.08);
  border: 1px solid rgba(162, 211, 232, 0.2);
}

.pricing-calc-result-unlocked span {
  color: rgba(162, 211, 232, 0.9);
}

.pricing-calc-result-unlocked strong {
  color: #a2d3e8;
}

.pricing-calc-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.pricing-calc-footnote {
  margin: 16px 0 0;
  color: rgba(243, 236, 226, 0.42);
  font-size: 0.74rem;
  font-style: italic;
  text-align: center;
}

@media (max-width: 1180px) {
  .pricing-calc-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .pricing-calc-inputs,
  .pricing-calc-result {
    padding: 26px 24px;
  }
  .pricing-calc-result-value {
    font-size: 2.6rem;
  }
  .pricing-calc-actions {
    flex-direction: column;
  }
}

/* Founder moment */
.founder-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.founder-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.founder-portrait {
  position: relative;
}

.founder-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #1e2024 0%, #151619 100%);
  box-shadow: 0 40px 80px rgba(27, 22, 18, 0.22);
}

.founder-portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.founder-portrait-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4a87a, #8b6f42);
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-portrait-label {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 236, 226, 0.56);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-portrait-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 168, 122, 0.28), transparent 70%);
  filter: blur(20px);
}

.founder-portrait-caption {
  margin-top: 18px;
  padding: 0 4px;
}

.founder-portrait-caption strong {
  display: block;
  color: var(--text);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.founder-portrait-caption span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.founder-copy h2 {
  margin: 14px 0 0;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.founder-quote {
  margin: 28px 0 0;
  padding: 0;
}

.founder-quote p {
  margin: 0 0 18px;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.68;
}

.founder-quote p:last-of-type {
  margin-bottom: 20px;
}

.founder-quote cite {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
}

.founder-actions {
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .founder-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .founder-portrait {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Security/compliance section (inside dark zone) */
.security-section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: 64px 0 40px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.security-card {
  padding: 28px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), background 280ms ease;
}

.security-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.security-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(162, 211, 232, 0.14);
  color: rgba(162, 211, 232, 0.92);
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.security-card strong {
  display: block;
  margin-top: 14px;
  color: #f3ece2;
  font-family: "Soehne", "Inter", sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.security-card p {
  margin: 10px 0 0;
  color: rgba(243, 236, 226, 0.62);
  font-size: 0.92rem;
  line-height: 1.56;
}

.security-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.security-footnote p {
  margin: 0;
  color: rgba(243, 236, 226, 0.6);
  font-size: 0.84rem;
  line-height: 1.5;
}

.security-footnote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6BAF7A;
  box-shadow: 0 0 0 3px rgba(107, 175, 122, 0.24);
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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