:root {
  --color-black: #000000;
  --color-ink: #090909;
  --color-ink-soft: #111111;
  --color-white: #ffffff;
  --color-orange: #ff6a00;
  --color-orange-soft: #ff8a2a;
  --color-orange-deep: #c94b00;
  --color-muted: #b8b8b8;
  --color-border: rgba(255, 255, 255, 0.18);
  --color-card: rgba(255, 255, 255, 0.045);
  --container: 1200px;
  --font: "DM Sans", sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-orange: 0 0 48px rgba(255, 106, 0, 0.22);
  --button-angle: 0deg;
}

@property --button-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--color-muted);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius-sm);
  background: var(--color-orange);
  color: var(--color-white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 140px;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 0 26px rgba(255, 106, 0, 0.3));
  animation: markPulse 3.2s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

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

.main-nav .nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--color-orange);
  border-radius: var(--radius-pill);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: 170px 0 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 106, 0, 0.2), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(135deg, #07000c 0%, #000000 46%, #14030b 100%);
  background-position: center;
  background-size: 120% 120%;
  opacity: 0.82;
  transform: scale(1.03);
  animation: backgroundDrift 26s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 106, 0, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #000 96%);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: glowSweep 11s ease-in-out infinite alternate;
  will-change: opacity;
}

.hero::after {
  position: absolute;
  top: 18%;
  right: 4%;
  z-index: -1;
  width: min(42vw, 560px);
  aspect-ratio: 1.3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 68%);
  content: "";
  opacity: 0.8;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: heroEnergyFlow 12s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.hero-orbit {
  position: absolute;
  right: min(8vw, 120px);
  bottom: 90px;
  z-index: -1;
  width: clamp(220px, 32vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(255, 106, 0, 0.06), 0 0 46px rgba(255, 106, 0, 0.1);
  animation: orbitFloat 12s ease-in-out infinite;
  will-change: transform;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.hero-orbit::after {
  top: 16%;
  right: 20%;
  width: 14px;
  height: 14px;
  background: var(--color-orange);
  box-shadow: 0 0 30px var(--color-orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 18px var(--color-orange);
  content: "";
}

.eyebrow.dark {
  border-color: rgba(0, 0, 0, 0.16);
  color: var(--color-black);
}

.hero h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: var(--color-white);
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 900;
  line-height: 0.95;
}

.hero h1 span {
  display: block;
  color: var(--color-white);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  content: "";
  transform: translateX(-120%);
}

.button:hover::after {
  animation: buttonShine 0.8s ease;
}

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

.button-primary {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-orange), var(--color-orange)) padding-box,
    conic-gradient(from var(--button-angle), rgba(255, 106, 0, 0.15), #ffb46a, #ff6a00, rgba(255, 106, 0, 0.15)) border-box;
  color: var(--color-white);
  box-shadow: var(--shadow-orange), 0 0 0 1px rgba(255, 106, 0, 0.12);
  animation: buttonBorderLoop 2.8s linear infinite;
}

.button-secondary {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: var(--color-orange);
}

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.panel-kicker {
  padding: 4px 4px 0;
  color: var(--color-orange-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-card);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-orange-soft);
  font-size: 22px;
}

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

.platform-logo {
  width: 132px;
  height: 34px;
}

.platform-logo-square {
  width: 42px;
  height: 42px;
}

.platform-logo-gads {
  width: 164px;
  height: 44px;
}

.platform-logo img,
.track-logo,
.heading-logo img,
.inline-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.metric span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.proof-band {
  padding: 18px 0;
  border-block: 1px solid var(--color-border);
  overflow: hidden;
}

.proof-list,
.proof-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-track {
  width: max-content;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding-left: 28px;
  animation: marquee 28s linear infinite;
}

.track-logo {
  width: 118px;
  height: 28px;
}

.track-logo-square {
  width: 28px;
}

.track-logo-gads {
  width: 136px;
  height: 34px;
}

.track-word-white {
  color: var(--color-white);
}

.services,
.method,
.differentials,
.reviews,
.faq,
.cta {
  position: relative;
  isolation: isolate;
  padding: 86px 0;
  overflow: hidden;
}

.services::before,
.method::before,
.differentials::before,
.reviews::before,
.faq::before,
.cta::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1.2px),
    radial-gradient(circle at 82% 18%, rgba(255, 106, 0, 0.1), transparent 34%);
  background-position: 0 0, center;
  background-size: 28px 28px, cover;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.services::before {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 106, 0, 0.24), transparent 8%),
    radial-gradient(circle at 78% 34%, rgba(255, 106, 0, 0.18), transparent 7%),
    radial-gradient(circle at 62% 82%, rgba(255, 106, 0, 0.16), transparent 8%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.095) 1px, transparent 1px);
  background-position: center, center, center, 0 0, 0 0;
  background-size: cover, cover, cover, 72px 72px, 72px 72px;
  opacity: 0.58;
}

.reviews::before,
.faq::before,
.cta::after {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 106, 0, 0.16), transparent 8%),
    radial-gradient(circle at 82% 72%, rgba(255, 106, 0, 0.12), transparent 8%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-position: center, center, 0 0, 0 0;
  background-size: cover, cover, 76px 76px, 76px 76px;
  opacity: 0.48;
}

.services > .container,
.method > .container,
.differentials > .container,
.reviews > .container,
.faq > .container,
.cta > .container,
.performance-section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.performance-grid h2,
.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.04;
}

.section-heading p,
.performance-copy p,
.cta p {
  font-size: 19px;
}

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

.visual-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.visual-band img,
.section-visual {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.visual-band h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.section-visual {
  margin-top: 28px;
}

.service-card,
.step,
.feature-row article,
.faq details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.services .service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px) saturate(130%);
}

.services .service-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 34%, rgba(255, 106, 0, 0.08));
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.services .service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 106, 0, 0.06);
  transform: translateY(-4px);
}

.services .service-card:hover {
  background: linear-gradient(145deg, rgba(255, 106, 0, 0.16), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 106, 0, 0.58);
}

.service-card:hover .card-icon {
  transform: translateY(-4px);
}

.card-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 106, 0, 0.34);
  border-radius: 14px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--color-orange-soft);
  box-shadow: inset 0 0 22px rgba(255, 106, 0, 0.05), 0 0 24px rgba(255, 106, 0, 0.08);
  transition: transform 0.25s ease;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step h3,
.feature-row h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.service-card h3 {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.heading-logo {
  display: inline-flex;
  width: 112px;
  height: 24px;
  align-items: center;
}

.heading-logo-square {
  width: 30px;
  height: 30px;
}

.heading-logo-gads {
  width: 146px;
  height: 34px;
}

.inline-logo {
  display: inline-flex;
  width: 76px;
  height: 16px;
  margin-inline: 2px;
  vertical-align: -2px;
}

.inline-logo-square {
  width: 20px;
  height: 20px;
  vertical-align: -4px;
}

.inline-logo-gads {
  width: 94px;
  height: 22px;
  vertical-align: -5px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.step h3 {
  color: var(--color-orange-soft);
}

.step:hover {
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 106, 0, 0.055);
  transform: translateX(6px);
}

.performance-section {
  position: relative;
  isolation: isolate;
  padding: 86px 0;
  background: var(--color-white);
  color: var(--color-black);
  overflow: hidden;
}

.performance-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.1) 1px, transparent 1.2px),
    radial-gradient(circle at 14% 18%, rgba(255, 106, 0, 0.12), transparent 32%);
  background-position: 0 0, center;
  background-size: 30px 30px, cover;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.performance-section p,
.performance-section li {
  color: #2c2c2c;
}

.performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.performance-copy ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
}

.performance-copy li::marker {
  color: var(--color-orange);
}

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

.feature-row article {
  padding: 30px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.feature-row article:hover {
  border-color: rgba(255, 106, 0, 0.72);
  background: rgba(255, 106, 0, 0.055);
  transform: translateY(-4px);
}

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

.review-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
}

.stars {
  margin-bottom: 24px;
  color: var(--color-orange-soft);
  font-size: 20px;
  letter-spacing: 2px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.78);
}

.review-card strong {
  display: block;
  margin-top: 24px;
  color: var(--color-white);
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 106, 0, 0.42);
  border-radius: var(--radius-md);
  background: rgba(255, 106, 0, 0.08);
}

.reviews-cta h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.05;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 20px 22px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq summary {
  cursor: pointer;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
}

.faq details[open] {
  border-color: rgba(255, 106, 0, 0.72);
}

.faq details p {
  margin: 16px 0 0;
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  position: absolute;
  inset: auto 10% -180px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.34), transparent 70%);
  content: "";
  animation: ctaGlow 5s ease-in-out infinite alternate;
}

.cta-inner {
  position: relative;
  max-width: 820px;
}

.cta .eyebrow {
  margin-inline: auto;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.footer-grid p {
  max-width: 440px;
  margin: 14px 0 0;
  font-size: 15px;
}

.footer-contact {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--color-orange-soft);
  font-weight: 800;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 700;
}

.footer-grid a:hover {
  color: var(--color-orange-soft);
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .hero-copy[data-animate] {
  transform: translateY(36px);
}

.hero-copy.is-visible h1 span {
  animation: wordRise 0.8s ease both;
}

.hero-copy.is-visible h1 span:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-copy.is-visible h1 span:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-panel.is-visible .metric {
  animation: cardRise 0.7s ease both;
}

.hero-panel.is-visible .metric:nth-of-type(2) {
  animation-delay: 0.12s;
}

.hero-panel.is-visible .metric:nth-of-type(3) {
  animation-delay: 0.24s;
}

@keyframes wordRise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes backgroundDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-10px, 6px, 0);
  }
}

@keyframes glowSweep {
  from {
    opacity: 0.68;
  }
  to {
    opacity: 0.95;
  }
}

@keyframes heroEnergyFlow {
  from {
    opacity: 0.52;
    transform: translate3d(-10px, 0, 0) scale(0.96);
  }
  to {
    opacity: 0.82;
    transform: translate3d(18px, -12px, 0) scale(1.04);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

@keyframes markPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.22));
  }
  50% {
    filter: drop-shadow(0 0 42px rgba(255, 106, 0, 0.46));
  }
}

@keyframes buttonShine {
  to {
    transform: translateX(120%);
  }
}

@keyframes buttonBorderLoop {
  to {
    --button-angle: 360deg;
  }
}

@keyframes ctaGlow {
  from {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(-24px) scale(1.08);
  }
}

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

  .js [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 130px 0 72px;
  }

  .hero-grid,
  .split,
  .performance-grid,
  .visual-band {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sticky-heading {
    position: static;
  }

  .card-grid,
  .feature-row,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .header-inner {
    display: flex;
    min-height: 68px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.94);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding: 106px 0 58px;
  }

  .hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .services,
  .method,
  .differentials,
  .faq,
  .cta,
  .performance-section {
    padding: 62px 0;
  }

  .card-grid,
  .feature-row,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .visual-band,
  .review-card,
  .reviews-cta {
    padding: 24px;
  }

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