:root {
  --bg: #060606;
  --bg-deep: #020202;
  --panel: #101010;
  --panel-2: #161616;
  --panel-3: #1b1b1b;
  --text: #fbfbf8;
  --muted: #b5b2ac;
  --dim: #7f7b75;
  --gold: #d9b86d;
  --gold-light: #f6d68b;
  --gold-deep: #9f792e;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(217, 184, 109, .42);
  --success: #a9d79a;
  --danger: #ff8989;
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-md: .9rem;
  --shadow: 0 28px 90px rgba(0, 0, 0, .38);
  --wrap: min(1180px, calc(100vw - 3rem));
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% -10%, rgba(208, 165, 84, .12), transparent 29rem),
    radial-gradient(circle at -2% 43%, rgba(255, 255, 255, .035), transparent 28rem),
    var(--bg);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open { overflow: hidden; }

::selection { color: #080808; background: var(--gold-light); }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  transform: translateY(-180%);
  padding: .65rem .9rem;
  color: #080808;
  background: var(--gold-light);
  border-radius: .55rem;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.site-shell { position: relative; overflow: clip; }

.wrap { width: var(--wrap); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.1rem;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.65rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-kicker {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.display {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 800;
  letter-spacing: -.072em;
  line-height: .91;
}

.display--page { max-width: 11.5ch; font-size: clamp(3.1rem, 6.7vw, 6rem); }

.section-title {
  max-width: 17ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.section-intro {
  max-width: 43rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, .85fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-head .section-intro { margin: 0; }

.copy > :first-child { margin-top: 0; }
.copy > :last-child { margin-bottom: 0; }
.copy p { color: var(--muted); }
.copy strong { color: var(--text); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--gold-light);
  font-size: .92rem;
  font-weight: 750;
}

.text-link::after {
  content: "↗";
  transition: transform .2s ease;
}

.text-link:hover::after { transform: translate(2px, -2px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: .76rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #080808;
  background: var(--gold-light);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { background: #fff0bb; transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .025);
}

.button--ghost:hover { border-color: var(--line-strong); background: rgba(217, 184, 109, .12); }

.button--small { min-height: 2.65rem; padding: .57rem .9rem; font-size: .84rem; }
.button--wide { min-width: min(100%, 15.5rem); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 5.55rem;
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 6, .72);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled { border-color: var(--line); background: rgba(6, 6, 6, .92); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .7rem;
  min-width: 5.2rem;
}

.brand img { width: 3.25rem; height: 3.25rem; object-fit: contain; }

.brand-copy {
  display: grid;
  gap: .1rem;
  line-height: 1;
}

.brand-copy b { font-size: 1rem; letter-spacing: .12em; }
.brand-copy span { color: var(--gold); font-size: .53rem; font-weight: 800; letter-spacing: .2em; }

.desktop-nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }

.nav-link,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: .48rem .7rem;
  border: 0;
  color: #d3d0cb;
  background: none;
  font-size: .84rem;
  font-weight: 680;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown > summary:hover { color: var(--gold-light); }

.nav-link--o-plus { display: none; }

.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { margin-left: .35rem; content: "⌄"; font-size: .9rem; }

.dropdown-panel {
  position: absolute;
  top: calc(100% + .5rem);
  left: -.5rem;
  display: grid;
  width: 15.25rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(17, 17, 17, .98);
  box-shadow: var(--shadow);
}

.dropdown-panel a { padding: .68rem .75rem; border-radius: .62rem; color: var(--muted); font-size: .84rem; }
.dropdown-panel a:hover { color: var(--text); background: rgba(217, 184, 109, .1); }

.header-actions { display: flex; align-items: center; gap: .55rem; }

.icon-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: transparent;
  font-size: 1.12rem;
  transition: border-color .2s ease, background .2s ease;
}

.icon-button:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .06); }
.menu-toggle { display: none; }

.page-hero { padding: clamp(4.4rem, 9vw, 8.5rem) 0 4.2rem; }

.page-hero--compact { padding-bottom: 2.5rem; }

.home-hero {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: min(52rem, calc(100svh - 5.55rem));
  padding: clamp(2rem, 5vw, 4rem) 0 1.1rem;
  isolation: isolate;
  overflow: hidden;
}

.home-hero--signal {
  background: #050505;
}

.hero-signal-board {
  position: absolute;
  z-index: -2;
  inset: 0;
  min-height: 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(217, 184, 109, .07) 1px, transparent 1px),
    linear-gradient(rgba(217, 184, 109, .055) 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(217, 184, 109, .16), transparent 22rem),
    linear-gradient(145deg, #18140d 0%, #0b0b0b 49%, #030303 100%);
  background-size: 4.5rem 4.5rem, 4.5rem 4.5rem, auto, auto;
  box-shadow: none;
}

.hero-signal-board::before {
  right: -11rem;
  bottom: -15rem;
  width: 44rem;
  height: 44rem;
  border-color: rgba(246, 214, 139, .38);
  box-shadow: 0 0 0 4.8rem rgba(246, 214, 139, .045), 0 0 0 11rem rgba(246, 214, 139, .025);
}

.hero-signal-board::after {
  position: absolute;
  inset: clamp(1.15rem, 2.5vw, 2.3rem);
  border: 1px solid rgba(246, 214, 139, .17);
  border-radius: 1.35rem;
  content: "";
  pointer-events: none;
}

.hero-signal-board .signal-head {
  position: absolute;
  top: clamp(1.4rem, 4vw, 3.4rem);
  right: clamp(1.4rem, 5vw, 5.5rem);
  left: auto;
  width: min(29rem, 37vw);
  opacity: .74;
}

.home-hero--signal .signal-line {
  top: 39%;
  right: -6%;
  left: 29%;
  height: 2px;
  opacity: .9;
  transform: rotate(-17deg);
}

.home-hero--signal .signal-orbit {
  top: 14%;
  right: 25%;
  width: clamp(10rem, 17vw, 17rem);
  height: clamp(10rem, 17vw, 17rem);
  border-color: rgba(246, 214, 139, .7);
  box-shadow: 0 0 0 1.8rem rgba(246, 214, 139, .035), 0 0 5rem rgba(217, 184, 109, .08);
}

.hero-signal-board .signal-stack {
  top: 48%;
  right: clamp(1.5rem, 6vw, 7rem);
  bottom: auto;
  left: auto;
  width: min(34rem, 40vw);
  transform: translateY(-26%) rotate(-2.5deg);
}

.hero-signal-board .signal-card {
  min-height: 4.65rem;
  padding: .92rem 1rem;
  border-color: rgba(246, 214, 139, .22);
  background: rgba(8, 8, 8, .71);
  box-shadow: 0 .8rem 1.8rem rgba(0, 0, 0, .2);
}

.home-hero-content,
.home-hero-rail,
.home-hero-brand { position: relative; z-index: 1; }

.home-hero-media,
.home-hero-scrim {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
}

.home-hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .96) 0%, rgba(2, 2, 2, .77) 42%, rgba(2, 2, 2, .25) 77%, rgba(2, 2, 2, .18) 100%),
    linear-gradient(0deg, rgba(2, 2, 2, .84) 0%, transparent 36%, rgba(2, 2, 2, .18) 100%);
}

.home-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(13.25rem, 27vw, 19rem) 0 1rem;
}

.home-hero-brand {
  position: absolute;
  z-index: 2;
  top: clamp(1rem, 3.4vw, 3rem);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--wrap);
  margin-inline: auto;
}

.home-hero-message {
  margin-top: 0;
}

.home-hero-logo {
  width: clamp(12rem, 21vw, 18rem);
  margin: 0 0 .8rem -.45rem;
  mix-blend-mode: screen;
  filter: drop-shadow(0 .85rem 1.8rem rgba(0, 0, 0, .58));
}

.home-hero-motto {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(.82rem, 1.15vw, 1.05rem);
  letter-spacing: .19em;
  text-shadow: 0 .3rem 1rem rgba(0, 0, 0, .55);
}

.home-hero-title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.4vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
}

.home-hero-copy {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: #e3ded6;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.home-hero-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: var(--wrap);
  margin: auto auto 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1rem;
  background: rgba(3, 3, 3, .46);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.home-hero-path {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, .18);
  transition: background .2s ease;
}

.home-hero-path:last-child { border-right: 0; }
.home-hero-path:hover { background: rgba(217, 184, 109, .12); }
.home-hero-path b { display: block; font-size: 1rem; }
.home-hero-path small { display: block; margin-top: .15rem; color: var(--muted); font-size: .76rem; }
.home-hero-path span { color: var(--gold-light); font-size: 1.2rem; }

/* Home: a restrained brand lockup over a full-bleed V.I.M. backdrop. */
.home-hero--brand {
  display: block;
  min-height: min(53rem, calc(100svh - 5.55rem));
  padding: 0;
  border-bottom: 1px solid rgba(246, 214, 139, .22);
  background: #050505;
}

.home-hero--brand::after {
  position: absolute;
  z-index: 1;
  inset: clamp(.9rem, 2.1vw, 2rem);
  border: 1px solid rgba(246, 214, 139, .18);
  content: "";
  pointer-events: none;
}

.home-hero--brand .home-hero-media {
  z-index: 0;
  object-position: 58% center;
  filter: saturate(.88) contrast(1.08) brightness(.88);
  transform: scale(1.035);
  animation: vim-hero-drift 18s ease-in-out infinite alternate;
}

.home-hero--brand .home-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, .97) 0%, rgba(2, 2, 2, .94) 27%, rgba(2, 2, 2, .73) 47%, rgba(2, 2, 2, .28) 70%, rgba(2, 2, 2, .14) 100%),
    linear-gradient(0deg, rgba(2, 2, 2, .65) 0%, transparent 36%, rgba(2, 2, 2, .18) 100%);
}

.home-hero--brand .home-hero-brand {
  position: relative;
  z-index: 2;
  top: auto;
  right: auto;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--wrap);
  min-height: inherit;
  margin-inline: auto;
}

.home-hero-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(50%, 31rem);
  text-align: center;
}

.home-hero--brand .home-hero-logo {
  width: min(100%, clamp(18rem, 29vw, 25rem));
  margin: 0;
  filter: drop-shadow(0 1.15rem 2.4rem rgba(0, 0, 0, .68));
}

.home-hero--brand .home-hero-motto {
  margin: 1.25rem 0 0;
  color: var(--gold-light);
  font-size: clamp(.82rem, 1.12vw, 1rem);
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.2;
  text-shadow: 0 .35rem 1rem rgba(0, 0, 0, .7);
}

@keyframes vim-hero-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, .6%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero--brand .home-hero-media { animation: none; }
}

.oplus-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 44%, rgba(217, 184, 109, .16), transparent 22rem),
    linear-gradient(135deg, #080808 0%, #12100d 50%, #050505 100%);
}

.oplus-hero::before {
  position: absolute;
  top: 9%;
  right: 4%;
  width: min(39rem, 58vw);
  height: min(39rem, 58vw);
  border: 1px solid rgba(246, 214, 139, .2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 3rem rgba(246, 214, 139, .025), 0 0 0 7rem rgba(246, 214, 139, .018);
}

.oplus-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(21rem, .77fr);
  align-items: center;
  gap: clamp(2rem, 8vw, 8rem);
}

.oplus-copy { max-width: 42rem; }
.oplus-copy h1 {
  margin: .5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.3vw, 8rem);
  font-weight: 780;
  letter-spacing: -.075em;
  line-height: .83;
}
.oplus-copy > p:not(.eyebrow):not(.oplus-url) { max-width: 34rem; margin: 1.5rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); }
.oplus-url { margin: 1.15rem 0 0; color: var(--dim); font-size: .8rem; }
.oplus-url strong { color: var(--gold-light); }

.oplus-mark {
  position: relative;
  display: block;
  width: min(31rem, 100%);
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(246, 214, 139, .28);
  border-radius: 1.5rem;
  background: #090909;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, .42);
}
.oplus-mark::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .06); border-radius: inherit; content: ""; pointer-events: none; }
.oplus-mark img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .45s ease; }
.oplus-mark:hover img { transform: scale(1.025); }

.oplus-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.oplus-card { min-height: 14rem; padding: 1.5rem; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255, 255, 255, .035), transparent); }
.oplus-card:first-child { border-left: 1px solid var(--line); }
.oplus-card > span { color: var(--gold-light); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.oplus-card h3 { margin: 2.5rem 0 .65rem; font-size: 1.15rem; }
.oplus-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.oplus-cta { border-color: rgba(246, 214, 139, .32); background: linear-gradient(105deg, rgba(217, 184, 109, .16), rgba(14, 14, 14, .92) 55%); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero-lead {
  max-width: 37rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.35rem;
  color: var(--dim);
  font-size: .8rem;
}

.hero-note::before { width: .45rem; height: .45rem; content: ""; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 .25rem rgba(217, 184, 109, .12); }

.signal-board {
  position: relative;
  min-height: 29rem;
  padding: clamp(1rem, 2.5vw, 1.7rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .07), transparent 35%),
    linear-gradient(160deg, #1d1912 0%, #111 54%, #080808 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.signal-board::before {
  position: absolute;
  z-index: -1;
  right: -25%;
  bottom: -36%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(246, 214, 139, .3);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 2.5rem rgba(246, 214, 139, .04), 0 0 0 6rem rgba(246, 214, 139, .025);
}

.signal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.signal-head span { color: var(--muted); font-size: .74rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.signal-live { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-light) !important; }
.signal-live::before { width: .45rem; height: .45rem; border-radius: 50%; content: ""; background: currentColor; box-shadow: 0 0 .8rem currentColor; }

.signal-line {
  position: absolute;
  top: 31%;
  right: -4%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: rotate(-13deg);
  opacity: .75;
}

.signal-orbit {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(246, 214, 139, .58);
  border-radius: 50%;
}

.signal-orbit::after { position: absolute; top: -3px; left: 45%; width: .42rem; height: .42rem; border-radius: 50%; content: ""; background: var(--gold-light); box-shadow: 0 0 1.2rem var(--gold-light); }

.signal-stack { position: absolute; right: 1.35rem; bottom: 1.35rem; left: 1.35rem; display: grid; gap: .7rem; }

.signal-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .95rem;
  background: rgba(12, 12, 12, .72);
  backdrop-filter: blur(10px);
}

.signal-card:nth-child(2),
.signal-card:nth-child(3) { margin-left: 0; }
.signal-card b { font-size: .88rem; }
.signal-card small { display: block; color: var(--dim); font-size: .7rem; }
.signal-symbol { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border: 1px solid var(--line-strong); border-radius: .65rem; color: var(--gold-light); font-weight: 850; }
.signal-card em { color: var(--gold-light); font-size: .72rem; font-style: normal; font-weight: 800; }

.metric-rail { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .018); }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { min-height: 8.5rem; padding: 1.35rem 1.1rem; border-right: 1px solid var(--line); }
.metric:first-child { border-left: 1px solid var(--line); }
.metric b { display: block; color: var(--gold-light); font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 2rem); letter-spacing: -.03em; }
.metric span { display: block; max-width: 14ch; margin-top: .25rem; color: var(--muted); font-size: .8rem; line-height: 1.4; }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section--tight { padding: clamp(3.3rem, 7vw, 5.25rem) 0; }
.section--rule { border-top: 1px solid var(--line); }
.section--soft { background: linear-gradient(180deg, rgba(255, 255, 255, .026), rgba(255, 255, 255, 0)); }
.section--goldwash { background: linear-gradient(135deg, rgba(217, 184, 109, .115), rgba(217, 184, 109, .018) 48%, transparent); }

.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.split--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-list { display: grid; gap: .75rem; margin: 1.65rem 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: .9rem 0 .9rem 2.1rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.feature-list li::before { position: absolute; top: 1.06rem; left: 0; display: grid; width: 1.35rem; height: 1.35rem; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); content: "↗"; font-size: .72rem; }

.statement-card { padding: clamp(1.55rem, 3vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--panel); box-shadow: var(--shadow); }
.statement-card blockquote { max-width: 17ch; margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3.3vw, 3rem); font-weight: 780; letter-spacing: -.045em; line-height: 1.05; }
.statement-card cite { display: block; margin-top: 1.5rem; color: var(--gold); font-size: .78rem; font-style: normal; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.audience-card { position: relative; min-height: 24rem; padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(155deg, rgba(255,255,255,.06), rgba(255,255,255,.016)); overflow: hidden; }
.audience-card::after { position: absolute; right: -5rem; bottom: -8rem; width: 15rem; height: 15rem; border: 1px solid rgba(217, 184, 109, .24); border-radius: 50%; content: ""; }
.audience-card--gold { border-color: var(--line-strong); background: linear-gradient(145deg, rgba(217, 184, 109, .23), rgba(255, 255, 255, .035) 58%, rgba(0,0,0,.2)); }
.audience-card > * { position: relative; z-index: 1; }
.audience-index { color: var(--gold-light); font-size: .75rem; font-weight: 850; letter-spacing: .13em; }
.audience-card h3 { max-width: 9ch; margin: 2.8rem 0 .9rem; font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -.055em; line-height: .97; }
.audience-card p { max-width: 31rem; color: var(--muted); }
.audience-card .text-link { margin-top: 1.3rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}

.service-card:hover { border-color: var(--line-strong); background: rgba(217, 184, 109, .07); transform: translateY(-4px); }
.service-number { color: var(--gold); font-size: .73rem; font-weight: 850; letter-spacing: .12em; }
.service-card h3 { margin: auto 0 .7rem; font-family: var(--font-display); font-size: 1.65rem; letter-spacing: -.035em; line-height: 1.02; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.service-card .text-link { margin-top: 1.2rem; }

.idea-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; background: var(--line); }
.idea-card { min-height: 15.5rem; padding: 1.45rem; background: var(--panel); }
.idea-card b { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border: 1px solid var(--line-strong); border-radius: .75rem; color: var(--gold-light); font-size: .9rem; }
.idea-card h3 { margin: 2.3rem 0 .55rem; font-size: 1.08rem; }
.idea-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.process-card { position: relative; min-height: 14rem; padding: 1.3rem 1.1rem; border-top: 1px solid var(--line-strong); }
.process-card::before { display: block; margin-bottom: 2.25rem; color: var(--gold-light); content: "0" counter(step); counter-increment: step; font-size: .75rem; font-weight: 850; letter-spacing: .13em; }
.process-card h3 { margin: 0 0 .6rem; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.02em; }
.process-card p { margin: 0; color: var(--muted); font-size: .86rem; }

.insight-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(20rem, .75fr); gap: 2rem; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(217, 184, 109, .16), rgba(255,255,255,.02)); }
.insight-band h3 { max-width: 18ch; margin: .8rem 0 0; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.7rem); letter-spacing: -.045em; line-height: 1.03; }
.insight-band p { margin: 0; color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; align-content: flex-start; gap: .55rem; }
.tag { display: inline-flex; align-items: center; padding: .44rem .7rem; border: 1px solid var(--line); border-radius: 99px; color: #d8d4cd; background: rgba(0,0,0,.18); font-size: .76rem; font-weight: 700; }

.page-intro { max-width: 48rem; padding-top: .5rem; }
.page-intro p { color: var(--muted); font-size: 1.05rem; }

.timeline { display: grid; gap: 0; border-left: 1px solid var(--line-strong); }
.timeline-item { position: relative; padding: 0 0 2.25rem 2rem; }
.timeline-item::before { position: absolute; top: .12rem; left: -.34rem; width: .64rem; height: .64rem; border-radius: 50%; content: ""; background: var(--gold-light); box-shadow: 0 0 0 .3rem var(--bg); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item span { color: var(--gold); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.timeline-item h3 { margin: .38rem 0 .55rem; font-family: var(--font-display); font-size: 1.55rem; letter-spacing: -.03em; }
.timeline-item p { max-width: 35rem; margin: 0; color: var(--muted); }

.form-card { padding: clamp(1.35rem, 3.5vw, 2.6rem); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--panel); box-shadow: var(--shadow); }
.form-card h2, .form-card h3 { margin: 0; font-family: var(--font-display); letter-spacing: -.04em; line-height: 1; }
.form-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.form-card h3 { font-size: 1.7rem; }
.form-card > p { margin: .8rem 0 1.5rem; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .95rem; }
.field { display: grid; gap: .42rem; }
.field--full { grid-column: 1 / -1; }
.field label, fieldset legend { color: #dfddd8; font-size: .81rem; font-weight: 720; }
.field label em { color: var(--gold); font-style: normal; }
input, select, textarea { width: 100%; min-height: 3.1rem; padding: .72rem .85rem; border: 1px solid var(--line); border-radius: .75rem; color: var(--text); background: #0b0b0b; transition: border-color .2s ease, box-shadow .2s ease; }
textarea { min-height: 8rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: #77736d; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); outline: 0; box-shadow: 0 0 0 3px rgba(217, 184, 109, .13); }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 1rem) 1.28rem, calc(100% - .7rem) 1.28rem; background-size: .3rem .3rem, .3rem .3rem; background-repeat: no-repeat; }
fieldset { grid-column: 1 / -1; margin: 0; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .6rem; margin-top: .6rem; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; min-height: 3.3rem; padding: .77rem .65rem; border: 1px solid var(--line); border-radius: .75rem; color: var(--muted); background: #0c0c0c; font-size: .78rem; font-weight: 720; text-align: center; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.choice input:checked + span { border-color: var(--gold); color: #111; background: var(--gold-light); }
.form-check { display: flex; align-items: flex-start; gap: .65rem; grid-column: 1 / -1; color: var(--muted); font-size: .78rem; }
.form-check input { flex: 0 0 auto; width: 1.1rem; min-height: 1.1rem; margin: .1rem 0 0; accent-color: var(--gold); }
.form-status { min-height: 1.25rem; margin: .8rem 0 0; color: var(--success); font-size: .8rem; }
.form-status.is-error { color: var(--danger); }

.planner-layout { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(19rem, .8fr); gap: 1rem; align-items: start; }
.plan-preview { position: sticky; top: 7rem; padding: 1.45rem; border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: linear-gradient(160deg, rgba(217, 184, 109, .15), rgba(255,255,255,.02)); }
.plan-preview h3 { margin: .4rem 0 1.4rem; font-family: var(--font-display); font-size: 1.8rem; letter-spacing: -.04em; }
.plan-item { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-top: 1px solid var(--line); }
.plan-item span { color: var(--muted); font-size: .78rem; }
.plan-item b { max-width: 12rem; color: var(--gold-light); font-size: .78rem; text-align: right; }
.plan-note { margin: 1rem 0 0; color: var(--dim); font-size: .75rem; }

.checklist { display: grid; gap: .8rem; padding: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 1.4rem 1fr; gap: .75rem; color: var(--muted); }
.checklist li::before { display: grid; width: 1.35rem; height: 1.35rem; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-light); content: "✓"; font-size: .75rem; font-weight: 900; }

.portal-tabs { display: inline-flex; padding: .3rem; border: 1px solid var(--line); border-radius: 99px; background: #0c0c0c; }
.portal-tab { min-height: 2.55rem; padding: .55rem .95rem; border: 0; border-radius: 99px; color: var(--muted); background: transparent; font-size: .82rem; font-weight: 800; }
.portal-tab[aria-selected="true"] { color: #090909; background: var(--gold-light); }
.portal-panel[hidden] { display: none; }
.portal-panel { margin-top: 1.5rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(21rem, 1.15fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.contact-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.02); }
.contact-card + .contact-card { margin-top: .8rem; }
.contact-card small { display: block; margin-bottom: .55rem; color: var(--gold); font-size: .71rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card a { color: var(--text); font-weight: 700; }
.contact-card a:hover { color: var(--gold-light); }
.socials { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.social-link { display: inline-grid; width: 2.45rem; height: 2.45rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text); font-size: .75rem; font-weight: 850; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.social-link:hover { border-color: var(--gold); color: #111; background: var(--gold-light); }

.legal-list { display: grid; gap: .75rem; }
.legal-link { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; padding: 1.1rem 1.15rem; border: 1px solid var(--line); border-radius: .9rem; color: var(--muted); background: rgba(255,255,255,.018); transition: border-color .2s ease, background .2s ease; }
.legal-link:hover { border-color: var(--line-strong); color: var(--text); background: rgba(217,184,109,.08); }
.legal-link b { display: block; color: var(--text); }
.legal-link small { display: block; margin-top: .18rem; color: var(--dim); }
.legal-link span { color: var(--gold-light); font-size: 1.2rem; }

.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 2rem; padding: clamp(1.4rem, 4vw, 3rem); border: 1px solid var(--line-strong); border-radius: var(--radius-xl); background: linear-gradient(110deg, rgba(217, 184, 109, .22), rgba(255,255,255,.025) 56%, rgba(255,255,255,.01)); }
.cta-panel h2 { max-width: 15ch; margin: 0; font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3.35rem); letter-spacing: -.05em; line-height: 1; }
.cta-panel p { max-width: 40rem; margin: .7rem 0 0; color: var(--muted); }

.site-footer { margin-top: clamp(3.5rem, 7vw, 7rem); border-top: 1px solid var(--line); background: #050505; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(9rem, .55fr)); gap: 2.5rem; padding: 3.8rem 0 3rem; }
.footer-brand { max-width: 23rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { margin: 0; color: var(--muted); font-size: .88rem; }
.footer-col h2 { margin: 0 0 .8rem; color: var(--gold); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; padding: .28rem 0; color: var(--muted); font-size: .84rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); color: var(--dim); font-size: .75rem; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .85rem; }
.footer-bottom a:hover { color: var(--text); }

.modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0,0,0,.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-dialog { width: min(100%, 42rem); max-height: min(40rem, calc(100vh - 2.5rem)); padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #111; box-shadow: var(--shadow); overflow: auto; transform: translateY(1rem); transition: transform .2s ease; }
.modal.is-open .modal-dialog { transform: translateY(0); }
.modal-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.modal-head h2 { margin: 0; font-family: var(--font-display); font-size: 2rem; letter-spacing: -.04em; }
.search-box { display: flex; align-items: center; gap: .55rem; padding: .25rem .75rem; border: 1px solid var(--line); border-radius: .75rem; background: #090909; }
.search-box input { min-height: 2.8rem; padding: .45rem 0; border: 0; background: transparent; }
.search-box input:focus { box-shadow: none; }
.command-links { display: grid; gap: .45rem; margin-top: 1rem; }
.command-link { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .9rem 1rem; border: 1px solid transparent; border-radius: .7rem; color: var(--muted); }
.command-link b { color: var(--text); }
.command-link small { align-self: center; color: var(--gold); }
.command-link:hover { border-color: var(--line-strong); background: rgba(217,184,109,.08); }
.command-link[hidden] { display: none; }

.toast { position: fixed; z-index: 90; right: 1rem; bottom: 1rem; max-width: min(24rem, calc(100vw - 2rem)); padding: .82rem 1rem; border: 1px solid var(--line-strong); border-radius: .8rem; color: var(--text); background: #16130d; box-shadow: var(--shadow); font-size: .84rem; opacity: 0; pointer-events: none; transform: translateY(1rem); transition: opacity .2s ease, transform .2s ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

.cookie-banner { position: fixed; z-index: 60; right: 1rem; bottom: 1rem; width: min(29rem, calc(100vw - 2rem)); padding: 1.15rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(17,17,17,.97); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0; font-size: 1rem; }
.cookie-banner p { margin: .5rem 0 1rem; color: var(--muted); font-size: .78rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

[data-reveal] { opacity: 0; transform: translateY(1rem); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .desktop-nav.is-open { position: fixed; top: 5.55rem; right: 0; left: 0; display: grid; align-content: start; gap: .25rem; min-height: calc(100vh - 5.55rem); padding: 1.2rem max(1.5rem, calc((100vw - min(1180px, calc(100vw - 3rem))) / 2)); border-top: 1px solid var(--line); background: #090909; overflow: auto; }
  .desktop-nav.is-open .nav-link,
  .desktop-nav.is-open .nav-dropdown > summary { width: 100%; min-height: 3.45rem; padding: .85rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .desktop-nav.is-open .nav-link--o-plus { display: flex; color: var(--gold-light); border-color: rgba(246, 214, 139, .42); }
  .desktop-nav.is-open .nav-dropdown { width: 100%; }
  .desktop-nav.is-open .dropdown-panel { position: static; width: 100%; margin: .2rem 0 .5rem; border-radius: .75rem; box-shadow: none; }
  .header-actions .button { display: none; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; }
  .signal-board { max-width: 42rem; width: 100%; margin-inline: auto; }
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .planner-layout { grid-template-columns: 1fr; }
  .plan-preview { position: static; }
  .footer-top { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --wrap: min(100% - 2rem, 1180px); }
  .brand-copy { display: none; }
  .site-header { height: 4.7rem; }
  .desktop-nav.is-open { top: 4.7rem; min-height: calc(100vh - 4.7rem); }
  .brand img { width: 3rem; height: 3rem; }
  .header-actions { gap: .4rem; }
  .icon-button { width: 2.55rem; height: 2.55rem; }
  .page-hero { padding-top: 3.75rem; }
  .home-hero { min-height: min(48rem, calc(100svh - 4.7rem)); padding-top: 1rem; }
  .hero-signal-board { background-size: 3.7rem 3.7rem, 3.7rem 3.7rem, auto, auto; }
  .hero-signal-board::after { inset: .8rem; border-radius: 1rem; }
  .hero-signal-board .signal-head { top: 1.4rem; right: 1.4rem; width: min(18rem, 75vw); }
  .home-hero--signal .signal-line { top: 31%; left: 11%; right: -15%; }
  .home-hero--signal .signal-orbit { top: 16%; right: -2.5rem; width: 13rem; height: 13rem; }
  .hero-signal-board .signal-stack { top: 26%; right: -4rem; width: min(23rem, 78vw); opacity: .52; transform: rotate(-3deg); }
  .hero-signal-board .signal-card { min-height: 4rem; padding: .7rem .8rem; }
  .hero-signal-board .signal-card small { font-size: .65rem; }
  .home-hero-scrim { background: linear-gradient(90deg, rgba(2,2,2,.94) 0%, rgba(2,2,2,.78) 49%, rgba(2,2,2,.32)), linear-gradient(0deg, rgba(2,2,2,.9), transparent 52%); }
  .home-hero-content { justify-content: flex-start; padding: clamp(11.5rem, 51vw, 15rem) 0 0; }
  .home-hero-brand { top: 1rem; }
  .home-hero-logo { width: clamp(11rem, 48vw, 14.5rem); margin-bottom: .7rem; }
  .home-hero-motto { font-size: .78rem; letter-spacing: .15em; }
  .home-hero-message { margin-top: 0; }
  .home-hero-rail { grid-template-columns: 1fr; margin-top: 1.2rem; }
  .home-hero-path { min-height: 4.65rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .home-hero-path:last-child { border-bottom: 0; }
  .home-hero--brand { min-height: max(34rem, calc(100svh - 4.7rem)); padding: 0; }
  .home-hero--brand::after { inset: .75rem; }
  .home-hero--brand .home-hero-media { object-position: 64% center; }
  .home-hero--brand .home-hero-scrim { background: linear-gradient(90deg, rgba(2,2,2,.96) 0%, rgba(2,2,2,.82) 50%, rgba(2,2,2,.28) 100%), linear-gradient(0deg, rgba(2,2,2,.72), transparent 55%); }
  .home-hero--brand .home-hero-brand { min-height: inherit; }
  .home-hero-brand-lockup { width: min(72%, 22rem); }
  .home-hero--brand .home-hero-logo { width: min(100%, 20rem); }
  .home-hero--brand .home-hero-motto { margin-top: 1rem; font-size: .78rem; letter-spacing: .16em; }
  .oplus-hero { padding: 4.5rem 0; }
  .oplus-hero::before { top: 9%; right: -7rem; width: 25rem; height: 25rem; }
  .oplus-hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .oplus-copy h1 { font-size: clamp(3.8rem, 17vw, 6rem); }
  .oplus-mark { width: min(25rem, 100%); justify-self: start; }
  .oplus-grid { grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
  .oplus-card, .oplus-card:first-child { min-height: auto; border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .oplus-card:last-child { border-bottom: 0; }
  .oplus-card h3 { margin-top: 1.35rem; }
  .display { font-size: clamp(3rem, 15vw, 5rem); }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 1px solid var(--line); }
  .metric { min-height: 7rem; }
  .audience-grid, .card-grid, .card-grid--two, .split--balanced { grid-template-columns: 1fr; }
  .audience-card { min-height: 20rem; }
  .idea-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 0; }
  .process-card { min-height: auto; padding: 1.2rem 0 1.8rem; border-top: 1px solid var(--line); }
  .process-card::before { margin-bottom: .8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .choice-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 460px) {
  .home-hero--brand { min-height: max(31rem, calc(100svh - 4.7rem)); }
  .home-hero-brand-lockup { width: min(78%, 18rem); }
  .home-hero--brand .home-hero-motto { font-size: .72rem; letter-spacing: .13em; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(3) { border-right: 1px solid var(--line); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .hero-actions .button { width: 100%; }
  .portal-tabs { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
  .portal-tab { padding-inline: .45rem; }
}

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