:root {
  --black: #030303;
  --deep: #080808;
  --panel: #101010;
  --gold: #f7c747;
  --gold-strong: #ffb900;
  --yellow: #ffe37a;
  --silver: #d9dce2;
  --silver-dark: #777d87;
  --white: #ffffff;
  --muted: #bfc2ca;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 10px;
  --max: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  --page-scroll: 0;
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(247, 199, 71, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(217, 220, 226, 0.08), transparent 26rem),
    linear-gradient(180deg, #000 0%, var(--deep) 43%, #050505 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.045) 36.2%, transparent 36.8%),
    linear-gradient(118deg, transparent 0 48%, rgba(247, 199, 71, 0.08) 48.15%, transparent 48.65%),
    linear-gradient(121deg, transparent 0 63%, rgba(217, 220, 226, 0.07) 63.1%, transparent 63.55%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  transform: translate3d(0, calc(var(--page-scroll) * -28px), 0);
  will-change: transform;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--white), var(--gold), var(--gold-strong));
  box-shadow: 0 0 18px rgba(247, 199, 71, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 32px), var(--max));
  margin: 28px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.78), rgba(2, 2, 2, 0.62));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(247, 199, 71, 0.28);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.58);
  transform: translateY(-6px);
}

.brand {
  flex: 0 0 auto;
  position: relative;
  display: grid;
  width: 190px;
  min-height: 54px;
  place-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(247, 199, 71, 0.18);
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 18% 50%, rgba(247, 199, 71, 0.18), transparent 5.5rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(247, 199, 71, 0.035));
  box-shadow:
    0 0 30px rgba(247, 199, 71, 0.13),
    inset 0 1px rgba(255, 255, 255, 0.12);
}

.brand img,
.site-footer img {
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 18px rgba(247, 199, 71, 0.36))
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.52));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  padding: 11px 17px;
  border-radius: var(--radius);
  color: #080808;
  background: linear-gradient(135deg, var(--yellow), var(--gold-strong));
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(255, 185, 0, 0.25);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(26px, 5vw, 54px);
  width: min(calc(100% - 32px), var(--max));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 132px) 0 52px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ray {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), rgba(247, 199, 71, 0.96), transparent);
  transform: rotate(-18deg);
  opacity: 0.8;
}

.ray-a {
  top: 28%;
  right: 2%;
  width: 54%;
}

.ray-b {
  top: 57%;
  right: 15%;
  width: 42%;
  opacity: 0.45;
}

.ray-c {
  bottom: 20%;
  left: 10%;
  width: 34%;
  opacity: 0.32;
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-bg::before {
  inset: 8% -12% auto;
  height: 62%;
  background:
    conic-gradient(from 190deg at 50% 50%, transparent 0 18deg, rgba(247, 199, 71, 0.18) 38deg, transparent 68deg, rgba(217, 220, 226, 0.12) 108deg, transparent 140deg 360deg);
  filter: blur(16px);
  opacity: 0.54;
  mask-image: radial-gradient(ellipse, #000 0 42%, transparent 74%);
}

.hero-bg::after {
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 34%), rgba(247, 199, 71, 0.18), transparent 16rem),
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 42.15%, transparent 43.2% 100%);
  mix-blend-mode: screen;
  opacity: 0.65;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy::before,
.hero-copy::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
  border-radius: 999px;
}

.hero-copy::before {
  top: -9%;
  left: 50%;
  width: min(1080px, 94vw);
  height: 460px;
  background:
    radial-gradient(circle at 28% 42%, rgba(247, 199, 71, 0.2), transparent 18rem),
    radial-gradient(circle at 72% 46%, rgba(217, 220, 226, 0.14), transparent 17rem);
  filter: blur(18px);
  opacity: 0.78;
  transform: translateX(-50%);
}

.hero-copy::after {
  top: 16%;
  left: 50%;
  width: min(820px, 78vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 199, 71, 0.92), rgba(255, 255, 255, 0.8), transparent);
  box-shadow: 0 0 42px rgba(247, 199, 71, 0.52);
  transform: translateX(-50%) rotate(-10deg);
}

.hero-logo {
  width: min(380px, 66vw);
  margin-bottom: 30px;
  padding: 16px 20px;
  border: 1px solid rgba(247, 199, 71, 0.3);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at 18% 50%, rgba(247, 199, 71, 0.2), transparent 9rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(247, 199, 71, 0.045));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 54px rgba(247, 199, 71, 0.22),
    0 28px 70px rgba(0, 0, 0, 0.42);
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
    drop-shadow(0 0 22px rgba(247, 199, 71, 0.36));
}

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

h1 {
  max-width: 1120px;
  font-size: clamp(4.2rem, 8.2vw, 7.9rem);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: -0.07em;
  background: linear-gradient(110deg, #fff 0%, #f6f6f6 28%, var(--gold) 54%, #fff3b1 82%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 24px 70px rgba(255, 185, 0, 0.16);
}

.hero-kicker {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button::after,
.header-cta::after {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -55%;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg) translateX(-320%);
  transition: transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::after,
.header-cta:hover::after {
  transform: skewX(-18deg) translateX(660%);
}

.button.primary {
  color: #090909;
  background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 34%, var(--gold-strong) 100%);
  box-shadow: 0 18px 44px rgba(255, 185, 0, 0.3);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(217, 220, 226, 0.32);
  background: rgba(255, 255, 255, 0.045);
}

.button.secondary:hover {
  border-color: rgba(247, 199, 71, 0.7);
}

.launch-stage {
  --card-shift-x: 0px;
  --card-shift-y: 0px;
  --card-scroll-y: 0px;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(100%, 980px);
  min-height: 360px;
  margin: 0 auto;
  perspective: 1100px;
  transform: none;
}

.speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.speed-lines span {
  position: absolute;
  right: -22%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 199, 71, 0.92), transparent);
  transform: rotate(-18deg) translateX(12%);
  opacity: 0;
}

.speed-lines span:nth-child(1) {
  top: 18%;
}

.speed-lines span:nth-child(2) {
  top: 38%;
  width: 54%;
}

.speed-lines span:nth-child(3) {
  top: 62%;
  width: 82%;
}

.speed-lines span:nth-child(4) {
  top: 78%;
  width: 46%;
}

.launch-burst {
  position: absolute;
  top: 2%;
  right: -12%;
  z-index: 0;
  width: 92%;
  aspect-ratio: 1;
  pointer-events: none;
  background: repeating-conic-gradient(
    from -18deg,
    rgba(247, 199, 71, 0) 0deg 5deg,
    rgba(247, 199, 71, 0.2) 5.4deg 5.9deg,
    rgba(247, 199, 71, 0) 6.4deg 12deg
  );
  filter: blur(0.4px);
  opacity: 0;
  mask-image: radial-gradient(circle, #000 0 18%, transparent 70%);
}

.launch-ring {
  position: absolute;
  top: 54px;
  right: -24px;
  z-index: 1;
  width: 94%;
  height: 78%;
  pointer-events: none;
  border: 2px solid rgba(247, 199, 71, 0.42);
  border-top-color: rgba(255, 255, 255, 0.82);
  border-left-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(247, 199, 71, 0.45));
  opacity: 0;
  transform: rotate(-18deg) scale(0.68);
}

.launch-stage.launch-complete .launch-ring {
  opacity: 0.46;
  transform: rotate(-18deg) scale(1);
}

.launch-stage.launch-complete .launch-burst {
  opacity: 0.12;
}

.launch-sparks {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.launch-sparks span {
  position: absolute;
  left: 17%;
  bottom: 18%;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--white), var(--gold));
  box-shadow: 0 0 12px rgba(247, 199, 71, 0.9);
  opacity: 0;
}

.launch-sparks span:nth-child(2) {
  left: 25%;
  bottom: 24%;
  height: 11px;
}

.launch-sparks span:nth-child(3) {
  left: 35%;
  bottom: 15%;
  height: 15px;
}

.launch-sparks span:nth-child(4) {
  left: 48%;
  bottom: 27%;
  height: 9px;
}

.launch-sparks span:nth-child(5) {
  left: 62%;
  bottom: 19%;
  height: 13px;
}

.launch-sparks span:nth-child(6) {
  left: 74%;
  bottom: 31%;
  height: 8px;
}

.launch-card {
  --card-rest-transform: translate3d(
      var(--card-shift-x),
      calc(var(--card-shift-y) + var(--card-scroll-y)),
      0
  )
    rotateY(calc(-4deg + var(--card-tilt-y))) rotateX(calc(2deg + var(--card-tilt-x)));
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(3, 3, 3, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.22);
  transform: var(--card-rest-transform);
  transform-style: preserve-3d;
  transition:
    transform 180ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease;
  will-change: transform, translate;
}

.motion-ready .launch-stage:not(.is-launching):not(.launch-complete) .launch-card {
  clip-path: inset(0 0 0 0 round var(--radius));
  opacity: 1;
}

.hero-rocket {
  position: absolute;
  bottom: -34px;
  left: 7%;
  z-index: 6;
  width: clamp(72px, 9vw, 108px);
  pointer-events: none;
  filter:
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.38))
    drop-shadow(0 18px 24px rgba(247, 199, 71, 0.4));
  opacity: 0;
  transform: translate3d(0, 120px, 0) scale(0.82);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.hero-rocket img {
  position: relative;
  z-index: 2;
  width: 100%;
}

.rocket-flame {
  position: absolute;
  top: 91%;
  left: 50%;
  z-index: 1;
  width: 42%;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, #fff 0 5%, #fff2a0 18%, var(--gold-strong) 48%, rgba(255, 128, 0, 0.68) 68%, transparent 100%);
  clip-path: polygon(38% 0, 62% 0, 100% 16%, 65% 100%, 34% 100%, 0 16%);
  filter: blur(2px) drop-shadow(0 0 22px rgba(247, 199, 71, 0.9));
  opacity: 0;
  transform: translateX(-50%) scaleY(0.28);
  transform-origin: 50% 0;
}

.rocket-flame::before {
  position: absolute;
  inset: 0 32%;
  content: "";
  background: linear-gradient(180deg, #fff, #fff7c7 36%, transparent 92%);
  clip-path: polygon(24% 0, 76% 0, 100% 15%, 50% 100%, 0 15%);
}

.rocket-plume {
  position: absolute;
  top: calc(100% + 74px);
  left: 50%;
  z-index: 0;
  width: 170px;
  height: 78px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) scale(0.55);
}

.rocket-plume span {
  position: absolute;
  bottom: 0;
  width: 72px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), rgba(139, 139, 139, 0.42) 46%, transparent 72%);
  filter: blur(2px);
}

.rocket-plume span:nth-child(1) {
  left: 2px;
}

.rocket-plume span:nth-child(2) {
  right: 2px;
}

.rocket-plume span:nth-child(3) {
  bottom: 8px;
  left: 49px;
  width: 82px;
  height: 62px;
}

.launch-replay {
  position: absolute;
  top: 6px;
  right: 4px;
  z-index: 8;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--silver);
  background: rgba(0, 0, 0, 0.64);
  cursor: pointer;
  opacity: 0.72;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.launch-replay:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  transform: rotate(-12deg);
}

.launch-replay svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.launch-card:hover {
  border-color: rgba(247, 199, 71, 0.48);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 56px rgba(247, 199, 71, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.card-scan {
  position: absolute;
  inset: -40% 0 auto;
  z-index: 2;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(247, 199, 71, 0.13), transparent);
  transform: translateY(-100%);
  mix-blend-mode: screen;
}

.browser-bar,
.mock-nav,
.mock-lines {
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--silver);
}

.browser-bar span:first-child {
  background: var(--gold);
}

.mock-nav {
  justify-content: flex-end;
  margin-top: 28px;
}

.mock-nav span {
  width: 58px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 38px;
  border: 1px solid rgba(247, 199, 71, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 199, 71, 0.24), transparent 17rem),
    rgba(255, 255, 255, 0.045);
}

.mock-hero strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.4rem, 4.8vw, 5.1rem);
  line-height: 0.92;
}

.mock-hero small {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: var(--radius);
  color: #070707;
  background: linear-gradient(135deg, var(--gold), var(--white));
  font-size: 2.1rem;
  font-weight: 950;
  box-shadow: 0 14px 44px rgba(255, 185, 0, 0.28);
}

.mock-mark-wrap {
  position: relative;
  display: grid;
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 199, 71, 0.32);
  border-top-color: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.orbit-two {
  inset: 12px;
  border-color: rgba(217, 220, 226, 0.24);
  border-right-color: var(--gold);
}

.mock-lines {
  flex-direction: column;
  align-items: stretch;
  margin-top: 34px;
}

.mock-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.mock-bento span {
  min-height: 72px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--silver);
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 199, 71, 0.13), transparent 7rem),
    rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 850;
}

.mock-lines span {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.52), rgba(247, 199, 71, 0.16));
}

.mock-lines span:nth-child(2) {
  width: 76%;
}

.mock-lines span:nth-child(3) {
  width: 48%;
}

.rocket-trail {
  position: absolute;
  right: 21%;
  bottom: 64px;
  width: 390px;
  height: 126px;
  border-bottom: 2px solid rgba(247, 199, 71, 0.78);
  border-left: 2px solid rgba(217, 220, 226, 0.5);
  transform: skewX(-34deg) rotate(-18deg);
  box-shadow: 0 16px 50px rgba(247, 199, 71, 0.18);
}

.silver-arc {
  position: absolute;
  right: 4%;
  bottom: 16px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(217, 220, 226, 0.18);
  border-left-color: transparent;
  border-bottom-color: rgba(247, 199, 71, 0.38);
  border-radius: 50%;
  transform-origin: center;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.intro-strip p {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 118px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--silver);
  font-size: clamp(1.25rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    background 240ms ease;
}

.intro-strip p::after {
  position: absolute;
  right: 16%;
  bottom: 18px;
  left: 16%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 380ms ease;
}

.intro-strip p:hover {
  color: var(--white);
  background: rgba(247, 199, 71, 0.055);
}

.intro-strip p:hover::after {
  transform: scaleX(1);
}

.intro-strip p:last-child {
  border-right: 0;
  color: var(--gold);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: end;
  margin-bottom: 54px;
}

.section-heading.compact {
  grid-template-columns: minmax(0, 760px);
}

.section-heading h2,
.proof-panel h2,
.contact-copy h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.6vw, 6.2rem);
  line-height: 0.92;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.section-heading p,
.proof-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 58px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.service-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: scaleY(0);
  transition: transform 300ms ease;
}

.service-item:hover {
  padding-right: 22px;
  padding-left: 22px;
  border-color: rgba(247, 199, 71, 0.4);
  background: linear-gradient(90deg, rgba(247, 199, 71, 0.08), transparent 72%);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item:hover .service-index {
  transform: translateX(6px);
}

.service-index {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 950;
  transition: transform 260ms ease;
}

.service-item h3 {
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  line-height: 1;
}

.service-item p {
  max-width: 780px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.process {
  position: relative;
}

.process::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(217, 220, 226, 0.11), rgba(255, 255, 255, 0.025)),
    linear-gradient(90deg, transparent, rgba(247, 199, 71, 0.05), transparent);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline::after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), var(--white), transparent);
  transform: scaleX(var(--timeline-progress, 0));
  transform-origin: left center;
  box-shadow: 0 0 20px rgba(247, 199, 71, 0.5);
}

.timeline article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  transition:
    background 260ms ease,
    transform 260ms ease;
}

.timeline article::after {
  position: absolute;
  inset: auto -28% -46% 16%;
  height: 68%;
  content: "";
  border-top: 1px solid rgba(247, 199, 71, 0.55);
  transform: rotate(-13deg) translateX(-18%);
  transition: transform 360ms ease;
}

.timeline article:hover {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(247, 199, 71, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  transform: translateY(-8px);
}

.timeline article:hover::after {
  transform: rotate(-13deg) translateX(12%);
}

.timeline span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 950;
}

.timeline h3 {
  margin-top: 72px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1;
}

.timeline p {
  margin-top: 16px;
  color: var(--muted);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.7fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(247, 199, 71, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(125deg, rgba(247, 199, 71, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
  transition:
    border-color 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.proof-panel:hover {
  border-color: rgba(247, 199, 71, 0.5);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.66),
    0 0 70px rgba(247, 199, 71, 0.08);
  transform: translateY(-6px);
}

.proof-panel p {
  max-width: 620px;
  margin-top: 22px;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.proof-grid div:hover {
  border-color: rgba(247, 199, 71, 0.5);
  background: rgba(247, 199, 71, 0.07);
  transform: translateX(-8px);
}

.proof-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  min-height: 580px;
  padding-top: 62px;
}

.contact-copy {
  position: relative;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 22px;
}

.mail-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 900;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.contact-modal {
  width: min(calc(100% - 32px), 820px);
  max-height: min(90svh, 860px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(247, 199, 71, 0.42);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(247, 199, 71, 0.08), transparent 34%),
    rgba(7, 7, 7, 0.98);
  box-shadow:
    0 42px 140px rgba(0, 0, 0, 0.82),
    0 0 64px rgba(247, 199, 71, 0.11);
}

.hero-trust {
  margin-top: 18px;
  color: var(--silver-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing {
  position: relative;
}

.pricing::before,
.care::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(247, 199, 71, 0.035), transparent 42%, rgba(255, 255, 255, 0.02));
}

.package-selector {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin: -16px 0 30px;
  padding: 24px;
  border: 1px solid rgba(247, 199, 71, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(247, 199, 71, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.package-wheel {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 300px);
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 42%),
    linear-gradient(180deg, #121212, #050505);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.52),
    inset 0 0 20px rgba(0, 0, 0, 0.78);
}

.package-wheel::before {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 6;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 14px rgba(247, 199, 71, 0.92),
    0 0 34px rgba(247, 199, 71, 0.7);
  transform: translateY(-50%);
}

.package-wheel input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.package-wheel-ring {
  position: absolute;
  top: 50%;
  right: -152px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.055) 0deg 9deg, rgba(247, 199, 71, 0.08) 9deg 18deg),
    radial-gradient(circle, transparent 0 38%, rgba(247, 199, 71, 0.14) 39%, transparent 40%);
  opacity: 0.68;
  transform: translateY(-50%);
}

.package-wheel-glass {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 43%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.06) 16.5%, transparent 17%);
}

.package-wheel-label {
  position: absolute;
  top: 50%;
  left: 42px;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 7px 9px;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: 0.38;
  filter: blur(0.7px);
  transform: translateY(calc(-50% + var(--slot-y, 0px)));
  transform-origin: 270px center;
  transition:
    color 260ms ease,
    filter 320ms ease,
    opacity 320ms ease,
    transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
}

.package-wheel-label:hover {
  opacity: 0.72;
  filter: blur(0);
}

.package-wheel-label span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.package-wheel-label strong {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.package-wheel-label small {
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
}

.package-wheel input:focus-visible + .package-wheel-label {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.package-wheel input:checked + .package-wheel-label {
  z-index: 4;
  opacity: 1;
  filter: blur(0);
  background: rgba(247, 199, 71, 0.075);
  transform: translateY(calc(-50% + var(--slot-y, 0px))) translateX(10px);
}

.package-wheel input:checked + .package-wheel-label strong {
  text-shadow: 0 0 22px rgba(247, 199, 71, 0.22);
}

.package-selector-copy {
  max-width: 640px;
}

.package-selector-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.package-selector-copy p {
  margin-top: 10px;
  color: var(--silver);
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 850;
  line-height: 1.16;
}

.consult-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: 0 0 20px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(247, 199, 71, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 20%, rgba(247, 199, 71, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    rgba(7, 7, 7, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.consult-card::after {
  position: absolute;
  inset: auto -16% -55% 18%;
  height: 84%;
  pointer-events: none;
  content: "";
  border-top: 1px solid rgba(247, 199, 71, 0.45);
  transform: rotate(-10deg);
}

.consult-card span,
.module-builder-copy span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consult-card h3,
.module-builder-copy h3 {
  max-width: 820px;
  margin-top: 12px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.consult-card p,
.module-builder-copy p,
.module-grid p {
  color: var(--muted);
}

.consult-card p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.08rem;
}

.consult-price {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.consult-price small {
  color: var(--silver-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.consult-price strong {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.8;
}

.pricing:has(#package-preview-launch:checked) .price-card[data-plan="launch"],
.pricing:has(#package-preview-business:checked) .price-card[data-plan="business"],
.pricing:has(#package-preview-growth:checked) .price-card[data-plan="growth"] {
  border-color: rgba(247, 199, 71, 0.72);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.5),
    0 0 58px rgba(247, 199, 71, 0.1);
  transform: translateY(-6px);
}

.pricing-grid,
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.module-builder {
  display: grid;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(247, 199, 71, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.module-builder > .button {
  justify-self: start;
}

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

.module-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 199, 71, 0.12), transparent 9rem),
    rgba(0, 0, 0, 0.34);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.module-grid article::after {
  position: absolute;
  right: -34%;
  bottom: -52%;
  width: 82%;
  height: 82%;
  content: "";
  border: 1px solid rgba(247, 199, 71, 0.2);
  border-radius: 50%;
}

.module-grid article:hover {
  border-color: rgba(247, 199, 71, 0.55);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 199, 71, 0.18), transparent 9rem),
    rgba(247, 199, 71, 0.045);
  transform: translateY(-5px);
}

.module-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.module-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.module-grid p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 0.96rem;
}

.price-card,
.care-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 45%),
    rgba(7, 7, 7, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.price-card:hover,
.care-card:hover {
  border-color: rgba(247, 199, 71, 0.54);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
  transform: translateY(-7px);
}

.price-card.is-featured,
.care-card.is-featured {
  border-color: rgba(247, 199, 71, 0.62);
  background:
    linear-gradient(145deg, rgba(247, 199, 71, 0.16), transparent 46%),
    rgba(10, 10, 10, 0.88);
}

.card-badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 11px;
  color: #080808;
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.price-top span,
.care-card > span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-top p {
  min-height: 52px;
  margin-top: 10px;
  color: var(--muted);
}

.price {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 950;
  line-height: 1;
}

.price small {
  color: var(--silver-dark);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
}

.price-card ul,
.care-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.price-card li,
.care-card li {
  position: relative;
  padding-left: 22px;
  color: var(--silver);
}

.price-card li::before,
.care-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 12px rgba(247, 199, 71, 0.62);
}

.price-card .button,
.care-select {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(247, 199, 71, 0.2);
  background: rgba(247, 199, 71, 0.05);
}

.pricing-note strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.pricing-note p,
.care-terms {
  color: var(--muted);
}

.care {
  position: relative;
}

.care-price {
  margin-top: 18px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
}

.care-price small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.care-select {
  min-height: 48px;
  border: 1px solid rgba(247, 199, 71, 0.45);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(247, 199, 71, 0.05);
  cursor: pointer;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.care-select:hover {
  color: #080808;
  background: var(--gold);
  transform: translateY(-2px);
}

.care-terms {
  max-width: 900px;
  margin-top: 24px;
  font-size: 0.92rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  color: var(--gold);
  content: "+";
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 860px;
  padding: 0 52px 26px 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.contact-form label > span {
  color: var(--silver-dark);
  font-size: 0.72rem;
}

.contact-form .consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.contact-form .consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--gold);
}

.contact-form .consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-note {
  color: var(--silver-dark);
  font-size: 0.8rem;
  text-align: center;
}

.form-status.is-error {
  color: #ff9b89;
}

.form-button[disabled] {
  cursor: wait;
  filter: saturate(0.5);
  opacity: 0.72;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
  color: var(--white);
}

.legal-shell {
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: 70px 0 110px;
}

.legal-shell > a {
  color: var(--gold);
  font-weight: 900;
}

.legal-shell h1 {
  margin-top: 46px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-meta {
  margin-top: 18px;
  color: var(--silver-dark);
}

.legal-content {
  display: grid;
  gap: 34px;
  margin-top: 52px;
}

.legal-content section {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.legal-content h3 {
  margin-top: 22px;
  font-size: 1.15rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  max-width: 780px;
  margin-top: 12px;
  color: var(--muted);
  font-style: normal;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .pricing-grid,
  .care-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .consult-card {
    grid-template-columns: 1fr;
  }

  .price-top p {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .pricing-note,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .price-card,
  .care-card {
    padding: 24px;
  }

  .legal-shell {
    width: min(calc(100% - 24px), 900px);
    padding-top: 38px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* Offer selection and focused request flows. */
.module-instruction {
  max-width: 760px;
  color: var(--silver);
  font-weight: 750;
}

.module-grid .module-option {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 199, 71, 0.12), transparent 9rem),
    rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.module-option::after {
  position: absolute;
  right: -34%;
  bottom: -52%;
  width: 82%;
  height: 82%;
  content: "";
  border: 1px solid rgba(247, 199, 71, 0.2);
  border-radius: 50%;
}

.module-option:hover,
.module-option:has(input:focus-visible) {
  border-color: rgba(247, 199, 71, 0.62);
  transform: translateY(-5px);
}

.module-option:has(input:checked) {
  border-color: var(--gold);
  background:
    radial-gradient(circle at 80% 0%, rgba(247, 199, 71, 0.24), transparent 9rem),
    rgba(247, 199, 71, 0.1);
  box-shadow: inset 0 0 0 1px rgba(247, 199, 71, 0.24), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.module-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.module-option em {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--silver);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.module-option:has(input:checked) em {
  border-color: var(--gold);
  color: #080808;
  background: var(--gold);
}

.module-option:has(input:checked) em::before {
  content: "✓ ";
}

.module-request[disabled] {
  cursor: not-allowed;
  filter: saturate(0.35);
  opacity: 0.48;
}

.request-summary {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(247, 199, 71, 0.44);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(247, 199, 71, 0.15), rgba(255, 255, 255, 0.035));
}

.request-summary[hidden] {
  display: none;
}

.request-summary span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-summary strong {
  font-size: 1.2rem;
}

.request-summary p,
.consult-modal .contact-modal-heading p {
  color: var(--muted);
}

.consult-modal .contact-modal-heading p {
  max-width: 680px;
  margin-top: 12px;
}

[data-package-field].is-locked {
  display: none;
}

.care-terms strong {
  color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr) auto;
  gap: clamp(24px, 5vw, 68px);
  align-items: end;
  margin-bottom: 24px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(247, 199, 71, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 20%, rgba(247, 199, 71, 0.16), transparent 18rem),
    rgba(8, 8, 8, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.footer-main {
  display: grid;
  gap: 20px;
}

.site-footer .footer-main p {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  text-transform: none;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact span {
  color: var(--silver-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.site-footer nav {
  align-content: end;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-footer {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    padding: 24px;
  }

  .site-footer nav {
    grid-column: auto;
  }
}

.contact-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.contact-modal[open] {
  animation: modal-enter 320ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-modal-shell {
  position: relative;
  padding: 30px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(8deg);
}

.contact-modal-heading {
  padding-right: 58px;
  margin-bottom: 24px;
}

.contact-modal-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-modal-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.contact-modal .contact-form {
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-modal .contact-form::before {
  display: none;
}

.contact-form::before {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -65%;
  width: 34%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(247, 199, 71, 0.1), transparent);
  transform: skewX(-18deg);
}

.reveal-pending {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-pending.reveal-from-left {
  transform: translate3d(-42px, 20px, 0);
}

.reveal-pending.reveal-from-right {
  transform: translate3d(42px, 20px, 0);
}

.reveal-pending.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  outline: none;
  color: var(--white);
  background: rgba(0, 0, 0, 0.42);
  padding: 14px;
  font-size: 1rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(247, 199, 71, 0.74);
  box-shadow: 0 0 0 3px rgba(247, 199, 71, 0.13);
}

.form-button {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-status {
  min-height: 24px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  color: var(--silver);
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-enter 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-copy > * {
    animation: hero-enter 780ms cubic-bezier(0.16, 0.8, 0.24, 1) both;
  }

  .hero-logo {
    animation:
      hero-enter 780ms cubic-bezier(0.16, 0.8, 0.24, 1) both,
      logo-breathe 4.8s ease-in-out 1.2s infinite;
  }

  .hero-bg::before {
    animation: hero-aurora 9s ease-in-out infinite alternate;
  }

  .hero-bg::after {
    animation: hero-spotlight 7.5s ease-in-out infinite alternate;
  }

  .hero-copy::before {
    animation: hero-glow-drift 8s ease-in-out infinite alternate;
  }

  .hero-copy::after {
    animation: hero-line-sweep 4.8s ease-in-out infinite;
  }

  .hero-copy h1 {
    animation:
      hero-enter 780ms 90ms cubic-bezier(0.16, 0.8, 0.24, 1) both,
      title-shine 6s linear 1.1s infinite;
    background-size: 220% auto;
  }

  .hero-kicker {
    animation-delay: 180ms;
  }

  .hero-text {
    animation-delay: 270ms;
  }

  .hero-actions {
    animation-delay: 360ms;
  }

  .launch-stage {
    animation: stage-enter 960ms 180ms cubic-bezier(0.16, 0.8, 0.24, 1) both;
  }

  .ray-a,
  .ray-b,
  .ray-c,
  .rocket-trail {
    animation: pulse-trail 3.6s ease-in-out infinite;
  }

  .launch-card {
    animation: float-card 4.8s ease-in-out infinite;
  }

  .launch-stage.is-launching .launch-card {
    animation: site-unfold 5.4s cubic-bezier(0.18, 0.78, 0.2, 1) both;
  }

  .launch-stage.is-launching .hero-rocket {
    animation: rocket-liftoff 5.2s cubic-bezier(0.16, 0.74, 0.18, 1) both;
  }

  .launch-stage.is-launching .rocket-flame {
    animation: flame-ignite 5.2s ease-in-out both;
  }

  .launch-stage.is-launching .rocket-plume {
    animation: plume-expel 2.3s ease-out both;
  }

  .launch-stage.is-launching .launch-burst {
    animation: burst-ignite 5.4s ease-out both;
  }

  .launch-stage.is-launching .launch-ring {
    animation: ring-ignite 5.4s cubic-bezier(0.2, 0.78, 0.2, 1) both;
  }

  .launch-stage.is-launching .launch-sparks span {
    animation: launch-spark 1.7s 720ms ease-out both;
  }

  .launch-stage.is-launching .launch-sparks span:nth-child(2) {
    animation-delay: 820ms;
  }

  .launch-stage.is-launching .launch-sparks span:nth-child(3) {
    animation-delay: 920ms;
  }

  .launch-stage.is-launching .launch-sparks span:nth-child(4) {
    animation-delay: 1.02s;
  }

  .launch-stage.is-launching .launch-sparks span:nth-child(5) {
    animation-delay: 1.12s;
  }

  .launch-stage.is-launching .launch-sparks span:nth-child(6) {
    animation-delay: 1.22s;
  }

  .card-scan {
    animation: card-scan 3.7s ease-in-out 700ms infinite;
  }

  .speed-lines span {
    animation: speed-line 3.2s cubic-bezier(0.2, 0.7, 0.3, 1) infinite;
  }

  .speed-lines span:nth-child(2) {
    animation-delay: 480ms;
  }

  .speed-lines span:nth-child(3) {
    animation-delay: 1.05s;
  }

  .speed-lines span:nth-child(4) {
    animation-delay: 1.52s;
  }

  .orbit-one {
    animation: orbit-spin 5.6s linear infinite;
  }

  .orbit-two {
    animation: orbit-spin-reverse 3.8s linear infinite;
  }

  .mock-mark {
    animation: mark-pulse 2.8s ease-in-out infinite;
  }

  .package-wheel-ring {
    animation: package-wheel-spin 14s linear infinite;
  }

  .silver-arc {
    animation: arc-spin 18s linear infinite;
  }

  .intro-strip p:last-child {
    animation: gold-pulse 3.4s ease-in-out infinite;
  }

  .contact-form::before {
    animation: form-scan 5.6s ease-in-out infinite;
  }

  .form-status.is-live {
    animation: status-pop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  @keyframes header-enter {
    from {
      opacity: 0;
      transform: translateY(-22px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translate3d(0, 26px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  @keyframes stage-enter {
    from {
      opacity: 0;
      transform: translate3d(0, 46px, 0) scale(0.98);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  @keyframes logo-breathe {
    0%,
    100% {
      filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 22px rgba(247, 199, 71, 0.28))
        drop-shadow(0 18px 34px rgba(0, 0, 0, 0.48));
    }

    50% {
      filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 36px rgba(247, 199, 71, 0.58))
        drop-shadow(0 24px 48px rgba(0, 0, 0, 0.58));
    }
  }

  @keyframes hero-aurora {
    from {
      opacity: 0.38;
      transform: translate3d(-2%, -2%, 0) rotate(-3deg) scale(0.96);
    }

    to {
      opacity: 0.68;
      transform: translate3d(3%, 4%, 0) rotate(5deg) scale(1.06);
    }
  }

  @keyframes hero-spotlight {
    from {
      opacity: 0.36;
      transform: translate3d(-3%, 0, 0);
    }

    to {
      opacity: 0.78;
      transform: translate3d(3%, -2%, 0);
    }
  }

  @keyframes hero-glow-drift {
    from {
      transform: translateX(-52%) scale(0.96);
    }

    to {
      transform: translateX(-48%) scale(1.04);
    }
  }

  @keyframes hero-line-sweep {
    0%,
    100% {
      opacity: 0.18;
      transform: translateX(-55%) rotate(-10deg) scaleX(0.62);
    }

    50% {
      opacity: 0.9;
      transform: translateX(-45%) rotate(-10deg) scaleX(1);
    }
  }

  @keyframes title-shine {
    0% {
      background-position: 0% 50%;
    }

    100% {
      background-position: 220% 50%;
    }
  }

  @keyframes package-wheel-spin {
    from {
      transform: translateY(-50%) rotate(0deg);
    }

    to {
      transform: translateY(-50%) rotate(360deg);
    }
  }

  @keyframes pulse-trail {
    0%,
    100% {
      opacity: 0.32;
      transform: rotate(-18deg) translateX(-12px);
    }

    50% {
      opacity: 0.92;
      transform: rotate(-18deg) translateX(18px);
    }
  }

  @keyframes float-card {
    0%,
    100% {
      translate: 0 0;
    }

    50% {
      translate: 0 -18px;
    }
  }

  @keyframes rocket-liftoff {
    0% {
      opacity: 0;
      transform: translate3d(0, 122px, 0) scale(0.8);
    }

    7% {
      opacity: 1;
    }

    22% {
      opacity: 1;
      transform: translate3d(0, 82px, 0) scale(0.84);
    }

    52% {
      opacity: 1;
      transform: translate3d(-18px, -86px, 0) scale(0.92);
    }

    82% {
      opacity: 1;
      transform: translate3d(-48px, -470px, 0) scale(0.68);
    }

    100% {
      opacity: 0;
      transform: translate3d(-64px, -650px, 0) scale(0.54);
    }
  }

  @keyframes flame-ignite {
    0%,
    5% {
      opacity: 0;
      transform: translateX(-50%) scaleY(0.16);
    }

    18% {
      opacity: 1;
      transform: translateX(-50%) scaleY(0.7);
    }

    42% {
      opacity: 1;
      transform: translateX(-50%) scaleY(1.08);
    }

    82% {
      opacity: 0.9;
      transform: translateX(-50%) scaleY(0.84);
    }

    100% {
      opacity: 0;
      transform: translateX(-50%) scaleY(0.38);
    }
  }

  @keyframes plume-expel {
    0%,
    12% {
      opacity: 0;
      transform: translateX(-50%) scale(0.46);
    }

    48% {
      opacity: 0.82;
      transform: translateX(-50%) scale(1.05);
    }

    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(40px) scale(1.48);
    }
  }

  @keyframes site-unfold {
    0%,
    36% {
      clip-path: inset(0 0 0 0 round var(--radius));
      filter: brightness(0.9) blur(0);
      opacity: 1;
      transform: translate3d(20px, 6px, 0) rotateY(-16deg) scale(0.96);
    }

    50% {
      filter: brightness(1.55) blur(0);
      opacity: 1;
    }

    72% {
      clip-path: inset(0 0 0 0 round var(--radius));
      filter: brightness(1.08);
      opacity: 1;
    }

    100% {
      clip-path: inset(0 0 0 0 round var(--radius));
      filter: brightness(1);
      opacity: 1;
      transform: var(--card-rest-transform);
    }
  }

  @keyframes burst-ignite {
    0%,
    30% {
      opacity: 0;
      transform: rotate(-8deg) scale(0.72);
    }

    58% {
      opacity: 0.72;
    }

    100% {
      opacity: 0.12;
      transform: rotate(7deg) scale(1.08);
    }
  }

  @keyframes ring-ignite {
    0%,
    30% {
      opacity: 0;
      transform: rotate(-32deg) scale(0.62);
    }

    64% {
      opacity: 1;
    }

    100% {
      opacity: 0.46;
      transform: rotate(-18deg) scale(1);
    }
  }

  @keyframes launch-spark {
    0% {
      opacity: 0;
      transform: translate3d(0, 0, 0) rotate(18deg) scaleY(0.4);
    }

    25% {
      opacity: 1;
    }

    100% {
      opacity: 0;
      transform: translate3d(34px, -150px, 0) rotate(35deg) scaleY(1);
    }
  }

  @keyframes card-scan {
    0%,
    18% {
      opacity: 0;
      transform: translateY(-110%);
    }

    42% {
      opacity: 1;
    }

    68%,
    100% {
      opacity: 0;
      transform: translateY(460%);
    }
  }

  @keyframes speed-line {
    0%,
    22% {
      opacity: 0;
      transform: rotate(-18deg) translateX(28%);
    }

    44% {
      opacity: 0.8;
    }

    78%,
    100% {
      opacity: 0;
      transform: rotate(-18deg) translateX(-118%);
    }
  }

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

  @keyframes orbit-spin-reverse {
    to {
      transform: rotate(-360deg);
    }
  }

  @keyframes mark-pulse {
    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 14px 44px rgba(255, 185, 0, 0.24);
    }

    50% {
      transform: scale(1.06);
      box-shadow: 0 20px 58px rgba(255, 185, 0, 0.42);
    }
  }

  @keyframes arc-spin {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes gold-pulse {
    0%,
    100% {
      text-shadow: 0 0 0 transparent;
    }

    50% {
      text-shadow: 0 0 28px rgba(247, 199, 71, 0.42);
    }
  }

  @keyframes form-scan {
    0%,
    18% {
      transform: skewX(-18deg) translateX(0);
    }

    54%,
    100% {
      transform: skewX(-18deg) translateX(540%);
    }
  }

  @keyframes status-pop {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes modal-enter {
    from {
      opacity: 0;
      transform: translateY(22px) scale(0.97);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .brand {
    width: 170px;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-top: 8px;
  }

  .hero,
  .section-heading,
  .proof-panel,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .launch-stage {
    min-height: 420px;
  }

  .launch-card {
    left: 0;
    right: auto;
  }

  .package-selector {
    grid-template-columns: 1fr;
  }

  .package-wheel {
    width: min(100%, 360px);
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: 230px;
  }

  .timeline h3 {
    margin-top: 48px;
  }

}

@media (max-width: 680px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
  }

  .header-cta {
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  .brand {
    width: 154px;
    min-height: 48px;
    padding: 6px 8px;
  }

  .hero,
  .section,
  .intro-strip,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .hero {
    padding-top: 42px;
  }

  .hero-logo {
    width: min(82%, 300px);
    margin-bottom: 18px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.35rem);
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 12px;
    font-size: 0.68rem;
  }

  .launch-stage {
    min-height: 0;
    padding: 24px 0 20px;
  }

  .launch-card {
    --card-rest-transform: none;
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .hero-rocket {
    bottom: 0;
    left: 5%;
    width: 72px;
  }

  .rocket-flame {
    height: 132px;
  }

  .rocket-plume {
    width: 138px;
  }

  .launch-ring {
    top: 42px;
    right: -18px;
    width: 104%;
    height: 76%;
  }

  .launch-replay {
    top: 24px;
    right: 8px;
  }

  .reveal-pending.reveal-from-left,
  .reveal-pending.reveal-from-right {
    transform: translate3d(0, 34px, 0);
  }

  .mock-hero {
    display: grid;
    padding: 22px;
  }

  .mock-mark {
    width: 74px;
    height: 74px;
    font-size: 1.6rem;
  }

  .rocket-trail,
  .silver-arc {
    opacity: 0.45;
  }

  .silver-arc {
    right: 0;
    width: 300px;
    height: 300px;
    animation: none;
    transform: none;
  }

  .intro-strip {
    grid-template-columns: 1fr;
    margin-top: 10px;
  }

  .intro-strip p {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip p:last-child {
    border-bottom: 0;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .package-selector {
    margin-top: -20px;
    padding: 18px;
  }

  .consult-card,
  .module-builder {
    padding: 22px;
  }

  .consult-card h3,
  .module-builder-copy h3 {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .module-builder > .button {
    justify-self: stretch;
  }

  .package-wheel {
    min-height: 210px;
  }

  .package-wheel-label {
    left: 34px;
    min-width: 170px;
    transform-origin: 235px center;
  }

  .package-selector-copy p {
    font-size: 1.05rem;
  }

  .proof-panel,
  .contact-form {
    padding: 22px;
  }

  .contact {
    min-height: 500px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .contact-modal-shell {
    padding: 22px;
  }

  .contact-modal .contact-form {
    padding: 0;
  }

  .site-footer {
    display: grid;
  }
}

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

  .scroll-progress {
    display: none;
  }

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

  .launch-card {
    translate: none;
    transform: none;
  }

  .launch-replay {
    display: none;
  }

  .reveal-pending,
  .reveal-pending.reveal-from-left,
  .reveal-pending.reveal-from-right {
    opacity: 1;
    transform: none;
  }
}

/* Voxr-inspired sales template: dark cinematic hero, floating product scene,
   then one calm, oversized package surface. SiteRocket colours stay intact. */
.site-header {
  width: min(calc(100% - 36px), 1240px);
  margin-top: 18px;
  padding: 10px 12px 10px 20px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
}

.brand {
  width: 168px;
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.brand img,
.site-footer img {
  filter: drop-shadow(0 0 16px rgba(247, 199, 71, 0.2));
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  min-height: calc(100svh - 88px);
  padding: clamp(24px, 2vw, 32px) 0 clamp(70px, 8vw, 110px);
}

.hero-copy {
  justify-items: start;
  max-width: 650px;
  margin: 0;
  text-align: left;
}

.hero-copy::before {
  top: -18%;
  left: -28%;
  width: 760px;
  height: 660px;
  background: radial-gradient(circle, rgba(247, 199, 71, 0.15), transparent 61%);
  filter: blur(24px);
  transform: none;
}

.hero-copy::after {
  display: none;
}

.hero-logo {
  width: min(280px, 54vw);
  margin: 0 0 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  filter: drop-shadow(0 0 20px rgba(247, 199, 71, 0.18));
}

.hero-kicker {
  max-width: 570px;
  margin-bottom: 20px;
  color: #f0c856;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
}

h1 {
  max-width: 720px;
  font-size: clamp(4.3rem, 6.8vw, 7rem);
  line-height: 0.88;
  text-align: left;
}

.hero-text {
  max-width: 610px;
  margin-top: 26px;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.hero-trust {
  text-align: left;
}

.launch-stage {
  width: 100%;
  min-height: 620px;
  margin: 0;
}

.launch-stage::before,
.launch-stage::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.launch-stage::before {
  inset: 7% -12% -5% 4%;
  border: 1px solid rgba(247, 199, 71, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 50%, rgba(247, 199, 71, 0.2), transparent 28%),
    radial-gradient(circle at 55% 56%, rgba(255, 255, 255, 0.09), transparent 48%);
  box-shadow: inset 0 0 80px rgba(247, 199, 71, 0.05), 0 0 80px rgba(247, 199, 71, 0.07);
  transform: rotate(-14deg);
}

.launch-stage::after {
  right: -12%;
  bottom: 3%;
  left: -8%;
  height: 42%;
  border-radius: 50%;
  background: linear-gradient(90deg, #17130a, #f7c747 46%, #fff0ad 52%, #211b0c 70%);
  filter: blur(1px) drop-shadow(0 0 30px rgba(247, 199, 71, 0.28));
  opacity: 0.34;
  transform: perspective(600px) rotateX(72deg) rotateZ(-8deg);
}

.launch-card {
  --card-rest-transform: translate3d(
      calc(-50% + var(--card-shift-x)),
      calc(var(--card-shift-y) + var(--card-scroll-y)),
      0
    )
    rotateY(calc(-8deg + var(--card-tilt-y))) rotateX(calc(4deg + var(--card-tilt-x))) rotateZ(-2deg);
  position: absolute;
  top: 104px;
  left: 50%;
  width: min(78%, 530px);
  margin: 0;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(28, 24, 15, 0.94), rgba(4, 4, 4, 0.98));
  box-shadow:
    0 54px 120px rgba(0, 0, 0, 0.72),
    0 0 90px rgba(247, 199, 71, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.25);
}

.stage-pill {
  position: absolute;
  z-index: 7;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #f8f4e9;
  background: rgba(16, 14, 9, 0.7);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  white-space: nowrap;
  animation: stage-float 5.8s ease-in-out infinite;
}

.stage-pill::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(247, 199, 71, 0.85);
  content: "";
}

.stage-pill-a {
  top: 10%;
  right: 5%;
}

.stage-pill-b {
  top: 43%;
  left: -2%;
  animation-delay: -1.9s;
}

.stage-pill-c {
  right: 0;
  bottom: 17%;
  animation-delay: -3.7s;
}

.launch-replay {
  top: auto;
  right: 8%;
  bottom: 7%;
}

.package-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(170px, 1fr));
  min-height: 260px;
  margin: -12px 0 34px;
  overflow: hidden;
  border-radius: 30px;
  color: #0a0a0a;
  background: #f4f2ec;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.5);
}

.package-showcase-intro,
.package-showcase > a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
}

.package-showcase-intro {
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 199, 71, 0.38), transparent 46%),
    #e8e6df;
}

.package-showcase-intro span,
.package-showcase small {
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-showcase-intro p {
  max-width: 260px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.package-showcase > a {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.package-showcase > a::after {
  position: absolute;
  right: 28px;
  bottom: 26px;
  font-size: 1.2rem;
  content: "↗";
}

.package-showcase > a:hover {
  z-index: 2;
  color: #fff;
  background: #0c0c0c;
  transform: translateY(-6px);
}

.package-showcase > a.is-recommended {
  background: linear-gradient(145deg, #ffe583, #f7b900);
}

.package-showcase strong {
  margin: auto 0 12px;
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.package-showcase > a > span {
  font-size: 0.9rem;
  font-weight: 850;
}

@keyframes stage-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: 28px;
  }

  .package-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .package-showcase > a:nth-of-type(2) {
    border-left: 0;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy h1,
  .hero-trust {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .launch-stage {
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 9px 9px 9px 14px;
  }

  .brand {
    width: 145px;
    min-height: 36px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    gap: 24px;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-logo {
    width: 192px;
    margin-bottom: 30px;
  }

  .hero-kicker {
    max-width: 360px;
  }

  h1 {
    font-size: clamp(3.3rem, 15vw, 4.15rem);
    text-align: center;
  }

  .hero-text {
    max-width: 390px;
  }

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

  .launch-stage {
    min-height: 420px;
    padding: 0;
  }

  .launch-card {
    top: 62px;
    left: 50%;
    width: 86%;
    transform: var(--card-rest-transform);
  }

  .stage-pill {
    padding: 8px 10px;
    font-size: 0.58rem;
  }

  .stage-pill-a { right: 0; }
  .stage-pill-b { left: 0; }
  .stage-pill-c { right: 1%; bottom: 7%; }

  .package-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .package-showcase-intro,
  .package-showcase > a {
    min-height: 152px;
    padding: 24px;
  }

  .package-showcase > a,
  .package-showcase > a:nth-of-type(2) {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-pill {
    animation: none;
  }
}

/* Feedback pass: the package surface now bridges the hero and the content. */
.hero-packages {
  z-index: 6;
  width: min(calc(100% - 32px), var(--max));
  margin: clamp(-82px, -6vw, -48px) auto clamp(32px, 4vw, 56px);
  scroll-margin-top: 110px;
  isolation: isolate;
}

.hero-packages::before,
.hero-packages::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-packages::before {
  inset: -1px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: inherit;
  opacity: 0.46;
  mix-blend-mode: soft-light;
}

.hero-packages::after {
  top: -35%;
  bottom: -35%;
  left: -18%;
  z-index: 4;
  width: 14%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.66), transparent);
  filter: blur(10px);
  opacity: 0.55;
  transform: skewX(-18deg) translateX(-180%);
  animation: package-light-run 6.8s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.hero-packages .package-showcase-intro,
.hero-packages > a {
  z-index: 2;
}

.hero-packages > a:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.hero-packages.reveal-pending .package-showcase-intro,
.hero-packages.reveal-pending > a {
  opacity: 0;
  transform: translateY(32px);
}

.hero-packages.reveal-pending.is-visible .package-showcase-intro,
.hero-packages.reveal-pending.is-visible > a {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 650ms cubic-bezier(0.16, 0.8, 0.24, 1),
    transform 650ms cubic-bezier(0.16, 0.8, 0.24, 1),
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.hero-packages.reveal-pending.is-visible > a:nth-of-type(1) { transition-delay: 90ms, 90ms, 0s, 0s, 0s; }
.hero-packages.reveal-pending.is-visible > a:nth-of-type(2) { transition-delay: 180ms, 180ms, 0s, 0s, 0s; }
.hero-packages.reveal-pending.is-visible > a:nth-of-type(3) { transition-delay: 270ms, 270ms, 0s, 0s, 0s; }

.services .section-heading,
.pricing .section-heading {
  grid-template-columns: minmax(0, 860px);
}

.services {
  padding-top: clamp(28px, 4vw, 52px);
}

.pricing .section-heading {
  margin-bottom: 34px;
}

@keyframes package-light-run {
  0%, 54% { transform: skewX(-18deg) translateX(-180%); }
  72%, 100% { transform: skewX(-18deg) translateX(980%); }
}

@media (max-width: 680px) {
  .hero-packages {
    width: calc(100% - 24px);
    margin: -30px auto 72px;
    scroll-margin-top: 84px;
  }

  .hero-packages > a:hover {
    transform: none;
  }
}

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

  .hero-packages.reveal-pending .package-showcase-intro,
  .hero-packages.reveal-pending > a {
    opacity: 1;
    transform: none;
  }
}

/* SiteRocket wordmark: exact live text plus the established rocket mark. */
.brand {
  display: inline-flex;
  width: auto;
  min-width: 204px;
  min-height: 44px;
  justify-content: flex-start;
  gap: 10px;
}

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  overflow: visible;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img,
.site-footer .brand-mark img {
  width: 46px;
  max-width: none;
  filter: none;
  transform: scale(1.2);
}

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

.brand-name {
  color: var(--white);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.brand-name strong {
  color: var(--gold);
  font-weight: 900;
}

.brand-copy small {
  color: var(--silver-dark);
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand {
  min-width: 204px;
}

@media (max-width: 680px) {
  .brand {
    width: auto;
    min-width: 0;
    min-height: 38px;
    gap: 8px;
  }

  .brand-mark {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .brand-mark img,
  .site-footer .brand-mark img {
    width: 40px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-copy small {
    font-size: 0.34rem;
    letter-spacing: 0.1em;
  }
}

/* Final footer polish: compact close, clearer action, lighter mobile rhythm. */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.7fr);
  grid-template-areas:
    "main contact"
    "nav nav";
  align-items: end;
  gap: clamp(22px, 4vw, 54px);
  width: min(calc(100% - 36px), var(--max));
  margin: clamp(48px, 8vw, 96px) auto 24px;
  padding: clamp(22px, 3.6vw, 38px);
  border: 1px solid rgba(247, 199, 71, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 199, 71, 0.13), transparent 17rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(5, 5, 5, 0.82);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px rgba(255, 255, 255, 0.08);
  color: var(--silver);
}

.footer-main {
  grid-area: main;
  display: grid;
  gap: 16px;
}

.site-footer .footer-main p {
  max-width: 560px;
  color: rgba(237, 238, 241, 0.76);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 700;
  line-height: 1.55;
  text-transform: none;
}

.footer-contact {
  grid-area: contact;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-contact span {
  color: var(--silver-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #090909 !important;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(247, 199, 71, 0.24);
}

.footer-mail {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav a:hover {
  border-color: rgba(247, 199, 71, 0.38);
  color: var(--gold);
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "contact"
      "nav";
    width: calc(100% - 28px);
    margin-top: 42px;
    padding: 20px;
    border-radius: 24px;
    gap: 18px;
  }

  .footer-contact {
    justify-items: stretch;
  }

  .footer-contact span,
  .footer-mail {
    text-align: left;
  }

  .footer-button {
    width: 100%;
  }

  .site-footer nav {
    justify-content: flex-start;
    padding-top: 16px;
  }
}

@media (max-width: 430px) {
  .site-footer {
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 22px;
  }

  .site-footer .footer-main p {
    font-size: 0.92rem;
  }

  .site-footer nav a {
    flex: 1 1 auto;
  }
}
