:root {
  --bg: #151515;
  --green: #89ff76;
  --green-dim: rgba(137, 255, 118, 0.24);
  --white: #f4f4f4;
  --grey-2: #cfcfcf;
  --grey-3: #9a9a9a;
  --surface-1: #1c1c1c;
  --surface-2: #232323;
  --surface-nav: rgba(14, 14, 14, 0.62);
  --surface-nav-scrolled: rgba(8, 8, 8, 0.9);
  --base-deep: #0a0a0a;
  --line-1: #2b2b2b;
  --line-2: #232323;
  --btn-text: #0a0f05;
  --col: min(680px, calc(100% - 40px));
  --wide: min(1120px, calc(100% - 40px));
  --section-space: clamp(80px, 11vw, 136px);
  --font-heading: "Azeret Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --font-body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% -10%, rgba(137, 255, 118, 0.07), transparent 28rem);
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-wrap: balance;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3.3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

p {
  color: var(--grey-2);
}

::selection {
  background: var(--green);
  color: var(--btn-text);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--green);
  color: var(--btn-text);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.content-column {
  width: var(--col);
  margin-inline: auto;
}

.wide-column {
  width: var(--wide);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
  scroll-margin-top: 112px;
}

.site-header {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 30;
  pointer-events: none;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(920px, calc(100% - 24px));
  min-height: 64px;
  margin-inline: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--surface-nav);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background 420ms ease, border-color 420ms ease, box-shadow 420ms ease;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--surface-nav-scrolled);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.05);
}

.brand {
  display: grid;
  align-items: center;
  padding: 6px 4px;
}

.brand img {
  width: auto;
  height: 36px;
}

.brand-name{
  width: auto;
  height: 64px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 28px);
}

.nav-links a,
.footer-nav a {
  color: #c9c9c9;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.footer-nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 260ms ease, border-color 220ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary,
.button-nav {
  background: var(--green);
  color: var(--btn-text);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-nav:hover,
.button-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 28px var(--green-dim);
}

.button-nav {
  min-height: 46px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(100dvh, 860px);
  place-items: start center;
  overflow: hidden;
  padding: 180px 20px 0;
  text-align: center;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(10, 10, 10, 0.58) 42%, rgba(21, 21, 21, 0.9) 82%, var(--bg) 100%),
    url("Assets/hero-bg.jpg") center top / cover no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1200ms var(--ease-out), transform 1600ms var(--ease-out);
  pointer-events: none;
}

.hero.is-lit .hero-backdrop {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 8px 9px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.76);
  color: var(--grey-2);
  font-family: var(--font-heading);
  font-size: 0.73rem;
}

.availability strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green);
  color: var(--btn-text);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.hero-lede {
  max-width: 740px;
  margin: 0 auto 24px;
  color: var(--grey-2);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  letter-spacing: -0.02em;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 8px;
}

.hero-actions .button {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
}

.hero-note {
  margin: 0;
  color: rgba(207, 207, 207, 0.55);
  font-size: 0.74rem;
  font-style: italic;
}

.hero-media-peek {
  width: var(--col);
  margin: 100px auto 0;
  transform: translateY(28%);
}

.hero-media-peek .video-frame {
  box-shadow: 0 -18px 80px rgba(0, 0, 0, 0.36);
}

.hero-rise {
  animation: hero-rise 850ms var(--ease) both;
}

.hero-rise:nth-child(2) { animation-delay: 100ms; }
.hero-rise:nth-child(3) { animation-delay: 180ms; }
.hero-rise:nth-child(4) { animation-delay: 260ms; }
.hero-rise:nth-child(5) { animation-delay: 330ms; }

.section-heading {
  margin-bottom: clamp(42px, 7vw, 70px);
  text-align: center;
}

.section-lede {
  max-width: 620px;
  margin: 0 auto;
  color: var(--grey-2);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  letter-spacing: -0.02em;
  line-height: 1.75;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.video-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-1);
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(137, 255, 118, 0.09), transparent 38%),
    var(--base-deep);
}

.video-frame::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  content: "";
  pointer-events: none;
}

.video-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 160px;
  min-height: 112px;
  place-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  cursor: pointer;
}

.play-mark {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 34px var(--green-dim);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.play-mark::after {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--btn-text);
  content: "";
}

.video-trigger:hover .play-mark {
  transform: scale(1.06);
  box-shadow: 0 0 48px var(--green-dim);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-status {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
  margin: 0;
  color: var(--grey-3);
  font-size: 0.75rem;
}

.platforms {
  width: var(--col);
  margin-inline: auto;
  padding: 38px 0;
  border-block: 1px solid var(--line-2);
  text-align: center;
}

.platforms p {
  margin-bottom: 18px;
  color: var(--grey-3);
  font-size: 0.78rem;
}

.platform-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.platform-names strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.platform-names span {
  width: 1px;
  height: 22px;
  background: var(--line-1);
}

.work-section {
  padding-bottom: 80px;
}

.showcase {
  position: relative;
}

.showcase-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.showcase-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding: 10px;
  animation: showcase-loop 60s linear infinite;
}

.showcase.is-paused .showcase-track,
.showcase-track:hover,
.showcase-track:focus-within {
  animation-play-state: paused;
}

.showcase-item {
  width: clamp(260px, 25vw, 330px);
  height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-1);
  border-radius: 14px;
  background: var(--base-deep);
}

.showcase-item:nth-child(3n + 2) {
  transform: translateY(22px);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.9) contrast(1.02);
}

.stats-section {
  padding-block: 90px;
  border-block: 1px solid var(--line-2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(700px, calc(100% - 40px));
  margin-inline: auto;
}

.stat {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 230px;
  padding: 40px 22px;
  border: 1px solid var(--line-1);
  border-radius: 16px;
  background: var(--surface-1);
  text-align: center;
  transform: scale(1);
  transition: transform 240ms var(--ease-out), opacity 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.stat strong {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.6vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--grey-3);
  font-size: 0.85rem;
  line-height: 1.55;
}

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

.offer-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line-1);
  border-radius: 14px;
  background: var(--surface-1);
  transition: transform 220ms var(--ease-out), background 220ms ease, border-color 220ms ease;
}

.offer-tick {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(137, 255, 118, 0.4);
  border-radius: 50%;
  background: rgba(137, 255, 118, 0.08);
  color: var(--green);
  animation: tick-glow 3.2s ease-in-out infinite;
}

.offer-item:nth-child(2) .offer-tick { animation-delay: 0.5s; }
.offer-item:nth-child(3) .offer-tick { animation-delay: 1s; }

.offer-tick svg {
  width: 18px;
  height: 18px;
}

.offer-item p {
  max-width: 570px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
}

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

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

.process-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line-1);
  border-radius: 18px;
  background: var(--bg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 320ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
}

.process-card:hover {
  border-color: rgba(137, 255, 118, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24), 0 0 34px rgba(137, 255, 118, 0.06);
  transform: translateY(-4px);
}

.process-media {
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: var(--base-deep);
}

.process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 600ms var(--ease-out);
}

.process-card:hover .process-media img {
  transform: scale(1.04);
}

.process-body {
  padding: 24px 24px 28px;
}

.process-body p {
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.process-body small {
  display: block;
  color: var(--grey-3);
  font-size: 0.74rem;
  line-height: 1.6;
}

.process-cta {
  margin-top: 44px;
  text-align: center;
}

.thesis-section {
  text-align: center;
}

.thesis-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.thesis-section h2 + p {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.proof-section {
  padding-top: 0;
}

.proof-shot {
  margin: 0 auto;
  max-width: 700px;
  overflow: hidden;
  border: 1px solid var(--line-1);
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), 0 0 44px rgba(137, 255, 118, 0.05);
}

.proof-shot img {
  width: 100%;
  border-radius: 8px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line-1);
  border-radius: 18px;
  background: var(--surface-1);
  transition: border-color 260ms ease, background 260ms ease;
}

.faq-item.is-open {
  border-color: rgba(137, 255, 118, 0.28);
  background: var(--surface-2);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  content: "";
  transition: transform 320ms var(--ease);
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner p {
  margin: 0;
  padding: 0 24px 24px 58px;
  font-size: 0.88rem;
  line-height: 1.75;
}

.booking-section {
  padding-top: 40px;
}

.booking-split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  width: min(1060px, calc(100% - 40px));
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(137, 255, 118, 0.18);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.booking-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 64px) clamp(28px, 5vw, 56px);
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(137, 255, 118, 0.2), transparent 55%),
    linear-gradient(160deg, #103019 0%, #0a1f10 45%, #050d07 100%);
  text-align: left;
}

.booking-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #ffffff;
}

.booking-copy p {
  max-width: 380px;
  margin: 0;
  color: rgba(238, 245, 238, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.booking-calendar {
  min-height: 660px;
  background: #ffffff;
}

.booking-calendar .calendly-inline-widget {
  width: 100%;
  height: 100%;
}

.site-footer {
  padding: 76px 0 38px;
  border-top: 1px solid var(--line-2);
  background: #000000;
}

.footer-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.footer-inner > p:not(.fine-print) {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 0.88rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-bottom: 46px;
}

.fine-print {
  margin: 0;
  color: var(--grey-3);
  font-size: 0.7rem;
}

.reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(18px) scale(0.985);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out), filter 560ms var(--ease-out);
}

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

.reveal-group .reveal:nth-child(2) { transition-delay: 70ms; }
.reveal-group .reveal:nth-child(3) { transition-delay: 140ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes showcase-loop {
  to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes tick-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(137, 255, 118, 0);
    border-color: rgba(137, 255, 118, 0.35);
  }
  50% {
    box-shadow: 0 0 22px rgba(137, 255, 118, 0.4), 0 0 44px rgba(137, 255, 118, 0.12);
    border-color: rgba(137, 255, 118, 0.85);
  }
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .booking-split {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    text-align: center;
  }

  .booking-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    inset-block-start: 10px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
    padding: 8px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-around;
    gap: 8px;
    padding: 5px 4px 3px;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  .button-nav {
    min-height: 42px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: max(100dvh, 820px);
    padding-top: 130px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .stats {
    grid-template-columns: 1fr;
    width: min(480px, calc(100% - 40px));
  }

  .stat {
    min-height: 170px;
    padding: 32px;
  }

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

@media (max-width: 540px) {
  :root {
    --col: min(100% - 28px, 680px);
    --wide: min(100% - 28px, 1120px);
    --section-space: 84px;
  }

  html {
    scroll-padding-top: 128px;
  }

  .nav-shell {
    width: calc(100% - 16px);
  }

  .brand img {
    height: 24px;
  }

  .brand-name {
    height: 48px;
  }

  .button-nav {
    padding-inline: 12px;
  }

  .nav-links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding-inline: 14px;
  }

  .availability {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 9px;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.45rem);
    line-height: 1.1;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-media-peek {
    margin-top: 30px;
    transform: translateY(22%);
  }

  .video-frame {
    aspect-ratio: 4 / 3;
  }

  .showcase-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .showcase-item {
    width: 260px;
    height: 430px;
  }

  .offer-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 26px 20px;
  }

  .faq-question {
    min-height: 64px;
    padding: 18px;
  }

  .faq-answer-inner p {
    padding: 0 18px 20px 52px;
  }

  .proof-shot {
    padding: 6px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .stats:hover .stat {
    opacity: 0.7;
    transform: scale(0.975);
  }

  .stats .stat:hover {
    z-index: 1;
    border-color: rgba(137, 255, 118, 0.34);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), 0 0 24px rgba(137, 255, 118, 0.08);
    opacity: 1;
    transform: scale(1.035);
  }

  .offer-item:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: #191919;
    transform: translateY(-2px);
  }
}

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

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero-backdrop {
    opacity: 1;
    transform: none;
  }

  .offer-tick {
    animation: none;
  }

  .showcase-track {
    animation: none;
  }

  .showcase-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .nav-shell {
    background: var(--surface-nav-scrolled);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
