:root {
  --black: #050505;
  --ink: #111111;
  --muted: #616161;
  --line: #dfdfd7;
  --paper: #f6f5ef;
  --white: #ffffff;
  --acid: #d8ff3f;
  --mint: #00d7b0;
  --amber: #ffb000;
  --shadow: 0 28px 90px rgb(5 5 5 / 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 180px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir Next, Helvetica Neue, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

body::selection {
  background: var(--acid);
  color: var(--black);
}

.scroll-beam {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--mint), var(--white));
  box-shadow: 0 0 22px rgb(216 255 63 / 0.58);
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transform: translateX(-50%);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 8px;
  background: rgb(5 5 5 / 0.72);
  box-shadow: 0 18px 60px rgb(0 0 0 / 0.22);
  padding: 10px 12px 10px 14px;
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgb(5 5 5 / 0.9);
  border-color: rgb(255 255 255 / 0.24);
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

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

.brand strong {
  font-size: 18px;
  letter-spacing: 2px;
}

.brand small {
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
}

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

.nav a,
.header-cta {
  border-radius: 8px;
  padding: 12px 13px;
  color: rgb(255 255 255 / 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgb(255 255 255 / 0.08);
  color: var(--white);
}

.header-cta {
  background: var(--white);
  color: var(--black);
}

.header-cta:hover {
  background: var(--acid);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgb(5 5 5 / 0.98) 0%, rgb(5 5 5 / 0.78) 42%, rgb(5 5 5 / 0.48) 100%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 92px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -20vh;
  width: 72vw;
  height: 52vh;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 38%, rgb(216 255 63 / 0.2) 38% 41%, transparent 41%),
    linear-gradient(10deg, transparent 0 52%, rgb(0 215 176 / 0.18) 52% 55%, transparent 55%);
  transform: skewY(-8deg);
}

.hero-ticker {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  display: flex;
  width: max-content;
  gap: 18px;
  animation: ticker 26s linear infinite;
  color: rgb(255 255 255 / 0.68);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-ticker span {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.045);
  padding: 11px 16px;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 94vh;
  align-content: center;
  gap: 24px;
  margin: 0 auto;
  padding: 128px 0 112px;
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.94;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.42;
}

.hero-copy strong {
  color: var(--white);
}

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

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

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0 36%, rgb(255 255 255 / 0.45) 48%, transparent 60% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  background: var(--acid);
  color: var(--black);
}

.button-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgb(255 255 255 / 0.22);
  background: rgb(255 255 255 / 0.07);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.12);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgb(216 255 63 / 0.36);
  background: rgb(216 255 63 / 0.08);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--acid);
  background: rgb(216 255 63 / 0.16);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 170px));
  gap: 10px;
  margin-top: 8px;
}

.hero-stats div {
  min-height: 98px;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.055);
  padding: 17px;
  backdrop-filter: blur(12px);
}

.hero-stats span {
  display: block;
  color: var(--acid);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.hero-stats small {
  display: block;
  margin-top: 8px;
  color: rgb(255 255 255 / 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.hero-device {
  position: absolute;
  right: max(38px, calc((100vw - 1180px) / 2));
  bottom: 112px;
  display: grid;
  width: min(360px, 28vw);
  min-width: 280px;
  min-height: 520px;
  align-content: start;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.14), rgb(255 255 255 / 0.055));
  box-shadow: 0 42px 130px rgb(0 0 0 / 0.45);
  padding: 14px;
  transform: perspective(900px) rotateX(8deg) rotateY(-12deg);
  transform-style: preserve-3d;
  backdrop-filter: blur(18px);
}

.device-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 13px;
}

.device-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.36);
}

.device-screen {
  position: relative;
  overflow: hidden;
  min-height: 454px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgb(216 255 63 / 0.94), rgb(255 255 255 / 0.96) 47%, rgb(0 215 176 / 0.82));
  color: var(--black);
  padding: 34px 28px;
}

.device-screen::before {
  position: absolute;
  inset: -70px -110px auto auto;
  width: 220px;
  height: 220px;
  content: "";
  border: 22px solid rgb(5 5 5 / 0.13);
  transform: rotate(19deg);
}

.device-screen p {
  margin-bottom: 58px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.device-screen strong {
  display: block;
  font-size: 72px;
  line-height: 0.9;
}

.device-screen small {
  font-weight: 900;
}

.signal-bars {
  display: flex;
  height: 50px;
  align-items: end;
  gap: 7px;
  margin: 34px 0;
}

.signal-bars i {
  display: block;
  width: 18px;
  border-radius: 4px;
  background: var(--black);
  animation: barPulse 1.3s ease-in-out infinite;
}

.signal-bars i:nth-child(1) {
  height: 18px;
}

.signal-bars i:nth-child(2) {
  height: 28px;
  animation-delay: 120ms;
}

.signal-bars i:nth-child(3) {
  height: 39px;
  animation-delay: 240ms;
}

.signal-bars i:nth-child(4) {
  height: 50px;
  animation-delay: 360ms;
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.52;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.device-screen ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 900;
}

.device-screen li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.device-screen li::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 2px;
  background: var(--black);
}

.zero-impact {
  --zero-scale: 0.78;
  --zero-progress: 0;
  --zero-copy-y: 34px;
  position: relative;
  height: 148vh;
  background: var(--black);
  color: var(--white);
}

.zero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
}

.zero-stage {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-width: 0;
  min-height: 100vh;
  align-content: center;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 92px;
}

.zero-stage::before,
.zero-stage::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.zero-stage::before {
  inset: 13% 8%;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 50%;
  opacity: calc(0.25 + var(--zero-progress) * 0.55);
  transform: scale(calc(0.7 + var(--zero-progress) * 0.38));
}

.zero-stage::after {
  inset: 22% 18%;
  border: 1px solid rgb(216 255 63 / 0.22);
  border-radius: 50%;
  opacity: calc(0.18 + var(--zero-progress) * 0.52);
  transform: scale(calc(0.85 + var(--zero-progress) * 0.28)) rotate(14deg);
}

.zero-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.05) 0 1px, transparent 1px 124px),
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.035) 0 1px, transparent 1px 124px);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.zero-stage .eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
}

.zero-number {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: var(--acid);
  font-size: clamp(230px, 43vw, 620px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.72;
  opacity: calc(0.34 + var(--zero-progress) * 0.58);
  text-shadow: 0 0 70px rgb(216 255 63 / 0.18);
  transform: translate(-50%, -50%) scale(var(--zero-scale));
  transform-origin: center;
  transition: opacity 80ms linear, transform 80ms linear;
}

.zero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: 760px;
  min-width: 0;
  gap: 22px;
  opacity: calc(0.7 + var(--zero-progress) * 0.3);
  transform: translateY(var(--zero-copy-y));
  transition: opacity 80ms linear, transform 80ms linear;
}

.zero-copy h2 {
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zero-copy p {
  max-width: 690px;
  min-width: 0;
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.42;
}

.launch-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgb(216 255 63 / 0.18), transparent 26%),
    radial-gradient(circle at 14% 78%, rgb(0 215 176 / 0.16), transparent 28%),
    var(--black);
  color: var(--white);
  isolation: isolate;
}

.launch-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(105deg, transparent 0 44%, rgb(216 255 63 / 0.11) 47%, transparent 55%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 108px);
  pointer-events: none;
  transform: translateX(-18%);
  animation: launchSweep 6.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.launch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.launch-copy {
  display: grid;
  gap: 20px;
}

.launch-copy h2 {
  margin: 0;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.launch-copy p {
  max-width: 640px;
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}

.launch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-tags span {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.07);
  color: rgb(255 255 255 / 0.76);
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.launch-showcase {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-width: 0;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgb(216 255 63 / 0.18), transparent 28%),
    linear-gradient(180deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.045));
  box-shadow: 0 44px 130px rgb(0 0 0 / 0.38);
  padding: clamp(18px, 3vw, 34px);
  backdrop-filter: blur(18px);
}

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

.launch-showcase::before {
  inset: 11%;
  border: 1px solid rgb(216 255 63 / 0.18);
  transform: rotate(-8deg);
  animation: reactorTurn 11s linear infinite;
}

.launch-showcase::after {
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgb(255 255 255 / 0.26), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.launch-showcase.is-hot::after {
  opacity: 1;
}

.launch-orbit {
  position: absolute;
  inset: 50%;
  width: min(440px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgb(216 255 63 / 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 13s linear infinite;
}

.launch-orbit::before,
.launch-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 50%;
}

.launch-orbit::before {
  inset: 12%;
}

.launch-orbit::after {
  inset: 27%;
}

.launch-orbit span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 32px var(--acid);
}

.launch-orbit span:nth-child(1) {
  top: -6px;
  left: 50%;
}

.launch-orbit span:nth-child(2) {
  right: 9%;
  bottom: 18%;
  background: var(--mint);
  box-shadow: 0 0 32px var(--mint);
}

.launch-orbit span:nth-child(3) {
  bottom: 20%;
  left: 7%;
}

.launch-browser {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 8px;
  background: rgb(5 5 5 / 0.72);
  box-shadow: 0 34px 100px rgb(0 0 0 / 0.34);
  transform: perspective(1000px) rotateX(7deg) rotateY(-8deg);
  animation: floatPanel 4.8s ease-in-out infinite;
}

.launch-browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  padding: 13px 14px;
}

.launch-browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.3);
}

.launch-browser-top strong {
  margin-left: 8px;
  color: rgb(255 255 255 / 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.launch-screen {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 314px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgb(216 255 63 / 0.95), rgb(255 255 255 / 0.96) 48%, rgb(0 215 176 / 0.86));
  padding: 30px;
}

.launch-screen::before {
  position: absolute;
  inset: auto -22% -30% auto;
  width: 56%;
  aspect-ratio: 1;
  content: "";
  border: 28px solid rgb(5 5 5 / 0.1);
  transform: rotate(19deg);
}

.launch-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.6), transparent);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  animation: scanWebsite 2.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.wire {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 7px;
  background: rgb(5 5 5 / 0.16);
}

.wire::after,
.wire-grid span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(5 5 5 / 0.24), transparent);
  transform: translateX(-120%);
  animation: buildLine 2.4s ease-in-out infinite;
}

.wire-hero {
  width: 78%;
  height: 82px;
}

.wire-text {
  width: 100%;
  height: 18px;
}

.wire-text.short {
  width: 64%;
}

.wire-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.wire-grid span {
  position: relative;
  min-height: 82px;
  overflow: hidden;
  border-radius: 7px;
  background: rgb(5 5 5 / 0.14);
}

.launch-steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.launch-steps article {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.075);
  padding: 16px;
  animation: stepGlow 3.6s ease-in-out infinite;
}

.launch-steps article:nth-child(2) {
  animation-delay: 420ms;
}

.launch-steps article:nth-child(3) {
  animation-delay: 840ms;
}

.launch-steps span {
  display: block;
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.8px;
}

.launch-steps strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

@keyframes launchSweep {
  0%,
  100% {
    transform: translateX(-18%);
  }
  50% {
    transform: translateX(18%);
  }
}

@keyframes reactorTurn {
  from {
    transform: rotate(-8deg);
  }
  to {
    transform: rotate(352deg);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: perspective(1000px) rotateX(7deg) rotateY(-8deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateX(7deg) rotateY(-8deg) translateY(-12px);
  }
}

@keyframes scanWebsite {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes buildLine {
  0%,
  18% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes stepGlow {
  0%,
  100% {
    border-color: rgb(255 255 255 / 0.14);
    background: rgb(255 255 255 / 0.075);
    transform: translateY(0);
  }
  50% {
    border-color: rgb(216 255 63 / 0.48);
    background: rgb(216 255 63 / 0.12);
    transform: translateY(-4px);
  }
}

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

.section-inner {
  width: min(1180px, calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
}

.hero-content,
.split > *,
.launch-layout > *,
.done-layout > *,
.ai-layout > *,
.tariff-layout > *,
.compare-grid > *,
.process-rail > *,
.proof-grid > *,
.contact-layout > *,
.section-heading,
.lead,
.ai-board,
.ai-board article,
.base-plan,
.calculator,
.contact-form {
  min-width: 0;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 12px;
}

.section-heading.center {
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
  line-height: 1.45;
}

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

.done-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.done-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 14%, rgb(5 5 5 / 0.06) 14% 14.1%, transparent 14.1% 100%),
    linear-gradient(90deg, transparent 0 50%, rgb(5 5 5 / 0.06) 50% 50.1%, transparent 50.1% 100%),
    linear-gradient(90deg, transparent 0 86%, rgb(5 5 5 / 0.06) 86% 86.1%, transparent 86.1% 100%);
  pointer-events: none;
}

.done-section::after {
  position: absolute;
  z-index: 0;
  inset: -22% -18%;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 38%, rgb(216 255 63 / 0.16) 45%, rgb(0 215 176 / 0.1) 50%, transparent 59%),
    radial-gradient(circle at 16% 28%, rgb(0 215 176 / 0.12), transparent 26%);
  mix-blend-mode: multiply;
  opacity: 0.72;
  pointer-events: none;
  transform: translateX(-34%) skewY(-7deg);
  animation: sectionSweep 8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.done-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.done-copy {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 30px;
  min-height: 610px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
  min-width: 0;
  padding: 30px;
}

.done-copy::before {
  position: absolute;
  z-index: 0;
  inset: -45% -24%;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 42%, rgb(216 255 63 / 0.14) 45%, rgb(255 255 255 / 0.1) 49%, transparent 56%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 76px);
  transform: translateX(-22%) rotate(7deg);
  animation: copySweep 5.4s ease-in-out infinite;
}

.done-copy > * {
  position: relative;
  z-index: 1;
}

.done-copy h2 {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.done-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgb(255 255 255 / 0.74);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.done-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.done-checks span {
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: rgb(255 255 255 / 0.78);
  padding: 9px 11px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.studio-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
  perspective: 1100px;
}

.flow-line {
  position: absolute;
  z-index: -1;
  inset: 50% 12px auto;
  height: 2px;
  overflow: hidden;
  background: rgb(5 5 5 / 0.12);
}

.flow-line::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--acid), var(--mint), transparent);
  animation: flowSweep 2.9s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes flowSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.flow-card,
.agency-console {
  --mx: 50%;
  --my: 50%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgb(216 255 63 / 0.18), transparent 34%),
    var(--white);
  box-shadow: 0 18px 60px rgb(5 5 5 / 0.1);
}

.flow-card {
  display: grid;
  min-height: 232px;
  align-content: end;
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.flow-card::before {
  position: absolute;
  z-index: 0;
  inset: auto -30% -42%;
  height: 62%;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(5 5 5 / 0.05));
  transform: skewY(-11deg);
}

.flow-card::after,
.agency-console::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--mx) var(--my), rgb(216 255 63 / 0.26), transparent 28%),
    radial-gradient(circle at var(--mx) var(--my), rgb(255 255 255 / 0.22), transparent 36%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.flow-card.is-hot::after,
.agency-console.is-hot::after {
  opacity: 1;
}

.flow-card > *,
.agency-console > * {
  position: relative;
  z-index: 2;
}

.flow-card:hover {
  border-color: var(--black);
  box-shadow: 0 28px 80px rgb(5 5 5 / 0.16);
  transform: translateY(-5px);
}

.flow-card span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
}

.flow-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 29px;
  line-height: 1;
}

.flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

.agency-console {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgb(0 215 176 / 0.22), transparent 32%),
    var(--black);
  color: var(--white);
  min-width: 0;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.agency-console::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgb(255 255 255 / 0.06) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, transparent, rgb(216 255 63 / 0.1), transparent);
  opacity: 0.48;
  transform: translateX(-16%);
  animation: consoleGrid 5.2s linear infinite;
}

.agency-console:hover {
  box-shadow: 0 34px 100px rgb(5 5 5 / 0.22);
  transform: translateY(-4px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding-bottom: 16px;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.34);
}

.console-top strong {
  margin-left: 8px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.console-grid div {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  padding: 16px;
}

.console-grid small {
  display: block;
  color: rgb(255 255 255 / 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.console-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.console-track {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
}

.console-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acid), var(--mint));
  box-shadow: 0 0 24px rgb(216 255 63 / 0.28);
  animation: consoleMove 2.6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite alternate;
}

@keyframes consoleMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(195%);
  }
}

@keyframes sectionSweep {
  0%,
  100% {
    transform: translateX(-34%) skewY(-7deg);
  }
  50% {
    transform: translateX(30%) skewY(-7deg);
  }
}

@keyframes copySweep {
  0%,
  100% {
    transform: translateX(-26%) rotate(7deg);
  }
  50% {
    transform: translateX(18%) rotate(7deg);
  }
}

@keyframes consoleGrid {
  from {
    transform: translateX(-16%);
  }
  to {
    transform: translateX(16%);
  }
}

.ai-section {
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.ai-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgb(216 255 63 / 0.1), transparent 32%),
    repeating-linear-gradient(90deg, rgb(255 255 255 / 0.055) 0 1px, transparent 1px 118px);
  pointer-events: none;
}

.ai-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
}

.ai-section .section-heading p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.7);
}

.ai-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 370px;
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  box-shadow: 0 34px 120px rgb(0 0 0 / 0.34);
  padding: 14px;
  backdrop-filter: blur(16px);
}

.ai-board article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background: rgb(5 5 5 / 0.52);
  padding: 18px;
}

.ai-board article::before {
  position: absolute;
  inset: auto -30% -38% -30%;
  height: 54%;
  content: "";
  background: linear-gradient(180deg, transparent, rgb(216 255 63 / 0.16));
  transform: skewY(-10deg);
}

.ai-board article span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 2px;
}

.ai-board strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1;
}

.ai-board p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.ai-orbit {
  position: absolute;
  inset: 50%;
  width: 230px;
  height: 230px;
  border: 1px solid rgb(216 255 63 / 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 9s linear infinite;
}

.ai-orbit::before,
.ai-orbit::after {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 50%;
}

.ai-orbit::after {
  inset: 78px;
}

.ai-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 28px var(--acid);
}

.ai-orbit span:nth-child(1) {
  top: -5px;
  left: 50%;
}

.ai-orbit span:nth-child(2) {
  right: 20px;
  bottom: 36px;
}

.ai-orbit span:nth-child(3) {
  bottom: 42px;
  left: 16px;
}

@keyframes orbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pricing-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), #efeee7);
}

.pricing-section::before {
  position: absolute;
  inset: 32px 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(5 5 5 / 0.16), transparent);
}

.discount-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgb(5 5 5 / 0.12);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  padding: 11px 14px;
  box-shadow: 0 18px 45px rgb(5 5 5 / 0.16);
}

.discount-strip strong {
  border-radius: 6px;
  background: var(--acid);
  color: var(--black);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.discount-strip span {
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  font-weight: 850;
}

.tariff-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.base-plan,
.calculator,
.example-card,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.base-plan {
  position: sticky;
  top: 104px;
  padding: 28px;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.base-plan h3,
.calculator h3 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 18px;
}

.price-line span {
  font-size: 92px;
  font-weight: 950;
  line-height: 0.86;
}

.price-line small {
  max-width: 90px;
  padding-bottom: 8px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.1;
}

.base-plan p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.46;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 750;
}

.check-list li::before {
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 0 41%, var(--black) 42% 58%, transparent 59%),
    var(--acid);
}

.contract-note {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.contract-note strong {
  font-size: 24px;
}

.contract-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.calculator {
  overflow: hidden;
}

.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  padding: 26px;
}

.total-badge {
  display: grid;
  min-width: 176px;
  justify-items: end;
  border-radius: 8px;
  background: var(--acid);
  color: var(--black);
  padding: 16px;
}

.total-badge span {
  font-size: 56px;
  font-weight: 950;
  line-height: 0.85;
}

.total-badge small {
  margin-top: 7px;
  font-size: 12px;
  font-weight: 950;
}

.stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 26px;
}

.stepper-row strong,
.extra-option strong {
  display: block;
  font-size: 16px;
}

.stepper-row span,
.extra-option small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.stepper-row s,
.extra-option s {
  color: #929188;
  text-decoration-thickness: 2px;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 42px 54px 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calc-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 5px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 18px 26px;
}

.calc-step span {
  grid-row: span 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
}

.calc-step strong {
  font-size: 16px;
}

.calc-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.42;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 20px 26px;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: grid;
  min-height: 96px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  padding: 16px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-card strong {
  display: block;
  font-size: 16px;
}

.choice-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.choice-card input:checked + span {
  border-color: var(--black);
  background: var(--acid);
  box-shadow: 0 18px 38px rgb(5 5 5 / 0.13);
  transform: translateY(-2px);
}

.billing-switch {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgb(216 255 63 / 0.22), transparent 44%),
    #fbfaf6;
  cursor: pointer;
  padding: 20px 26px;
}

.billing-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  width: 64px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgb(5 5 5 / 0.03);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.switch-dot {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 9px 20px rgb(5 5 5 / 0.22);
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1.2), background 220ms ease;
}

.billing-switch input:checked + .switch-track {
  border-color: var(--black);
  background: var(--acid);
  box-shadow: 0 0 0 6px rgb(216 255 63 / 0.22);
}

.billing-switch input:checked + .switch-track .switch-dot {
  background: var(--black);
  transform: translateX(28px);
}

.billing-copy strong {
  display: block;
  font-size: 16px;
}

.billing-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.billing-transfer {
  position: relative;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
  padding: 12px 26px;
}

.billing-transfer span {
  position: relative;
  z-index: 1;
  color: rgb(255 255 255 / 0.78);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.billing-transfer i {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
}

.billing-transfer i::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--acid), var(--mint), transparent);
  transform: translateX(-100%);
}

.billing-transfer.is-active i::before {
  animation: transferLine 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.billing-transfer.is-active::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(216 255 63 / 0.18), transparent);
  animation: transferFlash 900ms ease;
}

@keyframes transferLine {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes transferFlash {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

.stepper button {
  border: 0;
  background: var(--paper);
  color: var(--black);
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.stepper output {
  display: grid;
  place-items: center;
  background: var(--white);
  font-size: 18px;
  font-weight: 950;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 26px;
}

.extra-option {
  position: relative;
  display: grid;
  min-height: 86px;
  cursor: pointer;
}

.extra-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.extra-option span {
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  padding: 16px 16px 16px 46px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.extra-option span::before {
  position: absolute;
  top: 32px;
  left: 17px;
  width: 18px;
  height: 18px;
  content: "";
  border: 2px solid #bab9b0;
  border-radius: 5px;
  transition: background 180ms ease, border-color 180ms ease;
}

.extra-option input:checked + span {
  border-color: var(--black);
  background: var(--acid);
  box-shadow: 0 16px 34px rgb(5 5 5 / 0.12);
  transform: translateY(-2px);
}

.extra-option input:checked + span::before {
  border-color: var(--black);
  background: var(--black);
}

.summary-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  background: #f9f8f2;
  padding: 24px 26px 26px;
}

.summary-box div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.summary-box div.is-zero {
  border-color: var(--black);
  background: var(--acid);
  transform: translateY(-2px);
}

.summary-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.summary-box strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.summary-box p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.summary-box .button {
  grid-column: 1 / -1;
}

.seo-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.seo-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgb(5 5 5 / 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgb(5 5 5 / 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.seo-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

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

.seo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.78);
  box-shadow: 0 22px 54px rgb(5 5 5 / 0.08);
  padding: 22px;
}

.seo-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgb(216 255 63 / 0.28), transparent 36%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.seo-card.is-hot::before {
  opacity: 1;
}

.seo-card span,
.domain-card span,
.price-table-card span {
  position: relative;
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.seo-card strong {
  position: relative;
  display: block;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.seo-card p {
  position: relative;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.mobile-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  padding: clamp(24px, 5vw, 44px);
}

.mobile-proof strong {
  font-size: clamp(58px, 11vw, 132px);
  line-height: 0.86;
}

.mobile-proof p {
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 800;
  line-height: 1.35;
}

.mobile-proof small {
  grid-column: 2;
  color: rgb(255 255 255 / 0.48);
  font-size: 12px;
  font-weight: 800;
}

.domain-section {
  background: var(--black);
  color: var(--white);
}

.domain-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.domain-section .section-heading p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.7);
}

.domain-cards {
  display: grid;
  gap: 14px;
}

.domain-card {
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.07);
  padding: 24px;
}

.domain-card span {
  color: rgb(255 255 255 / 0.56);
}

.domain-card strong {
  display: block;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.95;
}

.domain-card p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 0.68);
  font-weight: 750;
  line-height: 1.48;
}

.examples-section {
  background: var(--black);
  color: var(--white);
}

.compare-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper));
  overflow: hidden;
}

.compare-section::before {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 18%, rgb(5 5 5 / 0.07) 18% 18.2%, transparent 18.2% 100%),
    linear-gradient(90deg, transparent 0 50%, rgb(5 5 5 / 0.07) 50% 50.2%, transparent 50.2% 100%),
    linear-gradient(90deg, transparent 0 82%, rgb(5 5 5 / 0.07) 82% 82.2%, transparent 82.2% 100%);
  pointer-events: none;
}

.compare-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compare-card {
  display: grid;
  min-height: 370px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 22px 70px rgb(5 5 5 / 0.1);
}

.compare-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.compare-card h3 {
  margin: 42px 0 24px;
  font-size: 34px;
  line-height: 1;
}

.compare-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.compare-card li::before {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  content: "";
  border-radius: 50%;
  background: #bab9b0;
}

.compare-card.nova {
  position: relative;
  overflow: hidden;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-18px);
}

.compare-card.nova::before {
  position: absolute;
  inset: -80px -120px auto auto;
  width: 260px;
  height: 260px;
  content: "";
  border: 28px solid rgb(216 255 63 / 0.16);
  transform: rotate(24deg);
}

.compare-card.nova span {
  color: var(--acid);
}

.compare-card.nova li {
  color: rgb(255 255 255 / 0.75);
}

.compare-card.nova li::before {
  background: var(--acid);
}

.examples-section .section-heading h2,
.examples-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

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

.example-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  background: rgb(255 255 255 / 0.06);
  border-color: rgb(255 255 255 / 0.13);
  color: var(--white);
  padding: 24px;
}

.example-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgb(216 255 63 / 0.14), transparent);
  transform: translateX(-130%);
  transition: transform 700ms ease;
}

.example-card:hover::before {
  transform: translateX(130%);
}

.example-card span {
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.example-card h3 {
  margin: 58px 0 12px;
  font-size: 36px;
}

.example-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-weight: 650;
  line-height: 1.45;
}

.process-section {
  background: var(--white);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-step {
  min-height: 270px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 28px;
}

.process-step span {
  display: block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.proof-section {
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-item {
  min-height: 176px;
  background: var(--white);
  padding: 24px;
}

.proof-item span {
  display: block;
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
}

.proof-item p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.contact-section {
  background: var(--black);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.contact-section .section-heading p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.72);
}

.contact-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-summary {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.075);
  padding: 20px;
}

.contact-summary span {
  color: rgb(255 255 255 / 0.52);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-summary strong {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
}

.contact-summary p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 14px;
  border-color: rgb(255 255 255 / 0.13);
  background: rgb(255 255 255 / 0.065);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgb(255 255 255 / 0.76);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.09);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  outline: 0;
  padding: 15px 16px;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(255 255 255 / 0.38);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--acid);
  background: rgb(255 255 255 / 0.13);
}

.hidden-field {
  display: none;
}

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

.subpage-hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 170px 0 90px;
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, rgb(216 255 63 / 0.16), transparent 36%),
    linear-gradient(270deg, rgb(0 215 176 / 0.12), transparent 44%);
  opacity: 0.9;
}

.subpage-hero .section-inner {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.9;
  text-transform: uppercase;
}

.subpage-hero .lead {
  max-width: 760px;
  color: rgb(255 255 255 / 0.76);
}

.service-grid,
.price-table-grid,
.gallery-price-grid {
  display: grid;
  gap: 16px;
}

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

.price-table-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-tile,
.price-table-card,
.gallery-price {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 56px rgb(5 5 5 / 0.08);
  padding: 24px;
}

.service-tile {
  min-height: 280px;
}

.service-tile span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-tile h2,
.price-table-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.96;
}

.service-tile p,
.price-table-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.gallery-price {
  display: grid;
  min-height: 190px;
  align-content: space-between;
}

.gallery-price strong {
  font-size: 50px;
  line-height: 0.9;
}

.gallery-price span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-price b {
  font-size: 24px;
}

.subpage-cta {
  background: var(--black);
  color: var(--white);
}

.subpage-cta .section-heading p:not(.eyebrow) {
  color: rgb(255 255 255 / 0.7);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(115deg, rgb(216 255 63 / 0.11), transparent 34%),
    linear-gradient(295deg, rgb(0 215 176 / 0.14), transparent 38%),
    var(--black);
  color: var(--white);
}

.thanks-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 130px max(18px, calc((100vw - 980px) / 2)) 70px;
}

.thanks-hero::before {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgb(255 255 255 / 0.11);
  transform: skewY(-9deg);
}

.thanks-orbit {
  position: absolute;
  width: min(78vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgb(255 255 255 / 0.11);
  border-radius: 50%;
  animation: spinRing 18s linear infinite;
}

.thanks-orbit span {
  position: absolute;
  inset: 8%;
  border: 1px solid rgb(216 255 63 / 0.2);
  border-radius: 50%;
}

.thanks-orbit span:nth-child(2) {
  inset: 22%;
  border-color: rgb(0 215 176 / 0.22);
  animation: spinRing 11s linear infinite reverse;
}

.thanks-orbit span:nth-child(3) {
  inset: 36%;
  border-color: rgb(255 255 255 / 0.14);
}

.thanks-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  border: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.075);
  box-shadow: 0 44px 110px rgb(0 0 0 / 0.38);
  padding: clamp(28px, 6vw, 64px);
}

.thanks-card h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 7.5vw, 86px);
  line-height: 0.92;
}

.thanks-card p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 30px;
  color: rgb(255 255 255 / 0.72);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.55;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--black);
  color: var(--white);
  padding: 30px max(16px, calc((100vw - 1180px) / 2));
}

.footer div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer span,
.footer a {
  color: rgb(255 255 255 / 0.62);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.tilt {
  transition: transform 180ms ease;
}

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

  .hero-device {
    display: none;
  }

  .zero-stage {
    padding-top: 104px;
  }

  .tariff-layout,
  .split,
  .launch-layout,
  .done-layout,
  .ai-layout,
  .seo-layout,
  .domain-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .launch-showcase {
    min-height: 520px;
  }

  .done-copy {
    min-height: 460px;
  }

  .base-plan {
    position: relative;
    top: auto;
  }

  .example-grid,
  .studio-flow,
  .ai-board,
  .compare-grid,
  .process-rail,
  .proof-grid,
  .service-grid,
  .price-table-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-card.nova {
    transform: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 96px;
  }

  [id] {
    scroll-margin-top: 96px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand small,
  .nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
    gap: 18px;
    padding-top: 108px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(38px, 13.5vw, 61px);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .hero-stats div {
    min-height: auto;
  }

  .hero-device {
    display: none;
  }

  .zero-impact {
    height: auto;
    min-height: 0;
  }

  .zero-sticky {
    position: relative;
    min-height: 0;
  }

  .zero-stage {
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 86px 0;
  }

  .zero-number {
    top: 52%;
    font-size: clamp(176px, 58vw, 260px);
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(1) !important;
  }

  .zero-copy {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    opacity: 1;
    transform: none !important;
  }

  .zero-copy h2 {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 0.96;
  }

  .zero-copy p {
    max-width: 100%;
    font-size: 16px;
  }

  .zero-copy .button {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2 {
    font-size: clamp(32px, 10.5vw, 44px);
    line-height: 1;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.35;
  }

  .section-heading p:not(.eyebrow),
  .lead {
    font-size: 16px;
  }

  .launch-section {
    padding-top: 84px;
  }

  .launch-layout {
    gap: 26px;
  }

  .launch-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .launch-showcase {
    min-height: 460px;
    padding: 16px;
  }

  .launch-browser {
    margin-top: 44px;
    transform: none;
    animation-name: floatPanelMobile;
  }

  .launch-screen {
    min-height: 252px;
    padding: 20px;
  }

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

  .wire-grid span {
    min-height: 42px;
  }

  .launch-steps {
    grid-template-columns: 1fr;
  }

  .calc-head,
  .stepper-row,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .calc-head,
  .stepper-row {
    display: grid;
  }

  .billing-switch {
    grid-template-columns: 1fr;
  }

  .billing-transfer {
    grid-template-columns: 1fr;
  }

  .billing-transfer i {
    height: 4px;
  }

  .total-badge {
    justify-items: start;
  }

  .extras-grid,
  .choice-grid,
  .summary-box,
  .studio-flow,
  .console-grid,
  .ai-board,
  .example-grid,
  .compare-grid,
  .process-rail,
  .proof-grid,
  .seo-facts,
  .service-grid,
  .price-table-grid,
  .gallery-price-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-proof small {
    grid-column: auto;
  }

  .contact-shortcuts,
  .footer-links {
    justify-content: flex-start;
  }

  .done-copy {
    min-height: 520px;
    padding: 24px;
  }

  .done-copy h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .flow-card {
    min-height: 190px;
  }

  .flow-line {
    inset: 14px auto 14px 22px;
    width: 2px;
    height: auto;
  }

  .flow-line::before {
    background: linear-gradient(180deg, transparent, var(--acid), var(--mint), transparent);
    animation-name: flowSweepY;
  }

  .price-line span {
    font-size: 76px;
  }

  .hero-ticker {
    bottom: 14px;
  }
}

@keyframes floatPanelMobile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes flowSweepY {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(120%);
  }
}

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