:root {
  --bg: #050504;
  --bg-soft: #090907;
  --line: rgba(204, 164, 82, 0.18);
  --line-strong: rgba(220, 176, 83, 0.48);
  --text: #f8f4e8;
  --muted: rgba(248, 244, 232, 0.58);
  --dim: rgba(248, 244, 232, 0.34);
  --gold: #c8a256;
  --gold-soft: rgba(200, 162, 86, 0.2);
  --acid: #e8ff57;
  --acid-soft: rgba(232, 255, 87, 0.18);
  --radius: 8px;
  --font: "Anek Latin", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background:
    radial-gradient(circle at 72% 10%, rgba(200, 162, 86, 0.12), transparent 28rem),
    radial-gradient(circle at 22% 42%, rgba(232, 255, 87, 0.055), transparent 24rem),
    linear-gradient(rgba(200, 162, 86, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 162, 86, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(248, 244, 232, 0.12) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 28%, rgba(200, 162, 86, 0.28) 0 1px, transparent 1.5px),
    radial-gradient(circle at 74% 72%, rgba(248, 244, 232, 0.1) 0 1px, transparent 1.5px),
    radial-gradient(circle at 34% 84%, rgba(232, 255, 87, 0.16) 0 1px, transparent 1.5px);
  content: "";
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 20;
  transform: translateY(-150%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--bg);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: 22px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 122px;
  align-items: center;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--dim);
  font-size: 0.84rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--text);
}

.header-cta {
  justify-self: end;
  min-height: 36px;
  border: 1px solid rgba(232, 255, 87, 0.42);
  border-radius: var(--radius);
  padding: 9px 14px;
  color: var(--acid);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 0 24px var(--acid-soft);
}

main {
  overflow: hidden;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  align-items: center;
  min-height: calc(100vh - 82px);
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 118px) 0 clamp(78px, 9vw, 126px);
}

.hero-section::after,
.minimal-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 830px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.1rem, 9vw, 9.2rem);
  font-weight: 600;
  line-height: 0.87;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.35;
}

.hero-actions,
.price-action,
.final-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 850;
}

.primary-cta {
  border: 1px solid rgba(232, 255, 87, 0.68);
  background: var(--acid);
  color: #090a05;
  box-shadow: 0 0 36px rgba(232, 255, 87, 0.2);
}

.primary-cta:hover {
  box-shadow: 0 0 54px rgba(232, 255, 87, 0.34);
}

.secondary-cta {
  border: 1px solid var(--line);
  color: var(--text);
}

.secondary-cta:hover {
  border-color: var(--line-strong);
}

.orbital-stage {
  position: relative;
  min-height: min(52vw, 640px);
  transform: translateX(4vw);
}

.orbit,
.core,
.node,
.signal {
  position: absolute;
}

.orbit {
  inset: 50% auto auto 50%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-one {
  width: min(36vw, 480px);
  aspect-ratio: 1 / 0.64;
  box-shadow: inset 0 0 42px rgba(200, 162, 86, 0.06);
}

.orbit-two {
  width: min(28vw, 380px);
  aspect-ratio: 1 / 1;
  border-style: dashed;
  opacity: 0.72;
  transform: translate(-50%, -50%) rotate(28deg);
}

.orbit-three {
  width: min(20vw, 280px);
  aspect-ratio: 1 / 0.52;
  opacity: 0.5;
  transform: translate(-50%, -50%) rotate(72deg);
}

.core {
  left: 50%;
  top: 50%;
  width: clamp(120px, 15vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 238, 168, 0.92), transparent 0 12%),
    radial-gradient(circle at 50% 50%, rgba(200, 162, 86, 0.74), transparent 52%),
    radial-gradient(circle, rgba(232, 255, 87, 0.2), transparent 70%);
  filter: blur(0.2px);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(200, 162, 86, 0.36);
}

.node {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(5, 5, 4, 0.72);
  color: rgba(248, 244, 232, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.node-site {
  left: 7%;
  top: 32%;
}

.node-select {
  right: 5%;
  top: 24%;
}

.node-face {
  right: 13%;
  bottom: 22%;
}

.signal {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.68;
}

.signal-a {
  left: 14%;
  top: 64%;
  width: 44%;
  transform: rotate(-18deg);
}

.signal-b {
  right: 6%;
  top: 44%;
  width: 38%;
  transform: rotate(24deg);
}

.minimal-section {
  position: relative;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 0;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  max-width: 720px;
  margin-bottom: clamp(38px, 6vw, 76px);
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 560;
  line-height: 0.9;
}

.product-lines {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-lines article {
  display: grid;
  grid-template-columns: minmax(220px, 0.44fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 92px);
  min-height: 160px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 580;
  line-height: 1;
}

.product-lines p,
.price-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
}

.product-preview {
  position: relative;
  display: grid;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(200, 162, 86, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(200, 162, 86, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 34px 34px;
}

.site-preview {
  grid-template-columns: 1.2fr 0.8fr 0.55fr;
  gap: 1px;
}

.site-preview span,
.select-preview span,
.face-preview span {
  display: block;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(248, 244, 232, 0.12), rgba(248, 244, 232, 0.02));
}

.select-preview {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
}

.select-preview span {
  border-radius: 4px;
}

.face-preview {
  grid-template-columns: 0.7fr 1fr 0.7fr;
  gap: 10px;
  padding: 14px;
}

.face-preview span {
  border: 1px solid rgba(232, 255, 87, 0.16);
  border-radius: 50%;
}

.flow-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-path::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(232, 255, 87, 0.68), var(--gold));
  content: "";
}

.flow-path li {
  position: relative;
  padding-top: 48px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.3vw, 1.08rem);
  font-weight: 760;
}

.flow-path li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 18px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 26px rgba(200, 162, 86, 0.28);
  content: "";
}

.proof-lines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.proof-lines p {
  min-height: 150px;
  margin: 0;
  border-right: 1px solid var(--line);
  padding: 24px 24px 0 0;
  color: var(--text);
  font-size: clamp(1.24rem, 2.3vw, 2.2rem);
  line-height: 1;
}

.proof-lines p:last-child {
  border-right: 0;
}

.price-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: clamp(52px, 8vw, 92px) 0;
}

.price-section h2 {
  margin-bottom: 16px;
}

.price-action {
  justify-content: end;
}

.price-action strong {
  display: block;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 560;
  line-height: 1;
}

.final-section {
  justify-content: space-between;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) 0 clamp(70px, 9vw, 120px);
}

.final-section h2 {
  max-width: 760px;
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

@media (prefers-reduced-motion: no-preference) {
  .orbit-one {
    animation: drift 18s linear infinite;
  }

  .orbit-two {
    animation: drift-reverse 24s linear infinite;
  }
}

@keyframes drift {
  to {
    transform: translate(-50%, -50%) rotate(342deg);
  }
}

@keyframes drift-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-332deg);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 1320px);
  }

  .main-nav {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1320px);
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .orbital-stage {
    min-height: 360px;
    margin-top: 18px;
    transform: none;
  }

  .orbit-one {
    width: min(88vw, 420px);
  }

  .orbit-two {
    width: min(70vw, 330px);
  }

  .orbit-three {
    width: min(54vw, 260px);
  }

  .minimal-section,
  .price-section,
  .final-section,
  .site-footer {
    width: min(100% - 28px, 1320px);
  }

  .product-lines article,
  .price-section,
  .final-section {
    grid-template-columns: 1fr;
  }

  .product-preview {
    min-height: 86px;
  }

  .flow-path {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .flow-path::before {
    left: 9px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--gold), rgba(232, 255, 87, 0.68), var(--gold));
  }

  .flow-path li {
    padding: 0 0 0 42px;
  }

  .flow-path li::before {
    top: 1px;
    left: 0;
  }

  .proof-lines {
    grid-template-columns: 1fr;
  }

  .proof-lines p {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-lines p:last-child {
    border-bottom: 0;
  }

  .price-action,
  .final-section {
    align-items: flex-start;
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 98px;
  }

  .header-cta {
    min-height: 34px;
    padding: 8px 11px;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero-copy p {
    font-size: 1.02rem;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }
}

/* VICTTO premium landing refresh */
:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --surface-strong: #111111;
  --surface-soft: #161616;
  --line: rgba(255, 255, 255, 0.06);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --faint: rgba(255, 255, 255, 0.36);
  --gold: #d4af37;
  --gold-bright: #f6d365;
  --acid: #f6d365;
  --radius: 8px;
  --font: "Satoshi", "Inter", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

body {
  color: #ffffff;
  font-family: var(--font);
  background:
    radial-gradient(circle at 74% 12%, rgba(212, 175, 55, 0.15), transparent 34rem),
    radial-gradient(circle at 16% 2%, rgba(255, 255, 255, 0.055), transparent 26rem),
    #050505;
  letter-spacing: 0;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.76), transparent 76%);
}

.site-header {
  top: 22px;
  width: min(100% - 44px, 1320px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
}

.brand img {
  filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.12));
}

.main-nav a {
  color: rgba(255, 255, 255, 0.54);
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.header-cta,
.primary-cta {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4af37 0%, #f6d365 100%);
  color: #050505;
  font-weight: 700;
  box-shadow: 0 16px 44px rgba(212, 175, 55, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.primary-cta:hover {
  filter: brightness(1.04) saturate(1.08);
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(212, 175, 55, 0.24);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.secondary-cta:hover {
  border-color: rgba(212, 175, 55, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-section {
  width: min(100% - 44px, 1320px);
  min-height: 92vh;
  padding-top: clamp(132px, 14vh, 184px);
}

h1,
h2 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 1040px;
  font-size: clamp(4.9rem, 9vw, 9.7rem);
  line-height: 0.87;
}

h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
}

.hero-copy p,
.section-head p,
.product-lines p,
.flow-path p,
.price-copy p,
.final-section p,
.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.orbital-stage {
  filter: drop-shadow(0 0 48px rgba(212, 175, 55, 0.1));
}

.orbit {
  border-color: rgba(212, 175, 55, 0.18);
}

.core {
  background:
    radial-gradient(circle at 32% 26%, rgba(246, 211, 101, 0.58), transparent 28%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.035));
  box-shadow: 0 0 90px rgba(212, 175, 55, 0.18), inset 0 0 36px rgba(255, 255, 255, 0.05);
}

.node,
.preview-chip,
.preview-status,
.step-marker {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.08);
  color: rgba(246, 211, 101, 0.94);
}

.signal {
  background: #f6d365;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.42);
}

.minimal-section,
.price-section,
.final-section,
.site-footer {
  width: min(100% - 44px, 1320px);
}

.product-lines article,
.price-section,
.final-section,
.proof-lines,
.product-preview {
  border-color: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(11, 11, 11, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.product-lines article:hover,
.product-preview:hover {
  border-color: rgba(212, 175, 55, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 28px 92px rgba(0, 0, 0, 0.38);
  transform: translateY(-2px);
}

.product-lines h3,
.price-copy h2,
.final-section h2,
.preview-title {
  color: #ffffff;
  font-weight: 600;
}

.preview-line,
.flow-path::before,
.proof-lines p,
.site-footer {
  border-color: rgba(255, 255, 255, 0.06);
}

.flow-path::before {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.flow-path li::before {
  border-color: rgba(212, 175, 55, 0.24);
  background: #050505;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.22);
}

.flow-path li span,
.price {
  color: #f6d365;
}

.proof-lines p {
  color: rgba(255, 255, 255, 0.64);
}

.hero-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.92fr);
  align-items: center;
  min-height: 91vh;
  padding-top: clamp(120px, 13vh, 168px);
}

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

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(4.8rem, 8.4vw, 9rem);
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.hero-copy p {
  max-width: 500px;
  margin-top: 28px;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.45;
}

.hero-actions {
  margin-top: 32px;
}

.hero-sphere-stage {
  position: relative;
  min-height: min(58vw, 660px);
  aspect-ratio: 1;
  justify-self: center;
  width: min(52vw, 660px);
  opacity: 0;
  filter: blur(18px);
  animation: sphereReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

.hero-sphere-stage canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

.sphere-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(212, 175, 55, 0.2), transparent 44%),
    radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 62%);
  filter: blur(18px);
}

.orbital-stage {
  display: none;
}

.dotted-surface {
  opacity: 0.36;
}

.dotted-surface::after {
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(5, 5, 5, 0.34) 54%, rgba(5, 5, 5, 0.96) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.92));
}

@keyframes sphereReveal {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero-section,
  .minimal-section,
  .price-section,
  .final-section,
  .site-footer {
    width: min(100% - 28px, 1320px);
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.75rem, 17vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 12vw, 4.4rem);
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 15vw, 4.95rem);
    line-height: 0.88;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero-copy p {
    max-width: 340px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: 100%;
    overflow: hidden;
  }

  .primary-cta,
  .secondary-cta {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-sphere-stage {
    width: min(108vw, 480px);
    min-height: min(108vw, 480px);
    margin-top: 20px;
    transform: translateX(-4%);
  }
}

.dotted-surface {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.68;
  mix-blend-mode: screen;
  overflow: hidden;
}

.dotted-surface::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 52% 38%, transparent 0 26%, rgba(5, 5, 5, 0.28) 58%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.88));
}

.dotted-surface canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.skip-link:not(:focus):not(:focus-visible) {
  transform: translateY(-220%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

/* Minimal impact pass */
.site-header {
  top: 18px;
  width: min(100% - 48px, 1180px);
  min-height: 64px;
  padding-inline: 18px;
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.26);
}

.brand {
  width: 112px;
}

.main-nav {
  gap: 30px;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.78rem;
  box-shadow: none;
}

.hero-section {
  width: min(100% - 48px, 1180px);
  min-height: 82vh;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 4vw, 72px);
  padding-top: clamp(102px, 11vh, 140px);
}

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

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(3.95rem, 6.1vw, 6.85rem);
  line-height: 0.88;
  letter-spacing: -0.052em;
}

.hero-copy p {
  max-width: 430px;
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 28px;
  gap: 10px;
}

.primary-cta,
.secondary-cta {
  min-height: 42px;
  padding: 0 15px;
  font-size: 0.78rem;
  font-weight: 700;
}

.primary-cta {
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.12);
}

.primary-cta:hover {
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.18);
}

.hero-sphere-stage {
  width: min(40vw, 500px);
  min-height: min(40vw, 500px);
  justify-self: end;
}

.sphere-glow {
  inset: 22%;
  opacity: 0.68;
  filter: blur(24px);
}

.dotted-surface {
  opacity: 0.18;
}

.minimal-section,
.price-section,
.final-section,
.site-footer {
  width: min(100% - 48px, 1180px);
}

.minimal-section {
  padding-block: clamp(72px, 9vw, 128px);
}

h2 {
  font-size: clamp(2.25rem, 4.2vw, 4.8rem);
  line-height: 0.94;
}

.section-kicker {
  margin-bottom: 18px;
  color: rgba(212, 175, 55, 0.72);
  font-size: 0.66rem;
}

.product-lines {
  gap: 10px;
  margin-top: 38px;
}

.product-lines article,
.price-section,
.final-section,
.proof-lines,
.product-preview {
  background: rgba(11, 11, 11, 0.48);
  box-shadow: none;
}

.product-lines article {
  min-height: 160px;
  padding: 22px;
}

.product-preview {
  opacity: 0.56;
}

.flow-path {
  margin-top: 44px;
}

.price-section,
.final-section {
  padding: clamp(36px, 5vw, 58px);
}

.price-action strong {
  font-size: clamp(2rem, 4vw, 4rem);
}

.final-section h2 {
  max-width: 650px;
  font-size: clamp(2.1rem, 4.1vw, 4.4rem);
}

@media (max-width: 760px) {
  .site-header {
    top: 14px;
    width: min(100% - 28px, 1180px);
    min-height: 58px;
  }

  .brand {
    width: 98px;
  }

  .header-cta {
    min-height: 34px;
    padding-inline: 12px;
  }

  .hero-section {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 126px;
    overflow: hidden;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: clamp(2.45rem, 11.4vw, 3.35rem);
    line-height: 0.94;
  }

  .hero-copy p {
    max-width: 280px;
    margin-top: 22px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: flex;
    width: auto;
    max-width: 100%;
    margin-top: 24px;
    overflow: visible;
  }

  .primary-cta,
  .secondary-cta {
    width: auto;
    min-height: 40px;
    padding-inline: 13px;
    white-space: nowrap;
  }

  .hero-sphere-stage {
    width: min(76vw, 286px);
    min-height: min(76vw, 286px);
    justify-self: center;
    margin-top: 0;
    transform: none;
  }

  .dotted-surface {
    opacity: 0.12;
  }

  .minimal-section,
  .price-section,
  .final-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .minimal-section {
    padding-block: 72px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }
}
