:root {
  color-scheme: light;
  --ink: #10120f;
  --graphite: #282d28;
  --muted: #687064;
  --paper: #f6f2e9;
  --paper-2: #fffaf0;
  --line: rgba(16, 18, 15, 0.14);
  --forest: #214f3b;
  --moss: #8ea765;
  --oxygen: #d7e8a7;
  --dijon: #9a7820;
  --dijon-dark: #5a4511;
  --gold-dim: #b99b3a;
  --better-red: #b43a2d;
  --clay: #b8664f;
  --coral: #e19272;
  --ice: #dbe9e8;
  --white: #fffef8;
  --shadow: 0 24px 80px rgba(16, 18, 15, 0.16);
  --max: 1180px;
  --header: 82px;
  --display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

::selection {
  color: var(--ink);
  background: rgba(215, 232, 167, 0.42);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 72px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

select option,
select optgroup {
  color: var(--ink);
  background: var(--paper-2);
}

select option:checked {
  color: var(--ink);
  background: var(--oxygen);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--oxygen), var(--coral), var(--ice));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: var(--header);
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
  border-bottom: 1px solid rgba(255, 254, 248, 0.18);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--oxygen);
  border: 1px solid rgba(16, 18, 15, 0.18);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-word {
  display: grid;
  gap: 0;
  font-size: 14px;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-word strong {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.header-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.header-social a {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: inherit;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.24);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-header.is-scrolled .header-social a,
.site-header.is-open .header-social a {
  background: rgba(16, 18, 15, 0.04);
  border-color: rgba(16, 18, 15, 0.16);
}

.header-social a:hover,
.header-social a:focus-visible {
  color: var(--ink);
  background: var(--oxygen);
  border-color: var(--oxygen);
  outline: none;
  transform: translateY(-1px);
}

.header-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.desktop-nav a,
.quiet-link {
  position: relative;
}

.desktop-nav a::after,
.quiet-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.quiet-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.quiet-link {
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.menu-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 12px;
  color: inherit;
  cursor: pointer;
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid currentColor;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background: rgba(16, 18, 15, 0);
  transition:
    background 260ms ease,
    visibility 260ms ease;
}

.menu-panel.is-open {
  pointer-events: auto;
  visibility: visible;
  background: rgba(16, 18, 15, 0.45);
}

.menu-panel__inner {
  width: min(1120px, 100%);
  min-height: 100%;
  margin-left: auto;
  padding: 28px clamp(22px, 5vw, 58px);
  background: var(--paper-2);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-panel.is-open .menu-panel__inner {
  transform: translateX(0);
}

.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.menu-panel__top p {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-panel__top button {
  padding: 12px 16px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-top: 50px;
}

.menu-grid h3 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.menu-grid a {
  display: block;
  padding: 12px 0;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 650;
  line-height: 1.05;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header) + 64px) clamp(20px, 5vw, 70px) 58px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(rgba(16, 18, 15, 0.18), rgba(16, 18, 15, 0.14)),
    url("assets/images/better-living-hero.jpg")
      center / cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 30%, rgba(215, 232, 167, 0.16), transparent 28%),
    linear-gradient(90deg, rgba(16, 18, 15, 0.86), rgba(16, 18, 15, 0.46) 55%, rgba(16, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(16, 18, 15, 0.62), transparent 45%);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1.2%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(1040px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--oxygen);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 5.8vw, 88px);
  font-weight: 740;
}

.hero h1 {
  display: grid;
  gap: 0.02em;
  max-width: 820px;
  font-size: clamp(44px, 5.65vw, 84px);
  line-height: 1.01;
}

h1 em {
  display: block;
  color: var(--dijon);
  font-style: normal;
}

h1 > span {
  display: block;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(255, 250, 240, 0.08);
}

.better-red {
  display: inline;
  color: var(--better-red);
  text-shadow: 0 0 28px rgba(180, 58, 45, 0.18);
}

.hero h1 .better-red {
  display: inline-block;
  padding: 0.015em 0.13em 0.055em;
  color: #7f211d;
  line-height: 0.94;
  background: rgba(255, 254, 248, 0.92);
  box-shadow: 0 12px 32px rgba(16, 18, 15, 0.16);
  text-shadow: none;
}

.hero-title-year {
  color: var(--dijon);
}

.hero-title-line {
  color: var(--white);
}

h2 {
  max-width: 920px;
  font-size: clamp(30px, 3.65vw, 58px);
  font-weight: 660;
}

h3 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.05;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 86px);
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  max-width: 840px;
  margin-top: 30px;
}

.hero-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  color: rgba(255, 254, 248, 0.94);
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid rgba(255, 254, 248, 0.18);
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.hero-list a:hover,
.hero-list a:focus-visible {
  color: var(--ink);
  background: var(--oxygen);
  border-color: var(--oxygen);
  outline: none;
  transform: translateY(-2px);
}

.home-hero {
  min-height: min(900px, 100svh);
}

.home-hero .hero-content {
  width: min(900px, 100%);
}

.home-hero .hero-copy {
  max-width: 700px;
  font-size: clamp(18px, 1.6vw, 25px);
}

.home-hero .hero-list {
  max-width: 760px;
}

.home-metric-band {
  background:
    linear-gradient(90deg, rgba(215, 232, 167, 0.1), transparent 42%, rgba(180, 58, 45, 0.08)),
    var(--ink);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 254, 248, 0.86);
  font-size: clamp(18px, 1.75vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--oxygen);
  border-color: var(--oxygen);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.34);
}

.button:not(.button-primary):not(.button-secondary) {
  color: var(--ink);
  background: rgba(255, 254, 248, 0.18);
  border-color: var(--line);
}

.dark .button:not(.button-primary):not(.button-secondary),
.green .button:not(.button-primary):not(.button-secondary) {
  color: var(--white);
  border-color: rgba(255, 254, 248, 0.26);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 54px;
  z-index: 2;
  width: min(300px, calc(100vw - 40px));
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid rgba(255, 254, 248, 0.6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card__label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-size: 70px;
  line-height: 0.9;
}

.hero-card p {
  margin: 8px 0 18px;
  font-weight: 750;
}

.score-line,
.score-track {
  height: 8px;
  overflow: hidden;
  background: rgba(16, 18, 15, 0.12);
}

.score-line span,
.score-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--forest), var(--moss), var(--coral));
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(215, 232, 167, 0.1), transparent 38%, rgba(184, 119, 91, 0.08)),
    var(--ink);
  border-top: 1px solid rgba(255, 254, 248, 0.12);
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.metric-band div {
  display: flex;
  gap: 14px;
  align-items: baseline;
  min-height: 86px;
  padding: 18px 0;
  border-right: 0;
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 0.9;
}

.metric-band span {
  display: block;
  margin-top: 0;
  color: rgba(215, 232, 167, 0.82);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.institutional-platform {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.12fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: center;
  min-height: min(920px, calc(100svh - 18px));
  padding: clamp(88px, 9vw, 132px) clamp(24px, 5vw, 76px);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 18, 15, 0.98), rgba(16, 18, 15, 0.9) 48%, rgba(33, 79, 59, 0.56)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.institutional-platform::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.38), transparent 42%),
    linear-gradient(0deg, rgba(16, 18, 15, 0.72), rgba(16, 18, 15, 0.16) 36%, rgba(16, 18, 15, 0.68));
}

.institutional-platform__copy {
  align-self: center;
  max-width: 640px;
}

.institutional-platform__copy h2 {
  color: var(--white);
  font-size: clamp(38px, 4.7vw, 72px);
  line-height: 0.98;
}

.institutional-platform__copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
}

.institutional-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.institutional-platform .button:not(.button-primary) {
  color: var(--white);
  background: rgba(255, 254, 248, 0.06);
  border-color: rgba(255, 254, 248, 0.18);
}

.program-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: center;
  justify-self: end;
  width: min(820px, 100%);
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 254, 248, 0.105), rgba(255, 254, 248, 0.035)),
    rgba(8, 10, 8, 0.48);
  border: 1px solid rgba(255, 254, 248, 0.15);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.program-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 14px 16px;
  align-items: start;
  min-height: 168px;
  padding: 22px;
  color: var(--white);
  background: rgba(16, 18, 15, 0.46);
  border: 1px solid rgba(255, 254, 248, 0.12);
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.program-row:hover,
.program-row:focus-visible {
  outline: none;
  background: rgba(255, 254, 248, 0.09);
  border-color: rgba(215, 232, 167, 0.42);
  transform: translateY(-2px);
}

.program-row span,
.program-row em {
  color: var(--oxygen);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-row strong {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
}

.program-row p {
  grid-column: 2 / 4;
  margin: 0;
  color: rgba(255, 254, 248, 0.64);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.42;
}

.program-row em {
  color: rgba(255, 254, 248, 0.48);
  text-align: right;
}

.operating-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.operating-strip__item {
  min-height: 210px;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.operating-strip__item:last-child {
  border-right: 0;
}

.operating-strip__item span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operating-strip__item strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(22px, 2.3vw, 36px);
  line-height: 1.02;
}

.operating-strip__item p {
  margin: 18px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.46;
}

.intro {
  background: var(--ink);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
}

.intro-copy {
  display: grid;
  align-content: end;
  gap: 20px;
  color: rgba(255, 254, 248, 0.74);
  font-size: clamp(19px, 2.2vw, 26px);
}

.intro-copy p {
  margin: 0;
}

.pillars {
  background:
    linear-gradient(rgba(246, 242, 233, 0.92), rgba(246, 242, 233, 0.96)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=2200&q=82")
      center / cover fixed;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.pillar-card,
.eco-card,
.module,
.timeline-card,
.destination-card,
.luxury-card,
.merch-card {
  border-radius: 8px;
}

.pillar-card {
  min-height: 280px;
  padding: 28px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 14px 50px rgba(16, 18, 15, 0.06);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.pillar-card:hover {
  color: var(--white);
  background: var(--forest);
  transform: translateY(-5px);
}

.pillar-card .pillar-number {
  display: block;
  margin-bottom: 70px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 850;
}

.pillar-card:hover .pillar-number,
.pillar-card:hover p {
  color: rgba(255, 254, 248, 0.78);
}

.pillar-card h3 .better-red {
  color: var(--better-red);
}

.pillar-card:hover h3 .better-red {
  color: #ff6d5c;
}

.pillar-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.index-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(78px, 11vw, 150px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.96), rgba(33, 79, 59, 0.92)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=2200&q=82")
      center / cover;
}

.index-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.index-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 254, 248, 0.75);
  font-size: 21px;
}

.check-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 254, 248, 0.14);
}

.check-list li {
  position: relative;
  border-bottom: 1px solid rgba(255, 254, 248, 0.14);
}

.check-list button {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.check-list button::before {
  content: "+";
  color: var(--oxygen);
  font-weight: 900;
  transition: transform 180ms ease;
}

.check-list button[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.check-list button:hover,
.check-list button:focus-visible {
  color: var(--oxygen);
  outline: none;
}

.check-list p {
  max-height: 0;
  margin: 0;
  padding-left: 44px;
  overflow: hidden;
  color: rgba(255, 254, 248, 0.68);
  font-size: 16px;
  transition:
    max-height 220ms ease,
    padding-bottom 220ms ease;
}

.check-list li.is-open p {
  max-height: 150px;
  padding-bottom: 18px;
}

.home-index-core {
  background:
    linear-gradient(135deg, rgba(8, 10, 8, 0.98), rgba(16, 18, 15, 0.9) 52%, rgba(33, 79, 59, 0.78)),
    url("assets/images/app-dashboard-futuristic.jpg") center / cover;
}

.home-index-core .hero-actions {
  margin-top: 30px;
}

.home-index-core .scoreboard {
  background: rgba(255, 250, 240, 0.9);
}

.home-route-layer .route-layer__head h2 {
  font-size: clamp(34px, 4.6vw, 66px);
}

.home-pillars .operating-strip__item {
  min-height: 190px;
}

.home-universe {
  background:
    linear-gradient(115deg, rgba(16, 18, 15, 0.98), rgba(16, 18, 15, 0.86) 45%, rgba(33, 79, 59, 0.52)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
}

.home-trust {
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.96), rgba(33, 79, 59, 0.94)),
    var(--forest);
}

.index-product-band .section-heading {
  margin-bottom: 36px;
}

.index-product-band .service-step {
  color: var(--white);
  background: rgba(255, 254, 248, 0.075);
  border-color: rgba(255, 254, 248, 0.15);
}

.index-product-band .service-step strong {
  color: var(--oxygen);
  font-size: clamp(28px, 3.2vw, 50px);
}

.index-product-band .service-step h3 {
  color: var(--white);
}

.index-product-band .service-step p {
  color: rgba(255, 254, 248, 0.68);
}

.index-output-band .matrix-table {
  max-width: 760px;
  margin: 0;
}

.index-output-band .matrix-row {
  grid-template-columns: 54px 1fr;
}

.index-output-band .matrix-row p {
  grid-column: 2;
}

.scoreboard {
  width: min(560px, 100%);
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.93);
  border: 1px solid rgba(255, 254, 248, 0.64);
  box-shadow: var(--shadow);
}

.scoreboard-header {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.scoreboard-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scoreboard-header strong {
  font-size: clamp(78px, 10vw, 120px);
  line-height: 0.8;
}

#score-band {
  margin: 6px 0 22px;
  font-size: 26px;
  font-weight: 800;
}

.score-track {
  margin-bottom: 28px;
}

.slider-stack {
  display: grid;
  gap: 18px;
}

.slider-stack label {
  display: grid;
  gap: 8px;
}

.slider-stack label span {
  display: flex;
  justify-content: space-between;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 750;
}

input[type="range"] {
  width: 100%;
  height: 36px;
  background: transparent;
  accent-color: var(--forest);
  cursor: pointer;
  appearance: none;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: rgba(16, 18, 15, 0.16);
  border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  margin-top: -9px;
  background: var(--forest);
  border: 2px solid var(--paper);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 18, 15, 0.22);
  appearance: none;
}

input[type="range"]::-moz-range-track {
  height: 4px;
  background: rgba(16, 18, 15, 0.16);
  border-radius: 999px;
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--forest);
  border: 2px solid var(--paper);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(16, 18, 15, 0.22);
}

.ecosystem {
  color: var(--white);
  background: var(--graphite);
}

.ecosystem .section-heading p,
.ecosystem .eyebrow {
  color: var(--oxygen);
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 254, 248, 0.14);
}

.eco-card {
  min-height: 260px;
  padding: 28px;
  background: var(--graphite);
}

.eco-card h3 {
  margin-top: 72px;
}

.eco-card p {
  margin: 18px 0 0;
  color: rgba(255, 254, 248, 0.68);
}

.research-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  min-height: 720px;
  background: var(--paper-2);
}

.luxury-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(78px, 10vw, 140px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.96), rgba(40, 45, 40, 0.9)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
}

.luxury-band__copy {
  align-self: end;
  max-width: 760px;
}

.luxury-band__copy .eyebrow,
.dark .eyebrow,
.green .eyebrow {
  color: var(--oxygen);
}

.luxury-band__copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 254, 248, 0.74);
  font-size: clamp(20px, 2.2vw, 27px);
}

.luxury-stack {
  display: grid;
  gap: 12px;
}

.luxury-card {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.16);
  backdrop-filter: blur(14px);
}

.luxury-card span,
.merch-card span,
.destination-card span {
  color: var(--gold-dim);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.luxury-card h3 {
  margin-top: 44px;
}

.luxury-card p {
  color: rgba(255, 254, 248, 0.68);
}

.destination-strip {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 70px);
  background: var(--paper-2);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}

.destination-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.destination-card img,
.merch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: scale(1.02);
  transition: transform 450ms ease;
}

.destination-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(16, 18, 15, 0.82), rgba(16, 18, 15, 0.08) 62%),
    linear-gradient(90deg, rgba(16, 18, 15, 0.32), transparent);
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card__content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.destination-card h3 {
  margin-top: 12px;
}

.destination-card p {
  margin: 12px 0 0;
  color: rgba(255, 254, 248, 0.76);
}

.merch-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 70px);
  background: var(--paper);
}

.merch-card {
  overflow: hidden;
  min-height: 560px;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.merch-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 21px;
}

.capsule-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.capsule-list span,
.capsule-list a {
  padding: 16px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.biohacking-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
}

.biohacking-section__image {
  background:
    linear-gradient(rgba(16, 18, 15, 0.08), rgba(16, 18, 15, 0.36)),
    url("assets/images/luxury-biohacking-suite.jpg") center / cover;
}

.biohacking-section__copy {
  align-self: center;
  padding: clamp(42px, 7vw, 88px);
}

.biohacking-section__copy p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.74);
  font-size: 21px;
}

.app-visual {
  min-height: 620px;
  background:
    linear-gradient(rgba(16, 18, 15, 0.08), rgba(16, 18, 15, 0.28)),
    url("assets/images/app-dashboard-futuristic.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.research-media {
  min-height: 520px;
  background:
    linear-gradient(rgba(16, 18, 15, 0.12), rgba(16, 18, 15, 0.26)),
    url("assets/images/better-nutrition.jpg")
      center / cover;
}

.research-copy {
  align-self: center;
  max-width: 680px;
  padding: clamp(42px, 7vw, 86px);
}

.research-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.report-grid span {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid var(--line);
}

.app-section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 70px);
  background: var(--ink);
  color: var(--white);
}

.app-section .section-heading {
  color: var(--white);
}

.app-cockpit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.98fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(215, 232, 167, 0.16), transparent 28%),
    linear-gradient(120deg, rgba(8, 10, 8, 0.98), rgba(24, 34, 29, 0.82)),
    url("assets/images/app-dashboard-futuristic.jpg") center / cover;
}

.app-controls h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.app-controls p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.app-form {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.app-form label {
  display: grid;
  gap: 10px;
}

.app-form span,
.app-device__top em,
.app-score-dial span,
.app-task span,
.app-metric-grid span,
.app-brief > span,
.app-timeline span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.app-form select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.app-live {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.app-device {
  min-height: 640px;
  padding: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(246, 242, 233, 0.94));
  border: 10px solid #080a08;
  border-radius: 34px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.38);
}

.app-device__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.app-device__top span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--oxygen);
  font-size: 12px;
  font-weight: 850;
}

.app-device__top em {
  color: var(--muted);
  font-style: normal;
}

.app-score-dial {
  display: grid;
  min-height: 220px;
  align-content: end;
  margin-top: 16px;
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.52), rgba(33, 79, 59, 0.72)),
    url("assets/images/better-conditioning.jpg") center / cover;
  border-radius: 12px;
}

.app-score-dial strong {
  margin-top: 18px;
  font-size: clamp(76px, 8vw, 104px);
  line-height: 0.78;
}

.app-score-dial small {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 800;
}

.app-task,
.app-metric-grid div {
  margin-top: 12px;
  padding: 14px;
  background: rgba(16, 18, 15, 0.055);
  border: 1px solid rgba(16, 18, 15, 0.1);
  border-radius: 10px;
}

.app-task span,
.app-metric-grid span {
  display: block;
  color: var(--muted);
}

.app-task strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.12;
}

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

.app-metric-grid div {
  min-height: 104px;
}

.app-metric-grid strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.08;
}

.app-brief {
  align-self: stretch;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(255, 254, 248, 0.58);
  border-radius: 10px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.app-brief > span {
  color: var(--dijon-dark);
}

.app-brief h3 {
  margin-top: 34px;
  font-size: clamp(30px, 4vw, 56px);
}

.app-brief p {
  color: var(--graphite);
}

.app-timeline {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.app-timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.72);
}

.app-timeline span {
  color: var(--clay);
}

.app-timeline p {
  margin: 0;
}

.app-brief .capsule-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.app-brief .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.phone-shell {
  width: min(360px, 100%);
  min-height: 660px;
  padding: 18px;
  margin: 0 auto;
  color: var(--ink);
  background: var(--paper-2);
  border: 12px solid #0a0c0a;
  border-radius: 34px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.36);
}

.phone-top {
  width: 94px;
  height: 6px;
  margin: 0 auto 28px;
  background: rgba(16, 18, 15, 0.18);
  border-radius: 10px;
}

.phone-score {
  display: grid;
  min-height: 230px;
  align-content: center;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 79, 59, 0.95), rgba(184, 102, 79, 0.74)),
    url("assets/images/better-conditioning.jpg")
      center / cover;
  border-radius: 8px;
}

.phone-score span {
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-score strong {
  margin-top: 18px;
  font-size: 96px;
  line-height: 0.85;
}

.phone-score small {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 750;
}

.phone-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.phone-list span {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phone-list em {
  color: var(--clay);
  font-style: normal;
  font-weight: 750;
}

.app-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.module {
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.14);
}

.module h3 {
  margin-top: 54px;
}

.module p {
  color: rgba(255, 254, 248, 0.7);
}

.protocol {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.timeline-card {
  min-height: 330px;
  padding: 30px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.timeline-card span {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-top: 110px;
}

.timeline-card p {
  color: var(--muted);
}

.approved-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background: var(--forest);
}

.approved-copy {
  max-width: 620px;
  justify-self: end;
}

.approved-copy .eyebrow {
  color: var(--oxygen);
}

.approved-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 254, 248, 0.72);
  font-size: 21px;
}

.approved-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: center;
}

.approved-list span {
  padding: 20px;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.18);
}

.book {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  max-width: none;
  background: var(--paper-2);
}

.book-cover {
  display: grid;
  align-content: space-between;
  width: min(420px, 100%);
  min-height: 560px;
  padding: 34px;
  justify-self: end;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(16, 18, 15, 0.72), rgba(33, 79, 59, 0.92)),
    url("assets/images/better-recovery-beach.jpg")
      center / cover;
  box-shadow: var(--shadow);
}

.book-cover span,
.book-cover small {
  font-weight: 850;
  text-transform: uppercase;
}

.book-cover strong {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.94;
}

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

.book-copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 21px;
}

.community-preview {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  min-height: 680px;
  background: var(--paper-2);
}

.community-preview__image {
  min-height: 520px;
  background:
    linear-gradient(rgba(16, 18, 15, 0.05), rgba(16, 18, 15, 0.2)),
    url("assets/images/better-community.jpg") center / cover;
}

.community-preview__copy {
  align-self: center;
  max-width: 720px;
  padding: clamp(42px, 7vw, 88px);
}

.community-preview__copy p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 21px;
}

.data-strip {
  background: var(--paper-2);
}

.research-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.stat-card {
  min-height: 280px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-card span {
  display: block;
  color: var(--forest);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 850;
  line-height: 0.9;
}

.stat-card h3 {
  margin-top: 38px;
  color: var(--ink);
}

.stat-card p {
  color: var(--muted);
}

.stat-card a,
.eco-card a,
.text-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 14px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.eco-card a,
.text-cta-light {
  color: var(--oxygen);
}

.dark .text-cta,
.green .text-cta {
  color: var(--oxygen);
}

.dark .stat-card,
.green .stat-card {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.08), rgba(255, 254, 248, 0.025)),
    rgba(8, 10, 8, 0.78);
  border-color: rgba(255, 254, 248, 0.14);
  box-shadow: none;
}

.dark .stat-card span,
.green .stat-card span {
  color: var(--oxygen);
}

.dark .stat-card h3,
.green .stat-card h3 {
  color: var(--white);
}

.dark .stat-card p,
.green .stat-card p {
  color: rgba(255, 254, 248, 0.68);
}

.dark .stat-card a,
.green .stat-card a {
  color: var(--oxygen);
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  padding: calc(var(--header) + 76px) clamp(22px, 5vw, 70px) 68px;
  overflow: hidden;
  color: var(--white);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  background: var(--page-image, url("assets/images/better-living-hero.jpg")) center / cover;
  transform: scale(1.03);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(16, 18, 15, 0.74), rgba(16, 18, 15, 0.36) 58%, rgba(16, 18, 15, 0.12)),
    linear-gradient(0deg, rgba(16, 18, 15, 0.34), transparent);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 700px;
}

.page-hero__content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.index-hero::after {
  background:
    radial-gradient(circle at 70% 32%, rgba(215, 232, 167, 0.12), transparent 26%),
    linear-gradient(90deg, rgba(8, 10, 8, 0.9), rgba(16, 18, 15, 0.58) 54%, rgba(16, 18, 15, 0.18)),
    linear-gradient(0deg, rgba(16, 18, 15, 0.5), transparent 46%);
}

.index-hero .page-hero__content {
  max-width: 820px;
}

.index-hero h1,
.index-hero p:not(.eyebrow) {
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.58);
}

.page-hero h1 {
  max-width: 700px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 670;
  line-height: 1.06;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.42;
}

.page-hero .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.page-nav {
  position: sticky;
  top: var(--header);
  z-index: 20;
  display: flex;
  gap: 8px;
  padding: 10px clamp(16px, 5vw, 70px);
  overflow-x: auto;
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.page-nav a {
  flex: 0 0 auto;
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.page-nav a:hover {
  color: var(--ink);
  background: var(--oxygen);
  border-color: rgba(16, 18, 15, 0.2);
}

.content-band {
  padding: clamp(72px, 10vw, 136px) clamp(20px, 5vw, 70px);
}

.content-band.dark {
  color: var(--white);
  background: var(--ink);
}

.content-band.green {
  color: var(--white);
  background: var(--forest);
}

.content-band.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.content-copy {
  max-width: 720px;
}

.content-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
}

.dark .content-copy p:not(.eyebrow),
.green .content-copy p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.74);
}

.image-panel {
  min-height: 520px;
  background: var(--panel-image) center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.experience-builder {
  background:
    linear-gradient(120deg, rgba(16, 18, 15, 0.96), rgba(16, 18, 15, 0.72)),
    url("assets/images/luxury-dinner-salon.jpg") center / cover;
}

.builder-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 6vw, 82px);
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.builder-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.8vw, 24px);
}

.builder-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.builder-controls label {
  display: grid;
  gap: 10px;
}

.builder-controls span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-controls select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
  border-radius: 0;
}

.builder-controls select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.builder-output {
  padding: clamp(22px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(255, 254, 248, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.builder-output > span {
  display: block;
  color: var(--dijon-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.builder-output h3 {
  margin-top: 54px;
  font-size: clamp(30px, 4vw, 56px);
}

.builder-output p {
  color: var(--graphite);
}

.builder-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.builder-metrics div {
  padding: 18px;
  background: rgba(16, 18, 15, 0.06);
  border: 1px solid rgba(16, 18, 15, 0.1);
}

.builder-metrics strong,
.builder-metrics span {
  display: block;
}

.builder-metrics strong {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.96;
}

.builder-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.builder-plan {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.builder-plan div {
  padding: 16px;
  background: rgba(255, 254, 248, 0.72);
}

.builder-plan span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.builder-plan p {
  margin: 8px 0 0;
  color: var(--graphite);
}

.builder-output .capsule-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.builder-output .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.robocierge-command {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 232, 167, 0.15), transparent 24%),
    linear-gradient(125deg, rgba(6, 8, 7, 0.98), rgba(33, 79, 59, 0.76)),
    url("assets/images/destination-dubai-jumeirah.jpg") center / cover;
}

.robo-copy,
.robo-console {
  max-width: 720px;
}

.robo-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.98;
}

.robo-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.robo-controls {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.robo-controls label {
  display: grid;
  gap: 10px;
}

.robo-controls span,
.robo-console__top span,
.robo-metrics span,
.robo-flow span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.robo-controls select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.robo-controls select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.robo-console {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.1), rgba(255, 254, 248, 0.035)),
    rgba(8, 10, 8, 0.82);
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.robo-console__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.robo-console__top strong {
  color: var(--oxygen);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.92;
}

.robo-console h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 58px);
}

.robo-console p {
  color: rgba(255, 254, 248, 0.68);
}

.robo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.robo-metrics div {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.07);
  border: 1px solid rgba(255, 254, 248, 0.1);
}

.robo-metrics span,
.robo-flow span {
  display: block;
  color: rgba(255, 254, 248, 0.45);
}

.robo-metrics strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1;
}

.robo-flow {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.12);
  border-radius: 8px;
}

.robo-flow article {
  display: grid;
  grid-template-columns: 40px minmax(90px, 0.24fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.06);
}

.robo-flow strong {
  color: var(--white);
  font-size: 18px;
}

.robo-flow p {
  margin: 0;
}

.robo-console .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.robo-console .capsule-list span {
  color: var(--white);
  background: rgba(255, 254, 248, 0.07);
  border-color: rgba(255, 254, 248, 0.12);
}

.places-circuit {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(460px, 0.98fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(184, 138, 45, 0.18), transparent 25%),
    linear-gradient(125deg, rgba(6, 8, 7, 0.98), rgba(22, 39, 31, 0.88)),
    url("assets/images/destination-saudi-red-sea.jpg") center / cover;
}

.circuit-copy,
.circuit-console {
  max-width: 760px;
}

.circuit-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 0.98;
}

.circuit-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.circuit-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.circuit-controls label {
  display: grid;
  gap: 10px;
}

.circuit-controls span,
.circuit-console__top span,
.circuit-metrics span,
.circuit-city-line span,
.circuit-flow span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.circuit-controls select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.circuit-controls select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.circuit-console {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.1), rgba(255, 254, 248, 0.035)),
    rgba(8, 10, 8, 0.84);
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.circuit-console__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.circuit-console__top strong {
  color: var(--oxygen);
  font-size: clamp(30px, 4vw, 58px);
  line-height: 0.92;
}

.circuit-console h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 58px);
}

.circuit-console p {
  color: rgba(255, 254, 248, 0.68);
}

.circuit-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.12);
}

.circuit-metrics div {
  min-height: 112px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.06);
}

.circuit-metrics span,
.circuit-city-line span,
.circuit-flow span {
  display: block;
  color: rgba(255, 254, 248, 0.45);
}

.circuit-metrics strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.04;
}

.circuit-city-line {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 254, 248, 0.12);
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.circuit-city-line p {
  margin: 0;
}

.circuit-flow {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.12);
  border-radius: 8px;
}

.circuit-flow article {
  display: grid;
  grid-template-columns: 40px minmax(90px, 0.22fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.06);
}

.circuit-flow strong {
  color: var(--white);
  font-size: 18px;
}

.circuit-flow p {
  margin: 0;
}

.circuit-console .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.circuit-console .capsule-list span {
  color: var(--white);
  background: rgba(255, 254, 248, 0.07);
  border-color: rgba(255, 254, 248, 0.12);
}

.protocol-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 18, 15, 0.96), rgba(16, 18, 15, 0.72)),
    url("assets/images/luxury-biohacking-suite.jpg") center / cover;
}

.protocol-controls,
.protocol-output {
  max-width: 680px;
}

.protocol-controls h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.protocol-controls p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.protocol-form {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.protocol-form label {
  display: grid;
  gap: 10px;
}

.protocol-form span,
.protocol-output__top span,
.protocol-metrics span,
.protocol-phases span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.protocol-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.protocol-form select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.protocol-output {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 254, 248, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.protocol-output__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.protocol-output__top span {
  color: var(--dijon-dark);
}

.protocol-output__top strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
}

.protocol-output h3 {
  margin-top: 34px;
  font-size: clamp(30px, 4vw, 58px);
}

.protocol-output p {
  color: var(--graphite);
}

.protocol-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.protocol-metrics div {
  min-height: 102px;
  padding: 16px;
  background: rgba(16, 18, 15, 0.06);
  border: 1px solid rgba(16, 18, 15, 0.1);
}

.protocol-metrics span {
  display: block;
  color: var(--muted);
}

.protocol-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.protocol-phases {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.protocol-phases article {
  display: grid;
  grid-template-columns: 42px minmax(90px, 0.26fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.74);
}

.protocol-phases span {
  color: var(--clay);
}

.protocol-phases strong {
  font-size: 18px;
}

.protocol-phases p {
  margin: 0;
}

.protocol-output .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.protocol-output .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.product-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 232, 167, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(16, 18, 15, 0.97), rgba(33, 79, 59, 0.82)),
    url("assets/images/better-supplements.jpg") center / cover;
}

.product-controls,
.product-output {
  max-width: 700px;
}

.product-controls h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.product-controls p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.product-form {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.product-form label {
  display: grid;
  gap: 10px;
}

.product-form span,
.product-output__top span,
.product-metrics span,
.product-kit span,
.commerce-rail span,
.b2b-system span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.product-form select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.product-output {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 254, 248, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.product-output__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.product-output__top span {
  color: var(--dijon-dark);
}

.product-output__top strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
}

.product-output h3 {
  margin-top: 34px;
  font-size: clamp(30px, 4vw, 58px);
}

.product-output p {
  color: var(--graphite);
}

.product-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.product-metrics div {
  min-height: 96px;
  padding: 16px;
  background: rgba(16, 18, 15, 0.06);
  border: 1px solid rgba(16, 18, 15, 0.1);
}

.product-metrics span {
  display: block;
  color: var(--muted);
}

.product-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.product-kit {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.product-kit article {
  display: grid;
  grid-template-columns: 38px minmax(98px, 0.26fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.74);
}

.product-kit span {
  color: var(--clay);
}

.product-kit strong {
  font-size: 18px;
}

.product-kit p {
  margin: 0;
}

.product-output .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.product-output .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.membership-builder {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(390px, 0.84fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 232, 167, 0.13), transparent 26%),
    linear-gradient(120deg, rgba(16, 18, 15, 0.97), rgba(16, 18, 15, 0.72)),
    url("assets/images/luxury-dinner-salon.jpg") center / cover;
}

.membership-controls,
.membership-output {
  max-width: 700px;
}

.membership-controls h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.membership-controls p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.membership-form {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.membership-form label {
  display: grid;
  gap: 10px;
}

.membership-form span,
.membership-output__top span,
.membership-metrics span,
.membership-plan span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.membership-form select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.membership-output {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 254, 248, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.membership-output__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.membership-output__top span {
  color: var(--dijon-dark);
}

.membership-output__top strong {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 0.95;
}

.membership-output h3 {
  margin-top: 34px;
  font-size: clamp(30px, 4vw, 58px);
}

.membership-output p {
  color: var(--graphite);
}

.membership-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.membership-metrics div {
  min-height: 96px;
  padding: 16px;
  background: rgba(16, 18, 15, 0.06);
  border: 1px solid rgba(16, 18, 15, 0.1);
}

.membership-metrics span {
  display: block;
  color: var(--muted);
}

.membership-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.membership-plan {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.membership-plan article {
  display: grid;
  grid-template-columns: 38px minmax(98px, 0.26fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.74);
}

.membership-plan span {
  color: var(--clay);
}

.membership-plan strong {
  font-size: 18px;
}

.membership-plan p {
  margin: 0;
}

.membership-output .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.membership-output .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.standard-plan-room {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(215, 232, 167, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(8, 10, 8, 0.98), rgba(16, 18, 15, 0.78)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
}

.standard-plan-controls,
.standard-plan-output {
  max-width: 720px;
}

.standard-plan-controls h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.standard-plan-controls p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.standard-plan-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.standard-plan-form label {
  display: grid;
  gap: 10px;
}

.standard-plan-form span,
.standard-plan-output__top span,
.standard-plan-metrics span,
.standard-plan-thesis span,
.standard-plan-partner-screen__top span,
.standard-plan-partner-grid span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.standard-plan-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.22);
}

.standard-plan-form select:focus {
  outline: 2px solid var(--oxygen);
  outline-offset: 2px;
}

.standard-plan-output {
  justify-self: end;
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(255, 254, 248, 0.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.standard-plan-output__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.standard-plan-output__top span {
  color: var(--dijon-dark);
}

.standard-plan-output__top strong {
  font-size: clamp(30px, 4.5vw, 62px);
  line-height: 0.95;
}

.standard-plan-output h3 {
  margin-top: 34px;
  font-size: clamp(30px, 4vw, 58px);
}

.standard-plan-output p {
  color: var(--graphite);
}

.standard-plan-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.standard-plan-metrics div {
  min-height: 102px;
  padding: 16px;
  background: rgba(16, 18, 15, 0.06);
  border: 1px solid rgba(16, 18, 15, 0.1);
}

.standard-plan-metrics span {
  display: block;
  color: var(--muted);
}

.standard-plan-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.standard-plan-thesis {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 18, 15, 0.12);
  border-radius: 8px;
}

.standard-plan-thesis article {
  display: grid;
  grid-template-columns: 38px minmax(110px, 0.26fr) 1fr;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.74);
}

.standard-plan-thesis span {
  color: var(--clay);
}

.standard-plan-thesis strong {
  font-size: 18px;
}

.standard-plan-thesis p {
  margin: 0;
}

.standard-plan-partner-screen {
  margin-top: 24px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(16, 18, 15, 0.9), rgba(16, 18, 15, 0.78)),
    rgba(16, 18, 15, 0.9);
  border: 1px solid rgba(16, 18, 15, 0.16);
  border-radius: 8px;
}

.standard-plan-partner-screen__top {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.standard-plan-partner-screen__top span {
  color: rgba(255, 254, 248, 0.48);
}

.standard-plan-partner-screen__top strong {
  color: var(--oxygen);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.98;
  text-align: right;
}

.standard-plan-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.1);
}

.standard-plan-partner-grid article {
  min-height: 128px;
  padding: 16px;
  background: rgba(255, 254, 248, 0.06);
}

.standard-plan-partner-grid span {
  display: block;
  color: rgba(255, 254, 248, 0.46);
}

.standard-plan-partner-grid p {
  margin: 12px 0 0;
  color: rgba(255, 254, 248, 0.76);
  font-size: 15px;
  line-height: 1.42;
}

.standard-plan-output .capsule-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
}

.standard-plan-output .capsule-list span {
  color: var(--ink);
  background: rgba(16, 18, 15, 0.06);
  border-color: rgba(16, 18, 15, 0.12);
}

.elite-circuit {
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 10, 8, 0.96), rgba(8, 10, 8, 0.78)),
    url("assets/images/destination-lake-como.jpg") center / cover;
}

.elite-circuit .section-heading {
  color: var(--white);
}

.elite-city-board {
  display: grid;
  gap: 12px;
  max-width: 1480px;
  margin: 42px auto 0;
}

.city-cluster {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) 1fr;
  gap: 28px;
  padding: 24px;
  background: rgba(255, 254, 248, 0.06);
  border: 1px solid rgba(255, 254, 248, 0.14);
  backdrop-filter: blur(18px);
}

.city-cluster > span,
.elite-city-grid em,
.brand-architecture span {
  color: var(--oxygen);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-cluster h3 {
  margin-top: 44px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 38px);
}

.elite-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.elite-city-grid a {
  min-height: 118px;
  padding: 14px;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.12);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.elite-city-grid a:hover,
.elite-city-grid a:focus-visible {
  background: rgba(215, 232, 167, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.elite-city-grid strong {
  display: block;
  color: var(--white);
  font-size: 17px;
  line-height: 1.05;
}

.elite-city-grid em {
  display: block;
  margin-top: 28px;
  color: rgba(255, 254, 248, 0.62);
}

.robocierge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(78px, 10vw, 132px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 232, 167, 0.14), transparent 28%),
    linear-gradient(120deg, rgba(16, 18, 15, 0.98), rgba(33, 79, 59, 0.76)),
    url("assets/images/destination-dubai-jumeirah.jpg") center / cover;
}

.robocierge-copy h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.robocierge-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.6vw, 22px);
}

.robocierge-copy .capsule-list {
  grid-template-columns: repeat(3, 1fr);
}

.robocierge-copy .capsule-list span {
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.16);
}

.brand-architecture {
  display: grid;
  gap: 10px;
}

.brand-architecture article {
  min-height: 170px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(255, 254, 248, 0.58);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.brand-architecture span {
  color: var(--dijon-dark);
}

.brand-architecture strong {
  display: block;
  margin-top: 28px;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.02;
}

.brand-architecture p {
  color: var(--muted);
}

.product-commerce {
  overflow: hidden;
}

.commerce-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(230px, 1fr));
  gap: 1px;
  max-width: 1500px;
  margin: 40px auto 0;
  background: rgba(255, 254, 248, 0.14);
  border: 1px solid rgba(255, 254, 248, 0.14);
}

.commerce-rail article {
  min-height: 330px;
  padding: 22px;
  background: rgba(255, 254, 248, 0.045);
}

.commerce-rail strong {
  display: block;
  margin-top: 34px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.08;
}

.commerce-rail p {
  color: rgba(255, 254, 248, 0.68);
}

.commerce-rail em {
  display: block;
  margin-top: 22px;
  color: var(--oxygen);
  font-style: normal;
  font-weight: 800;
}

.product-b2b {
  background:
    linear-gradient(rgba(246, 242, 233, 0.9), rgba(246, 242, 233, 0.96)),
    url("assets/images/luxury-dinner-salon.jpg") center / cover;
}

.b2b-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 38px auto 0;
}

.b2b-system article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.84);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.b2b-system span {
  color: var(--dijon-dark);
}

.b2b-system h3 {
  margin-top: 56px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.b2b-system p {
  color: var(--muted);
}

.approved-directory {
  background:
    linear-gradient(rgba(246, 242, 233, 0.94), rgba(246, 242, 233, 0.98)),
    url("assets/images/better-supplements.jpg") center / cover;
}

.approved-control-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 12px;
  max-width: 1360px;
  margin: 0 auto 18px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(16, 18, 15, 0.08);
}

.approved-control-bar label {
  display: grid;
  gap: 10px;
}

.approved-control-bar label > span,
.approved-summary span {
  color: var(--dijon-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approved-control-bar select,
.approved-control-bar input[type="range"] {
  width: 100%;
}

.approved-control-bar select {
  min-height: 52px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}

.approved-control-bar strong {
  color: var(--ink);
  font-size: 22px;
}

.approved-summary {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px 14px;
  align-items: baseline;
  max-width: 1360px;
  margin: 0 auto 24px;
}

.approved-summary strong {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.86;
}

.approved-summary p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.approved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1360px;
  margin: 0 auto;
}

.approved-card {
  min-height: 380px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(16, 18, 15, 0.06);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.approved-card.is-hidden {
  display: none;
}

.approved-card:hover {
  border-color: rgba(154, 120, 32, 0.34);
  transform: translateY(-3px);
}

.approved-card span {
  display: block;
  color: var(--clay);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approved-card strong {
  display: block;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.85;
}

.approved-card h3 {
  margin-top: 38px;
  font-size: clamp(22px, 2.2vw, 32px);
}

.approved-card p {
  color: var(--muted);
}

.approved-card small {
  display: block;
  margin-top: 18px;
  color: var(--graphite);
  font-weight: 750;
}

.benchmark-band {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 18, 15, 0.94), rgba(16, 18, 15, 0.72)),
    url("assets/images/luxury-dinner-salon.jpg") center / cover;
}

.benchmark-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: 1360px;
  margin: 0 auto;
  align-items: start;
}

.benchmark-copy {
  position: sticky;
  top: calc(var(--header) + 48px);
}

.benchmark-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 254, 248, 0.82);
  font-size: clamp(18px, 1.6vw, 22px);
}

.benchmark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.14);
  border-radius: 8px;
}

.benchmark-card {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 254, 248, 0.12);
  backdrop-filter: blur(16px);
}

.benchmark-card span {
  display: block;
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benchmark-card h3 {
  margin-top: 54px;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 34px);
}

.benchmark-card p {
  color: rgba(255, 254, 248, 0.82);
}

.luxury-rules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1360px;
  margin: 36px auto 0;
}

.luxury-rule {
  min-height: 180px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.luxury-rule span {
  display: block;
  color: var(--dijon-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.luxury-rule p {
  color: var(--muted);
}

.operator-grid,
.tier-grid,
.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1360px;
  margin: 0 auto;
}

.operator-card,
.tier-card,
.standard-card {
  min-height: 286px;
  padding: clamp(22px, 3vw, 30px);
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.operator-card:hover,
.tier-card:hover,
.standard-card:hover {
  border-color: rgba(154, 120, 32, 0.34);
  box-shadow: 0 22px 70px rgba(16, 18, 15, 0.1);
  transform: translateY(-3px);
}

.operator-card span,
.tier-card span,
.standard-card span {
  display: block;
  color: var(--dijon-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operator-card h3,
.tier-card h3,
.standard-card h3 {
  margin-top: 48px;
  color: var(--ink);
}

.operator-card p,
.tier-card p,
.standard-card p {
  color: var(--muted);
}

.operator-card a,
.standard-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  margin-top: 12px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.tier-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 0.9;
}

.dark .operator-card,
.dark .tier-card,
.dark .standard-card,
.green .operator-card,
.green .tier-card,
.green .standard-card {
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.14);
}

.dark .operator-card p,
.dark .tier-card p,
.dark .standard-card p,
.green .operator-card p,
.green .tier-card p,
.green .standard-card p {
  color: rgba(255, 254, 248, 0.72);
}

.dark .operator-card h3,
.dark .tier-card h3,
.dark .standard-card h3,
.green .operator-card h3,
.green .tier-card h3,
.green .standard-card h3 {
  color: var(--white);
}

.dark .tier-card strong,
.green .tier-card strong {
  color: var(--white);
}

.operator-card--ibi {
  background:
    linear-gradient(145deg, rgba(16, 18, 15, 0.92), rgba(90, 69, 17, 0.72)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
  border-color: rgba(215, 232, 167, 0.36);
}

.operator-card--ibi span,
.operator-card--ibi h3,
.operator-card--ibi a {
  color: var(--oxygen);
}

.operator-card--ibi p {
  color: rgba(255, 254, 248, 0.8);
}

.luxury-statement {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.92), rgba(90, 69, 17, 0.72)),
    url("assets/images/luxury-dinner-salon.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.luxury-statement h2 {
  max-width: 960px;
}

.luxury-statement p {
  max-width: 760px;
  color: rgba(255, 254, 248, 0.76);
  font-size: clamp(18px, 1.8vw, 24px);
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1360px;
  margin: 38px auto 0;
}

.source-grid a {
  padding: 14px 16px;
  color: var(--graphite);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 250, 240, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.evidence-grid,
.deep-grid,
.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}

.evidence-card,
.deep-card,
.page-card {
  min-height: 250px;
  padding: 26px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-card,
.evidence-card,
.deep-card,
.intelligence-card,
.service-step {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.page-card:hover,
.evidence-card:hover,
.deep-card:hover,
.intelligence-card:hover,
.service-step:hover {
  border-color: rgba(154, 120, 32, 0.34);
  box-shadow: 0 22px 70px rgba(16, 18, 15, 0.1);
  transform: translateY(-3px);
}

.dark .evidence-card,
.dark .deep-card,
.dark .page-card {
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.14);
}

.evidence-card span,
.deep-card span,
.page-card span {
  display: block;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.evidence-card h3,
.deep-card h3,
.page-card h3 {
  margin-top: 40px;
  color: var(--ink);
}

.evidence-card p,
.deep-card p,
.page-card p {
  color: var(--muted);
}

.dark .evidence-card p,
.dark .deep-card p,
.dark .page-card p {
  color: rgba(255, 254, 248, 0.7);
}

.dark .evidence-card h3,
.dark .deep-card h3,
.dark .page-card h3 {
  color: var(--white);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 40px auto 0;
}

.source-list a {
  padding: 16px 18px;
  font-weight: 750;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.38fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.platform-panel {
  justify-self: end;
  max-width: 360px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(255, 254, 248, 0.58);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.platform-panel strong {
  display: block;
  color: var(--dijon-dark);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.88;
}

.platform-panel span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.platform-panel p {
  color: var(--graphite);
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1360px;
  margin: 0 auto;
}

.intelligence-card {
  min-height: 300px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dark .intelligence-card {
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.14);
}

.intelligence-card span {
  color: var(--gold-dim);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.intelligence-card h3 {
  margin-top: 48px;
  color: var(--ink);
}

.intelligence-card p {
  color: var(--muted);
}

.dark .intelligence-card p {
  color: rgba(255, 254, 248, 0.7);
}

.dark .intelligence-card h3 {
  color: var(--white);
}

.flywheel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.14);
  border-radius: 8px;
}

.flywheel div {
  min-height: 240px;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
}

.flywheel span {
  color: var(--oxygen);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.flywheel h3 {
  margin-top: 64px;
  font-size: clamp(22px, 2vw, 30px);
}

.flywheel p {
  color: rgba(255, 254, 248, 0.68);
}

.service-ladder {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 1360px;
  margin: 0 auto;
}

.service-step {
  min-height: 252px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-step strong {
  color: var(--dijon-dark);
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.9;
}

.service-step span {
  display: block;
  margin-top: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-step p {
  color: var(--muted);
}

.service-step h3 {
  color: var(--ink);
}

.route-layer {
  padding: clamp(74px, 9vw, 126px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 17, 13, 0.94), rgba(37, 82, 59, 0.92)),
    var(--ink);
}

.route-layer__head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 82px);
  max-width: 1360px;
  margin: 0 auto 38px;
  align-items: end;
}

.route-layer__head h2 {
  color: var(--white);
  font-size: clamp(36px, 5.6vw, 84px);
}

.route-layer__head p:not(.eyebrow) {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(17px, 1.5vw, 24px);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
}

.route-card {
  display: grid;
  min-height: 276px;
  padding: 24px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 254, 248, 0.055);
  transition: background 180ms ease, transform 180ms ease;
}

.route-card:hover {
  background: rgba(215, 232, 167, 0.12);
  transform: translateY(-2px);
}

.route-card span,
.route-card em {
  color: var(--oxygen);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card strong {
  align-self: end;
  color: var(--white);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

.route-card p {
  color: rgba(255, 254, 248, 0.68);
}

.matrix-table {
  display: grid;
  max-width: 1360px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.matrix-row {
  display: grid;
  grid-template-columns: 0.72fr 1.2fr 1fr 0.9fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.matrix-row strong {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.matrix-row span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.matrix-row p {
  margin: 0;
  color: var(--muted);
}

.dark .matrix-row {
  border-color: rgba(255, 254, 248, 0.14);
}

.dark .matrix-row p {
  color: rgba(255, 254, 248, 0.7);
}

.standard-engines {
  padding: clamp(78px, 10vw, 136px) clamp(20px, 5vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(215, 232, 167, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(7, 9, 8, 0.98), rgba(7, 9, 8, 0.86)),
    url("assets/images/luxury-mobility-decor.jpg") center / cover;
}

.standard-engines .section-heading {
  color: var(--white);
}

.standard-engines .section-heading p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 254, 248, 0.68);
}

.board-engine-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 1px;
  max-width: 1560px;
  margin: 46px auto 0;
  overflow: hidden;
  background: rgba(255, 254, 248, 0.13);
  border: 1px solid rgba(255, 254, 248, 0.14);
}

.board-engine-card {
  display: grid;
  align-content: start;
  min-height: 342px;
  padding: clamp(18px, 1.8vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 254, 248, 0.075), rgba(255, 254, 248, 0.025)),
    rgba(16, 18, 15, 0.86);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.board-engine-card:hover {
  background:
    linear-gradient(180deg, rgba(215, 232, 167, 0.14), rgba(255, 254, 248, 0.04)),
    rgba(16, 18, 15, 0.9);
  transform: translateY(-2px);
}

.board-engine-card span,
.board-engine-card em {
  color: var(--oxygen);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-engine-card h3 {
  margin-top: 54px;
  color: var(--white);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1;
}

.board-engine-card p {
  color: rgba(255, 254, 248, 0.66);
}

.board-engine-card em {
  display: block;
  align-self: end;
  margin-top: 28px;
  color: rgba(255, 254, 248, 0.48);
  line-height: 1.45;
}

.standard-how-it-works {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 18, 15, 0.98), rgba(33, 79, 59, 0.82)),
    url("assets/images/destination-los-angeles.jpg") center / cover;
}

.standard-how-it-works .section-heading {
  color: var(--white);
}

.standard-how-it-works .service-ladder {
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 254, 248, 0.14);
  border: 1px solid rgba(255, 254, 248, 0.16);
}

.standard-how-it-works .service-step {
  min-height: 260px;
  padding: clamp(20px, 2vw, 28px);
  color: var(--white);
  background: rgba(8, 10, 8, 0.76);
  border: 0;
  border-radius: 0;
}

.standard-how-it-works .service-step strong {
  color: var(--oxygen);
  font-size: clamp(34px, 4.2vw, 66px);
}

.standard-how-it-works .service-step span {
  color: rgba(255, 254, 248, 0.54);
}

.standard-how-it-works .service-step h3 {
  color: var(--white);
}

.standard-how-it-works .service-step p {
  color: rgba(255, 254, 248, 0.64);
}

.score-formula {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 18, 15, 0.9), rgba(95, 75, 22, 0.72)),
    url("assets/images/luxury-biohacking-suite.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.score-formula h3 {
  max-width: 980px;
  font-size: clamp(36px, 5vw, 78px);
}

.score-formula p {
  max-width: 760px;
  color: rgba(255, 254, 248, 0.75);
  font-size: 21px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.formula-grid span {
  padding: 16px;
  color: var(--white);
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 254, 248, 0.1);
  border: 1px solid rgba(255, 254, 248, 0.18);
}

.dark .source-list a,
.green .source-list a {
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border-color: rgba(255, 254, 248, 0.14);
}

.law-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}

.law {
  min-height: 190px;
  padding: 18px;
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.14);
  border-radius: 8px;
}

.law span {
  color: var(--oxygen);
  font-size: 12px;
  font-weight: 850;
}

.law h3 {
  margin-top: 28px;
  font-size: 22px;
}

.law p {
  color: rgba(255, 254, 248, 0.68);
}

.feature-table {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.luxury-matrix td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.feature-table th,
.feature-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.feature-table th {
  color: var(--forest);
  font-size: 12px;
  text-transform: uppercase;
}

.feature-table td {
  color: var(--graphite);
}

.feature-table tr:last-child td {
  border-bottom: 0;
}

.enterprise-page {
  color: var(--white);
  background: #080a08;
}

.enterprise-page .site-header.is-scrolled,
.enterprise-page .site-header.is-open {
  color: var(--white);
  background: rgba(8, 10, 8, 0.82);
  border-bottom-color: rgba(255, 254, 248, 0.12);
}

.enterprise-page .menu-panel__inner {
  color: var(--ink);
}

.enterprise-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header) + 68px) clamp(20px, 5vw, 70px) 52px;
  overflow: hidden;
  background: #080a08;
}

.enterprise-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.94), rgba(8, 10, 8, 0.72) 48%, rgba(8, 10, 8, 0.42)),
    linear-gradient(0deg, rgba(8, 10, 8, 0.94), transparent 50%),
    url("assets/images/luxury-biohacking-suite.jpg") center / cover;
  opacity: 0.9;
  transform: scale(1.02);
}

.enterprise-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.54fr);
  gap: clamp(34px, 7vw, 90px);
  max-width: 1480px;
  min-height: calc(100svh - var(--header) - 120px);
  margin: 0 auto;
  align-items: end;
}

.enterprise-copy {
  max-width: 820px;
}

.enterprise-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5.4vw, 84px);
  line-height: 0.94;
}

.enterprise-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.55vw, 24px);
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.enterprise-page .button-secondary {
  color: var(--white);
  border-color: rgba(255, 254, 248, 0.28);
}

.enterprise-console {
  align-self: end;
  overflow: hidden;
  color: var(--white);
  background: rgba(8, 10, 8, 0.66);
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(22px);
}

.console-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.console-top span {
  width: 8px;
  height: 8px;
  background: rgba(215, 232, 167, 0.74);
  border-radius: 999px;
}

.console-top strong {
  margin-left: auto;
  color: rgba(255, 254, 248, 0.56);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.console-score {
  padding: 26px;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.console-score span,
.console-grid span,
.console-feed span,
.model-number span,
.model-thesis span,
.model-meta span,
.product-lane span,
.partner-grid span,
.data-terminal span,
.license-steps span,
.program path-timeline span {
  color: var(--oxygen);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-score strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.84;
}

.console-score em {
  display: block;
  margin-top: 16px;
  color: rgba(255, 254, 248, 0.58);
  font-style: normal;
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.console-grid div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid rgba(255, 254, 248, 0.12);
}

.console-grid div:last-child {
  border-right: 0;
}

.console-grid strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(24px, 2.7vw, 42px);
  line-height: 0.9;
}

.console-feed {
  display: grid;
}

.console-feed p {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  margin: 0;
  padding: 14px 16px;
  color: rgba(255, 254, 248, 0.74);
  border-bottom: 1px solid rgba(255, 254, 248, 0.08);
}

.console-feed p:last-child {
  border-bottom: 0;
}

.enterprise-nav {
  position: sticky;
  top: var(--header);
  z-index: 20;
  display: flex;
  gap: 4px;
  padding: 8px clamp(16px, 5vw, 70px);
  overflow-x: auto;
  background: rgba(8, 10, 8, 0.86);
  border-top: 1px solid rgba(255, 254, 248, 0.08);
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
  backdrop-filter: blur(18px);
}

.enterprise-nav a {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: rgba(255, 254, 248, 0.72);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 254, 248, 0.1);
}

.enterprise-nav a:hover {
  color: var(--ink);
  background: var(--oxygen);
}

.enterprise-section,
.enterprise-data {
  padding: clamp(70px, 9vw, 128px) clamp(20px, 5vw, 70px);
  background: #080a08;
}

.enterprise-section:nth-of-type(even) {
  background: #0d100d;
}

.enterprise-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.35fr);
  gap: clamp(24px, 5vw, 80px);
  max-width: 1480px;
  margin: 0 auto 34px;
  align-items: end;
}

.enterprise-section__head h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 0.98;
}

.enterprise-section__head p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 254, 248, 0.62);
  font-size: clamp(16px, 1.3vw, 20px);
}

.signal-rail,
.partner-grid,
.license-steps,
.program path-timeline {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 254, 248, 0.14);
}

.signal-rail div,
.partner-grid div,
.license-steps div,
.program path-timeline div {
  display: grid;
  grid-template-columns: 0.24fr 0.36fr 1fr;
  gap: 22px;
  align-items: start;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.signal-rail strong,
.partner-grid strong,
.license-steps strong,
.program path-timeline strong {
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.02;
}

.signal-rail p,
.partner-grid p,
.license-steps p,
.program path-timeline p {
  margin: 0;
  color: rgba(255, 254, 248, 0.62);
}

.enterprise-model {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 1px;
  padding: 1px;
  background: rgba(255, 254, 248, 0.12);
}

.enterprise-model__panel,
.enterprise-model__output {
  min-height: 620px;
  padding: clamp(28px, 5vw, 70px);
  background: #0d100d;
}

.enterprise-model__panel h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 62px);
  line-height: 0.96;
}

.enterprise-model__panel p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 254, 248, 0.64);
  font-size: 20px;
}

.model-controls {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-top: 46px;
}

.model-controls label {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.model-controls label > span {
  color: rgba(255, 254, 248, 0.56);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-controls select {
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.06);
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 0;
}

.model-controls input[type="range"] {
  width: 100%;
  accent-color: var(--oxygen);
}

.model-controls strong {
  min-width: 78px;
  color: var(--oxygen);
  text-align: right;
}

.enterprise-model__output {
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(160deg, rgba(215, 232, 167, 0.12), rgba(8, 10, 8, 0.04)),
    #10140f;
}

.model-number strong {
  display: block;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.8;
}

.model-thesis {
  max-width: 520px;
}

.model-thesis p {
  color: rgba(255, 254, 248, 0.72);
  font-size: clamp(18px, 1.8vw, 26px);
}

.model-bars {
  display: grid;
  gap: 16px;
}

.model-bars div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
}

.model-bars span {
  color: rgba(255, 254, 248, 0.56);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.model-bars i {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 254, 248, 0.12);
}

.model-bars i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  content: "";
  background: linear-gradient(90deg, var(--oxygen), var(--gold-dim));
}

.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-meta span {
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.12);
}

.product-lanes,
.data-terminal {
  display: grid;
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 254, 248, 0.14);
}

.product-lane,
.data-terminal div {
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.34fr) 1fr minmax(180px, 0.34fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.product-lane strong,
.data-terminal strong {
  color: var(--white);
  font-size: clamp(20px, 1.65vw, 28px);
  line-height: 1.02;
}

.product-lane p,
.data-terminal em {
  margin: 0;
  color: rgba(255, 254, 248, 0.62);
  font-style: normal;
}

.product-lane em {
  color: var(--oxygen);
  font-style: normal;
  font-size: 13px;
  font-weight: 760;
}

.data-terminal div {
  grid-template-columns: minmax(150px, 0.22fr) 1fr minmax(220px, 0.34fr);
}

.enterprise-data {
  background:
    linear-gradient(135deg, rgba(8, 10, 8, 0.96), rgba(8, 10, 8, 0.72)),
    url("assets/images/app-dashboard-futuristic.jpg") center / cover;
}

.command-launcher {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 105;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 7px 12px 7px 7px;
  color: var(--white);
  background: rgba(8, 10, 8, 0.72);
  border: 1px solid rgba(255, 254, 248, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.command-launcher:hover,
.command-launcher:focus-visible {
  color: var(--ink);
  background: var(--oxygen);
  outline: none;
}

.command-launcher span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  background: var(--oxygen);
  border: 1px solid rgba(8, 10, 8, 0.18);
}

.command-launcher strong {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.command-palette {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: start center;
  padding: max(88px, 10vh) clamp(16px, 4vw, 56px) 24px;
  visibility: hidden;
  background: rgba(3, 4, 3, 0.58);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.command-palette.is-open {
  visibility: visible;
  opacity: 1;
}

.command-panel {
  width: min(900px, 100%);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(215, 232, 167, 0.08), rgba(255, 254, 248, 0.02)),
    rgba(8, 10, 8, 0.88);
  border: 1px solid rgba(255, 254, 248, 0.16);
  border-radius: 8px;
  box-shadow: 0 32px 130px rgba(0, 0, 0, 0.58);
  transform: translateY(10px);
  transition: transform 180ms ease;
  backdrop-filter: blur(26px);
}

.command-palette.is-open .command-panel {
  transform: translateY(0);
}

.command-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.command-search span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  background: var(--oxygen);
}

.command-search input {
  width: 100%;
  min-height: 44px;
  padding: 0;
  color: var(--white);
  font-size: 18px;
  background: transparent;
  border: 0;
  outline: 0;
}

.command-search input::placeholder {
  color: rgba(255, 254, 248, 0.42);
}

.command-search button {
  height: 38px;
  padding: 0 12px;
  color: rgba(255, 254, 248, 0.68);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 254, 248, 0.06);
  border: 1px solid rgba(255, 254, 248, 0.12);
  cursor: pointer;
}

.command-results {
  display: grid;
  max-height: min(62vh, 620px);
  padding: 8px;
  overflow: auto;
}

.command-result {
  display: grid;
  grid-template-columns: 96px minmax(150px, 0.36fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 13px 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 254, 248, 0.08);
}

.command-result:last-child {
  border-bottom: 0;
}

.command-result:hover,
.command-result:focus-visible {
  background: rgba(255, 254, 248, 0.07);
  outline: none;
}

.command-result span,
.command-result em {
  color: var(--oxygen);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.command-result strong {
  font-size: 18px;
  line-height: 1.08;
}

.command-result p {
  margin: 0;
  color: rgba(255, 254, 248, 0.64);
  font-size: 14px;
}

.command-result em {
  color: rgba(255, 254, 248, 0.36);
}

.command-empty {
  margin: 0;
  padding: 26px;
  color: rgba(255, 254, 248, 0.64);
}

.article-list {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.32fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.article-row span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.article-row h3 {
  font-size: clamp(26px, 3vw, 46px);
}

.article-row p {
  margin: 0;
  color: var(--muted);
}

.ethics {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 5vw, 70px);
  background: var(--ice);
}

.ethics-inner {
  max-width: 980px;
  margin: 0 auto;
}

.ethics-inner p:not(.eyebrow) {
  margin-top: 28px;
  color: var(--graphite);
  font-size: clamp(20px, 2.4vw, 30px);
}

.legal-page,
.contact-band {
  background:
    linear-gradient(135deg, rgba(255, 254, 248, 0.92), rgba(246, 242, 233, 0.98)),
    var(--paper);
}

.legal-stack {
  display: grid;
  max-width: 940px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.legal-block {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(28px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-block h2 {
  max-width: 280px;
  color: var(--forest);
  font-size: clamp(24px, 2.6vw, 38px);
}

.legal-block p {
  max-width: 720px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(18px, 1.8vw, 24px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.contact-mailboxes {
  display: grid;
  gap: 12px;
  margin: 28px 0 24px;
}

.contact-mailboxes a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 254, 248, 0.62);
  border: 1px solid var(--line);
  text-decoration: none;
}

.contact-mailboxes a:hover {
  border-color: rgba(33, 79, 59, 0.38);
  transform: translateY(-1px);
}

.contact-mailboxes span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-mailboxes strong {
  overflow-wrap: anywhere;
  color: var(--forest);
  font-size: clamp(16px, 1.6vw, 22px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(33, 79, 59, 0.94), rgba(16, 18, 15, 0.96)),
    var(--forest);
  border: 1px solid rgba(215, 232, 167, 0.22);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 254, 248, 0.68);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 254, 248, 0.08);
  border: 1px solid rgba(255, 254, 248, 0.2);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--oxygen);
  box-shadow: 0 0 0 3px rgba(215, 232, 167, 0.12);
}

.contact-form select option {
  color: var(--ink);
}

.form-note,
.footer-note {
  font-size: 13px;
  line-height: 1.45;
}

.source-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 254, 248, 0.16);
  border: 1px solid rgba(255, 254, 248, 0.16);
}

.source-card {
  display: grid;
  min-height: 250px;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(16, 18, 15, 0.88), rgba(33, 79, 59, 0.82)),
    var(--ink);
}

.source-card span {
  color: var(--oxygen);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-card h3 {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 34px);
}

.source-card a {
  display: inline-flex;
  align-items: center;
  align-self: end;
  width: fit-content;
  min-height: 40px;
  margin-top: 28px;
  color: var(--oxygen);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 40px;
  padding: 48px clamp(20px, 5vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.brand-footer {
  color: var(--white);
}

.site-footer p {
  margin: 22px 0 0;
  color: rgba(255, 254, 248, 0.68);
}

.site-footer .footer-note {
  max-width: 360px;
  margin-top: 14px;
  color: rgba(255, 254, 248, 0.46);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 22px;
  align-content: start;
}

.footer-grid a {
  padding: 12px 0;
  color: rgba(255, 254, 248, 0.76);
  border-bottom: 1px solid rgba(255, 254, 248, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.page-hero__content.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .header-social {
    display: none;
  }

  .quiet-link {
    display: none;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 42px;
  }

  .hero {
    align-content: center;
  }

  .metric-band,
  .pillar-grid,
  .ecosystem-map,
  .app-modules,
  .timeline,
  .destination-grid,
  .capsule-list {
    grid-template-columns: repeat(2, 1fr);
  }

	  .intro-grid,
	  .institutional-platform,
	  .index-section,
	  .research-band,
	  .app-grid,
	  .app-cockpit,
	  .app-live,
	  .approved-band,
  .book,
  .community-preview,
  .content-band.split,
  .site-footer,
	  .luxury-band,
	  .merch-showcase,
	  .biohacking-section,
		  .builder-shell,
		  .robocierge-command,
		  .places-circuit,
		  .protocol-builder,
	  .product-builder,
	  .membership-builder,
	  .standard-plan-room,
	  .robocierge-section,
	  .city-cluster,
	  .contact-grid,
	  .legal-block,
	  .route-layer__head,
	  .route-grid,
	  .enterprise-hero__inner,
	  .enterprise-model,
	  .enterprise-section__head {
	    grid-template-columns: 1fr;
	  }

  .index-copy,
  .approved-copy,
  .book-cover {
    justify-self: start;
  }

  .research-stats,
  .approved-grid,
  .evidence-grid,
  .deep-grid,
  .page-card-grid,
  .intelligence-grid,
  .law-grid,
	  .operator-grid,
	  .tier-grid,
	  .standard-grid,
	  .source-ledger,
	  .source-grid {
    grid-template-columns: repeat(2, 1fr);
  }

		  .source-list,
		  .article-row,
		  .approved-control-bar,
		  .platform-hero-grid,
		  .flywheel,
		  .board-engine-grid,
		  .service-ladder,
		  .matrix-row,
	  .signal-rail div,
	  .partner-grid div,
	  .license-steps div,
	  .program path-timeline div,
	  .commerce-rail,
	  .product-lane,
	  .data-terminal div,
	  .command-result {
	    grid-template-columns: 1fr;
	  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formula-grid {
    grid-template-columns: repeat(2, 1fr);
  }

	  .builder-output .capsule-list {
	    grid-template-columns: repeat(2, 1fr);
	  }

	  .product-output {
	    justify-self: stretch;
	  }

	  .membership-output {
	    justify-self: stretch;
	  }

	  .standard-plan-output {
	    justify-self: stretch;
	  }

	  .app-cockpit {
	    gap: 24px;
	    padding-top: 50px;
	    padding-bottom: 74px;
	  }

	  .app-controls h2 {
	    max-width: 780px;
	    font-size: clamp(32px, 5vw, 50px);
	  }

	  .app-controls p:not(.eyebrow) {
	    max-width: 780px;
	  }

	  .app-form {
	    grid-template-columns: repeat(3, 1fr);
	  }

	  .app-live {
	    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	  }

	  .app-device {
	    min-height: 570px;
	  }

	  .product-builder {
	    gap: 24px;
	    padding-top: 48px;
	    padding-bottom: 72px;
	  }

	  .product-controls h2 {
	    max-width: 760px;
	    font-size: clamp(32px, 5vw, 48px);
	  }

	  .product-controls p:not(.eyebrow) {
	    max-width: 760px;
	    font-size: 18px;
	  }

	  .product-form {
	    grid-template-columns: repeat(3, 1fr);
	  }

	  .product-output .capsule-list,
	  .membership-output .capsule-list,
	  .standard-plan-output .capsule-list,
	  .b2b-system {
	    grid-template-columns: repeat(2, 1fr);
	  }

	  .elite-city-grid {
	    grid-template-columns: repeat(2, 1fr);
	  }

	  .membership-builder {
	    gap: 24px;
	    padding-top: 48px;
	    padding-bottom: 72px;
	  }

	  .membership-controls h2 {
	    max-width: 760px;
	    font-size: clamp(32px, 5vw, 48px);
	  }

	  .membership-controls p:not(.eyebrow) {
	    max-width: 760px;
	    font-size: 18px;
	  }

	  .membership-form {
	    grid-template-columns: repeat(3, 1fr);
	  }

	  .standard-plan-room {
	    gap: 24px;
	    padding-top: 48px;
	    padding-bottom: 72px;
	  }

		  .robo-copy h2,
		  .circuit-copy h2,
		  .standard-plan-controls h2,
		  .robocierge-copy h2 {
	    max-width: 760px;
	    font-size: clamp(32px, 5vw, 48px);
	  }

		  .robo-copy p:not(.eyebrow),
		  .circuit-copy p:not(.eyebrow),
		  .standard-plan-controls p:not(.eyebrow),
		  .robocierge-copy p:not(.eyebrow) {
	    max-width: 760px;
	    font-size: 18px;
	  }

		  .robo-controls,
		  .circuit-controls {
		    grid-template-columns: repeat(3, 1fr);
		  }

		  .standard-plan-form,
		  .standard-plan-partner-grid {
		    grid-template-columns: repeat(2, 1fr);
		  }

		  .robo-console,
		  .circuit-console {
		    justify-self: stretch;
		  }

		  .board-engine-grid {
		    grid-template-columns: repeat(2, 1fr);
		  }

		  .board-engine-card {
		    min-height: 260px;
		  }

	  .enterprise-console {
	    max-width: 680px;
	  }

  .metric-band {
    grid-template-columns: repeat(4, 1fr);
  }

  .operating-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .operating-strip__item:nth-child(2) {
    border-right: 0;
  }

	  .enterprise-model__panel,
	  .enterprise-model__output {
	    min-height: auto;
	  }
	}

@media (max-width: 680px) {
  :root {
    --header: 72px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-word {
    font-size: 12px;
  }

  .brand-word strong {
    font-size: 13px;
  }

	  .menu-grid,
	  .metric-band,
	  .pillar-grid,
  .ecosystem-map,
  .app-modules,
  .timeline,
  .approved-list,
  .footer-grid,
  .report-grid,
  .research-stats,
  .approved-grid,
  .approved-control-bar,
  .approved-summary,
  .evidence-grid,
  .deep-grid,
  .page-card-grid,
  .source-list,
  .source-grid,
  .law-grid,
  .destination-grid,
  .capsule-list,
  .builder-controls,
  .builder-metrics,
  .intelligence-grid,
  .formula-grid,
  .benchmark-inner,
  .benchmark-grid,
  .luxury-rules,
	  .operator-grid,
	  .tier-grid,
	  .standard-grid,
	  .source-ledger,
	  .contact-grid,
	  .legal-block,
	  .console-grid,
	  .model-controls label,
	  .model-bars div,
	  .app-form,
	  .app-live,
	  .app-metric-grid,
		  .protocol-metrics,
		  .robo-metrics,
		  .circuit-metrics,
		  .product-metrics,
	  .membership-metrics,
	  .standard-plan-metrics,
	  .protocol-phases article,
	  .product-kit article,
		  .membership-plan article,
		  .standard-plan-thesis article,
		  .standard-plan-partner-grid,
		  .robo-flow article,
		  .circuit-flow article,
		  .program-row,
	  .operating-strip {
	    grid-template-columns: 1fr;
	  }

  .builder-output .capsule-list {
    grid-template-columns: 1fr;
  }

  .app-cockpit {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .app-device {
    min-height: auto;
    border-width: 7px;
  }

  .app-brief .capsule-list {
    grid-template-columns: 1fr;
  }

  .product-form {
    grid-template-columns: 1fr;
  }

  .membership-form {
    grid-template-columns: 1fr;
  }

  .robo-controls,
  .circuit-controls,
  .standard-plan-form,
  .standard-plan-partner-grid,
  .board-engine-grid,
  .elite-city-grid,
  .robocierge-copy .capsule-list {
    grid-template-columns: 1fr;
  }

  .protocol-builder {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .product-builder {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .membership-builder {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .standard-plan-room,
  .robocierge-command,
  .places-circuit,
  .standard-engines,
  .standard-how-it-works,
  .elite-circuit,
  .robocierge-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .protocol-output {
    justify-self: stretch;
  }

  .protocol-output .capsule-list {
    grid-template-columns: 1fr;
  }

  .product-output .capsule-list,
  .membership-output .capsule-list,
  .robo-console .capsule-list,
  .circuit-console .capsule-list,
  .standard-plan-output .capsule-list,
  .b2b-system {
    grid-template-columns: 1fr;
  }

  .elite-city-grid a {
    min-height: 96px;
  }

  .benchmark-copy {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-list a {
    width: 100%;
  }

  .metric-band {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .metric-band div {
    min-height: 58px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 0;
  }

  .institutional-platform {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .institutional-platform__copy h2 {
    font-size: 40px;
  }

  .program-table {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    margin-top: 18px;
    padding: 10px;
  }

  .program-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px 14px;
    min-height: auto;
    padding: 20px;
  }

  .program-row em {
    text-align: left;
  }

  .operating-strip__item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar-card,
  .eco-card,
  .timeline-card {
    min-height: 230px;
  }

  .pillar-card .pillar-number,
  .eco-card h3,
  .timeline-card h3,
  .module h3 {
    margin-top: 42px;
    margin-bottom: 0;
  }

  .research-copy {
    padding: 52px 20px;
  }

  .phone-shell {
    min-height: 590px;
    border-width: 8px;
  }

  .book-cover {
    min-height: 470px;
  }

  .page-hero {
    min-height: 64svh;
    padding-top: 118px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1.04;
  }

	  .page-hero p:not(.eyebrow) {
	    font-size: 17px;
	  }

	  .enterprise-hero {
	    min-height: auto;
	    padding-top: 122px;
	  }

	  .enterprise-hero__inner {
	    min-height: auto;
	  }

	  .enterprise-copy h1 {
	    font-size: 46px;
	    line-height: 0.98;
	  }

	  .enterprise-copy p:not(.eyebrow),
	  .enterprise-model__panel p:not(.eyebrow),
	  .model-thesis p {
	    font-size: 17px;
	  }

	  .console-grid div {
	    min-height: 92px;
	    border-right: 0;
	    border-bottom: 1px solid rgba(255, 254, 248, 0.12);
	  }

	  .console-grid div:last-child {
	    border-bottom: 0;
	  }

	  .enterprise-section,
	  .enterprise-data,
	  .enterprise-model__panel,
	  .enterprise-model__output {
	    padding-right: 20px;
	    padding-left: 20px;
	  }

	  .model-controls strong {
	    text-align: left;
	  }

  .command-launcher {
    display: none;
  }

  .command-launcher strong {
    display: none;
  }

  .command-palette {
    padding: 76px 10px 14px;
  }

  .command-search {
    grid-template-columns: auto 1fr;
  }

  .command-search button {
    grid-column: 1 / -1;
  }

  .image-panel,
  .community-preview__image,
  .biohacking-section__image,
  .app-visual {
    min-height: 360px;
  }

  .destination-card,
  .merch-card {
    min-height: 380px;
  }

  .feature-table {
    display: block;
    overflow-x: auto;
  }

  .article-row {
    grid-template-columns: 1fr;
  }
}
