:root {
  color-scheme: light;
  --ink: #101014;
  --paper: #f8f9ed;
  --mist: #e6f1ea;
  --acid: #b8ff4d;
  --coral: #ff5b45;
  --cyan: #39c5d8;
  --violet: #6f4cff;
  --muted: #62665c;
  --line: rgba(16, 16, 20, 0.14);
  --shadow: 0 30px 90px rgba(16, 16, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

section,
main {
  scroll-margin-top: 92px;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  padding: 8px;
  background: rgba(248, 249, 237, 0.78);
  border: 1px solid rgba(16, 16, 20, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(16, 16, 20, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.topbar.is-scrolled {
  background: rgba(248, 249, 237, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 8px;
  font-weight: 950;
}

.brand-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: inset 0 0 0 4px var(--acid);
}

.topbar nav {
  display: flex;
  gap: 4px;
}

.topbar nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: #41433d;
  font-size: 14px;
  font-weight: 900;
}

.topbar nav a:hover {
  background: var(--acid);
  color: var(--ink);
}

.top-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 950;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 138px clamp(18px, 5vw, 72px) 42px;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--mx, 55%) var(--my, 40%), rgba(184, 255, 77, 0.24), transparent 18%),
    linear-gradient(105deg, rgba(16, 16, 20, 0.96) 0 28%, rgba(16, 16, 20, 0.62) 52%, rgba(16, 16, 20, 0.2) 100%);
  pointer-events: none;
}

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

.photo {
  position: absolute;
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: translate3d(0, calc(var(--scroll, 0) * -22px), 0) scale(1.04);
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.05), rgba(16, 16, 20, 0.72));
}

.photo-large {
  inset: 0 0 0 36%;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  background-image: url("images/hero-large.jpg");
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.photo-small {
  width: min(26vw, 360px);
  height: min(34vh, 320px);
  border: 2px solid rgba(248, 249, 237, 0.7);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-one {
  right: 8%;
  top: 19%;
  background-image: url("images/electric.jpg");
  transform: rotate(5deg);
}

.photo-two {
  right: 28%;
  bottom: 10%;
  background-image: url("images/photo-two.jpg");
  transform: rotate(-6deg);
}

.scanline {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(248, 249, 237, 0.07) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, rgba(255, 91, 69, 0.2), transparent 30%, rgba(57, 197, 216, 0.18));
  mix-blend-mode: screen;
  opacity: 0.55;
}

.lead-stream {
  position: absolute;
  top: 126px;
  right: clamp(18px, 4vw, 64px);
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(360px, 34vw);
}

.lead-stream span {
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(248, 249, 237, 0.82);
  border: 1px solid rgba(248, 249, 237, 0.84);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(16, 16, 20, 0.2);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  animation: leadFloat 5.5s ease-in-out infinite;
}

.lead-stream span:nth-child(2) {
  animation-delay: -1.4s;
  margin-left: 30px;
}

.lead-stream span:nth-child(3) {
  animation-delay: -2.8s;
  margin-left: 8px;
}

.lead-stream span:nth-child(4) {
  animation-delay: -4.2s;
  margin-left: 52px;
}

.hero-content {
  align-self: end;
  max-width: 900px;
  padding-top: 20vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: 0;
  max-width: 980px;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.08;
}

.hero-text {
  max-width: 680px;
  color: rgba(248, 249, 237, 0.82);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 0 rgba(16, 16, 20, 0.2);
}

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

.button-light {
  color: var(--paper);
  background: rgba(248, 249, 237, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 54px;
  border: 1px solid rgba(248, 249, 237, 0.24);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(248, 249, 237, 0.12);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  padding: 20px;
  background: rgba(16, 16, 20, 0.36);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--acid);
  font-size: 27px;
  line-height: 1;
}

.hero-facts span {
  margin-top: 6px;
  color: rgba(248, 249, 237, 0.72);
}

.statement {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--ink);
  background: var(--acid);
}

.statement p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(34px, 6vw, 84px);
  font-weight: 950;
  line-height: 0.92;
  text-align: center;
}

.system,
.local-proof,
.pricing,
.contact {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.system {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--paper);
}

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

.section-copy p:not(.eyebrow),
.contact-copy p,
.price-strip p,
.plans p,
.conversion-board p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.conversion-board {
  display: grid;
  gap: 16px;
  perspective: 1200px;
}

.conversion-board article {
  position: relative;
  display: grid;
  grid-template-columns: clamp(66px, 8vw, 96px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 10px clamp(18px, 3vw, 28px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 54px rgba(16, 16, 20, 0.07);
  isolation: isolate;
  overflow: hidden;
  transform: perspective(1200px) rotateX(0) rotateY(0) translateZ(0);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.conversion-board article::before {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: min(34%, 190px);
  height: 46%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(57, 197, 216, 0.2), transparent 58%),
    repeating-linear-gradient(135deg, rgba(16, 16, 20, 0.06) 0 1px, transparent 1px 10px);
  border-radius: 22px;
  transform: skewX(-10deg);
}

.conversion-board article:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(184, 255, 77, 0.26), transparent 58%),
    repeating-linear-gradient(135deg, rgba(16, 16, 20, 0.06) 0 1px, transparent 1px 10px);
}

.conversion-board article:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(255, 91, 69, 0.22), transparent 58%),
    repeating-linear-gradient(135deg, rgba(16, 16, 20, 0.06) 0 1px, transparent 1px 10px);
}

.conversion-board article:hover {
  border-color: rgba(16, 16, 20, 0.28);
  transform: perspective(1200px) rotateX(1.6deg) rotateY(-2.2deg) translateY(-7px);
  box-shadow: 0 28px 80px rgba(16, 16, 20, 0.14), 12px 12px 0 rgba(57, 197, 216, 0.18);
}

.conversion-board span {
  display: grid;
  grid-row: 1 / span 2;
  width: clamp(58px, 7vw, 74px);
  height: clamp(58px, 7vw, 74px);
  place-items: center;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 22px;
  font-weight: 950;
  box-shadow: inset 0 -10px 0 rgba(16, 16, 20, 0.08);
  transition: transform 240ms ease;
}

.conversion-board article:hover span {
  transform: translateZ(24px) rotate(-4deg);
}

.conversion-board h3 {
  margin: 2px 0 0;
}

.conversion-board p {
  grid-column: 2;
  max-width: 62ch;
  margin: 0;
}

.demo-lab {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 91, 69, 0.16), transparent 28%),
    linear-gradient(45deg, transparent 0 54%, rgba(111, 76, 255, 0.18) 54% 100%),
    var(--ink);
}

.target {
  padding: clamp(72px, 10vw, 132px) 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(57, 197, 216, 0.18), transparent 30%),
    linear-gradient(45deg, transparent 0 60%, rgba(184, 255, 77, 0.16) 60% 100%),
    var(--ink);
  overflow: hidden;
}

.target .section-copy {
  margin-inline: clamp(18px, 5vw, 72px);
}

.target .eyebrow {
  color: var(--cyan);
}

.target p:not(.eyebrow) {
  color: rgba(248, 249, 237, 0.72);
}

.marquee {
  margin-top: 44px;
  border-block: 1px solid rgba(248, 249, 237, 0.18);
  overflow: hidden;
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 18px 0;
  animation: marqueeMove 28s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  color: var(--paper);
  background: rgba(248, 249, 237, 0.08);
  border: 1px solid rgba(248, 249, 237, 0.18);
  border-radius: 999px;
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 950;
  white-space: nowrap;
}

.inverted .eyebrow {
  color: var(--cyan);
}

.inverted p:not(.eyebrow) {
  color: rgba(248, 249, 237, 0.74);
}

.demo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.demo-tile {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(248, 249, 237, 0.22);
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 240ms ease, border-color 240ms ease;
}

.demo-tile::before,
.demo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.demo-tile::before {
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 500ms ease;
}

.demo-tile::after {
  background:
    linear-gradient(180deg, rgba(16, 16, 20, 0.06), rgba(16, 16, 20, 0.8)),
    repeating-linear-gradient(90deg, rgba(248, 249, 237, 0.1) 0 1px, transparent 1px 10px);
}

.demo-tile:hover {
  border-color: var(--acid);
  transform: translateY(-10px);
}

.demo-tile:hover::before {
  transform: scale(1.15);
}

.demo-tile span {
  width: fit-content;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
}

.demo-tile strong {
  max-width: 310px;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.96;
}

.tile-electric::before {
  background-image: url("images/electric.jpg");
}

.tile-salon::before {
  background-image: url("images/salon.jpg");
}

.tile-craft::before {
  background-image: url("images/craft.jpg");
  background-position: 45% center;
}

.tile-tax::before {
  background-image: url("images/tax.jpg");
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 18%, rgba(57, 197, 216, 0.24), transparent 28%),
    radial-gradient(circle at 86% 72%, rgba(184, 255, 77, 0.18), transparent 26%),
    var(--ink);
  overflow: hidden;
}

.local-proof .eyebrow {
  color: var(--acid);
}

.regional-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(248, 249, 237, 0.72);
  font-size: 19px;
  line-height: 1.55;
}

.regional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.regional-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(248, 249, 237, 0.22);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(248, 249, 237, 0.08);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.regional-board {
  position: relative;
  min-height: 560px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(248, 249, 237, 0.24);
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(248, 249, 237, 0.12), rgba(248, 249, 237, 0.04)),
    rgba(248, 249, 237, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  isolation: isolate;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2deg);
}

.regional-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px dashed rgba(248, 249, 237, 0.2);
  border-radius: 28px;
}

.regional-board::after {
  content: "";
  position: absolute;
  inset: auto -18% -24% auto;
  z-index: -1;
  width: 360px;
  height: 360px;
  background: conic-gradient(from 180deg, var(--acid), var(--cyan), var(--coral), var(--acid));
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(10px);
  animation: routingSpin 16s linear infinite;
}

.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
}

.board-header span {
  color: var(--acid);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-header strong {
  color: rgba(248, 249, 237, 0.74);
  font-size: 14px;
}

.routing-card {
  position: relative;
  border-radius: 28px;
}

.routing-card-main {
  max-width: 560px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--acid);
  transform: rotate(-2deg);
}

.routing-card-main small,
.routing-card-main strong {
  display: block;
}

.routing-card-main small {
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 950;
  text-transform: uppercase;
}

.routing-card-main strong {
  max-width: 430px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.98;
}

.routing-card-main p {
  max-width: 470px;
  margin: 22px 0 0;
  color: #565b51;
  font-size: 17px;
  line-height: 1.45;
}

.routing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.routing-grid div {
  min-height: 138px;
  padding: 16px;
  border: 1px solid rgba(248, 249, 237, 0.22);
  border-radius: 22px;
  background: rgba(248, 249, 237, 0.08);
  transform: translateY(0);
  transition: transform 220ms ease, background 220ms ease;
}

.regional-board:hover .routing-grid div {
  background: rgba(248, 249, 237, 0.12);
}

.regional-board:hover .routing-grid div:nth-child(1) {
  transform: translateY(-6px);
}

.regional-board:hover .routing-grid div:nth-child(2) {
  transform: translateY(-11px);
}

.regional-board:hover .routing-grid div:nth-child(3) {
  transform: translateY(-16px);
}

.routing-grid span,
.routing-grid strong,
.routing-grid small {
  display: block;
}

.routing-grid span {
  color: var(--cyan);
  font-weight: 950;
}

.routing-grid strong {
  margin-top: 18px;
  color: var(--paper);
  font-weight: 950;
}

.routing-grid small {
  margin-top: 6px;
  color: rgba(248, 249, 237, 0.58);
  line-height: 1.35;
}

.routing-pulse {
  position: absolute;
  right: clamp(24px, 4vw, 54px);
  top: 48%;
  width: 18px;
  height: 18px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(184, 255, 77, 0.38);
  animation: routingPulse 2.1s ease-out infinite;
}

.routing-pulse::before,
.routing-pulse::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: min(25vw, 260px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 77, 0.8));
}

.routing-pulse::after {
  width: 2px;
  height: 130px;
  right: 0;
  top: 18px;
  background: linear-gradient(180deg, rgba(184, 255, 77, 0.8), transparent);
}

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

.pricing-head {
  max-width: 920px;
}

.price-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
  margin: 34px 0 18px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--paper);
  background: var(--ink);
  border-radius: 34px;
}

.process-section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 290px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 18px 54px rgba(16, 16, 20, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-grid li:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(16, 16, 20, 0.14);
}

.process-grid span,
.process-grid strong {
  display: block;
}

.process-grid span {
  width: fit-content;
  margin-bottom: 54px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-weight: 950;
}

.process-grid strong {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.06;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price-simple {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 34px;
}

.price-main,
.price-monthly,
.price-simple ul {
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 32px;
}

.price-main {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--acid);
}

.price-monthly {
  color: var(--ink);
  background: var(--acid);
}

.price-main span,
.price-monthly span,
.price-main strong,
.price-monthly strong {
  display: block;
}

.price-main span,
.price-monthly span {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-main strong,
.price-monthly strong {
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.88;
}

.price-main p,
.price-monthly p {
  margin: 18px 0 0;
  color: inherit;
  opacity: 0.78;
  line-height: 1.4;
}

.price-simple ul {
  display: grid;
  gap: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  list-style: none;
}

.price-simple li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.4;
}

.price-simple li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border-radius: 50%;
}

.price-strip span,
.price-strip strong {
  display: block;
}

.price-strip span {
  color: var(--acid);
  font-weight: 950;
  text-transform: uppercase;
}

.price-strip strong {
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.86;
}

.price-strip p {
  margin: 0;
  color: rgba(248, 249, 237, 0.78);
}

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

.plans article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.plans article:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(16, 16, 20, 0.13);
}

.plans .hot {
  background: var(--acid);
  box-shadow: 12px 12px 0 rgba(16, 16, 20, 0.12);
}

.plans .hot > span {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  color: var(--paper);
  background: var(--coral);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

.plans strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 48px;
  line-height: 1;
}

.demo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.demo-links a {
  display: grid;
  min-height: 170px;
  align-content: space-between;
  padding: 22px;
  color: var(--paper);
  background: rgba(248, 249, 237, 0.08);
  border: 1px solid rgba(248, 249, 237, 0.2);
  border-radius: 28px;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.demo-links a:hover {
  background: rgba(248, 249, 237, 0.14);
  border-color: var(--acid);
  transform: translateY(-8px);
}

.demo-links strong,
.demo-links span {
  display: block;
}

.demo-links strong {
  font-size: 26px;
}

.demo-links span {
  color: rgba(248, 249, 237, 0.62);
  overflow-wrap: anywhere;
  line-height: 1.4;
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.about-mark {
  display: grid;
  width: min(320px, 62vw);
  aspect-ratio: 1;
  place-items: center;
  color: var(--paper);
  background:
    radial-gradient(circle at 62% 30%, rgba(184, 255, 77, 0.42), transparent 24%),
    var(--ink);
  border-radius: 42px;
  box-shadow: 18px 18px 0 var(--coral), var(--shadow);
  font-size: clamp(58px, 10vw, 128px);
  font-weight: 950;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(184, 255, 77, 0.14), transparent 34%),
    var(--ink);
}

.contact .eyebrow {
  color: var(--cyan);
}

.contact-copy p {
  color: rgba(248, 249, 237, 0.74);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-links a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--acid);
  font-size: 24px;
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 34px;
  box-shadow: 14px 14px 0 var(--acid);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(184, 255, 77, 0.54);
  border-color: var(--ink);
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: #000;
}

footer a {
  color: var(--acid);
  font-weight: 900;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-page {
  min-height: 100svh;
  background: var(--paper);
}

.legal-page main {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) 0;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(44px, 8vw, 86px);
}

.legal-page h2 {
  margin-top: 42px;
  font-size: 28px;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--ink);
  font-weight: 950;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: translate3d(0, calc(var(--scroll, 0) * -22px), 0) scale(1.02);
  }
  to {
    transform: translate3d(-18px, calc(var(--scroll, 0) * -22px), 0) scale(1.1);
  }
}

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

@keyframes routingSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes routingPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 255, 77, 0.42);
    transform: scale(0.9);
  }
  70%,
  100% {
    box-shadow: 0 0 0 34px rgba(184, 255, 77, 0);
    transform: scale(1);
  }
}

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

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .system,
  .local-proof,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .demo-row,
  .demo-links,
  .process-grid,
  .price-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-stream {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand span:last-child {
    display: none;
  }

  .top-phone {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 112px;
  }

  .photo-large {
    inset: 32% -20% 0 0;
    clip-path: none;
    opacity: 0.72;
  }

  .photo-small {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-content {
    padding-top: 8vh;
  }

  .hero-facts,
  .demo-row,
  .demo-links,
  .process-grid,
  .price-strip,
  .routing-grid,
  .price-simple,
  .plans {
    grid-template-columns: 1fr;
  }

  .conversion-board article {
    grid-template-columns: 1fr;
  }

  .conversion-board span {
    grid-row: auto;
  }

  .conversion-board p {
    grid-column: 1;
  }

  .demo-tile {
    min-height: 340px;
  }

  .regional-board {
    min-height: auto;
    transform: none;
  }

  .routing-card-main {
    box-shadow: 8px 8px 0 var(--acid);
    transform: rotate(-1deg);
  }

  .routing-pulse {
    display: none;
  }

  .contact-form {
    padding: 18px;
    box-shadow: 8px 8px 0 var(--acid);
  }
}

@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;
  }
}
