:root {
  --blue: #244aa0;
  --blue-deep: #061742;
  --blue-ink: #07112c;
  --orange: #ff8a48;
  --orange-hot: #ff5e36;
  --mint: #6ee7df;
  --rose: #ee3f64;
  --paper: #fff8ef;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 138, 72, 0.28), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(110, 231, 223, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--blue-deep), var(--blue) 48%, #102a76);
  overflow-x: hidden;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 23, 66, 0.56);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--orange);
}

.bolt {
  display: grid;
  place-items: center;
  width: 28px;
  height: 36px;
  filter: drop-shadow(0 0 14px rgba(255, 138, 72, 0.45));
}

.bolt svg {
  width: 100%;
  height: 100%;
}

.bolt-white {
  fill: var(--white);
}

.bolt-orange {
  fill: var(--orange);
}

nav {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

nav a,
.header-cta {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
}

nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  justify-self: end;
  color: var(--blue-ink);
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: 132px 0 70px;
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.02;
}

.hero-text,
.intro-copy,
.proof-copy p,
.service-card p,
.case-card p,
.playbook-list,
footer {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.button.primary {
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--white), var(--paper));
  box-shadow: 0 18px 48px rgba(255, 138, 72, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 48% 52% 46% 54%;
  animation: spin 18s linear infinite;
}

.orbit-a {
  width: min(92vw, 560px);
  height: min(92vw, 560px);
}

.orbit-b {
  width: min(72vw, 430px);
  height: min(72vw, 430px);
  border-color: rgba(255, 138, 72, 0.38);
  animation-direction: reverse;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(78vw, 322px);
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    #07112c;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: auto 78px 12px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.live-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--rose);
}

.live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 1.4s ease-in-out infinite;
}

.video-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.video-tile {
  min-height: 136px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 138, 72, 0.82), rgba(238, 63, 100, 0.5)),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.56), transparent 6rem);
  transform: translateX(var(--shift));
  animation: float 5s ease-in-out infinite;
}

.tile-one {
  --shift: 0;
}

.tile-two {
  --shift: 28px;
  background:
    linear-gradient(135deg, rgba(110, 231, 223, 0.82), rgba(36, 74, 160, 0.62)),
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.5), transparent 6rem);
  animation-delay: -1.5s;
}

.tile-three {
  --shift: -16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 138, 72, 0.72)),
    radial-gradient(circle at 70% 70%, rgba(110, 231, 223, 0.44), transparent 6rem);
  animation-delay: -2.4s;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-row span,
.float-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric-row strong,
.float-card strong {
  font-size: 2.1rem;
  line-height: 1;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  min-width: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  animation: drift 6s ease-in-out infinite;
}

.card-creators {
  top: 112px;
  left: 0;
}

.card-hours {
  right: 0;
  bottom: 140px;
  animation-delay: -2s;
}

.sparkline {
  position: absolute;
  left: 22px;
  bottom: 72px;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 120px;
}

.sparkline span {
  width: 18px;
  height: var(--h, 30px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 138, 72, 0.08));
  animation: bars 1.8s ease-in-out infinite;
}

.sparkline span:nth-child(1) { --h: 28px; }
.sparkline span:nth-child(2) { --h: 54px; animation-delay: -0.2s; }
.sparkline span:nth-child(3) { --h: 40px; animation-delay: -0.35s; }
.sparkline span:nth-child(4) { --h: 80px; animation-delay: -0.52s; }
.sparkline span:nth-child(5) { --h: 66px; animation-delay: -0.7s; }
.sparkline span:nth-child(6) { --h: 108px; animation-delay: -0.85s; }

.ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker span {
  padding: 20px 28px;
  color: var(--paper);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 900;
  white-space: nowrap;
}

.intro,
.services,
.proof,
.metrics,
.playbook,
.contact {
  padding: clamp(70px, 12vw, 150px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.intro h2 {
  max-width: 900px;
}

.intro-copy {
  max-width: 460px;
}

.section-top {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

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

.service-card {
  min-height: 420px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 138, 72, 0.94), rgba(255, 94, 54, 0.88)),
    var(--orange);
  box-shadow: 0 24px 70px rgba(4, 11, 31, 0.22);
  transform-origin: center bottom;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 30px 80px rgba(4, 11, 31, 0.34);
}

.service-card:nth-child(even) {
  margin-top: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(110, 231, 223, 0.78)),
    var(--mint);
  color: var(--blue-ink);
}

.service-card:nth-child(even) p,
.service-card:nth-child(even) .service-index {
  color: rgba(7, 17, 44, 0.72);
}

.service-index {
  display: block;
  margin-bottom: 100px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 120px;
}

.case-grid {
  display: grid;
  gap: 18px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.92fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.case-graphic {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 138, 72, 0.55), transparent 8rem),
    radial-gradient(circle at 78% 78%, rgba(110, 231, 223, 0.35), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(6, 23, 66, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.06);
}

.case-graphic::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.case-graphic::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58%);
  transform: translateX(-35%) rotate(8deg);
  animation: sheen 5s ease-in-out infinite;
}

.graphic-bolt {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  width: 20px;
  height: 34px;
  background: var(--orange);
  clip-path: polygon(62% 0, 18% 44%, 48% 44%, 24% 100%, 84% 36%, 52% 36%);
  filter: drop-shadow(0 0 16px rgba(255, 138, 72, 0.56));
}

.graphic-stat {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-width: 106px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 44, 0.58);
  backdrop-filter: blur(14px);
}

.graphic-stat small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.graphic-stat b {
  color: var(--white);
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1;
}

.creator-radar {
  position: absolute;
  inset: 30px 86px 34px 34px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 72, 0.15), transparent 62%);
  animation: spin 18s linear infinite;
}

.creator-radar span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 22px rgba(110, 231, 223, 0.7);
}

.creator-radar span:nth-child(1) { top: 8%; left: 46%; }
.creator-radar span:nth-child(2) { top: 34%; right: 5%; background: var(--orange); }
.creator-radar span:nth-child(3) { right: 22%; bottom: 6%; }
.creator-radar span:nth-child(4) { bottom: 18%; left: 8%; background: var(--rose); }
.creator-radar span:nth-child(5) { top: 26%; left: 18%; }

.graphic-chip {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue-ink);
  background: var(--paper);
  font-size: 0.74rem;
  font-weight: 900;
}

.chip-a {
  left: 42px;
  bottom: 24px;
}

.chip-b {
  top: 30px;
  right: 22px;
  color: var(--white);
  background: var(--rose);
}

.conversion-map {
  position: absolute;
  top: 30px;
  right: 24px;
  left: 54px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.conversion-map span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--blue-ink);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
}

.conversion-map i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint), var(--orange));
}

.mini-feed {
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.mini-feed span {
  width: 46px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 138, 72, 0.82), rgba(238, 63, 100, 0.48)),
    rgba(255, 255, 255, 0.08);
  animation: float 4.8s ease-in-out infinite;
}

.mini-feed span:nth-child(2) {
  margin-top: 18px;
  background:
    linear-gradient(180deg, rgba(110, 231, 223, 0.82), rgba(36, 74, 160, 0.5)),
    rgba(255, 255, 255, 0.08);
  animation-delay: -1.4s;
}

.mini-feed span:nth-child(3) {
  margin-top: 6px;
  animation-delay: -2.5s;
}

.live-screen {
  position: absolute;
  top: 28px;
  left: 34px;
  z-index: 2;
  width: 56%;
  min-height: 112px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(7, 17, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.live-screen b {
  display: block;
  margin-left: 22px;
  font-size: 1rem;
}

.live-dot {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 18px rgba(238, 63, 100, 0.9);
}

.live-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 58px;
  margin-top: 14px;
}

.live-bars i {
  width: 16px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 138, 72, 0.14));
  animation: bars 1.8s ease-in-out infinite;
}

.live-bars i:nth-child(2) { height: 42px; animation-delay: -0.3s; }
.live-bars i:nth-child(3) { height: 34px; animation-delay: -0.6s; }
.live-bars i:nth-child(4) { height: 56px; animation-delay: -0.9s; }

.channel-stack {
  position: absolute;
  right: 28px;
  top: 38px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.channel-stack span {
  width: 70px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.channel-stack span:nth-child(2),
.channel-stack span:nth-child(4) {
  width: 96px;
  background: rgba(110, 231, 223, 0.48);
}

.case-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card strong {
  display: block;
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  line-height: 0.95;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
}

.metric {
  container-type: inline-size;
  min-height: 240px;
  padding: clamp(18px, 2vw, 26px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(6, 23, 66, 0.44);
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.metric strong {
  display: block;
  margin: 44px 0 10px;
  color: var(--orange);
  font-size: clamp(2.65rem, 18cqw, 4.7rem);
  line-height: 0.88;
  white-space: nowrap;
}

.playbook-panel,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(6, 23, 66, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.playbook-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 38px;
  padding: clamp(28px, 6vw, 64px);
}

.playbook-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.playbook-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.playbook-list span {
  color: var(--orange);
  font-weight: 900;
}

.contact {
  padding-top: 60px;
}

.contact-panel {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: clamp(28px, 7vw, 88px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 138, 72, 0.52), transparent 18rem),
    radial-gradient(circle at 86% 70%, rgba(110, 231, 223, 0.34), transparent 18rem),
    rgba(6, 23, 66, 0.64);
}

.contact-panel h2 {
  max-width: 900px;
}

.contact-button {
  display: inline-flex;
  margin-top: 18px;
  min-width: 170px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--orange);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

@keyframes pulse {
  50% {
    opacity: 0.35;
    transform: scale(0.72);
  }
}

@keyframes float {
  50% {
    transform: translateX(var(--shift)) translateY(-10px);
  }
}

@keyframes drift {
  50% {
    transform: translateY(-14px);
  }
}

@keyframes bars {
  50% {
    height: calc(var(--h) * 0.72);
  }
}

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

@keyframes sheen {
  50% {
    transform: translateX(35%) rotate(8deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  nav {
    display: none;
  }

  .hero,
  .intro-grid,
  .proof,
  .playbook-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .section-top {
    grid-template-columns: 1fr;
  }

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

  .service-card:nth-child(even) {
    margin-top: 0;
  }

  .proof-copy {
    position: static;
  }
}

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

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

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

  .section {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-top: 146px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(2.58rem, 13.4vw, 4.5rem);
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 490px;
  }

  .phone-frame {
    width: min(78vw, 286px);
    min-height: 500px;
    border-radius: 34px;
  }

  .float-card {
    min-width: 142px;
    padding: 14px;
  }

  .card-creators {
    top: 58px;
    left: 0;
  }

  .card-hours {
    right: 0;
    bottom: 74px;
  }

  .sparkline {
    display: none;
  }

  .service-grid,
  .metrics,
  .case-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-index {
    margin-bottom: 46px;
  }

  .metric {
    min-height: 190px;
  }

  footer {
    flex-direction: column;
  }
}

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