:root {
  color-scheme: dark;
  --black: #000;
  --ink: #020706;
  --deep: #001014;
  --panel: #0e0f0f;
  --panel-soft: #121414;
  --white: #f8f8f3;
  --muted: #bfc8c8;
  --subtle: #6d7777;
  --line: rgba(255, 255, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --orange: #ff7a7a;
  --orange-dark: #e85f5f;
  --mint: #c9ffc9;
  --blue: #b7c3ff;
  --yellow: #f1ed68;
  --max: 1280px;
  --radius: 12px;
  --font: "Bricolage Grotesque", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-font: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.45;
}

body::before {
  background:
    radial-gradient(circle at 60% 18%, rgba(0, 92, 120, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 70%, rgba(255, 122, 122, 0.08), transparent 28rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    translate: 0 -18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    filter: blur(12px);
    translate: 0 42px;
  }

  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}

@keyframes lineSweep {
  0% {
    opacity: 0;
    scale: 0 1;
  }

  100% {
    opacity: 1;
    scale: 1 1;
  }
}

@keyframes audienceSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--heading-font);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.grid-surface {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 64% 35%, rgba(0, 70, 92, 0.38), transparent 34rem),
    linear-gradient(180deg, var(--ink), var(--black));
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(20px, 5vw, 80px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease;
  z-index: 20;
  animation: headerDrop 650ms ease both;
}

.site-header.is-scrolled {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  height: 44px;
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  font-family: var(--heading-font);
  gap: clamp(22px, 3vw, 36px);
  font-size: 1rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta,
.button.primary {
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 8px;
  color: var(--black) !important;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.12);
}

.nav-cta {
  padding: 14px 24px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  padding: 8px;
}

.nav-toggle span {
  background: var(--white);
  border-radius: 2px;
  display: block;
  height: 3px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  min-height: 880px;
  overflow: hidden;
  padding: 160px clamp(20px, 5vw, 80px) 70px;
  position: relative;
}

.hero-inner {
  animation: heroRise 900ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
  margin: 0 auto;
  max-width: 940px;
  padding-top: 54px;
  text-align: center;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.25rem, 6.3vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 26px;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--orange);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  margin: 0 auto;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--white);
}

.button:hover,
.offer-card a:hover {
  transform: translateY(-2px);
}

.reveal {
  filter: blur(14px);
  opacity: 0;
  scale: 0.985;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 36px), 0);
  transition:
    opacity 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 780ms cubic-bezier(0.16, 1, 0.3, 1),
    scale 780ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter, scale;
}

.reveal-left {
  --reveal-x: -18px;
  --reveal-y: 18px;
}

.reveal-right {
  --reveal-x: 18px;
  --reveal-y: 18px;
}

.reveal-pop {
  --reveal-y: 18px;
}

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

.metrics {
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 150px auto 0;
  max-width: 980px;
}

.metrics article {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 150px;
  text-align: center;
}

.sticker {
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  color: #050505;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 76px;
  justify-content: center;
  margin-bottom: 20px;
  outline: 10px solid rgba(255, 255, 255, 0.035);
  position: relative;
  transform: rotate(-4deg);
  width: 76px;
}

.icon-sticker {
  box-shadow:
    inset 0 -14px 24px rgba(0, 0, 0, 0.1),
    inset 0 12px 18px rgba(255, 255, 255, 0.32),
    0 18px 36px rgba(0, 0, 0, 0.35);
  height: 96px;
  width: 96px;
}

.icon-sticker::after {
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  content: "";
  inset: 10px;
  position: absolute;
}

.icon-sticker img {
  display: block;
  height: 62px;
  object-fit: contain;
  position: relative;
  width: 62px;
  z-index: 1;
}

.icon-sticker .revenue-icon {
  height: 76px;
  width: 76px;
}

.icon-sticker .positioning-icon {
  height: 66px;
  width: 66px;
}

.icon-sticker .retainer-icon {
  height: 64px;
  width: 64px;
}

.metric-number {
  align-items: center;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  position: absolute;
  right: -10px;
  top: -10px;
  transform: rotate(7deg);
  width: 36px;
  z-index: 2;
}

.sticker-mint {
  background: var(--mint);
}

.sticker-blue {
  background: var(--blue);
}

.sticker-yellow {
  background: var(--yellow);
}

.metrics h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin-inline: auto;
  max-width: 270px;
}

.proof-strip {
  --audience-gap: clamp(44px, 7vw, 108px);
  background: linear-gradient(180deg, #101718, #050707);
  border-bottom: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  padding: 54px 0 58px;
  position: relative;
}

.proof-strip p {
  color: var(--orange);
  font-family: var(--heading-font);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 34px clamp(20px, 5vw, 80px);
}

.proof-track {
  align-items: center;
  animation: audienceSlide 58s linear infinite;
  backface-visibility: hidden;
  display: flex;
  transform: translate3d(0, 0, 0);
  width: max-content;
}

.proof-strip:hover .proof-track {
  animation-play-state: paused;
}

.proof-group {
  align-items: center;
  display: flex;
  gap: var(--audience-gap);
  padding-right: var(--audience-gap);
}

.proof-group span {
  color: var(--white);
  font-size: clamp(1.65rem, 2.45vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  opacity: 0.96;
  white-space: nowrap;
}

.testimonials,
.problems {
  padding: clamp(90px, 11vw, 150px) clamp(20px, 5vw, 80px);
}

.section-heading {
  margin: 0 auto clamp(52px, 7vw, 90px);
  max-width: 940px;
  text-align: center;
}

.section-heading.aligned-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  max-width: 780px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.calendar-button {
  min-width: min(100%, 260px);
}

.social-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  max-width: 620px;
}

.social-links a {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  font-weight: 800;
  gap: 6px;
  padding: 16px 18px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  border-color: rgba(255, 122, 122, 0.55);
  transform: translateY(-2px);
}

.social-links .contact-label {
  color: var(--orange);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-icon {
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--orange);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 2px;
  width: 42px;
}

.social-icon svg,
.footer-icon {
  display: block;
  height: 22px;
  width: 22px;
}

.icon-instagram rect,
.icon-instagram circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.icon-linkedin path,
.icon-linkedin circle {
  fill: currentColor;
}

.tilt-cards {
  align-items: center;
  display: grid;
  gap: clamp(20px, 5vw, 70px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
  padding-top: 26px;
}

.tilt-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  min-height: 340px;
  padding: clamp(26px, 3vw, 36px);
}

.tilt-left {
  transform: rotate(-15deg);
}

.tilt-right {
  transform: rotate(15deg);
}

.tilt-card p {
  color: var(--white);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.18;
  margin-bottom: 28px;
}

.tilt-card p::first-line {
  color: var(--orange);
}

.tilt-card span {
  color: var(--subtle);
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.system-block,
.offer-section,
.goal-section,
.director-section,
.explainer-section,
.contact-section {
  margin: 0 auto;
  max-width: calc(var(--max) + 160px);
  padding: clamp(86px, 11vw, 150px) clamp(20px, 5vw, 80px);
  scroll-margin-top: 92px;
}

.explainer-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 122, 0.1), transparent 26rem),
    var(--black);
}

.explainer-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.reel-sequence {
  padding-bottom: 82px;
  position: relative;
}

.reel-sequence::before {
  background: linear-gradient(90deg, transparent, rgba(255, 122, 122, 0.5), transparent);
  content: "";
  height: 1px;
  left: 8%;
  opacity: 0;
  position: absolute;
  right: 8%;
  scale: 0 1;
  top: -28px;
  transform-origin: center;
}

.reel-sequence.is-visible::before {
  animation: lineSweep 900ms 250ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.video-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  padding: 10px;
}

.video-card.is-visible {
  box-shadow: 0 34px 110px rgba(255, 122, 122, 0.08), 0 32px 90px rgba(0, 0, 0, 0.42);
}

.reel-layer {
  position: relative;
}

.layer-one {
  transform: translateY(0);
  z-index: 3;
}

.layer-two {
  transform: translateY(44px);
  z-index: 2;
}

.layer-three {
  transform: translateY(88px);
  z-index: 1;
}

.video-card-copy {
  padding: 18px 18px 20px;
}

.video-card-copy span {
  align-items: center;
  background: var(--mint);
  border-radius: 999px;
  color: var(--black);
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 0.82rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
  margin-bottom: 14px;
  min-height: 34px;
  padding: 0 14px;
  text-transform: none;
}

.video-card-copy span::before {
  background: var(--black);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 8px;
  width: 7px;
}

.video-card-copy h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.video-card-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}

.explainer-video {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
}

.explainer-video video {
  aspect-ratio: 9 / 16;
  background: #050505;
  border-radius: 8px;
  display: block;
  object-fit: contain;
  width: 100%;
}

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

.offer-card {
  background: linear-gradient(180deg, #131313, #080808);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: clamp(24px, 3.3vw, 38px);
}

.featured-offer {
  border-color: rgba(255, 122, 122, 0.65);
  box-shadow: 0 28px 80px rgba(255, 122, 122, 0.12);
  transform: translateY(-22px);
}

.plan-label {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  margin-bottom: 26px;
}

.offer-card h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.offer-card p,
.offer-card li {
  color: var(--muted);
  font-size: 1rem;
}

.offer-card ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 28px 0;
  padding: 0;
}

.offer-card li {
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 14px;
}

.offer-card a {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.12);
  color: var(--black);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  padding: 14px 18px;
  transition: transform 180ms ease;
}

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

.problem-grid article {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  min-height: 250px;
  padding: 28px;
}

.mini-icon {
  background: var(--mint);
  border-radius: 50%;
  height: 54px;
  margin-bottom: 26px;
  position: relative;
  width: 54px;
}

.mini-icon::before,
.mini-icon::after {
  background: #050505;
  border-radius: 999px;
  content: "";
  left: 14px;
  position: absolute;
  right: 14px;
  top: 20px;
}

.mini-icon::before {
  height: 4px;
  transform: rotate(42deg);
}

.mini-icon::after {
  height: 4px;
  transform: rotate(-42deg);
}

.problem-grid article:nth-child(2) .mini-icon {
  background: var(--blue);
}

.problem-grid article:nth-child(3) .mini-icon {
  background: var(--yellow);
}

.problem-grid article:nth-child(4) .mini-icon {
  background: var(--orange);
}

.problem-grid h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.problem-grid p {
  color: var(--muted);
  margin: 0;
}

.goal-card {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #121716, #060707);
  background-size: 54px 54px, 54px 54px, auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 72px);
}

.goal-card h2 {
  color: var(--orange);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  margin-bottom: 22px;
  max-width: 980px;
}

.goal-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  max-width: 760px;
}

.director-card {
  align-items: center;
  background:
    radial-gradient(circle at 17% 18%, rgba(201, 255, 201, 0.15), transparent 24rem),
    radial-gradient(circle at 86% 16%, rgba(255, 122, 122, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: clamp(20px, 3.5vw, 44px);
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
  padding: clamp(20px, 3vw, 38px);
}

.director-photo-wrap {
  align-self: center;
  align-items: end;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 26%, rgba(201, 255, 201, 0.16), transparent 44%),
    radial-gradient(circle at 20% 82%, rgba(255, 122, 122, 0.12), transparent 40%),
    linear-gradient(180deg, #071211 0%, #020303 74%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: inset 0 0 82px rgba(0, 0, 0, 0.48), 0 24px 68px rgba(0, 0, 0, 0.32);
  display: flex;
  justify-content: center;
  min-height: clamp(300px, 30vw, 420px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.director-photo-wrap::after {
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.54));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.director-photo-wrap img {
  align-self: end;
  filter:
    contrast(1.08)
    drop-shadow(0 28px 42px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 28px rgba(201, 255, 201, 0.1));
  height: min(116%, 470px);
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  transform: translateY(4px);
  width: auto;
  z-index: 1;
}

.director-mobile-photo {
  display: none;
}

.director-copy {
  max-width: 980px;
  padding: clamp(16px, 2.6vw, 34px) 0;
}

.director-copy h2 {
  font-size: clamp(2rem, 4.1vw, 4.1rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.director-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  max-width: 740px;
}

.director-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-section {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.8fr);
}

.contact-form {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  min-height: 50px;
  padding: 13px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 122, 122, 0.18);
}

.form-note {
  color: var(--orange);
  font-weight: 700;
  margin: 0;
  min-height: 1.4em;
}

.site-footer {
  align-items: stretch;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 80px);
}

.footer-main {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer .footer-email {
  color: var(--orange);
}

.footer-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-icon-link {
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 38px;
}

.site-footer a.footer-icon-link:hover {
  border-color: rgba(255, 122, 122, 0.55);
  color: var(--orange);
  transform: translateY(-1px);
}

.footer-icon {
  height: 19px;
  width: 19px;
}

.footer-address,
.footer-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.footer-address {
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid var(--line-soft);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 20px 24px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    width: 100%;
  }

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

  .metrics,
  .tilt-cards,
  .explainer-grid,
  .offer-grid,
  .problem-grid,
  .director-card,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 34px;
    margin-top: 88px;
  }

  .metrics h2 {
    max-width: none;
  }

  .tilt-left,
  .tilt-right,
  .featured-offer,
  .layer-one,
  .layer-two,
  .layer-three {
    transform: none;
  }

  .reel-sequence {
    padding-bottom: 0;
  }

  .reel-sequence::before {
    display: none;
  }

  .reveal-left,
  .reveal-right {
    --reveal-x: 0;
    --reveal-y: 46px;
  }

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

  .director-card {
    gap: 18px;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    padding: 22px;
  }

  .director-photo-wrap {
    min-height: clamp(260px, 38vw, 360px);
  }

  .director-photo-wrap img {
    height: min(116%, 420px);
  }

  .director-copy {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand {
    max-width: 250px;
  }

  .brand-logo {
    height: 34px;
    max-width: 100%;
  }

  .hero {
    min-height: 790px;
    padding-top: 116px;
  }

  .hero-inner {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.2vw, 4.15rem);
  }

  .section-heading h2,
  .goal-card h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .proof-strip p {
    margin-left: 20px;
  }

  .proof-track {
    animation-duration: 22s;
  }

  .director-card {
    align-items: start;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .director-card > .director-photo-wrap {
    display: none;
  }

  .director-mobile-photo {
    align-items: end;
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 50% 26%, rgba(201, 255, 201, 0.16), transparent 44%),
      linear-gradient(180deg, #071211 0%, #020303 74%);
    background-size: 42px 42px, 42px 42px, auto, auto;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    box-shadow: inset 0 0 62px rgba(0, 0, 0, 0.48), 0 18px 46px rgba(0, 0, 0, 0.28);
    display: flex;
    justify-content: center;
    margin: 10px 0 14px;
    min-height: 180px;
    overflow: hidden;
    position: relative;
    width: min(134px, 42vw);
  }

  .director-mobile-photo::after {
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.54));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 2;
  }

  .director-mobile-photo img {
    align-self: end;
    filter:
      contrast(1.08)
      drop-shadow(0 20px 32px rgba(0, 0, 0, 0.52));
    height: 215px;
    object-fit: contain;
    position: relative;
    transform: translateY(3px);
    width: auto;
    z-index: 1;
  }

  .director-copy {
    padding: 4px 0 0;
  }

  .director-copy h2 {
    font-size: clamp(1.35rem, 7vw, 2.35rem);
    margin-bottom: 10px;
  }

  .director-copy p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .director-actions {
    grid-column: 1 / -1;
    margin-top: 16px;
  }

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

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

  .reveal {
    filter: none;
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }

  .proof-track {
    animation: none;
    transform: none;
  }
}
