:root {
  color-scheme: light;
  --bg: #f5f6f2;
  --panel: #ffffff;
  --panel-2: #edf2f5;
  --ink: #17191f;
  --muted: #5d6470;
  --soft: #8a919c;
  --line: rgba(23, 25, 31, 0.12);
  --accent: #5f6bff;
  --accent-2: #ff8d6d;
  --accent-3: #7edc9a;
  --shadow: 0 28px 90px rgba(33, 41, 55, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 4%, rgba(126, 220, 154, 0.25), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(95, 107, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #fafaf7 0%, #f2f5f7 46%, #f7f3ef 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(23, 25, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 31, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

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

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

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: rgba(23, 25, 31, 0.08);
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

.site-header {
  position: sticky;
  top: 3px;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(33, 41, 55, 0.12);
}

.brand,
.nav,
.hero-actions,
.hero-points,
.market-strip,
.package-tabs,
.footer,
.manager-list {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), var(--accent));
  font-weight: 900;
}

.nav {
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.nav-cta {
  padding: 11px 15px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 44px;
  align-items: center;
  padding: 30px 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3.9rem, 7.2vw, 7.5rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 5.8rem);
  line-height: 0.92;
  font-weight: 920;
  letter-spacing: 0;
}

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

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 640px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #ffffff;
  background: var(--ink);
}

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

.button.full {
  width: 100%;
}

.hero-points {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
  min-height: 570px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(23, 25, 31, 0.12);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-a {
  inset: 0 10% 15% 0;
}

.hero-photo-b {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 44%;
  border: 8px solid var(--bg);
}

.signal-card {
  position: absolute;
  z-index: 5;
  min-width: 170px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(33, 41, 55, 0.16);
}

.signal-card span,
.signal-card small,
.campaign-copy span,
.recommendation span {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.signal-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.7rem;
}

.signal-card small {
  margin-top: 3px;
  color: var(--muted);
  text-transform: none;
}

.signal-a {
  left: -26px;
  bottom: 20%;
}

.signal-b {
  right: 28px;
  top: 9%;
}

.market-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -20px auto 120px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.market-strip div {
  flex: 1;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.market-strip div:last-child {
  border-right: 0;
}

.market-strip strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.market-strip span {
  display: block;
  max-width: 250px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.campaign-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.campaign-large {
  grid-row: span 2;
  min-height: 740px;
}

.campaign-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.campaign-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.86) 100%);
}

.campaign-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
}

.campaign-copy h3 {
  margin-top: 8px;
}

.campaign-copy p {
  max-width: 560px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.82);
}

.mascot-card {
  display: grid;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 255, 99, 0.18), transparent 45%),
    #14170f;
}

.mascot-card::after {
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
}

.mascot-portrait {
  width: min(62%, 260px);
  aspect-ratio: 1;
  margin: 0 auto 64px;
  border: 1px solid rgba(215, 255, 99, 0.38);
  background:
    linear-gradient(145deg, #d7ff63 0 48%, #12160f 48% 100%);
  transform: rotate(-4deg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.mascot-face {
  position: relative;
  width: 62%;
  height: 70%;
  margin: 15% auto;
  border: 7px solid #0b0d0b;
  border-bottom-width: 22px;
  background: #f5f1e8;
}

.mascot-face span {
  position: absolute;
  top: 35%;
  width: 16px;
  height: 16px;
  background: #0b0d0b;
}

.mascot-face span:first-child {
  left: 24%;
}

.mascot-face span:last-child {
  right: 24%;
}

.funnel-section,
.manager-panel,
.compliance-section,
.intake-section,
.visibility-section,
.audit-section {
  margin-top: 120px;
}

.funnel-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.funnel-copy,
.manager-panel,
.compliance-card,
.intake-copy,
.intake-card,
.recommendation,
.package-detail,
.package-proof,
.funnel-steps article,
.compliance-rules article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(33, 41, 55, 0.08);
}

.funnel-copy,
.compliance-card,
.intake-copy {
  padding: 34px;
}

.funnel-copy p,
.intake-copy p,
.manager-panel p,
.compliance-card p {
  margin-top: 18px;
}

.funnel-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.funnel-steps article {
  min-height: 310px;
  padding: 24px;
}

.funnel-steps span {
  color: var(--accent);
  font-weight: 900;
}

.funnel-steps h3 {
  margin-top: 72px;
}

.funnel-steps p {
  margin-top: 12px;
}

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

.engine-grid article,
.visibility-card,
.visibility-list article,
.audit-section {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(33, 41, 55, 0.08);
}

.engine-grid article {
  min-height: 215px;
  padding: 22px;
}

.engine-grid span,
.visibility-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.engine-grid p,
.visibility-list p {
  margin-top: 10px;
}

.visibility-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
}

.visibility-card {
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(95, 107, 255, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.9);
}

.visibility-card h3 {
  color: var(--accent);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.94;
}

.visibility-card p {
  margin-top: 24px;
}

.visibility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.visibility-list article {
  min-height: 220px;
  padding: 26px;
}

.packages-section {
  margin-top: 120px;
}

.package-tabs {
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  color: #ffffff;
  border-color: var(--ink);
  background: var(--ink);
}

.package-stage {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 16px;
}

.package-detail {
  min-height: 420px;
  padding: clamp(26px, 4vw, 48px);
}

.package-detail .price {
  display: inline-block;
  margin: 20px 0 22px;
  color: var(--accent);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 950;
}

.package-detail ul,
.package-proof ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-detail li,
.package-proof li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.package-detail li::before,
.package-proof li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.package-proof {
  padding: 28px;
}

.package-proof h3 {
  margin-bottom: 24px;
}

.manager-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(120deg, rgba(126, 220, 154, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.86);
}

.manager-list {
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.manager-list span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-weight: 800;
}

.compliance-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}

.compliance-rules {
  display: grid;
  gap: 16px;
}

.compliance-rules article {
  padding: 25px;
}

.compliance-rules p {
  margin-top: 10px;
}

.intake-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 96px;
}

.audit-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 96px;
  background:
    linear-gradient(120deg, rgba(255, 141, 109, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.86);
}

.audit-section p {
  max-width: 760px;
  margin-top: 18px;
}

.intake-card,
.recommendation {
  padding: 24px;
}

.intake-card {
  display: grid;
  gap: 14px;
}

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

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  font: inherit;
}

.recommendation h3 {
  margin-top: 10px;
}

.recommendation p {
  margin: 14px 0 20px;
}

.footer {
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer div {
  display: grid;
  gap: 5px;
}

.footer strong {
  color: var(--ink);
}

.footer-powered {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-powered-link {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-powered-link:hover {
  color: var(--ink);
}

.video-hero {
  display: grid;
  grid-template-columns: 1fr 0.42fr;
  gap: 18px;
  align-items: stretch;
  padding: 96px 0 62px;
}

.video-hero h1 {
  max-width: 980px;
  font-size: clamp(3.4rem, 8vw, 8.8rem);
}

.video-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.video-standard,
.reel-preview,
.reference-card,
.production-note {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(33, 41, 55, 0.08);
}

.video-standard,
.reel-preview {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(33, 41, 55, 0.08);
}

.video-standard {
  align-self: end;
  padding: 28px;
}

.video-standard span,
.reference-card span {
  display: block;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.video-standard strong {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.95;
}

.reel-preview-section,
.reference-section,
.production-note {
  margin-top: 94px;
}

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

.reel-preview {
  padding: 14px;
}

.reel-preview h3 {
  margin-top: 18px;
}

.reel-preview p {
  margin-top: 8px;
}

.mock-reel {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  background: #17191f;
}

.mock-reel video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-reel::before,
.mock-reel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.mock-reel::before {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: reelDrift 7s ease-in-out infinite alternate;
}

.real-video-reel::before {
  display: none;
}

.mock-reel::after {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(95, 107, 255, 0.14), transparent 45%);
}

.beauty-reel::before {
  background-image: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=900&q=86");
}

.fashion-reel::before {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=900&q=86");
}

.mascot-reel::before {
  background:
    linear-gradient(135deg, rgba(215, 255, 99, 0.9), rgba(109, 224, 255, 0.55)),
    linear-gradient(45deg, #10140c 0 25%, transparent 25% 50%, #10140c 50% 75%, transparent 75%);
  background-size: cover, 54px 54px;
}

.play-dot {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.82);
}

.play-dot::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--accent);
}

.reel-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  color: #ffffff;
  font-weight: 900;
}

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

.reference-card {
  display: grid;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.reference-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 99, 0.45);
}

.reference-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.reference-card div {
  padding: 20px;
}

.reference-card h3 {
  margin-top: 8px;
}

.reference-card p {
  margin-top: 10px;
}

.reference-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
}

.production-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 48px);
  margin-bottom: 96px;
}

.production-note p {
  max-width: 780px;
  margin-top: 16px;
}

@keyframes reelDrift {
  from {
    transform: scale(1.04) translate3d(-2%, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(2%, -1%, 0);
  }
}

.mobile-cta {
  display: none;
}

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

  .hero,
  .section-heading,
  .funnel-section,
  .engine-grid,
  .visibility-layout,
  .visibility-list,
  .manager-panel,
  .compliance-section,
  .intake-section,
  .audit-section,
  .package-stage,
  .video-hero,
  .production-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    order: -1;
    min-height: 520px;
  }

  .market-strip,
  .funnel-steps,
  .campaign-grid,
  .reel-preview-grid,
  .reference-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .market-strip {
    margin-top: 0;
  }

  .market-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .market-strip div:last-child {
    border-bottom: 0;
  }

  .campaign-large {
    min-height: 520px;
  }
}

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

  .nav-cta {
    display: none;
  }

  .section,
  .market-strip,
  .footer {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 48px;
    gap: 26px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 4.6rem);
  }

  .hero-media {
    min-height: 332px;
  }

  .hero-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .hero-photo-a {
    inset: 0 0 18% 0;
  }

  .hero-photo-b {
    width: 52%;
    height: 38%;
  }

  .signal-card {
    min-width: 136px;
    padding: 11px;
  }

  .signal-card strong {
    font-size: 1.35rem;
  }

  .signal-a {
    left: 10px;
    bottom: 6%;
  }

  .signal-b {
    right: 10px;
    top: 7%;
  }

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

  .hero-points {
    display: none;
  }

  .campaign-card,
  .campaign-large {
    min-height: 430px;
  }

  .funnel-copy,
  .compliance-card,
  .intake-copy,
  .intake-card,
  .recommendation,
  .package-detail,
  .package-proof,
  .funnel-steps article,
  .compliance-rules article {
    padding: 22px;
  }

  .funnel-section,
  .manager-panel,
  .compliance-section,
  .intake-section,
  .visibility-section,
  .packages-section,
  .audit-section,
  .reel-preview-section,
  .reference-section,
  .production-note {
    margin-top: 84px;
  }

  .video-hero {
    padding-top: 54px;
  }

  .mock-reel {
    min-height: 420px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 60;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-cta .button {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  .footer {
    display: grid;
    gap: 18px;
    margin-bottom: 88px;
  }
}

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