:root {
  --bg: #080909;
  --bg-soft: #0d0f0f;
  --panel: #111313;
  --panel-2: #161818;
  --text: #f5f2e9;
  --muted: #a7a59e;
  --muted-2: #747671;
  --gold: #d8a842;
  --gold-light: #f4cf79;
  --gold-dark: #8d641e;
  --line: rgba(216, 168, 66, 0.28);
  --line-soft: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --radius-sm: 11px;
  --container: 1240px;
  --logo-url: url("assets/logo-mark.png");
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.noise {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 14px rgba(244, 207, 121, 0.45);
}

.cursor-aura {
  position: fixed;
  z-index: 89;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  transform: translate3d(calc(var(--cursor-x, -400px) - 50%), calc(var(--cursor-y, -400px) - 50%), 0);
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.085), rgba(216, 168, 66, 0.025) 36%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: transform;
}

.cursor-aura.is-visible {
  opacity: 1;
}

.motion-rail {
  position: fixed;
  z-index: 88;
  top: 50%;
  right: 16px;
  display: grid;
  transform: translateY(-50%);
  gap: 8px;
  pointer-events: none;
}

.motion-rail span {
  width: 5px;
  height: 5px;
  transform: rotate(45deg) scale(0.75);
  border: 1px solid rgba(216, 168, 66, 0.35);
  background: transparent;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.motion-rail span.is-active {
  transform: rotate(45deg) scale(1.25);
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(244, 207, 121, 0.7);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 8, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  display: block;
  width: 38px;
  height: 38px;
  background: #fff;
  -webkit-mask: var(--logo-url) center / contain no-repeat;
  mask: var(--logo-url) center / contain no-repeat;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo-mark--gold {
  background: linear-gradient(135deg, #fff0bd 0%, var(--gold-light) 36%, #a87020 100%);
  filter: drop-shadow(0 0 12px rgba(216, 168, 66, 0.2));
}

.brand:hover .logo-mark {
  transform: rotate(-4deg) scale(1.05);
  filter: drop-shadow(0 0 16px rgba(244, 207, 121, 0.38));
}

.brand-name {
  font-size: 11px;
  font-weight: 450;
  line-height: 1.05;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

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

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
}

.button::before {
  position: absolute;
  top: -90%;
  left: -40%;
  width: 28%;
  height: 280%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transition: left 0.55s ease;
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translate3d(var(--mag-x), var(--mag-y), 0) translateY(-2px);
}

.button:active {
  transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(0.985);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--gold {
  border-color: #e3b757;
  background: linear-gradient(135deg, #f6d27e, #c68d27 65%, #9e6d1d);
  box-shadow: 0 14px 36px rgba(202, 147, 39, 0.2), inset 0 1px rgba(255, 255, 255, 0.45);
  color: #161107;
}

.button--gold:hover {
  box-shadow: 0 18px 42px rgba(202, 147, 39, 0.34), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button--outline {
  border-color: rgba(216, 168, 66, 0.68);
  background: rgba(8, 9, 9, 0.32);
  color: var(--gold-light);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--gold);
  background: rgba(216, 168, 66, 0.08);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 8, 8, 0.3);
  color: #fff;
  backdrop-filter: blur(6px);
}

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

.button--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(960px, 100svh);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 126px 0 42px;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-background,
.renovation-scene,
.hero-scrim,
.hero-grid-lines,
.renovation-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  --hero-bg-x: 0px;
  --hero-bg-y: 0px;
  z-index: 0;
  overflow: hidden;
  background: #0b0d0d;
}

.hero-background img {
  width: 100%;
  height: 100%;
  transform: scale(1.075) translate3d(var(--hero-bg-x), var(--hero-bg-y), 0);
  object-fit: cover;
  object-position: center;
  filter: brightness(0.84) saturate(1.08) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.hero-background span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 43%, rgba(244, 207, 121, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(4, 5, 5, 0.12), rgba(4, 5, 5, 0.42));
  mix-blend-mode: screen;
}

.renovation-scene {
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-scroll: 0px;
  --reveal-right: 100%;
  z-index: 0;
  overflow: hidden;
  background: #141515;
  isolation: isolate;
  perspective: 1300px;
}

.renovation-layer {
  position: absolute;
  inset: -4%;
  overflow: hidden;
  will-change: clip-path;
}

.renovation-layer img {
  width: 100%;
  height: 100%;
  transform: scale(1.06) translate3d(var(--scene-x), calc(var(--scene-y) + var(--scene-scroll)), 0);
  object-fit: cover;
  object-position: center;
  will-change: transform, filter;
}

.renovation-layer--before img {
  filter: brightness(0.48) saturate(0.32) contrast(1.24) sepia(0.05);
}

.renovation-layer--after {
  clip-path: inset(0 var(--reveal-right) 0 0);
  filter: saturate(1.12);
}

.renovation-layer--after img {
  transform: scale(var(--after-scale, 1.13)) translate3d(var(--scene-x), calc(var(--scene-y) + var(--scene-scroll)), 0);
  filter: brightness(var(--after-brightness, 1.2)) saturate(1.22) contrast(1.08);
}

.renovation-fx {
  --sweep-left: -8%;
  --sweep-opacity: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.renovation-tiles {
  position: absolute;
  z-index: 2;
  inset: -1px;
  display: grid;
  grid-template-columns: repeat(var(--tile-cols, 14), 1fr);
  grid-template-rows: repeat(var(--tile-rows, 8), 1fr);
  pointer-events: none;
  transform-style: preserve-3d;
}

.renovation-tile {
  position: relative;
  transform: perspective(900px) translate3d(80px, 0, 180px) rotateY(-104deg) rotateX(8deg) scale(0.76);
  transform-origin: left center;
  opacity: 0;
  outline: 1px solid rgba(244, 207, 121, 0.3);
  background:
    linear-gradient(132deg, rgba(255, 244, 209, 0.36), transparent 24%),
    linear-gradient(145deg, rgba(60, 62, 59, 0.96), rgba(18, 20, 20, 0.98) 47%, rgba(63, 55, 39, 0.94));
  backface-visibility: hidden;
  border-radius: 2px;
  box-shadow:
    -28px 14px 45px rgba(0, 0, 0, 0.7),
    0 0 32px rgba(216, 168, 66, var(--tile-energy, 0)),
    inset 0 0 0 1px rgba(255, 236, 185, 0.28),
    inset 20px 0 40px rgba(255, 218, 130, 0.045);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.renovation-tile::before {
  position: absolute;
  inset: 0;
  transform: translateZ(5px);
  opacity: calc(0.16 + var(--grout-glow, 0));
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 240, 196, 0.42) 19%, transparent 21%),
    linear-gradient(18deg, transparent 60%, rgba(216, 168, 66, 0.28) 61%, transparent 63%);
  content: "";
  mix-blend-mode: screen;
}

.renovation-tile::after {
  position: absolute;
  top: 0;
  right: -9px;
  width: 9px;
  height: 100%;
  transform: rotateY(90deg);
  transform-origin: left;
  background: linear-gradient(90deg, #9d742b, #2b251a);
  box-shadow: inset 1px 0 rgba(255, 230, 168, 0.42);
  content: "";
}

.renovation-sweep {
  position: absolute;
  z-index: 4;
  top: -18%;
  bottom: -18%;
  left: calc(var(--sweep-left, -8%) - 70px);
  width: 140px;
  transform: rotate(3deg) translateZ(90px);
  opacity: var(--sweep-opacity, 0);
  background: radial-gradient(ellipse at center, rgba(255, 225, 151, 0.23), rgba(216, 168, 66, 0.06) 32%, transparent 70%);
  filter: drop-shadow(0 0 32px rgba(244, 207, 121, 0.46));
  pointer-events: none;
  transition: opacity 0.18s ease;
  will-change: left, opacity, transform;
}

.renovation-sweep::before,
.renovation-sweep::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  content: "";
}

.renovation-sweep::before {
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, #f5c75c 18%, #fff9dd 48%, #f0b835 82%, transparent);
  box-shadow: 0 0 12px #fff0b0, 0 0 32px rgba(244, 207, 121, 0.95), 0 0 80px rgba(216, 168, 66, 0.62);
}

.renovation-sweep::after {
  width: 22px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 241, 190, 0.48), transparent);
  filter: blur(5px);
}

.renovation-sweep > i,
.renovation-sweep > b {
  position: absolute;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(255, 236, 184, 0.85);
  background: #c58d26;
  box-shadow: 0 0 20px rgba(244, 207, 121, 0.9);
}

.renovation-sweep > i {
  top: 37%;
  width: 12px;
  height: 12px;
  animation: renovation-diamond 1.5s ease-in-out infinite;
}

.renovation-sweep > b {
  top: 64%;
  width: 7px;
  height: 7px;
  animation: renovation-diamond 1.5s ease-in-out -0.75s infinite;
}

@keyframes renovation-diamond {
  50% { transform: translate(-50%, -50%) rotate(225deg) scale(1.45); filter: brightness(1.6); }
}

.renovation-particles {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.renovation-particles span {
  position: absolute;
  top: var(--particle-y);
  left: var(--sweep-left, -8%);
  width: var(--particle-size, 4px);
  height: var(--particle-size, 4px);
  transform: translate3d(var(--particle-x, 0), 0, 120px) rotate(45deg);
  opacity: var(--sweep-opacity, 0);
  border-radius: 1px;
  background: var(--particle-color, #f4cf79);
  box-shadow: 0 0 12px rgba(244, 207, 121, 0.95);
  animation: renovation-spark var(--particle-duration, 1.1s) ease-in-out var(--particle-delay, 0s) infinite alternate;
}

@keyframes renovation-spark {
  from { translate: -28px -10px; rotate: -25deg; scale: 0.45; }
  to { translate: 34px 18px; rotate: 90deg; scale: 1.2; }
}

.renovation-fx.is-complete .renovation-tiles,
.renovation-fx.is-complete .renovation-particles,
.renovation-fx.is-complete .renovation-sweep {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.renovation-meter {
  position: absolute;
  z-index: 4;
  top: 96px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(244, 207, 121, 0.42);
  border-radius: 999px;
  padding: 8px 9px 8px 15px;
  background: rgba(8, 9, 9, 0.76);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.06), 0 0 28px rgba(216, 168, 66, 0.08);
  color: #d1cec4;
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.renovation-meter > i {
  position: relative;
  display: block;
  width: 92px;
  height: 3px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
}

.renovation-meter > i > b {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--meter-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 10px var(--gold), 0 0 22px rgba(244, 207, 121, 0.56);
}

.renovation-meter > strong {
  min-width: 31px;
  color: var(--gold-light);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.renovation-meter button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 50%;
  background: rgba(216, 168, 66, 0.08);
  color: var(--gold-light);
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease;
}

.renovation-meter button:hover {
  transform: rotate(-180deg);
  background: rgba(216, 168, 66, 0.16);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.97) 0%, rgba(5, 6, 6, 0.84) 35%, rgba(5, 6, 6, 0.42) 52%, rgba(5, 6, 6, 0.11) 69%, rgba(5, 6, 6, 0.27) 100%),
    linear-gradient(180deg, rgba(4, 5, 5, 0.54) 0%, transparent 31%, rgba(4, 5, 5, 0.58) 100%);
}

.hero-grid-lines {
  z-index: 1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(216, 168, 66, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 168, 66, 0.18) 1px, transparent 1px);
  background-position: center;
  background-size: 120px 120px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 52%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 52%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  flex: none;
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
}

.hero-copy {
  max-width: 730px;
}

.hero-showcase {
  --stage-rx: -4deg;
  --stage-ry: -7deg;
  --stage-light-x: 68%;
  --stage-light-y: 24%;
  position: relative;
  min-width: 0;
  height: 580px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.material-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.16), rgba(216, 168, 66, 0.035) 38%, transparent 69%);
  filter: blur(7px);
  animation: material-breathe 4.8s ease-in-out infinite;
}

@keyframes material-breathe {
  50% { transform: translate(-50%, -50%) scale(1.09); opacity: 0.7; }
}

.material-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(216, 168, 66, 0.23);
  border-radius: 50%;
  pointer-events: none;
}

.material-ring::before {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px var(--gold);
  content: "";
}

.material-ring--outer {
  width: 480px;
  height: 480px;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(7deg);
  border-style: dashed;
  animation: material-ring-spin 26s linear infinite;
}

.material-ring--inner {
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-13deg);
  opacity: 0.55;
  animation: material-ring-spin-reverse 18s linear infinite;
}

@keyframes material-ring-spin {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(367deg); }
}

@keyframes material-ring-spin-reverse {
  to { transform: translate(-50%, -50%) rotateX(72deg) rotateZ(-373deg); }
}

.material-float {
  position: absolute;
  inset: 0;
  animation: material-float 5.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes material-float {
  50% { transform: translateY(-13px); }
}

.material-object {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 440px;
  transform: translate(-50%, -50%) rotateX(var(--stage-rx)) rotateY(var(--stage-ry));
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.18, 0.8, 0.2, 1);
  will-change: transform;
}

.material-slab {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: visible;
  width: 260px;
  height: 350px;
  border: 1px solid rgba(244, 207, 121, 0.26);
  border-radius: 13px;
  background: #1a1c1b;
  box-shadow: 0 32px 65px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.07);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.material-slab::before,
.material-slab::after {
  position: absolute;
  background: linear-gradient(135deg, #b98529, #342510);
  content: "";
}

.material-slab::before {
  top: 7px;
  left: 100%;
  width: 11px;
  height: calc(100% - 7px);
  transform: rotateY(90deg);
  transform-origin: left;
  border-radius: 0 3px 3px 0;
}

.material-slab::after {
  top: 100%;
  left: 7px;
  width: calc(100% - 7px);
  height: 11px;
  transform: rotateX(-90deg);
  transform-origin: top;
  border-radius: 0 0 3px 3px;
}

.material-slab > i {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.material-slab--concrete {
  transform: translate(-50%, -50%) translate3d(-118px, -26px, -150px) rotateY(-31deg) rotateZ(-5deg);
  background:
    radial-gradient(circle at 28% 19%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 73%, rgba(0, 0, 0, 0.22) 0 2px, transparent 3px),
    linear-gradient(135deg, #5c5d58, #262927 58%, #444641);
  background-size: 31px 31px, 43px 43px, auto;
}

.material-slab--travertine {
  transform: translate(-50%, -50%) translate3d(122px, 35px, -128px) rotateY(31deg) rotateZ(5deg);
  background:
    repeating-linear-gradient(7deg, transparent 0 17px, rgba(106, 72, 34, 0.22) 18px, transparent 20px),
    linear-gradient(145deg, #cfb078, #80613a 48%, #d0ad6c);
}

.material-slab--marble {
  transform: translate(-50%, -50%) translate3d(84px, -54px, -42px) rotateY(19deg) rotateZ(3deg);
  background:
    linear-gradient(116deg, transparent 18%, rgba(222, 207, 178, 0.34) 19%, transparent 21%),
    linear-gradient(42deg, transparent 56%, rgba(216, 168, 66, 0.28) 57%, transparent 59%),
    linear-gradient(145deg, #252726, #070909 62%, #2b2923);
}

.material-slab--graphite {
  transform: translate(-50%, -50%) translate3d(-76px, 65px, -52px) rotateY(-18deg) rotateZ(-3deg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, #242726, #0d0f0f);
  background-size: 38px 38px, 38px 38px, auto;
}

.material-slab--main {
  z-index: 5;
  display: flex;
  width: 278px;
  height: 390px;
  transform: translate(-50%, -50%) translateZ(92px) rotateY(-2deg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at var(--stage-light-x) var(--stage-light-y), rgba(244, 207, 121, 0.2), transparent 27%),
    linear-gradient(145deg, #232625, #090b0b 67%, #242019);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.62), 0 0 55px rgba(216, 168, 66, 0.16), inset 0 1px rgba(255, 255, 255, 0.1);
}

.material-slab--main::before,
.material-slab--main::after {
  background: linear-gradient(135deg, #f2c768, #6d4812 64%, #2c1d0b);
}

.slab-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(216, 168, 66, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 168, 66, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(145deg, #000, transparent 76%);
  mask-image: linear-gradient(145deg, #000, transparent 76%);
}

.slab-brand {
  position: relative;
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: 30px;
  transform: translateZ(28px);
  place-items: center;
  border: 1px solid rgba(244, 207, 121, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.16), transparent 70%);
  box-shadow: 0 0 0 14px rgba(216, 168, 66, 0.035), 0 0 36px rgba(216, 168, 66, 0.18);
}

.slab-brand::before {
  position: absolute;
  inset: -15px;
  border: 1px dashed rgba(216, 168, 66, 0.24);
  border-radius: 50%;
  content: "";
  animation: material-brand-spin 14s linear infinite;
}

@keyframes material-brand-spin { to { rotate: 360deg; } }

.slab-brand .logo-mark {
  width: 52px;
  height: 52px;
}

.material-slab--main small,
.material-slab--main b {
  position: relative;
  z-index: 2;
  transform: translateZ(22px);
  text-align: center;
}

.material-slab--main small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.material-slab--main b {
  max-width: 190px;
  margin-top: 10px;
  color: #efede5;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
}

.material-chip {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(8, 9, 9, 0.68);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  color: #aaa9a2;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: material-chip-float 4s ease-in-out infinite;
}

.material-chip--one { top: 16%; left: 1%; }
.material-chip--two { top: 57%; right: -2%; animation-delay: -1.3s; }
.material-chip--three { bottom: 9%; left: 12%; animation-delay: -2.6s; }

@keyframes material-chip-float {
  50% { transform: translateY(-7px); border-color: rgba(244, 207, 121, 0.5); color: var(--gold-light); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(43px, 4.55vw, 68px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero h1 em,
.section-heading h2 em,
.market-copy h2 em {
  display: inline;
  background: linear-gradient(100deg, #fff0bd, #d69d33 70%, #f2c96b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero h1 em {
  display: block;
  margin: 8px 0;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.hero-proof p strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.avatars {
  display: flex;
  padding-left: 10px;
}

.avatars span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-left: -10px;
  border: 2px solid #181818;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a3529, #141514);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
}

.lead-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(26, 28, 28, 0.95), rgba(10, 11, 11, 0.88));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.lead-card::after {
  position: absolute;
  top: -140px;
  right: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(216, 168, 66, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(216, 168, 66, 0.12);
  content: "";
  pointer-events: none;
}

.card-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lead-card h2 {
  max-width: 300px;
  margin: 10px 0 7px;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 540;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lead-card > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.lead-form,
.inline-form {
  display: grid;
  gap: 12px;
}

.lead-form label,
.inline-form label {
  position: relative;
  display: grid;
  gap: 6px;
}

.lead-form label > span,
.inline-form label > span {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.lead-form input,
.inline-form input {
  width: 100%;
  height: 49px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 7px;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input::placeholder,
.inline-form input::placeholder {
  color: #757773;
}

.lead-form input:focus,
.inline-form input:focus {
  border-color: rgba(216, 168, 66, 0.8);
  background: rgba(216, 168, 66, 0.055);
  box-shadow: 0 0 0 3px rgba(216, 168, 66, 0.08);
}

.lead-form label.has-error input,
.inline-form label.has-error input {
  border-color: #cf705d;
}

.field-error {
  display: none;
  color: #e88b77;
  font-size: 11px;
}

.has-error .field-error {
  display: block;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: #6f716e;
  font-size: 10px;
  line-height: 1.35;
}

.privacy-note svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--gold);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  flex: none;
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.22);
  border-radius: 12px;
  background: rgba(7, 8, 8, 0.65);
  backdrop-filter: blur(12px);
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats article {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 18px;
  border-right: 1px solid rgba(216, 168, 66, 0.18);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats svg {
  width: 27px;
  height: 27px;
  flex: none;
  color: var(--gold);
}

.hero-stats p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero-stats strong {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 650;
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #0d0f0f;
}

.ticker::before,
.ticker::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 11vw;
  content: "";
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  padding: 16px 0;
  animation: ticker 28s linear infinite;
  color: #6f716d;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid var(--gold-dark);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-heading {
  position: relative;
  display: grid;
  align-items: end;
  gap: 28px;
  margin-bottom: 48px;
  grid-template-columns: 0.7fr 1.45fr 1fr;
}

.section-heading::after {
  position: absolute;
  right: 0;
  bottom: -21px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), rgba(216, 168, 66, 0.08) 68%, transparent);
  content: "";
  transition: transform 1.15s cubic-bezier(0.2, 0.75, 0.2, 1) 0.15s;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

.section-number {
  display: block;
  margin-bottom: 24px;
  color: rgba(216, 168, 66, 0.28);
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-heading .eyebrow {
  margin: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.model {
  background:
    radial-gradient(circle at 12% 34%, rgba(216, 168, 66, 0.07), transparent 24%),
    var(--bg);
}

.model-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.45fr 1fr 1fr;
}

.model-card {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  isolation: isolate;
}

.model-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px transparent;
  content: "";
  pointer-events: none;
  transition: box-shadow 0.35s ease;
}

.model-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(244, 207, 121, 0.35);
}

.model-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.07) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  object-fit: cover;
  will-change: transform;
}

.model-card--image:hover img {
  transform: scale(1.11) translate3d(0, var(--parallax-y, 0px), 0);
}

.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 9, 0.03), rgba(8, 9, 9, 0.94) 77%);
}

.model-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 28px;
}

.model-card-content > svg {
  width: 31px;
  height: 31px;
  margin-bottom: 24px;
  color: var(--gold);
}

.card-index {
  position: absolute;
  right: 25px;
  bottom: calc(100% - 56px);
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.model-card h3,
.program-card h3,
.craft-banner h3,
.launch-steps h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 540;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.model-card p,
.program-card p,
.craft-banner p,
.launch-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.model-card--pattern,
.model-card--graph {
  background:
    linear-gradient(180deg, transparent, rgba(7, 8, 8, 0.9)),
    linear-gradient(145deg, #1b1d1d, #0d0f0f);
}

.tile-samples {
  position: absolute;
  top: 42px;
  right: 20px;
  left: 20px;
  display: grid;
  height: 170px;
  transform: perspective(700px) rotateX(59deg) rotateZ(-18deg);
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}

.tile-samples span {
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 50%),
    #242727;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.3);
}

.tile-samples span:nth-child(2),
.tile-samples span:nth-child(6) {
  background-color: #716a5b;
}

.tile-samples span:nth-child(3),
.tile-samples span:nth-child(4) {
  background-color: #3c3430;
}

.growth-graph {
  position: absolute;
  top: 50px;
  right: 28px;
  left: 28px;
  display: flex;
  height: 160px;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
  border-bottom: 1px solid rgba(216, 168, 66, 0.34);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
}

.growth-graph span {
  width: 22px;
  height: var(--h);
  border: 1px solid rgba(216, 168, 66, 0.55);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(244, 207, 121, 0.6), rgba(216, 168, 66, 0.08));
  animation: graph-pulse 4s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.growth-graph span:nth-child(1) { --h: 27%; }
.growth-graph span:nth-child(2) { --h: 39%; animation-delay: -0.3s; }
.growth-graph span:nth-child(3) { --h: 52%; animation-delay: -0.6s; }
.growth-graph span:nth-child(4) { --h: 65%; animation-delay: -0.9s; }
.growth-graph span:nth-child(5) { --h: 78%; animation-delay: -1.2s; }
.growth-graph span:nth-child(6) { --h: 96%; animation-delay: -1.5s; }

@keyframes graph-pulse {
  from { transform: scaleY(0.88); opacity: 0.7; }
  to { transform: scaleY(1); opacity: 1; }
}

.finance {
  --finance-x: 72%;
  --finance-y: 24%;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 168, 66, 0.12), transparent 25%),
    radial-gradient(circle at 10% 78%, rgba(216, 168, 66, 0.055), transparent 24%),
    linear-gradient(155deg, #111414, #080909 68%);
  isolation: isolate;
}

.finance::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(216, 168, 66, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 168, 66, 0.12) 1px, transparent 1px);
  background-position: center;
  background-size: 72px 72px;
  content: "";
  -webkit-mask-image: radial-gradient(circle at 76% 44%, #000, transparent 65%);
  mask-image: radial-gradient(circle at 76% 44%, #000, transparent 65%);
}

.finance::after {
  position: absolute;
  z-index: -1;
  width: 620px;
  height: 620px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 207, 121, 0.105), rgba(216, 168, 66, 0.025) 36%, transparent 70%);
  content: "";
  left: var(--finance-x);
  pointer-events: none;
  top: var(--finance-y);
  transition: left 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), top 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.finance-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.finance-atmosphere span {
  position: absolute;
  width: 54px;
  height: 54px;
  transform: rotate(45deg);
  border: 1px solid rgba(216, 168, 66, 0.16);
  background: linear-gradient(145deg, rgba(244, 207, 121, 0.05), transparent);
  box-shadow: inset 0 0 24px rgba(216, 168, 66, 0.03);
  animation: finance-float 9s ease-in-out infinite alternate;
}

.finance-atmosphere span:nth-child(1) { top: 18%; left: 4%; width: 32px; height: 32px; animation-delay: -2s; }
.finance-atmosphere span:nth-child(2) { top: 68%; left: 9%; width: 72px; height: 72px; animation-delay: -6s; }
.finance-atmosphere span:nth-child(3) { top: 24%; right: 8%; width: 88px; height: 88px; animation-delay: -3.5s; }
.finance-atmosphere span:nth-child(4) { right: 2%; bottom: 10%; width: 42px; height: 42px; animation-delay: -7s; }
.finance-atmosphere span:nth-child(5) { top: 46%; left: 20%; width: 22px; height: 22px; animation-delay: -4s; }
.finance-atmosphere span:nth-child(6) { right: 23%; bottom: 3%; width: 30px; height: 30px; animation-delay: -1s; }

@keyframes finance-float {
  from { translate: 0 -8px; rotate: -4deg; opacity: 0.2; }
  to { translate: 14px 18px; rotate: 7deg; opacity: 0.72; }
}

.finance-watermark {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  color: rgba(244, 207, 121, 0.026);
  font-size: clamp(70px, 10vw, 155px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
  animation: finance-watermark 32s linear infinite;
  pointer-events: none;
}

.finance-watermark i {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: currentColor;
}

@keyframes finance-watermark {
  to { transform: translateX(-50%); }
}

.section-heading--light {
  position: relative;
  z-index: 1;
}

.finance-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  perspective: 1400px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.calculator,
.metric-card {
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 22px;
  background: rgba(13, 15, 15, 0.82);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 24px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.calculator {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 40px);
}

.calculator::before {
  position: absolute;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.11), transparent 68%);
  content: "";
  left: var(--card-x, 75%);
  pointer-events: none;
  top: var(--card-y, 20%);
  transition: left 0.5s ease, top 0.5s ease;
}

.calculator::after {
  position: absolute;
  top: 0;
  left: 9%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 18px rgba(244, 207, 121, 0.5);
  content: "";
  animation: finance-edge 5s ease-in-out infinite alternate;
}

@keyframes finance-edge {
  to { left: 58%; width: 24%; }
}

.calculator-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.calculator h3 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.signal {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777a75;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #80b868;
  box-shadow: 0 0 10px #80b868;
  animation: signal-pulse 1.8s ease-out infinite;
}

@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(128, 184, 104, 0), 0 0 10px #80b868; }
  45% { box-shadow: 0 0 0 7px rgba(128, 184, 104, 0.08), 0 0 14px #80b868; }
}

.finance-live {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: 0.82fr 1.18fr;
}

.team-mosaic,
.profit-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.team-mosaic {
  padding: 16px;
}

.profit-visual {
  --chart-progress: 33.333%;
  --point-x: 34.3%;
  --point-y: 58.8%;
  padding: 16px 16px 10px;
}

.live-panel-head {
  display: flex;
  min-height: 25px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.live-panel-head > span {
  color: #858781;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-panel-head > b {
  color: var(--gold-light);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.live-panel-head > b i {
  font-style: normal;
}

.master-grid {
  display: grid;
  gap: 6px;
  margin-top: 9px;
  grid-template-columns: repeat(4, 1fr);
  perspective: 700px;
}

.master-tile {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 51px;
  transform: translateY(6px) rotateX(52deg) scale(0.92);
  transform-origin: bottom;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  opacity: 0.32;
  background: rgba(255, 255, 255, 0.018);
  transition: transform 0.55s cubic-bezier(0.18, 0.85, 0.25, 1.18), opacity 0.4s ease, border-color 0.4s ease,
    background 0.4s ease, box-shadow 0.4s ease;
  transition-delay: calc(var(--tile-index) * 28ms);
}

.master-tile::after {
  position: absolute;
  inset: 0;
  transform: translateX(-140%) skewX(-24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
}

.master-tile > i {
  position: relative;
  width: 15px;
  height: 13px;
  border: 1px solid #5b5d58;
  border-radius: 8px 8px 5px 5px;
}

.master-tile > i::before {
  position: absolute;
  top: -8px;
  left: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.master-tile > b {
  position: absolute;
  right: 5px;
  bottom: 3px;
  color: #4f514d;
  font-size: 7px;
  font-weight: 600;
}

.master-tile.is-active {
  transform: translateY(0) rotateX(0) scale(1);
  border-color: rgba(216, 168, 66, 0.42);
  opacity: 1;
  color: var(--gold-light);
  background:
    linear-gradient(145deg, rgba(244, 207, 121, 0.16), rgba(216, 168, 66, 0.035)),
    #151716;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 8px 22px rgba(0, 0, 0, 0.24);
}

.master-tile.is-active::after {
  animation: tile-scan 1.1s ease calc(var(--tile-index) * 60ms) both;
}

.master-tile.is-active > i { border-color: currentColor; }
.master-tile.is-active > b { color: rgba(244, 207, 121, 0.62); }

@keyframes tile-scan {
  to { transform: translateX(140%) skewX(-24deg); }
}

.profit-chart {
  position: relative;
  height: 121px;
  margin-top: 3px;
}

.profit-chart svg {
  position: absolute;
  inset: 0 0 11px;
  width: 100%;
  height: calc(100% - 11px);
  overflow: visible;
}

.chart-gridline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.055);
  stroke-dasharray: 3 6;
  stroke-width: 1;
}

.chart-ghost {
  fill: none;
  stroke: rgba(244, 207, 121, 0.14);
  stroke-width: 1.5;
}

.chart-progress-shape {
  clip-path: inset(0 calc(100% - var(--chart-progress)) 0 0);
  transition: clip-path 0.65s cubic-bezier(0.2, 0.75, 0.2, 1), opacity 0.7s ease;
}

.chart-area {
  fill: url(#profit-area);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: url(#profit-line);
  stroke-dasharray: 8 5;
  stroke-width: 2.5;
  animation: chart-dash 8s linear infinite;
}

@keyframes chart-dash {
  to { stroke-dashoffset: -130; }
}

.chart-point {
  position: absolute;
  z-index: 2;
  left: var(--point-x);
  top: var(--point-y);
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border: 3px solid #101212;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(244, 207, 121, 0.72);
  transition: left 0.65s cubic-bezier(0.2, 0.75, 0.2, 1), top 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0.7s ease;
}

.chart-point i {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(244, 207, 121, 0.34);
  border-radius: 50%;
  animation: chart-point-pulse 1.8s ease-out infinite;
}

@keyframes chart-point-pulse {
  to { transform: scale(1.75); opacity: 0; }
}

.chart-caption {
  position: absolute;
  bottom: -1px;
  color: #555752;
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chart-caption--start { left: 0; }
.chart-caption--end { right: 0; }

.finance:not(.is-finance-visible) .master-tile,
.finance:not(.is-finance-visible) .chart-progress-shape,
.finance:not(.is-finance-visible) .chart-point {
  opacity: 0;
}

.finance:not(.is-finance-visible) .master-tile {
  transform: translateY(18px) rotateX(70deg) scale(0.88);
}

.range-field {
  position: relative;
  z-index: 2;
  display: block;
  margin: 27px 0 27px;
}

.range-field > span:first-child {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.range-field > span:first-child b {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.range-field input {
  width: 100%;
  height: 4px;
  appearance: none;
  outline: none;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold) var(--range-progress, 33.333%), rgba(255, 255, 255, 0.12) var(--range-progress, 33.333%));
}

.range-field input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 5px solid #171818;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(216, 168, 66, 0.45);
  cursor: grab;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.range-field input::-webkit-slider-thumb:hover,
.range-field input:active::-webkit-slider-thumb {
  transform: scale(1.18);
  box-shadow: 0 0 0 7px rgba(216, 168, 66, 0.1), 0 0 0 1px var(--gold), 0 0 24px rgba(216, 168, 66, 0.62);
}

.range-field input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 5px solid #171818;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(216, 168, 66, 0.45);
  cursor: grab;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #5e605c;
  font-size: 10px;
}

.range-labels i {
  font-style: normal;
}

.money-table {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.money-table > div {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  gap: 4px 18px;
  padding: 11px 18px 10px;
  background: #151717;
  grid-template-columns: minmax(0, 1fr) auto;
  transition: padding 0.3s ease, background 0.3s ease;
}

.money-table > div:hover {
  padding-inline: 23px 17px;
  background: #191b1b;
}

.money-table span {
  color: var(--muted);
  font-size: 13px;
}

.money-table strong {
  font-size: 17px;
  font-weight: 520;
  font-variant-numeric: tabular-nums;
}

.money-row > i {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 2px;
  grid-column: 1 / -1;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.045);
}

.money-row > i > b {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--money-width, 30%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(216, 168, 66, 0.32), var(--gold));
  box-shadow: 0 0 12px rgba(216, 168, 66, 0.28);
  transition: width 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.calculator.is-updating .money-row > i > b {
  filter: brightness(1.28);
}

.calculator.is-updating .signal {
  color: #a6c998;
}

.money-row > i > b::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 12px;
  height: 6px;
  transform: translateX(50%);
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 11px rgba(244, 207, 121, 0.7);
  content: "";
}

.money-table .money-total {
  background: linear-gradient(90deg, rgba(216, 168, 66, 0.15), rgba(216, 168, 66, 0.025));
}

.money-table .money-total span,
.money-table .money-total strong {
  color: var(--gold-light);
}

.money-table .money-total strong {
  font-size: clamp(21px, 2.5vw, 29px);
}

.calculator-note {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: #656763;
  font-size: 10px;
}

.finance-side {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(3, 1fr);
}

.metric-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  isolation: isolate;
  transition: border-color 0.35s ease, background 0.35s ease, opacity 0.8s ease, filter 0.8s ease, transform 0.22s ease;
}

.metric-card::before {
  position: absolute;
  z-index: -1;
  right: -36px;
  bottom: -55px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(216, 168, 66, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 21px rgba(216, 168, 66, 0.025), 0 0 0 44px rgba(216, 168, 66, 0.02);
  content: "";
}

.metric-card:hover {
  border-color: rgba(244, 207, 121, 0.62);
  background: rgba(20, 22, 21, 0.94);
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-top > span {
  color: var(--muted);
  font-size: 12px;
}

.metric-top > b {
  color: rgba(216, 168, 66, 0.42);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.metric-card strong {
  margin: 12px 0 2px;
  color: var(--gold-light);
  font-size: clamp(25px, 2.5vw, 35px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-card p {
  margin: 7px 0 0;
  color: #6d706b;
  font-size: 11px;
}

.metric-orbit {
  position: absolute;
  right: 21px;
  bottom: 19px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(216, 168, 66, 0.2);
  border-radius: 50%;
}

.metric-orbit::before,
.metric-orbit::after {
  position: absolute;
  border: 1px solid rgba(216, 168, 66, 0.15);
  border-radius: 50%;
  content: "";
}

.metric-orbit::before { inset: 7px; }
.metric-orbit::after { inset: 15px; }

.metric-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform-origin: -19px 50%;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold);
  animation: metric-orbit 4s linear infinite;
}

.metric-orbit i:nth-child(2) {
  transform-origin: -11px 50%;
  animation-direction: reverse;
  animation-duration: 2.7s;
}

.metric-orbit span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 9px;
}

@keyframes metric-orbit {
  from { rotate: 0; }
  to { rotate: 360deg; }
}

.royalty-wave {
  position: absolute;
  right: 24px;
  bottom: 23px;
  display: flex;
  height: 33px;
  align-items: flex-end;
  gap: 3px;
}

.royalty-wave i {
  width: 3px;
  height: var(--wave-height, 35%);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  transform-origin: bottom;
  animation: royalty-wave 1.2s ease-in-out infinite alternate;
}

.royalty-wave i:nth-child(2) { --wave-height: 70%; animation-delay: -0.8s; }
.royalty-wave i:nth-child(3) { --wave-height: 42%; animation-delay: -0.2s; }
.royalty-wave i:nth-child(4) { --wave-height: 100%; animation-delay: -0.6s; }
.royalty-wave i:nth-child(5) { --wave-height: 62%; animation-delay: -1s; }
.royalty-wave i:nth-child(6) { --wave-height: 84%; animation-delay: -0.35s; }
.royalty-wave i:nth-child(7) { --wave-height: 48%; animation-delay: -0.7s; }
.royalty-wave i:nth-child(8) { --wave-height: 68%; animation-delay: -0.1s; }

@keyframes royalty-wave {
  to { transform: scaleY(0.48); opacity: 0.44; }
}

.metric-card--gold {
  border-color: rgba(244, 207, 121, 0.42);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 241, 184, 0.35), transparent 24%),
    linear-gradient(145deg, #d6a538, #a16b16);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.24), 0 24px 70px rgba(109, 69, 10, 0.22);
}

.metric-card--gold::before {
  border-color: rgba(23, 17, 7, 0.16);
  box-shadow: 0 0 0 21px rgba(23, 17, 7, 0.035), 0 0 0 44px rgba(23, 17, 7, 0.025);
}

.metric-card--gold:hover {
  background:
    radial-gradient(circle at 70% 8%, rgba(255, 245, 199, 0.4), transparent 28%),
    linear-gradient(145deg, #e0b447, #a16b16);
}

.metric-card--gold .metric-top > span,
.metric-card--gold .metric-top > b,
.metric-card--gold strong,
.metric-card--gold p {
  color: #171107;
}

.launch-track {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 92px;
  align-items: center;
}

.launch-track span {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(23, 17, 7, 0.5);
  border-radius: 50%;
  background: transparent;
}

.launch-track span.is-done {
  background: #171107;
  box-shadow: 0 0 0 4px rgba(23, 17, 7, 0.08);
  animation: launch-node 2.2s ease-in-out infinite;
}

.launch-track span:nth-of-type(2) { animation-delay: 0.5s; }

.launch-track i {
  height: 1px;
  flex: 1;
  background: rgba(23, 17, 7, 0.36);
}

@keyframes launch-node {
  50% { transform: scale(1.22); box-shadow: 0 0 0 7px rgba(23, 17, 7, 0.05); }
}

.program {
  background:
    radial-gradient(circle at 80% 40%, rgba(216, 168, 66, 0.055), transparent 27%),
    var(--bg);
}

.program-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.program-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: var(--radius);
  padding: 25px;
  background: linear-gradient(145deg, #141616, #0d0f0f);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.program-card:hover {
  --lift: -5px;
  border-color: rgba(216, 168, 66, 0.42);
  background: linear-gradient(145deg, #181a1a, #101212);
}

.program-card::after {
  position: absolute;
  right: -50px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(216, 168, 66, 0.1);
  border-radius: 50%;
  content: "";
}

.program-card--featured {
  min-height: 504px;
  grid-row: span 2;
  background:
    linear-gradient(165deg, rgba(216, 168, 66, 0.1), transparent 50%),
    #111313;
}

.program-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(216, 168, 66, 0.055);
  color: var(--gold);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 0.45s ease, background 0.45s ease;
}

.program-icon svg {
  width: 25px;
  height: 25px;
}

.program-card:hover .program-icon {
  transform: rotate(-6deg) translateY(-3px);
  background: rgba(216, 168, 66, 0.12);
  box-shadow: 0 14px 32px rgba(216, 168, 66, 0.14);
}

.program-card--featured h3 {
  margin-top: 12px;
  font-size: 28px;
}

.program-tag {
  display: inline-block;
  margin-top: auto;
  border: 1px solid rgba(216, 168, 66, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #c1bfb6;
  font-size: 12px;
}

.check-list li {
  position: relative;
  padding-left: 21px;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  content: "";
}

.craft-banner {
  position: relative;
  display: flex;
  min-height: 380px;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.craft-banner > img,
.craft-banner-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.craft-banner > img {
  transform: scale(1.08) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
  object-fit: cover;
  object-position: center 53%;
  will-change: transform;
}

.craft-banner-scrim {
  background: linear-gradient(90deg, rgba(7, 8, 8, 0.94) 0%, rgba(7, 8, 8, 0.58) 47%, rgba(7, 8, 8, 0.08) 76%);
}

.craft-banner-copy {
  position: relative;
  z-index: 2;
  max-width: 510px;
  padding: clamp(28px, 5vw, 54px);
}

.craft-banner h3 {
  margin-top: 11px;
  font-size: clamp(30px, 4vw, 47px);
}

.craft-seal {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 35px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(216, 168, 66, 0.52);
  border-radius: 50%;
  background: rgba(8, 9, 9, 0.7);
  box-shadow: 0 0 40px rgba(216, 168, 66, 0.15);
  backdrop-filter: blur(10px);
}

.craft-seal::before,
.craft-seal::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(216, 168, 66, 0.34);
  border-radius: 50%;
  content: "";
  animation: seal-spin 24s linear infinite;
}

.craft-seal::after {
  inset: -7px;
  border-style: solid;
  opacity: 0.28;
}

@keyframes seal-spin {
  to { transform: rotate(1turn); }
}

.craft-seal .logo-mark {
  width: 44px;
  height: 44px;
  margin-top: 12px;
}

.craft-seal small {
  margin-top: -22px;
  color: var(--gold-light);
  font-size: 8px;
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.launch {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 52%, rgba(216, 168, 66, 0.13), transparent 28%),
    radial-gradient(circle at 13% 22%, rgba(216, 168, 66, 0.05), transparent 22%),
    linear-gradient(155deg, #101313, #080a0a 72%);
  isolation: isolate;
}

.launch::before {
  position: absolute;
  z-index: -2;
  right: -12%;
  bottom: -43%;
  left: -12%;
  height: 72%;
  transform: perspective(620px) rotateX(62deg);
  transform-origin: bottom;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(216, 168, 66, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 168, 66, 0.18) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 35%, transparent 90%);
  mask-image: linear-gradient(180deg, transparent, #000 35%, transparent 90%);
}

.launch::after {
  position: absolute;
  z-index: -1;
  top: 34%;
  left: 50%;
  width: 760px;
  height: 440px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244, 207, 121, 0.11), rgba(216, 168, 66, 0.025) 42%, transparent 72%);
  filter: blur(12px);
  content: "";
}

.launch .container {
  position: relative;
}

.launch-carousel {
  position: relative;
  min-height: 550px;
  outline: none;
}

.launch-carousel::before,
.launch-carousel::after {
  position: absolute;
  z-index: 8;
  top: 15px;
  bottom: 92px;
  width: 130px;
  content: "";
  pointer-events: none;
}

.launch-carousel::before {
  left: -1px;
  background: linear-gradient(90deg, #0c0e0e 2%, transparent);
}

.launch-carousel::after {
  right: -1px;
  background: linear-gradient(-90deg, #0a0c0c 2%, transparent);
}

.launch-stage {
  position: relative;
  height: 445px;
  perspective: 1350px;
  perspective-origin: 50% 43%;
  touch-action: pan-y;
  transform-style: preserve-3d;
  user-select: none;
}

.launch-orbits {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 510px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotateX(67deg);
  border: 1px solid rgba(216, 168, 66, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.launch-orbits::before,
.launch-orbits::after,
.launch-orbits i {
  position: absolute;
  border: 1px solid rgba(216, 168, 66, 0.1);
  border-radius: 50%;
  content: "";
}

.launch-orbits::before { inset: 47px; }
.launch-orbits::after { inset: 102px; }
.launch-orbits i:first-child { inset: 151px; }

.launch-orbits i:nth-child(2) {
  inset: 47px;
  border-style: dashed;
  animation: launch-orbit-spin 30s linear infinite;
}

.launch-orbits i:nth-child(2)::before,
.launch-orbits span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
  content: "";
}

.launch-orbits i:nth-child(2)::before {
  top: 15%;
  left: 8%;
}

.launch-orbits span {
  top: 50%;
  right: -4px;
  animation: launch-orbit-pulse 2.2s ease-in-out infinite;
}

@keyframes launch-orbit-spin { to { rotate: 360deg; } }
@keyframes launch-orbit-pulse { 50% { transform: scale(1.7); opacity: 0.45; } }

.launch-steps {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transform-style: preserve-3d;
}

.mobile-swipe-hint {
  display: none;
}

.launch-steps li {
  --carousel-x: 0px;
  --carousel-z: 0px;
  --carousel-y: 0px;
  --carousel-rotate: 0deg;
  --carousel-scale: 0.8;
  --carousel-opacity: 0;
  --carousel-blur: 8px;
  position: relative;
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  overflow: hidden;
  width: min(410px, 76vw);
  min-height: 365px;
  transform: translate3d(calc(-50% + var(--carousel-x)), var(--carousel-y), var(--carousel-z)) rotateY(var(--carousel-rotate))
    scale(var(--carousel-scale));
  transform-origin: center;
  flex-direction: column;
  justify-content: flex-end;
  opacity: var(--carousel-opacity);
  filter: blur(var(--carousel-blur));
  padding: 34px 35px 31px;
  border: 1px solid rgba(216, 168, 66, 0.26);
  border-radius: 25px;
  background:
    radial-gradient(circle at 84% 13%, rgba(244, 207, 121, 0.13), transparent 26%),
    linear-gradient(145deg, rgba(28, 31, 30, 0.98), rgba(10, 12, 12, 0.98));
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  transform-style: preserve-3d;
  transition:
    transform 0.85s cubic-bezier(0.18, 0.82, 0.2, 1),
    opacity 0.62s ease,
    filter 0.62s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  will-change: transform, opacity, filter;
}

.launch-carousel:not(.is-ready) .launch-steps li {
  opacity: 0;
}

.launch-steps li::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(216, 168, 66, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(216, 168, 66, 0.025), 0 0 0 55px rgba(216, 168, 66, 0.018);
  content: "";
}

.launch-steps li::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 28%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 241, 195, 0.08), transparent);
  content: "";
  transition: left 0.9s ease;
}

.launch-steps li.is-active {
  border-color: rgba(244, 207, 121, 0.66);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.62), 0 0 45px rgba(216, 168, 66, 0.13), inset 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: auto;
}

.launch-steps li.is-active::after {
  left: 125%;
}

.launch-steps li.is-near {
  cursor: pointer;
  pointer-events: auto;
}

.launch-steps li.is-near:hover {
  border-color: rgba(216, 168, 66, 0.55);
}

.launch-steps .step-number {
  position: absolute;
  top: 17px;
  right: 25px;
  margin: 0;
  color: rgba(244, 207, 121, 0.1);
  font-size: 74px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.08em;
}

.step-meta {
  position: absolute;
  top: 29px;
  left: 34px;
  color: rgba(244, 207, 121, 0.65);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(216, 168, 66, 0.32);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(244, 207, 121, 0.12), rgba(216, 168, 66, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transform: translateZ(34px);
}

.step-icon::before,
.step-icon::after {
  position: absolute;
  border: 1px solid rgba(216, 168, 66, 0.18);
  border-radius: 50%;
  content: "";
}

.step-icon::before { inset: -12px; }
.step-icon::after { inset: -23px; opacity: 0.45; }

.launch-steps li.is-active .step-icon::before {
  animation: launch-icon-orbit 7s linear infinite;
  border-style: dashed;
}

@keyframes launch-icon-orbit { to { rotate: 360deg; } }

.launch-steps .step-icon svg {
  width: 35px;
  height: 35px;
  margin: 0;
  color: var(--gold-light);
  filter: drop-shadow(0 0 9px rgba(216, 168, 66, 0.35));
}

.launch-steps h3 {
  position: relative;
  z-index: 1;
  font-size: 31px;
  transform: translateZ(28px);
}

.launch-steps p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  min-height: 42px;
  font-size: 14px;
  transform: translateZ(22px);
}

.step-route {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 21px;
  border: 1px solid rgba(216, 168, 66, 0.2);
  border-radius: 999px;
  padding: 7px 10px;
  color: #7c7e78;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: translateZ(18px);
}

.launch-controls {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(650px, 100%);
  min-height: 56px;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
  border: 1px solid rgba(216, 168, 66, 0.22);
  border-radius: 999px;
  padding: 7px;
  background: rgba(9, 11, 11, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
  grid-template-columns: 42px minmax(120px, 1fr) auto 80px 42px;
  backdrop-filter: blur(16px);
}

.carousel-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 50%;
  background: rgba(216, 168, 66, 0.07);
  color: var(--gold-light);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.carousel-arrow:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  background: rgba(216, 168, 66, 0.15);
}

.carousel-arrow svg {
  width: 17px;
  height: 17px;
}

.carousel-arrow--prev svg {
  transform: rotate(180deg);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  position: relative;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #474943;
  cursor: pointer;
  transition: width 0.35s ease, border-radius 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.carousel-dots button.is-active {
  width: 30px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 13px rgba(216, 168, 66, 0.45);
}

.carousel-counter {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #5f615c;
  font-size: 10px;
}

.carousel-counter strong {
  color: var(--gold-light);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.carousel-counter i { font-style: normal; }

.carousel-timer {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.carousel-timer i {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.launch-carousel.is-counting .carousel-timer i {
  animation: launch-timer 5.2s linear forwards;
}

@keyframes launch-timer { to { transform: scaleX(1); } }

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

.market {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 50%, rgba(216, 168, 66, 0.11), transparent 26%),
    var(--bg);
}

.market-layout {
  display: grid;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: 0.72fr 1.28fr;
}

.market-stat {
  position: relative;
  display: flex;
  width: min(360px, 100%);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.12), transparent 65%);
}

.market-orbit {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(216, 168, 66, 0.26);
  border-radius: 50%;
  animation: seal-spin 35s linear infinite reverse;
}

.market-orbit::before {
  position: absolute;
  top: 23%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
  content: "";
}

.market-stat strong {
  color: var(--gold-light);
  font-size: clamp(70px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.market-stat b {
  margin-top: 16px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 500;
}

.market-stat p {
  margin: 8px 0 0;
  color: #777a75;
  font-size: 11px;
}

.market-copy h2 {
  margin: 14px 0 34px;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.market-points {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.market-points p {
  display: grid;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #b2b1ab;
  font-size: 13px;
  grid-template-columns: 30px 1fr;
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.market-points p:hover {
  padding-left: 8px;
  color: #e4e1d8;
}

.market-points span {
  color: var(--gold-dark);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.faq {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #0c0e0e;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 5px;
  color: var(--gold-light);
  font-size: 13px;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  padding: 25px 0;
  background: none;
  color: #eae8e0;
  cursor: pointer;
  font-size: clamp(16px, 2vw, 20px);
  text-align: left;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.accordion-item button:hover {
  padding-left: 8px;
  color: var(--gold-light);
}

.accordion-item button > span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1px solid rgba(216, 168, 66, 0.38);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.3s ease;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  content: "";
}

.accordion-item button > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.25s ease;
}

.accordion-item.is-open button > span {
  transform: rotate(180deg);
  background: rgba(216, 168, 66, 0.1);
}

.accordion-item.is-open button > span::after {
  opacity: 0;
}

.accordion-panel {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel p {
  padding: 0 50px 25px 0;
}

.presentation {
  position: relative;
  display: flex;
  min-height: 660px;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.presentation > img,
.presentation-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.presentation > img {
  transform: scale(1.08) translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.presentation-scrim {
  background:
    linear-gradient(90deg, rgba(6, 7, 7, 0.16), rgba(6, 7, 7, 0.84) 52%, rgba(6, 7, 7, 0.96)),
    linear-gradient(180deg, rgba(6, 7, 7, 0.25), rgba(6, 7, 7, 0.62));
}

.presentation-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 1fr 0.85fr;
}

.presentation-copy {
  grid-column: 2;
}

.presentation-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.presentation-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #aaa9a3;
  font-size: 15px;
}

.presentation-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 25px;
}

.presentation-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d4d1c7;
  font-size: 11px;
}

.presentation-points svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

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

.inline-form label:first-child {
  grid-column: span 2;
}

.inline-form .button,
.inline-form .privacy-note {
  grid-column: span 2;
}

.site-footer {
  padding: 44px 0 22px;
  background: #070808;
}

.footer-main {
  display: grid;
  align-items: center;
  gap: 40px;
  padding-bottom: 36px;
  grid-template-columns: 1fr auto auto;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  color: #777975;
  font-size: 11px;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: #969893;
  font-size: 10px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  color: #51534f;
  font-size: 10px;
}

.designer-credit {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(216, 168, 66, 0.15);
  border-radius: 999px;
  padding: 4px 11px 4px 5px;
  color: #777975;
  transition: transform 0.35s ease, color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.designer-credit img {
  width: 34px;
  height: 34px;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(216, 168, 66, 0.3));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.designer-credit:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 121, 0.42);
  background: rgba(216, 168, 66, 0.055);
  color: var(--gold-light);
}

.designer-credit:hover img {
  transform: rotate(-7deg) scale(1.08);
  filter: drop-shadow(0 0 11px rgba(244, 207, 121, 0.58));
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(410px, calc(100% - 48px));
  align-items: center;
  gap: 12px;
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(216, 168, 66, 0.42);
  border-radius: 14px;
  padding: 15px;
  background: rgba(17, 19, 19, 0.95);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  grid-template-columns: auto 1fr auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

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

.toast-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 168, 66, 0.12);
  color: var(--gold-light);
}

.toast strong {
  font-size: 13px;
}

.toast p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.toast button {
  border: 0;
  background: none;
  color: #777;
  cursor: pointer;
  font-size: 20px;
}

.reveal {
  transform: translateY(30px) scale(0.985);
  opacity: 0;
  filter: blur(7px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.72, 0.2, 1), filter 0.8s ease;
}

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

.motion-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--lift), 0);
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.8s ease,
    filter 0.8s ease;
  will-change: transform;
}

.reveal.motion-card:not(.is-visible) {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 30px, 0) scale(0.985);
}

.reveal.motion-card.is-visible {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--lift), 0);
}

.motion-card:hover {
  --lift: -5px;
}

.model-grid .reveal:nth-child(2),
.program-grid .reveal:nth-child(2),
.launch-steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.model-grid .reveal:nth-child(3),
.program-grid .reveal:nth-child(3),
.launch-steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.program-grid .reveal:nth-child(4),
.launch-steps .reveal:nth-child(4) { transition-delay: 0.24s; }
.program-grid .reveal:nth-child(5),
.launch-steps .reveal:nth-child(5) { transition-delay: 0.32s; }
.program-grid .reveal:nth-child(6) { transition-delay: 0.4s; }

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    gap: 38px;
    grid-template-columns: 1.15fr 0.85fr;
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

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

  .model-card:first-child {
    min-height: 490px;
    grid-column: span 2;
  }

  .program-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .launch-steps {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
  }

  .launch .container {
    overflow-x: auto;
    padding-bottom: 10px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    transform: translateY(-16px);
    visibility: hidden;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    padding: 26px 16px;
    background: rgba(8, 9, 9, 0.98);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 8px;
    font-size: 18px;
  }

  .mobile-nav .button {
    margin-top: 20px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 35px;
  }

  .renovation-layer img {
    object-position: 62% center;
  }

  .renovation-meter,
  .motion-rail,
  .cursor-aura {
    display: none;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(5, 6, 6, 0.7), rgba(5, 6, 6, 0.78) 46%, rgba(5, 6, 6, 0.96)),
      linear-gradient(90deg, rgba(5, 6, 6, 0.88), rgba(5, 6, 6, 0.2));
  }

  .hero-layout {
    width: min(calc(100% - 32px), 680px);
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .lead-card {
    width: 100%;
  }

  .hero-stats {
    width: min(calc(100% - 32px), 680px);
    margin-top: 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(216, 168, 66, 0.18);
  }

  .section {
    padding: 86px 0;
  }

  .launch .container {
    width: 100%;
    overflow: visible;
    padding-inline: 16px;
  }

  .launch .section-heading {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .mobile-swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(100%, 680px);
    margin: -12px auto 22px;
    color: #777a75;
    font-size: 11px;
  }

  .mobile-swipe-hint svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
  }

  .launch-steps {
    display: flex;
    width: calc(100% + 16px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 16px 14px 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .launch-steps::-webkit-scrollbar {
    display: none;
  }

  .launch-steps li {
    width: min(78vw, 320px);
    min-height: 250px;
    flex: 0 0 min(78vw, 320px);
    border: 1px solid var(--line);
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .launch-steps li + li {
    margin-left: 12px;
  }

  .launch-steps li:first-child,
  .launch-steps li:last-child {
    border: 1px solid var(--line);
    border-radius: 16px;
  }

  .launch-steps li:not(:last-child)::after {
    display: none;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 36px;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 600px;
    grid-column: auto;
  }

  .section-number {
    display: none;
  }

  .finance-layout {
    grid-template-columns: 1fr;
  }

  .finance-side {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
  }

  .metric-card {
    min-height: 180px;
    padding: 22px;
  }

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

  .program-card--featured {
    grid-row: span 2;
  }

  .market-layout,
  .faq-layout {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .market-stat {
    width: min(320px, 90%);
    margin: 0 auto;
  }

  .faq-intro {
    position: static;
  }

  .presentation {
    min-height: auto;
    padding: 90px 0;
  }

  .presentation-scrim {
    background: rgba(6, 7, 7, 0.83);
  }

  .presentation-layout {
    max-width: 680px;
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .presentation-copy,
  .inline-form {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    justify-content: flex-start;
    grid-row: 2;
  }

  .footer-social {
    grid-row: 1;
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-name {
    font-size: 9px;
  }

  .brand-name strong {
    font-size: 11px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding: 94px 0 28px;
  }

  .hero-layout,
  .hero-stats {
    width: calc(100% - 24px);
  }

  .hero-layout {
    gap: 26px;
  }

  .hero-grid-lines {
    background-size: 72px 72px;
  }

  .renovation-layer {
    inset: -5%;
  }

  .renovation-layer img {
    object-position: 64% center;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 1.01;
  }

  .hero h1 em {
    margin: 5px 0;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .lead-card {
    padding: 22px 18px;
  }

  .hero-stats {
    margin-top: 28px;
  }

  .hero-stats article {
    min-height: 82px;
    justify-content: flex-start;
    padding: 12px;
  }

  .hero-stats svg {
    width: 21px;
    height: 21px;
  }

  .hero-stats p {
    font-size: 9px;
  }

  .hero-stats strong {
    font-size: 11px;
  }

  .hero-proof {
    margin-top: 26px;
  }

  .hero-proof p {
    font-size: 10px;
  }

  .lead-card h2 {
    max-width: 280px;
    font-size: 27px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .model-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .model-card:first-child {
    min-height: 440px;
    grid-column: auto;
  }

  .model-card {
    min-height: 390px;
  }

  .calculator {
    padding: 22px 15px;
  }

  .calculator-head {
    display: block;
  }

  .signal {
    margin-top: 12px;
  }

  .money-table > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .money-table strong {
    font-size: 16px;
  }

  .finance-side {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 150px;
  }

  .program-card,
  .program-card--featured {
    min-height: 280px;
    grid-row: auto;
  }

  .craft-banner {
    min-height: 520px;
    align-items: flex-start;
  }

  .craft-banner > img {
    object-position: 63% center;
  }

  .craft-banner-scrim {
    background: linear-gradient(180deg, rgba(7, 8, 8, 0.94), rgba(7, 8, 8, 0.35) 65%, rgba(7, 8, 8, 0.75));
  }

  .craft-seal {
    right: 22px;
    bottom: 22px;
    width: 104px;
    height: 104px;
  }

  .launch-steps li {
    width: 82vw;
    flex-basis: 82vw;
  }

  .market-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .presentation {
    padding: 70px 0;
  }

  .presentation > img {
    object-position: 34% center;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .inline-form label:first-child,
  .inline-form .button,
  .inline-form .privacy-note {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    display: grid;
    grid-column: span 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 1080px) {
  .launch .container {
    overflow: visible;
    padding-bottom: 0;
  }

  .hero-showcase {
    height: 520px;
  }

  .material-object {
    scale: 0.8;
  }

  .material-ring--outer {
    width: 420px;
    height: 420px;
  }

  .material-ring--inner {
    width: 310px;
    height: 310px;
  }

  .material-chip--one,
  .material-chip--two {
    display: none;
  }
}

@media (max-width: 820px) {
  .finance {
    padding-top: 78px;
  }

  .finance-watermark {
    top: 10%;
    font-size: 90px;
  }

  .finance-atmosphere span:nth-child(1),
  .finance-atmosphere span:nth-child(3),
  .finance-atmosphere span:nth-child(5) {
    display: none;
  }

  .finance-live {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .metric-card {
    min-height: 175px;
  }

  .hero-showcase {
    width: min(100%, 600px);
    height: 500px;
    margin-inline: auto;
  }

  .material-object {
    scale: 0.9;
  }

  .material-chip--one,
  .material-chip--two {
    display: block;
  }

  .material-chip--one { left: 5%; }
  .material-chip--two { right: 4%; }

  .designer-credit {
    order: 3;
  }

  .launch-carousel {
    min-height: 510px;
  }

  .launch-carousel::before,
  .launch-carousel::after {
    width: 46px;
  }

  .launch-stage {
    height: 405px;
  }

  .launch-orbits {
    width: 390px;
  }

  .launch-steps {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .launch-steps li,
  .launch-steps li:first-child,
  .launch-steps li:last-child {
    position: absolute;
    width: min(82vw, 350px);
    min-height: 340px;
    flex: none;
    flex-basis: auto;
    margin: 0;
    border: 1px solid rgba(216, 168, 66, 0.26);
    border-radius: 23px;
    padding: 31px 29px 27px;
    scroll-snap-align: none;
  }

  .launch-steps li + li {
    margin-left: 0;
  }

  .launch-steps h3 {
    font-size: 28px;
  }

  .launch-controls {
    width: min(560px, calc(100% - 10px));
  }
}

@media (max-width: 660px) {
  .finance-live,
  .finance-side {
    grid-template-columns: 1fr;
  }

  .finance-side {
    grid-template-rows: auto;
  }

  .team-mosaic,
  .profit-visual {
    padding: 14px;
  }

  .master-tile {
    min-height: 57px;
  }

  .profit-chart {
    height: 145px;
  }

  .metric-card {
    min-height: 165px;
  }

  .hero-showcase {
    height: 430px;
  }

  .material-object {
    scale: 0.72;
  }

  .material-ring--outer {
    width: 340px;
    height: 340px;
  }

  .material-ring--inner {
    width: 260px;
    height: 260px;
  }

  .material-halo {
    width: 360px;
    height: 360px;
  }

  .material-chip--one,
  .material-chip--two {
    display: none;
  }

  .material-chip--three {
    bottom: 4%;
    left: 50%;
    translate: -50% 0;
    white-space: nowrap;
  }

  .launch-carousel {
    min-height: 488px;
  }

  .launch-stage {
    height: 392px;
  }

  .launch-orbits {
    width: 340px;
  }

  .launch-steps li,
  .launch-steps li:first-child,
  .launch-steps li:last-child {
    top: 14px;
    width: min(82vw, 330px);
    min-height: 334px;
  }

  .launch-controls {
    gap: 9px;
    grid-template-columns: 42px minmax(110px, 1fr) auto 42px;
  }

  .carousel-timer {
    display: none;
  }
}

@media (max-width: 420px) {
  .calculator {
    border-radius: 18px;
  }

  .calculator h3 {
    font-size: 27px;
  }

  .finance-live {
    margin-top: 22px;
  }

  .range-field > span:first-child b {
    display: none;
  }

  .money-table > div {
    gap: 4px 10px;
    padding-inline: 13px;
  }

  .money-table span {
    font-size: 11px;
  }

  .money-table strong {
    font-size: 14px;
  }

  .money-table .money-total strong {
    font-size: 19px;
  }

  .metric-card {
    min-height: 155px;
    padding: 22px;
  }

  .hero-showcase {
    height: 390px;
  }

  .material-object {
    scale: 0.64;
  }

  .material-chip--three {
    display: none;
  }

  .launch-carousel {
    min-height: 460px;
  }

  .launch-stage {
    height: 368px;
  }

  .launch-steps li,
  .launch-steps li:first-child,
  .launch-steps li:last-child {
    top: 8px;
    width: min(84vw, 322px);
    min-height: 321px;
    padding: 28px 24px 24px;
  }

  .step-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 23px;
  }

  .step-icon::after {
    inset: -17px;
  }

  .launch-steps h3 {
    font-size: 26px;
  }

  .launch-steps p {
    min-height: 39px;
    font-size: 12px;
  }

  .step-route {
    margin-top: 16px;
  }

  .launch-controls {
    width: 100%;
    grid-template-columns: 40px minmax(90px, 1fr) auto 40px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-dots {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .renovation-layer--before,
  .renovation-tiles,
  .renovation-sweep,
  .renovation-particles,
  .renovation-meter,
  .finance-atmosphere,
  .finance-watermark,
  .cursor-aura,
  .motion-rail {
    display: none;
  }

  .renovation-layer--after {
    clip-path: inset(0);
  }

  .motion-card,
  .reveal.motion-card,
  .reveal.motion-card.is-visible,
  .reveal.motion-card:not(.is-visible) {
    transform: none;
  }
}

@media (pointer: coarse) {
  .cursor-aura,
  .motion-rail {
    display: none;
  }
}

/* Theme switch */
.header-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 999px;
  padding: 5px 11px 5px 5px;
  background: rgba(8, 9, 9, 0.42);
  color: #b9b7af;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 121, 0.6);
  color: var(--gold-light);
}

.theme-toggle-icons {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(216, 168, 66, 0.28);
  border-radius: 50%;
  background: rgba(216, 168, 66, 0.08);
}

.theme-toggle-icons svg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}

.theme-toggle-icons svg:first-child {
  transform: translateY(26px) rotate(110deg);
  opacity: 0;
}

.theme-toggle-icons svg:last-child {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

.theme-toggle-label {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.theme-toggle--mobile {
  display: none;
}

/* Interactive five-module hero deck */
.hero-showcase {
  outline: none;
}

.hero-showcase:focus-visible {
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(244, 207, 121, 0.58), 0 0 42px rgba(216, 168, 66, 0.14);
}

.material-object {
  width: 352px;
  height: 438px;
}

.material-slab.material-module-card {
  --card-x: 0px;
  --card-y: 0px;
  --card-z: -240px;
  --card-ry: 0deg;
  --card-rz: 0deg;
  --card-scale: 0.78;
  --card-opacity: 0;
  --card-blur: 5px;
  --entry-x: 0px;
  z-index: var(--card-layer, 1);
  display: flex;
  width: 278px;
  height: 390px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: visible;
  padding: 30px;
  opacity: var(--card-opacity);
  filter: blur(var(--card-blur));
  cursor: pointer;
  transform: translate(-50%, -50%) translate3d(var(--card-x), var(--card-y), var(--card-z)) rotateY(var(--card-ry)) rotateZ(var(--card-rz)) scale(var(--card-scale));
  transition:
    transform 0.88s cubic-bezier(0.18, 0.82, 0.2, 1),
    opacity 0.62s ease,
    filter 0.62s ease,
    border-color 0.4s ease,
    box-shadow 0.55s ease;
  will-change: transform, opacity, filter;
}

.hero-showcase:not(.is-assembled) .material-slab.material-module-card {
  transform: translate(-50%, -50%) translate3d(var(--entry-x), 170px, -620px) rotateX(64deg) rotateY(-32deg) rotateZ(18deg) scale(0.5);
  opacity: 0;
  filter: blur(14px);
}

.hero-showcase.is-entering .material-slab.material-module-card {
  transition-delay: var(--entry-delay, 0s);
}

.material-module-card:nth-child(1) { --entry-x: -210px; }
.material-module-card:nth-child(2) { --entry-x: 170px; }
.material-module-card:nth-child(3) { --entry-x: -120px; }
.material-module-card:nth-child(4) { --entry-x: 210px; }
.material-module-card:nth-child(5) { --entry-x: 0px; }

.material-slab.material-module-card.is-active {
  border-color: rgba(244, 207, 121, 0.68);
  box-shadow:
    0 48px 100px rgba(0, 0, 0, 0.64),
    0 0 58px rgba(216, 168, 66, 0.21),
    inset 0 1px rgba(255, 255, 255, 0.12);
  cursor: default;
}

.material-slab.material-module-card.is-near:hover {
  border-color: rgba(244, 207, 121, 0.55);
  filter: blur(0) brightness(1.12);
}

.material-module-card > i {
  z-index: 0;
  background:
    radial-gradient(circle at var(--stage-light-x) var(--stage-light-y), rgba(244, 207, 121, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(7, 8, 8, 0.02), rgba(7, 8, 8, 0.9) 72%);
  pointer-events: none;
}

.material-module-card > *:not(i):not(.slab-grid) {
  position: relative;
  z-index: 2;
  transform: translateZ(18px);
  transition: opacity 0.45s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.material-module-card:not(.is-active) > *:not(i):not(.slab-grid) {
  transform: translateZ(8px) translateY(8px);
  opacity: 0.28;
}

.module-number {
  position: absolute !important;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.module-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(244, 207, 121, 0.38);
  border-radius: 18px;
  background: rgba(9, 11, 11, 0.36);
  color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.module-icon::after {
  position: absolute;
  inset: -9px;
  border: 1px dashed rgba(216, 168, 66, 0.22);
  border-radius: 23px;
  content: "";
  animation: module-icon-orbit 14s linear infinite;
}

@keyframes module-icon-orbit {
  to { transform: rotate(360deg); }
}

.module-icon svg {
  width: 32px;
  height: 32px;
}

.module-icon--brand .logo-mark {
  width: 36px;
  height: 36px;
}

.material-module-card small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.material-slab.material-module-card b {
  max-width: 220px;
  margin-top: 10px;
  color: #f4f1e8;
  font-size: 24px;
  font-weight: 530;
  line-height: 1.05;
  text-align: left;
}

.material-module-card p {
  max-width: 220px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
}

.material-controls {
  position: absolute;
  z-index: 12;
  right: 7%;
  bottom: 5px;
  left: 7%;
  display: grid;
  align-items: center;
  gap: 11px;
  grid-template-columns: 38px minmax(90px, 1fr) auto 38px;
}

.material-controls > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 50%;
  background: rgba(8, 9, 9, 0.72);
  color: var(--gold-light);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.material-controls > button:first-child svg { transform: rotate(180deg); }
.material-controls > button:hover { transform: scale(1.08); border-color: var(--gold-light); background: rgba(216, 168, 66, 0.14); }
.material-controls > button svg { width: 17px; height: 17px; }

.material-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.material-dots button {
  width: 100%;
  min-width: 12px;
  height: 3px;
  border: 0;
  border-radius: 99px;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
}

.material-dots button.is-active {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(244, 207, 121, 0.45);
}

.material-controls > strong {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.material-controls > strong small {
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.material-chip--three { bottom: 14%; }

/* Seamless marquee */
.ticker-track {
  gap: 0;
  padding: 0;
  animation-name: ticker-seamless;
}

.ticker-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: 30px;
  padding: 16px 30px 16px 0;
}

.ticker-group span,
.ticker-group i {
  flex: none;
}

@keyframes ticker-seamless {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Reworked 3D revenue sources */
.model-grid {
  perspective: 1450px;
}

.model-card {
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.model-card::before {
  background:
    radial-gradient(circle at var(--card-light-x, 50%) var(--card-light-y, 35%), rgba(244, 207, 121, 0.16), transparent 28%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.05), transparent 36%);
  box-shadow: inset 0 0 0 1px rgba(244, 207, 121, 0.03);
}

.model-card:hover::before {
  box-shadow: inset 0 0 0 1px rgba(244, 207, 121, 0.5), inset 0 0 48px rgba(216, 168, 66, 0.05);
}

.model-card-content {
  transform: translateZ(46px);
  text-shadow: 0 5px 24px rgba(0, 0, 0, 0.35);
}

.model-card-content > svg {
  filter: drop-shadow(0 7px 12px rgba(216, 168, 66, 0.24));
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.model-card:hover .model-card-content > svg {
  transform: translateZ(24px) rotate(-8deg) scale(1.14);
}

.model-depth {
  position: absolute;
  z-index: 4;
  top: 25px;
  right: 25px;
  left: 25px;
  height: 175px;
  transform: perspective(850px) rotateX(62deg) rotateZ(-8deg) translateZ(18px);
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.model-card:hover .model-depth {
  transform: perspective(850px) rotateX(48deg) rotateZ(-3deg) translate3d(0, -7px, 42px);
}

.model-depth span {
  position: absolute;
  inset: calc(var(--depth-index) * 18px);
  border: 1px solid rgba(244, 207, 121, 0.22);
  border-radius: 13px;
  background: rgba(8, 9, 9, 0.18);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  transform: translateZ(calc(var(--depth-index) * 18px));
}

.model-depth span:nth-child(1) { --depth-index: 0; }
.model-depth span:nth-child(2) { --depth-index: 1; }
.model-depth span:nth-child(3) { --depth-index: 2; }

.model-depth b {
  position: absolute;
  right: 28px;
  bottom: 25px;
  transform: translateZ(70px);
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.model-orbit {
  position: absolute;
  top: 42px;
  left: 50%;
  width: 225px;
  height: 225px;
  transform: translateX(-50%) rotateX(67deg);
  border: 1px dashed rgba(216, 168, 66, 0.25);
  border-radius: 50%;
  animation: model-orbit-spin 18s linear infinite;
}

.model-orbit::before,
.model-orbit::after {
  position: absolute;
  inset: 31px;
  border: 1px solid rgba(216, 168, 66, 0.13);
  border-radius: 50%;
  content: "";
}

.model-orbit::after { inset: 73px; }

.model-orbit span {
  position: absolute;
  top: 8px;
  left: 36px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold);
}

@keyframes model-orbit-spin {
  to { transform: translateX(-50%) rotateX(67deg) rotateZ(360deg); }
}

.tile-samples {
  top: 45px;
  height: 178px;
  transform: perspective(840px) rotateX(58deg) rotateZ(-17deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.model-card--pattern:hover .tile-samples {
  transform: perspective(840px) rotateX(45deg) rotateZ(-9deg) translate3d(0, -10px, 34px);
}

.tile-samples span {
  position: relative;
  transform: translateZ(var(--tile-depth, 0px));
  box-shadow: 12px 20px 25px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.75s cubic-bezier(0.2, 0.85, 0.2, 1), filter 0.45s ease;
}

.tile-samples span::after {
  position: absolute;
  top: 100%;
  right: 2px;
  left: 4px;
  height: 8px;
  transform: rotateX(-90deg);
  transform-origin: top;
  background: #7c581d;
  content: "";
}

.tile-samples span:nth-child(1) { --tile-depth: 8px; }
.tile-samples span:nth-child(2) { --tile-depth: 34px; }
.tile-samples span:nth-child(3) { --tile-depth: 16px; }
.tile-samples span:nth-child(4) { --tile-depth: 26px; }
.tile-samples span:nth-child(5) { --tile-depth: 46px; }
.tile-samples span:nth-child(6) { --tile-depth: 20px; }

.model-card--pattern:hover .tile-samples span:nth-child(odd) { transform: translateZ(calc(var(--tile-depth) + 19px)) translateY(-4px); }
.model-card--pattern:hover .tile-samples span:nth-child(even) { transform: translateZ(calc(var(--tile-depth) + 34px)) translateY(-10px); filter: brightness(1.18); }

.model-depth-label {
  position: absolute;
  z-index: 4;
  top: 24px;
  right: 22px;
  border: 1px solid rgba(216, 168, 66, 0.26);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(8, 9, 9, 0.58);
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.model-card:hover .model-depth-label {
  transform: translate3d(0, -4px, 36px);
  border-color: rgba(244, 207, 121, 0.58);
}

.growth-stage {
  position: absolute;
  top: 48px;
  right: 23px;
  left: 23px;
  height: 174px;
  transform: perspective(850px) rotateX(55deg) rotateZ(-8deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.85s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.model-card--graph:hover .growth-stage {
  transform: perspective(850px) rotateX(43deg) rotateZ(-3deg) translate3d(0, -8px, 42px);
}

.growth-stage .growth-graph {
  position: absolute;
  inset: 0;
  height: auto;
  transform: none;
  transform-style: preserve-3d;
}

.growth-graph span {
  position: relative;
  width: 25px;
  transform: scaleY(1) translateZ(18px);
  transform-style: preserve-3d;
  animation: graph-pulse-3d 3.6s ease-in-out infinite alternate;
}

.growth-graph span::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 9px;
  transform: rotateY(90deg);
  transform-origin: left;
  background: linear-gradient(180deg, #9f7428, #342510);
  content: "";
}

.growth-graph span::after {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 9px;
  transform: rotateX(90deg);
  transform-origin: bottom;
  background: #f0cb77;
  content: "";
}

@keyframes graph-pulse-3d {
  from { transform: scaleY(0.83) translateZ(12px); filter: brightness(0.8); }
  to { transform: scaleY(1) translateZ(28px); filter: brightness(1.2); }
}

.growth-line {
  position: absolute;
  inset: 10px 14px 15px 17px;
  z-index: 3;
  transform: translateZ(42px);
  pointer-events: none;
}

.growth-line::before {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: rotate(-29deg);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  box-shadow: 0 0 12px rgba(244, 207, 121, 0.55);
  content: "";
}

.growth-line i {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #fff2c5;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.growth-line i:nth-child(1) { left: 6%; bottom: 12%; }
.growth-line i:nth-child(2) { left: 23%; bottom: 25%; }
.growth-line i:nth-child(3) { left: 41%; bottom: 39%; }
.growth-line i:nth-child(4) { left: 59%; bottom: 55%; }
.growth-line i:nth-child(5) { left: 76%; bottom: 70%; }
.growth-line i:nth-child(6) { right: 1%; bottom: 88%; }

.model-card.reveal.motion-card:not(.is-visible) {
  transform: perspective(1000px) rotateX(18deg) rotateY(-8deg) translate3d(0, 62px, -120px) scale(0.9);
  opacity: 0;
  filter: blur(10px);
}

/* Light palette */
html[data-theme="light"] {
  --bg: #f3efe6;
  --bg-soft: #ece6da;
  --panel: #fffaf0;
  --panel-2: #f4ecdd;
  --text: #1d1e1a;
  --muted: #625f58;
  --muted-2: #817d74;
  --line: rgba(142, 96, 22, 0.29);
  --line-soft: rgba(31, 29, 24, 0.13);
  color-scheme: light;
}

html[data-theme="light"] .theme-toggle-icons svg:first-child { transform: translateY(0) rotate(0deg); opacity: 1; }
html[data-theme="light"] .theme-toggle-icons svg:last-child { transform: translateY(-26px) rotate(-90deg); opacity: 0; }

html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .site-header.menu-active {
  border-color: rgba(53, 45, 30, 0.12);
  background: rgba(248, 244, 235, 0.9);
}

html[data-theme="light"] .desktop-nav a { color: rgba(28, 28, 24, 0.67); }
html[data-theme="light"] .desktop-nav a:hover,
html[data-theme="light"] .desktop-nav a.is-active { color: #171814; }
html[data-theme="light"] .theme-toggle { background: rgba(255, 251, 242, 0.72); color: #625b50; }
html[data-theme="light"] .menu-toggle { background: rgba(255, 255, 255, 0.62); color: #1b1c18; }

html[data-theme="light"] .hero-background img { filter: brightness(1.04) saturate(0.84) contrast(0.88); }
html[data-theme="light"] .hero-scrim {
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.98) 0%, rgba(247, 243, 234, 0.91) 35%, rgba(247, 243, 234, 0.55) 53%, rgba(247, 243, 234, 0.08) 72%, rgba(247, 243, 234, 0.18) 100%),
    linear-gradient(180deg, rgba(247, 243, 234, 0.45), transparent 38%, rgba(247, 243, 234, 0.7));
}
html[data-theme="light"] .hero h1 { color: #1b1c18; }
html[data-theme="light"] .hero-lead { color: rgba(29, 30, 26, 0.72); }
html[data-theme="light"] .hero-proof p { color: rgba(29, 30, 26, 0.6); }
html[data-theme="light"] .hero-proof p strong { color: #22231e; }
html[data-theme="light"] .avatars span { border-color: #f4efe5; background: linear-gradient(145deg, #fffaf0, #ddd3c1); }
html[data-theme="light"] .button--ghost { border-color: rgba(31, 29, 24, 0.25); background: rgba(255, 255, 255, 0.4); color: #1c1d19; }

html[data-theme="light"] .ticker { border-color: rgba(31, 29, 24, 0.1); background: #e9e3d8; }
html[data-theme="light"] .ticker-track { color: #767168; }

html[data-theme="light"] .model-card--pattern,
html[data-theme="light"] .model-card--graph,
html[data-theme="light"] .program-card,
html[data-theme="light"] .program-card--featured,
html[data-theme="light"] .calculator,
html[data-theme="light"] .metric-card,
html[data-theme="light"] .launch-steps li,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .market-stat {
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.98), rgba(230, 222, 208, 0.96));
  color: var(--text);
  box-shadow: 0 24px 60px rgba(64, 48, 20, 0.08);
}

html[data-theme="light"] .model-card--image .model-card-content { color: #fffdf5; }
html[data-theme="light"] .model-card--image .model-card-content p { color: rgba(255, 255, 255, 0.72); }
html[data-theme="light"] .model-card--pattern,
html[data-theme="light"] .model-card--graph { border-color: rgba(142, 96, 22, 0.28); }
html[data-theme="light"] .tile-samples span { filter: brightness(1.22) saturate(0.72); }
html[data-theme="light"] .growth-graph { background-image: linear-gradient(rgba(31, 29, 24, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 29, 24, 0.07) 1px, transparent 1px); }

html[data-theme="light"] .finance,
html[data-theme="light"] .launch {
  border-color: rgba(31, 29, 24, 0.1);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 168, 66, 0.17), transparent 28%),
    linear-gradient(155deg, #eee8dc, #f8f4eb 72%);
}
html[data-theme="light"] .finance::before,
html[data-theme="light"] .launch::before { opacity: 0.12; }
html[data-theme="light"] .finance-watermark { color: rgba(81, 65, 37, 0.08); }
html[data-theme="light"] .section-heading--light h2,
html[data-theme="light"] .section-heading--light > p { color: var(--text); }
html[data-theme="light"] .calculator-head p,
html[data-theme="light"] .calculator-foot,
html[data-theme="light"] .metric-card p,
html[data-theme="light"] .launch-steps p { color: var(--muted); }
html[data-theme="light"] .money-table { background: rgba(255, 255, 255, 0.44); }
html[data-theme="light"] .money-table > div { border-color: rgba(31, 29, 24, 0.09); }
html[data-theme="light"] .money-table .money-total { background: linear-gradient(90deg, rgba(216, 168, 66, 0.16), rgba(255, 255, 255, 0.42)); }

html[data-theme="light"] .program,
html[data-theme="light"] .faq,
html[data-theme="light"] .market { background-color: var(--bg); }
html[data-theme="light"] .program-card:hover { background: linear-gradient(145deg, #fffdf8, #e9dfcf); }
html[data-theme="light"] .craft-banner-scrim { background: linear-gradient(90deg, rgba(248, 244, 235, 0.96), rgba(248, 244, 235, 0.26)); }
html[data-theme="light"] .craft-banner-content { color: #1c1d19; }
html[data-theme="light"] .craft-banner-content p { color: #605d56; }
html[data-theme="light"] .launch-steps li.is-active { box-shadow: 0 30px 70px rgba(94, 66, 22, 0.18), 0 0 0 1px rgba(216, 168, 66, 0.38); }
html[data-theme="light"] .faq-question { color: var(--text); }

html[data-theme="light"] .presentation-scrim {
  background: linear-gradient(90deg, rgba(245, 240, 231, 0.98) 0%, rgba(245, 240, 231, 0.86) 54%, rgba(245, 240, 231, 0.24));
}
html[data-theme="light"] .presentation-copy { color: #1c1d19; }
html[data-theme="light"] .presentation-copy > p:not(.eyebrow) { color: #5e5b54; }
html[data-theme="light"] .inline-form input { border-color: rgba(31, 29, 24, 0.15); background: rgba(255, 255, 255, 0.72); color: #1d1e1a; }
html[data-theme="light"] .site-footer { background: #e6dfd3; }
html[data-theme="light"] .footer-bottom { border-color: rgba(31, 29, 24, 0.1); color: #777168; }
html[data-theme="light"] .footer-contact,
html[data-theme="light"] .designer-credit { color: #6b665e; }
html[data-theme="light"] .noise { opacity: 0.022; mix-blend-mode: multiply; }
html[data-theme="light"] .cursor-aura { mix-blend-mode: multiply; }

html.theme-changing *,
html.theme-changing *::before,
html.theme-changing *::after {
  transition-property: background-color, background, color, border-color, box-shadow, filter !important;
  transition-duration: 0.42s !important;
}

@media (max-width: 1080px) {
  .header-actions { margin-left: auto; }
  .header-actions .header-cta { display: none; }
  .material-controls { right: 4%; left: 4%; }
}

@media (max-width: 820px) {
  .header-actions { margin-left: auto; }
  .header-actions .theme-toggle { min-width: 42px; padding: 5px; }
  .header-actions .theme-toggle-label { display: none; }
  .theme-toggle--mobile {
    display: inline-flex;
    width: 100%;
    justify-content: flex-start;
    margin-top: 14px;
    padding-right: 15px;
  }
  .theme-toggle--mobile .theme-toggle-label { display: inline; }
  html[data-theme="light"] .mobile-nav { background: rgba(246, 241, 232, 0.98); color: #1d1e1a; }
  html[data-theme="light"] .mobile-nav > a:not(.button) { border-color: rgba(31, 29, 24, 0.1); }
  html[data-theme="light"] .hero-scrim {
    background:
      linear-gradient(180deg, rgba(247, 243, 234, 0.72), rgba(247, 243, 234, 0.9) 46%, rgba(247, 243, 234, 0.99)),
      linear-gradient(90deg, rgba(247, 243, 234, 0.92), rgba(247, 243, 234, 0.28));
  }
  .material-controls { right: 8%; bottom: 0; left: 8%; }
  .material-chip--three { bottom: 11%; }
}

@media (max-width: 660px) {
  .material-controls { right: 3%; left: 3%; }
  .material-slab.material-module-card { padding: 29px; }
  .model-depth-label { top: 18px; right: 17px; }
}

@media (max-width: 420px) {
  .header-inner { gap: 10px; }
  .header-actions .theme-toggle { min-width: 38px; min-height: 38px; }
  .theme-toggle-icons { width: 26px; height: 26px; }
  .theme-toggle-icons svg { top: 4px; left: 4px; width: 16px; height: 16px; }
  .material-controls { grid-template-columns: 36px minmax(80px, 1fr) auto 36px; }
  .material-controls > button { width: 36px; height: 36px; }
  .material-module-card p { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase:not(.is-assembled) .material-slab.material-module-card {
    opacity: var(--card-opacity);
    filter: none;
    transform: translate(-50%, -50%) translate3d(var(--card-x), var(--card-y), var(--card-z)) rotateY(var(--card-ry)) rotateZ(var(--card-rz)) scale(var(--card-scale));
  }
}

/* Light theme contrast pass */
html[data-theme="light"] {
  --text-on-light: #1d1c18;
  --text-soft-on-light: #514d46;
  --gold-on-light: #9b6208;
  --gold-strong-on-light: #7f4e00;
  --surface-on-light: #fffaf1;
  --surface-strong-on-light: #f2e8d8;
  --border-on-light: rgba(123, 78, 12, 0.28);
  --muted: #56524b;
  --muted-2: #716c63;
}

html[data-theme="light"] .hero h1 em,
html[data-theme="light"] .section-heading h2 em,
html[data-theme="light"] .market-copy h2 em {
  background: linear-gradient(100deg, #8d5704 0%, #c5891e 48%, #9d6106 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .eyebrow,
html[data-theme="light"] .card-kicker,
html[data-theme="light"] .text-link {
  color: var(--gold-on-light);
}

html[data-theme="light"] .section-number {
  color: rgba(127, 78, 0, 0.43);
}

html[data-theme="light"] .section-heading > p,
html[data-theme="light"] .hero-lead,
html[data-theme="light"] .faq-intro > p:not(.eyebrow) {
  color: var(--text-soft-on-light);
}

html[data-theme="light"] .hero-proof p {
  color: #514d46;
}

html[data-theme="light"] .hero-proof p strong {
  color: #1c1b18;
}

html[data-theme="light"] .avatars span {
  border-color: #fffaf1;
  background: linear-gradient(145deg, #ecd39e, #c99a3f);
  box-shadow: 0 6px 18px rgba(91, 61, 13, 0.14);
  color: #563500;
}

html[data-theme="light"] .header-cta {
  border-color: rgba(155, 98, 8, 0.62);
  background: rgba(39, 37, 32, 0.84);
  color: #ffd676;
  box-shadow: 0 10px 26px rgba(44, 35, 21, 0.13);
}

html[data-theme="light"] .hero-stats {
  border-color: rgba(210, 155, 48, 0.58);
  background: rgba(28, 27, 24, 0.89);
  box-shadow: 0 22px 55px rgba(45, 35, 18, 0.2), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

html[data-theme="light"] .hero-stats article {
  border-color: rgba(244, 207, 121, 0.2);
}

html[data-theme="light"] .hero-stats p {
  color: rgba(255, 252, 244, 0.75);
}

html[data-theme="light"] .hero-stats strong {
  color: #ffd778;
}

html[data-theme="light"] .hero-stats svg {
  color: #efb83f;
}

html[data-theme="light"] .button--ghost {
  border-color: rgba(39, 35, 28, 0.3);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 9px 24px rgba(50, 41, 25, 0.07);
  color: #24221d;
}

html[data-theme="light"] .ticker-track {
  color: #554f45;
}

html[data-theme="light"] .model-card--pattern h3,
html[data-theme="light"] .model-card--graph h3,
html[data-theme="light"] .program-card h3 {
  color: var(--text-on-light);
}

html[data-theme="light"] .model-card--pattern p,
html[data-theme="light"] .model-card--graph p,
html[data-theme="light"] .program-card p {
  color: var(--text-soft-on-light);
}

/* Finance was built on dark nested panels, so every inner surface needs its own light state. */
html[data-theme="light"] .calculator,
html[data-theme="light"] .metric-card:not(.metric-card--gold) {
  border-color: var(--border-on-light);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 28px 70px rgba(76, 55, 19, 0.1), inset 0 1px rgba(255, 255, 255, 0.7);
}

html[data-theme="light"] .calculator h3,
html[data-theme="light"] .money-table strong {
  color: var(--text-on-light);
}

html[data-theme="light"] .signal,
html[data-theme="light"] .live-panel-head > span,
html[data-theme="light"] .range-labels,
html[data-theme="light"] .calculator-note,
html[data-theme="light"] .chart-caption,
html[data-theme="light"] .metric-top > span,
html[data-theme="light"] .metric-card p {
  color: var(--text-soft-on-light);
}

html[data-theme="light"] .live-panel-head > b,
html[data-theme="light"] .metric-card:not(.metric-card--gold) strong {
  color: var(--gold-strong-on-light);
}

html[data-theme="light"] .team-mosaic,
html[data-theme="light"] .profit-visual {
  border-color: rgba(90, 69, 33, 0.14);
  background: linear-gradient(145deg, rgba(128, 91, 29, 0.055), rgba(255, 255, 255, 0.48));
}

html[data-theme="light"] .master-tile {
  border-color: rgba(62, 55, 43, 0.12);
  background: rgba(255, 255, 255, 0.42);
}

html[data-theme="light"] .master-tile > i {
  border-color: #777066;
  color: #777066;
}

html[data-theme="light"] .master-tile > b {
  color: #716a60;
}

html[data-theme="light"] .master-tile.is-active {
  border-color: rgba(156, 98, 8, 0.43);
  color: var(--gold-on-light);
  background: linear-gradient(145deg, rgba(221, 169, 69, 0.23), rgba(255, 250, 237, 0.82));
  box-shadow: 0 8px 20px rgba(100, 69, 15, 0.1);
}

html[data-theme="light"] .master-tile.is-active > b {
  color: #8d5b0a;
}

html[data-theme="light"] .chart-gridline {
  stroke: rgba(42, 37, 29, 0.11);
}

html[data-theme="light"] .money-table {
  border-color: rgba(60, 52, 40, 0.13);
  background: rgba(70, 56, 32, 0.09);
}

html[data-theme="light"] .money-table > div {
  background: rgba(255, 253, 248, 0.88);
}

html[data-theme="light"] .money-table > div:hover {
  background: #fffaf0;
}

html[data-theme="light"] .money-table span {
  color: #4f4a42;
}

html[data-theme="light"] .money-row > i,
html[data-theme="light"] .range-field input {
  background-color: rgba(49, 43, 34, 0.12);
}

html[data-theme="light"] .money-table .money-total {
  background: linear-gradient(90deg, rgba(216, 168, 66, 0.24), rgba(255, 250, 238, 0.86));
}

html[data-theme="light"] .money-table .money-total span,
html[data-theme="light"] .money-table .money-total strong {
  color: var(--gold-strong-on-light);
}

html[data-theme="light"] .metric-card--gold {
  border-color: rgba(123, 78, 12, 0.36);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 245, 203, 0.5), transparent 25%),
    linear-gradient(145deg, #e7b84e, #bd7f1b);
  box-shadow: 0 25px 55px rgba(103, 68, 11, 0.18);
}

/* Program */
html[data-theme="light"] .program-icon,
html[data-theme="light"] .program-tag {
  border-color: rgba(139, 88, 8, 0.3);
  background: rgba(216, 168, 66, 0.09);
  color: var(--gold-on-light);
}

html[data-theme="light"] .check-list {
  color: #44413b;
}

html[data-theme="light"] .craft-banner-scrim {
  background: linear-gradient(90deg, rgba(247, 242, 232, 0.97) 0%, rgba(247, 242, 232, 0.82) 48%, rgba(247, 242, 232, 0.1) 78%);
}

html[data-theme="light"] .craft-banner-copy h3 {
  color: #1d1c18;
}

html[data-theme="light"] .craft-banner-copy p {
  color: #4f4b44;
}

/* Launch carousel */
html[data-theme="light"] .launch-carousel::before,
html[data-theme="light"] .launch-carousel::after {
  display: none;
}

html[data-theme="light"] .launch-steps li {
  border-color: rgba(137, 88, 10, 0.31);
  background:
    radial-gradient(circle at 84% 13%, rgba(210, 155, 48, 0.17), transparent 28%),
    linear-gradient(145deg, #fffaf0, #eee1cd);
  box-shadow: 0 34px 75px rgba(79, 58, 23, 0.13), inset 0 1px rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .launch-steps li.is-near {
  opacity: 0.76 !important;
  filter: blur(0.35px) !important;
}

html[data-theme="light"] .launch-steps li.is-active {
  opacity: 1 !important;
  filter: none !important;
  border-color: rgba(166, 103, 8, 0.53);
  box-shadow: 0 34px 85px rgba(87, 58, 11, 0.18), 0 0 0 1px rgba(216, 168, 66, 0.22);
}

html[data-theme="light"] .launch-steps h3 {
  color: #211f1a;
}

html[data-theme="light"] .launch-steps p {
  color: #504a41;
}

html[data-theme="light"] .step-meta {
  color: #98600a;
}

html[data-theme="light"] .launch-steps .step-number {
  color: rgba(147, 91, 5, 0.2);
}

html[data-theme="light"] .step-icon {
  border-color: rgba(145, 91, 7, 0.34);
  background: linear-gradient(145deg, rgba(221, 168, 63, 0.16), rgba(255, 255, 255, 0.38));
}

html[data-theme="light"] .launch-steps .step-icon svg {
  color: var(--gold-on-light);
}

html[data-theme="light"] .step-route {
  border-color: rgba(119, 80, 18, 0.2);
  color: #685d4b;
}

/* Market and FAQ */
html[data-theme="light"] .market-stat {
  border-color: rgba(130, 82, 8, 0.34);
  background:
    radial-gradient(circle, rgba(216, 168, 66, 0.15), transparent 63%),
    rgba(255, 251, 243, 0.76);
  box-shadow: 0 28px 70px rgba(82, 57, 16, 0.11);
}

html[data-theme="light"] .market-stat strong {
  color: #a96d0d;
}

html[data-theme="light"] .market-stat b {
  color: #8d5806;
}

html[data-theme="light"] .market-stat p {
  color: #504b43;
}

html[data-theme="light"] .market-points {
  border-color: rgba(54, 47, 37, 0.16);
}

html[data-theme="light"] .market-points p {
  border-color: rgba(54, 47, 37, 0.14);
  color: #4e4941;
}

html[data-theme="light"] .market-points p:hover {
  color: #1d1c18;
}

html[data-theme="light"] .market-points span {
  color: #8d5806;
  font-weight: 700;
}

html[data-theme="light"] .faq {
  border-color: rgba(47, 41, 32, 0.13);
  background: #eee8dd;
}

html[data-theme="light"] .accordion,
html[data-theme="light"] .accordion-item {
  border-color: rgba(47, 41, 32, 0.17);
}

html[data-theme="light"] .accordion-item button {
  color: #26241f;
}

html[data-theme="light"] .accordion-item button:hover {
  color: var(--gold-strong-on-light);
}

html[data-theme="light"] .accordion-item button > span {
  border-color: rgba(151, 94, 5, 0.45);
  background: rgba(216, 168, 66, 0.07);
}

html[data-theme="light"] .accordion-panel p {
  color: #4e4a43;
}

html[data-theme="light"] .text-link {
  border-color: rgba(127, 78, 0, 0.52);
}

html[data-theme="light"] .footer-contact,
html[data-theme="light"] .designer-credit,
html[data-theme="light"] .footer-bottom {
  color: #565149;
}

/* Complete light treatment for hero modules */
html[data-theme="light"] .material-slab.material-module-card {
  border-color: rgba(132, 83, 8, 0.38);
  box-shadow: 0 38px 78px rgba(62, 46, 21, 0.2), inset 0 1px rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .material-slab--concrete.material-module-card {
  background:
    radial-gradient(circle at 28% 19%, rgba(94, 87, 76, 0.13) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 73%, rgba(85, 72, 53, 0.1) 0 2px, transparent 3px),
    linear-gradient(135deg, #f7f3eb, #cbc6ba 60%, #eee8dc);
  background-size: 31px 31px, 43px 43px, auto;
}

html[data-theme="light"] .material-slab--travertine.material-module-card {
  background:
    repeating-linear-gradient(7deg, transparent 0 17px, rgba(126, 85, 31, 0.14) 18px, transparent 20px),
    linear-gradient(145deg, #f5e7ca, #d6b77f 50%, #f0ddba);
}

html[data-theme="light"] .material-slab--marble.material-module-card {
  background:
    linear-gradient(116deg, transparent 18%, rgba(116, 107, 91, 0.18) 19%, transparent 21%),
    linear-gradient(42deg, transparent 56%, rgba(173, 112, 17, 0.16) 57%, transparent 59%),
    linear-gradient(145deg, #fffdf7, #d8d4ca 64%, #f2ecdf);
}

html[data-theme="light"] .material-slab--graphite.material-module-card {
  background:
    linear-gradient(rgba(73, 67, 58, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 67, 58, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #dfdcd3, #aaa69d);
  background-size: 38px 38px, 38px 38px, auto;
}

html[data-theme="light"] .material-slab--main.material-module-card {
  background:
    radial-gradient(circle at var(--stage-light-x) var(--stage-light-y), rgba(230, 172, 60, 0.23), transparent 30%),
    linear-gradient(145deg, #fffdf7, #ddd4c4 70%, #f5ead7);
}

html[data-theme="light"] .material-slab.material-module-card::before,
html[data-theme="light"] .material-slab.material-module-card::after {
  background: linear-gradient(135deg, #e8c578, #9b681b 68%, #69420b);
}

html[data-theme="light"] .material-slab.material-module-card.is-active {
  border-color: rgba(141, 84, 0, 0.66);
  box-shadow:
    0 44px 95px rgba(60, 43, 17, 0.25),
    0 0 52px rgba(191, 130, 25, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] .material-module-card > i {
  background:
    radial-gradient(circle at var(--stage-light-x) var(--stage-light-y), rgba(255, 255, 255, 0.6), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 246, 0.03), rgba(248, 242, 231, 0.88) 73%);
}

html[data-theme="light"] .module-icon {
  border-color: rgba(139, 84, 0, 0.42);
  background: rgba(255, 252, 245, 0.7);
  color: #8c5705;
  box-shadow: 0 15px 36px rgba(87, 59, 13, 0.13), inset 0 1px rgba(255, 255, 255, 0.85);
}

html[data-theme="light"] .module-icon::after {
  border-color: rgba(139, 84, 0, 0.25);
}

html[data-theme="light"] .module-number {
  color: rgba(42, 37, 29, 0.48);
}

html[data-theme="light"] .material-module-card small {
  color: #875303;
}

html[data-theme="light"] .material-slab.material-module-card b {
  color: #211f1a;
}

html[data-theme="light"] .material-module-card p {
  color: #514c43;
}

html[data-theme="light"] .material-chip {
  border-color: rgba(126, 78, 6, 0.34);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 12px 30px rgba(61, 45, 21, 0.13);
  color: #5b5142;
  animation-name: material-chip-float-light;
}

@keyframes material-chip-float-light {
  50% {
    transform: translateY(-7px);
    border-color: rgba(139, 84, 0, 0.56);
    color: #875303;
  }
}

html[data-theme="light"] .material-controls > button {
  border-color: rgba(129, 79, 4, 0.4);
  background: rgba(255, 250, 239, 0.9);
  color: #8a5400;
  box-shadow: 0 8px 22px rgba(58, 42, 18, 0.13);
}

html[data-theme="light"] .material-controls > button:hover {
  border-color: #9b6208;
  background: #f4e5c9;
}

html[data-theme="light"] .material-dots button {
  background: rgba(45, 41, 34, 0.2);
}

html[data-theme="light"] .material-dots button.is-active {
  background: linear-gradient(90deg, #9d650b, #d7a03a);
}

html[data-theme="light"] .material-controls > strong {
  color: #875303;
}

html[data-theme="light"] .material-controls > strong small {
  color: rgba(47, 42, 34, 0.55);
}

/* Hero information panel */
html[data-theme="light"] .hero-stats {
  border-color: rgba(139, 87, 7, 0.4);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 22px 55px rgba(62, 46, 20, 0.14), inset 0 1px rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .hero-stats article {
  border-color: rgba(94, 72, 35, 0.17);
}

html[data-theme="light"] .hero-stats p {
  color: #514c43;
}

html[data-theme="light"] .hero-stats strong {
  color: #805000;
}

html[data-theme="light"] .hero-stats svg {
  color: #9b6208;
}

/* Light carousel controls */
html[data-theme="light"] .launch-controls {
  border-color: rgba(130, 81, 6, 0.34);
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 20px 48px rgba(62, 45, 20, 0.15), inset 0 1px rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .carousel-arrow {
  border-color: rgba(139, 86, 4, 0.38);
  background: rgba(224, 182, 99, 0.13);
  color: #875200;
}

html[data-theme="light"] .carousel-arrow:hover {
  border-color: #9b6208;
  background: rgba(216, 168, 66, 0.23);
}

html[data-theme="light"] .carousel-dots button {
  background: #bdb2a1;
}

html[data-theme="light"] .carousel-dots button.is-active {
  background: linear-gradient(90deg, #94600b, #d5a03c);
  box-shadow: 0 0 11px rgba(165, 105, 9, 0.26);
}

html[data-theme="light"] .carousel-counter {
  color: #71695d;
}

html[data-theme="light"] .carousel-counter strong {
  color: #875200;
}

html[data-theme="light"] .carousel-timer {
  background: rgba(55, 49, 40, 0.14);
}

/* Straight label above the dimensional craft grid */
.model-depth-label--income {
  top: 22px;
  right: 22px;
  left: auto;
  transform: none;
  white-space: nowrap;
}

.model-card:hover .model-depth-label--income {
  transform: translate3d(0, -3px, 36px);
}

/* Reveal the sink image while keeping the form legible */
html[data-theme="light"] .presentation > img {
  filter: brightness(0.82) saturate(0.82) contrast(1.12);
}

html[data-theme="light"] .presentation-scrim {
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.1) 0%, rgba(246, 241, 232, 0.2) 36%, rgba(246, 241, 232, 0.82) 57%, rgba(246, 241, 232, 0.96) 100%),
    linear-gradient(180deg, rgba(246, 241, 232, 0.08), rgba(246, 241, 232, 0.3));
}

html[data-theme="light"] .presentation-points span {
  color: #3f3b34;
}

html[data-theme="light"] .presentation-points svg {
  color: #956006;
}

html[data-theme="light"] .inline-form input::placeholder,
html[data-theme="light"] .privacy-note {
  color: #5d574e;
}

@media (max-width: 820px) {
  html[data-theme="light"] .presentation > img {
    filter: brightness(0.74) saturate(0.78) contrast(1.13);
  }

  html[data-theme="light"] .presentation-scrim {
    background: linear-gradient(180deg, rgba(246, 241, 232, 0.68), rgba(246, 241, 232, 0.9));
  }
}

/* Partner account and authentication */
.account-entry {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(216, 168, 66, 0.3);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(8, 9, 9, 0.44);
  color: #d6d2c8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.account-entry svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.account-entry:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 207, 121, 0.68);
  color: #fff;
}

.account-entry.is-authenticated {
  border-color: rgba(244, 207, 121, 0.58);
  background: rgba(216, 168, 66, 0.13);
  color: var(--gold-light);
}

.account-entry--mobile {
  display: none;
}

.auth-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.auth-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 68% 20%, rgba(216, 168, 66, 0.16), transparent 32%),
    rgba(3, 4, 4, 0.84);
  cursor: default;
  backdrop-filter: blur(16px);
  animation: auth-fade-in 0.35s ease both;
}

.auth-panel {
  position: relative;
  width: min(100%, 570px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(216, 168, 66, 0.42);
  border-radius: 26px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(28, 30, 29, 0.98), rgba(10, 11, 11, 0.99)),
    var(--panel);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.68), inset 0 1px rgba(255, 255, 255, 0.06);
  animation: auth-panel-in 0.5s cubic-bezier(0.2, 0.85, 0.2, 1) both;
}

.auth-panel::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(216, 168, 66, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 66, 0.12), transparent 64%);
  pointer-events: none;
}

.auth-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 23px;
  cursor: pointer;
  transition: 0.25s ease;
}

.auth-close:hover {
  border-color: var(--line);
  color: var(--gold-light);
  transform: rotate(5deg);
}

.auth-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 25px;
  color: #9d9c96;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-brand .logo-mark {
  width: 36px;
  height: 36px;
}

.auth-brand strong {
  color: #efebe2;
  font-size: 11px;
}

.auth-tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
}

.auth-tabs button {
  min-height: 43px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.3s ease;
}

.auth-tabs button.is-active {
  background: linear-gradient(135deg, rgba(216, 168, 66, 0.24), rgba(216, 168, 66, 0.1));
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(216, 168, 66, 0.22);
}

.auth-view {
  position: relative;
}

.auth-view[hidden] {
  display: none;
}

.auth-view.is-active {
  animation: auth-view-in 0.38s ease both;
}

.auth-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.auth-view h2 {
  margin: 7px 0 8px;
  color: #f5f2e9;
  font-size: clamp(30px, 5vw, 45px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.auth-view > p {
  max-width: 460px;
  margin: 0 0 24px;
  color: #a9a7a0;
  font-size: 13px;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #c4c1b9;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  outline: none;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.auth-form input:focus {
  border-color: rgba(244, 207, 121, 0.66);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(216, 168, 66, 0.1);
}

.auth-form .button {
  width: 100%;
  min-height: 53px;
  margin-top: 4px;
}

.auth-status {
  min-height: 0;
  margin-top: 0;
  border-radius: 9px;
  color: #e9b5ab;
  font-size: 12px;
  transition: 0.25s ease;
}

.auth-status:not(:empty) {
  min-height: 40px;
  margin-top: 13px;
  padding: 10px 12px;
  background: rgba(172, 70, 49, 0.12);
  border: 1px solid rgba(219, 101, 77, 0.22);
}

.auth-status.is-success:not(:empty) {
  color: #d6e8c6;
  background: rgba(93, 138, 60, 0.12);
  border-color: rgba(136, 190, 92, 0.22);
}

.auth-security {
  display: flex;
  gap: 8px;
  margin: 19px 0 0;
  color: #6f716d;
  font-size: 10px;
  line-height: 1.45;
}

.auth-security svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--gold);
}

body.auth-open {
  overflow: hidden;
}

html[data-theme="light"] .account-entry {
  border-color: rgba(143, 96, 15, 0.26);
  background: rgba(255, 252, 246, 0.75);
  color: #3d3932;
}

html[data-theme="light"] .account-entry.is-authenticated {
  background: rgba(185, 124, 20, 0.11);
  color: #875a0d;
}

html[data-theme="light"] .auth-backdrop {
  background: rgba(34, 31, 26, 0.55);
}

html[data-theme="light"] .auth-panel {
  border-color: rgba(176, 116, 14, 0.34);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.99), rgba(241, 235, 223, 0.99));
  box-shadow: 0 34px 90px rgba(77, 65, 44, 0.28), inset 0 1px #fff;
}

html[data-theme="light"] .auth-brand { color: #6d665a; }
html[data-theme="light"] .auth-brand strong,
html[data-theme="light"] .auth-view h2 { color: #171813; }
html[data-theme="light"] .auth-view > p { color: #5f5a50; }
html[data-theme="light"] .auth-tabs { border-color: rgba(114, 93, 56, 0.16); background: rgba(80, 67, 44, 0.06); }
html[data-theme="light"] .auth-tabs button { color: #696358; }
html[data-theme="light"] .auth-tabs button.is-active { color: #8a5a08; }
html[data-theme="light"] .auth-form label { color: #575148; }
html[data-theme="light"] .auth-form input { border-color: rgba(81, 70, 52, 0.19); background: rgba(255, 255, 255, 0.75); color: #1d1d19; }
html[data-theme="light"] .auth-security { color: #777064; }
html[data-theme="light"] .auth-close { border-color: rgba(71, 61, 44, 0.15); color: #645e54; }

@keyframes auth-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes auth-panel-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes auth-view-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .account-entry span { display: none; }
  .account-entry { width: 42px; padding: 8px; }
}

@media (max-width: 820px) {
  .header-actions .account-entry { display: none; }
  .account-entry--mobile {
    display: flex;
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
  }
  .account-entry--mobile span { display: inline; }
}

@media (max-width: 560px) {
  .auth-modal { padding: 10px; align-items: end; }
  .auth-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 23px;
    padding: 24px 18px;
  }
  .auth-brand { padding-right: 50px; }
  .auth-tabs { margin-bottom: 24px; }
  .auth-form-row { grid-template-columns: 1fr; }
  .auth-view h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .auth-backdrop,
  .auth-panel,
  .auth-view.is-active { animation: none; }
}

/* Mobile navigation: isolated full-screen layer and permanent account access */
.mobile-nav-intro {
  display: none;
}

@media (max-width: 820px) {
  .site-header {
    isolation: isolate;
  }

  .header-inner {
    position: relative;
    z-index: 103;
  }

  .site-header.menu-active .header-inner {
    background: #080909;
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions .account-entry {
    display: inline-flex;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
  }

  .header-actions .account-entry svg {
    width: 19px;
    height: 19px;
  }

  .mobile-nav {
    z-index: 102;
    top: 68px;
    height: calc(100dvh - 68px);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    gap: 0;
    padding: 24px 20px max(28px, env(safe-area-inset-bottom));
    background: #080909 !important;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav::before {
    position: fixed;
    z-index: -1;
    inset: 68px 0 0;
    background:
      radial-gradient(circle at 88% 12%, rgba(216, 168, 66, 0.11), transparent 30%),
      #080909;
    content: "";
    pointer-events: none;
  }

  .mobile-nav-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
    border-bottom: 1px solid rgba(216, 168, 66, 0.28);
    padding: 0 5px 15px;
  }

  .mobile-nav-intro span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .mobile-nav-intro small {
    color: #74766f;
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-nav > a:not(.button) {
    display: flex;
    min-height: 62px;
    align-items: center;
    transform: translateX(-12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 5px;
    color: #f3f0e8;
    font-size: clamp(21px, 6vw, 28px);
    font-weight: 520;
    line-height: 1.05;
    letter-spacing: -0.035em;
    opacity: 0;
    transition: color 0.25s ease, padding-left 0.25s ease, opacity 0.35s ease, transform 0.35s ease;
  }

  .mobile-nav.is-open > a:not(.button) {
    transform: translateX(0);
    opacity: 1;
  }

  .mobile-nav.is-open > a:nth-of-type(1) { transition-delay: 0.04s; }
  .mobile-nav.is-open > a:nth-of-type(2) { transition-delay: 0.08s; }
  .mobile-nav.is-open > a:nth-of-type(3) { transition-delay: 0.12s; }
  .mobile-nav.is-open > a:nth-of-type(4) { transition-delay: 0.16s; }
  .mobile-nav.is-open > a:nth-of-type(5) { transition-delay: 0.2s; }

  .mobile-nav > a:not(.button)::after {
    margin-left: auto;
    color: var(--gold);
    font-size: 16px;
    content: "↗";
  }

  .mobile-nav > a:not(.button):active {
    padding-left: 11px;
    color: var(--gold-light);
  }

  .mobile-nav .button {
    width: 100%;
    min-height: 54px;
    margin-top: 20px;
    flex: none;
  }

  html[data-theme="light"] .site-header.menu-active .header-inner {
    background: #f5f0e6;
  }

  html[data-theme="light"] .mobile-nav {
    background: #f5f0e6 !important;
  }

  html[data-theme="light"] .mobile-nav::before {
    background:
      radial-gradient(circle at 88% 12%, rgba(174, 111, 8, 0.1), transparent 30%),
      #f5f0e6;
  }

  html[data-theme="light"] .mobile-nav > a:not(.button) {
    border-color: rgba(41, 36, 28, 0.12);
    color: #191a16;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 7px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-actions .account-entry,
  .header-actions .theme-toggle {
    width: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 350px) {
  .site-header .brand-name {
    display: none;
  }
}

/* Readable mobile hero module deck */
@media (max-width: 660px) {
  .hero-showcase {
    width: 100%;
    height: 510px;
    overflow: hidden;
  }

  .material-object {
    top: 45%;
    width: 340px;
    height: 440px;
    scale: 0.88;
  }

  .material-slab.material-module-card {
    width: 292px;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    padding: 25px;
  }

  .material-module-card > i {
    border-radius: 15px;
  }

  .module-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .module-icon::after {
    inset: -7px;
    border-radius: 19px;
  }

  .module-icon svg {
    width: 27px;
    height: 27px;
  }

  .module-icon--brand .logo-mark {
    width: 31px;
    height: 31px;
  }

  .material-module-card small {
    font-size: 8px;
  }

  .material-slab.material-module-card b {
    max-width: 100%;
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.02;
  }

  .material-module-card p {
    max-width: 100%;
    margin-top: 9px;
    font-size: 10px;
    line-height: 1.42;
  }

  .material-chip,
  .material-chip--one,
  .material-chip--two,
  .material-chip--three {
    display: none !important;
  }

  .material-controls {
    right: 10px;
    bottom: 3px;
    left: 10px;
    gap: 8px;
    border: 1px solid rgba(216, 168, 66, 0.25);
    border-radius: 999px;
    padding: 7px;
    background: rgba(7, 8, 8, 0.92);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
  }

  .material-controls > button {
    width: 38px;
    height: 38px;
    background: rgba(216, 168, 66, 0.08);
  }

  .material-controls > strong {
    min-width: 39px;
    text-align: center;
  }

  html[data-theme="light"] .material-controls {
    background: rgba(247, 242, 232, 0.94);
    box-shadow: 0 16px 35px rgba(70, 53, 27, 0.18);
  }
}

@media (max-width: 480px) {
  .hero-showcase {
    height: 485px;
  }

  .material-object {
    top: 44%;
    scale: 0.84;
  }

  .material-slab.material-module-card {
    padding: 24px;
  }

  .material-controls {
    grid-template-columns: 38px minmax(72px, 1fr) 43px 38px;
  }
}

@media (max-width: 360px) {
  .hero-showcase {
    height: 465px;
  }

  .material-object {
    scale: 0.78;
  }
}

/* Consistent mobile safe area */
@media (max-width: 820px) {
  :root {
    --mobile-gutter: clamp(20px, 5.5vw, 26px);
  }

  .container {
    width: 100%;
    max-width: var(--container);
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .mobile-nav {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .hero-copy,
  .section-heading,
  .finance-heading,
  .launch-heading,
  .faq-intro,
  .presentation-content {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1,
  .section-heading h2,
  .finance-heading h2,
  .launch-heading h2,
  .faq-intro h2,
  .presentation-content h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .model-card-content,
  .program-card,
  .metric-card,
  .calculator,
  .accordion-item button,
  .accordion-content,
  .presentation-content {
    padding-right: max(20px, var(--mobile-gutter));
    padding-left: max(20px, var(--mobile-gutter));
  }

  .hero-stats article {
    padding-right: 17px;
    padding-left: 17px;
  }

  .site-footer .container {
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }
}

@media (max-width: 390px) {
  :root {
    --mobile-gutter: 18px;
  }

  .model-card-content,
  .program-card,
  .metric-card,
  .calculator,
  .accordion-item button,
  .accordion-content,
  .presentation-content {
    padding-right: 18px;
    padding-left: 18px;
  }
}
