:root {
  color-scheme: light;
  --bg: #f5f0e8;
  --panel: #faf7f2;
  --panel-2: #f0ebe0;
  --ink: #0c0b09;
  --muted: #6b5e4a;
  --soft: #9a8a76;
  --line: rgba(12, 11, 9, 0.12);
  --accent: #e8b86d;
  --accent-2: #d4a24c;
  --accent-3: #c8a96e;
  --shadow: 0 28px 90px rgba(12, 11, 9, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 4%, rgba(232, 184, 109, 0.2), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(212, 162, 76, 0.12), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, #f5f0e8 46%, #f7f2e6 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(12, 11, 9, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 11, 9, 0.05) 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: block;
  flex-shrink: 0;
}

.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(232, 184, 109, 0.18), transparent 45%),
    #140f0a;
}

.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(232, 184, 109, 0.38);
  background:
    linear-gradient(145deg, #e8b86d 0 48%, #12100c 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(232, 184, 109, 0.12), transparent 46%),
    rgba(250, 247, 242, 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(232, 184, 109, 0.14), transparent 42%),
    rgba(250, 247, 242, 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(232, 184, 109, 0.12), transparent 38%),
    rgba(250, 247, 242, 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(232, 184, 109, 0.1), 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(232, 184, 109, 0.85), rgba(212, 162, 76, 0.6)),
    linear-gradient(45deg, #100e0a 0 25%, transparent 25% 50%, #100e0a 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(232, 184, 109, 0.5);
}

.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;
  }

  .nav-burger {
    display: flex;
  }

  .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;
  }
}

/* ── Hero entrance ──────────────────────────────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero-copy h1 {
  animation: heroIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-copy > p {
  animation: heroIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-actions {
  animation: heroIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hero-points {
  animation: heroIn 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.hero-media {
  animation: heroIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

/* ── Active nav indicator ───────────────────────────────────────── */
.nav a.nav-active {
  color: var(--ink);
  font-weight: 900;
}

.nav a.nav-active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Mobile hamburger button ────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav drawer ──────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(320px, 85vw);
  height: 100dvh;
  padding: 80px 28px 40px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px rgba(23,25,31,0.12);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
}

.nav-drawer nav a:last-child {
  border-bottom: none;
  margin-top: 24px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(23,25,31,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Scroll reveal ──────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }

/* ── Floating hero signal cards ─────────────────────────────────── */
.signal-a {
  animation: floatA 5.4s ease-in-out infinite;
}

.signal-b {
  animation: floatB 6.8s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes floatB {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}

/* ── Hero h1 gradient ───────────────────────────────────────────── */
.hero-copy h1 {
  background: linear-gradient(145deg, var(--ink) 0%, #5a3e1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Campaign card hover depth + image zoom ─────────────────────── */
.campaign-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.campaign-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 110px rgba(33, 41, 55, 0.22);
}

.campaign-card img {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.campaign-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

/* ── Engine grid + visibility list hover ────────────────────────── */
.engine-grid article,
.visibility-list article,
.funnel-steps article,
.compliance-rules article {
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.engine-grid article:hover,
.funnel-steps article:hover,
.compliance-rules article:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 184, 109, 0.35);
  box-shadow: 0 28px 72px rgba(33, 41, 55, 0.14);
}

.visibility-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 184, 109, 0.35);
  box-shadow: 0 28px 72px rgba(33, 41, 55, 0.14);
}

/* ── Manager tags hover ─────────────────────────────────────────── */
.manager-list span {
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    background 0.26s ease;
  cursor: default;
}

.manager-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 109, 0.35);
  background: rgba(232, 184, 109, 0.08);
}

/* ── Primary button glow + magnetic base ────────────────────────── */
.button.primary {
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

.button.primary:hover {
  box-shadow: 0 16px 48px rgba(23, 25, 31, 0.3);
}

/* ── Market strip stat gradient ─────────────────────────────────── */
.market-strip strong {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Heading clip reveal ────────────────────────────────────────── */
.reveal-heading {
  overflow: hidden;
}

.reveal-heading > * {
  display: block;
  transform: translateY(105%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-heading.revealed > * {
  transform: none;
}

/* ── FAQ section ────────────────────────────────────────────────── */
.faq-section {
  margin-top: 120px;
  margin-bottom: 96px;
}

.faq-list {
  display: grid;
  gap: 2px;
  margin-top: 8px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(250, 247, 242, 0.82);
  box-shadow: 0 4px 24px rgba(12, 11, 9, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 40px rgba(232, 184, 109, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center/10px 1.5px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center/1.5px 10px no-repeat;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--accent), var(--accent)) center/10px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center/1.5px 10px no-repeat;
  border-color: var(--accent);
}

.faq-item p {
  padding: 0 28px 26px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 20px 20px;
  }
  .faq-item p {
    padding: 0 20px 22px;
  }
}

@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;
  }
}
