@layer reset, tokens, base, components, pages, motion, responsive;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; min-height: 100%; }
  body { overflow-x: clip; }
  img, svg { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  a { color: inherit; text-decoration: none; }
}

/* Figma surfaces own all visible decoration. Do not let legacy semantic
   pseudo-elements overlay exported layouts at any breakpoint. */
body.creator-page .hero::before,
body.creator-page .hero::after,
body.creator-page #payment::before,
body.creator-page #payment::after,
body.creator-page #verification::before,
body.creator-page #verification::after,
body.creator-page #catalog::before,
body.creator-page #catalog::after,
body.creator-page #offer::before,
body.creator-page #offer::after,
body.creator-page #status::before,
body.creator-page #status::after,
body.creator-page .final-cta::before,
body.creator-page .final-cta::after,
body.advertiser-page .hero::before,
body.advertiser-page .hero::after,
body.advertiser-page #payment::before,
body.advertiser-page #payment::after,
body.advertiser-page #start::before,
body.advertiser-page #start::after,
body.advertiser-page #create::before,
body.advertiser-page #create::after,
body.advertiser-page #launch::before,
body.advertiser-page #launch::after,
body.advertiser-page #videos::before,
body.advertiser-page #videos::after,
body.advertiser-page #manage::before,
body.advertiser-page #manage::after,
body.advertiser-page .final-cta::before,
body.advertiser-page .final-cta::after {
  display: none !important;
  content: none !important;
}

/* The Figma header is part of the opening screen, not a floating overlay.
   Keeping it in normal flow prevents it from covering instructional content. */
.scroll-progress { display: none !important; }
.site-nav {
  position: relative !important;
  top: auto !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

@layer tokens {
  :root {
    color-scheme: light;
    --lime: #b7e416;
    --lime-bright: #b9ef00;
    --lime-soft: #eaffb4;
    --lime-mist: #f2ffd6;
    --ink: #101522;
    --ink-2: #1d2636;
    --ink-3: #2a3446;
    --paper: #f8f8f5;
    --surface: #ffffff;
    --surface-2: #eff1f3;
    --text: #101522;
    --muted: #5f6878;
    --line: rgba(16, 21, 34, .11);
    --danger: #ef5b62;
    --shadow-sm: 0 12px 34px rgba(9, 14, 25, .08);
    --shadow-lg: 0 30px 90px rgba(9, 14, 25, .15);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --gutter: clamp(18px, 4vw, 42px);
    --section: clamp(84px, 10vw, 144px);
    --ease: cubic-bezier(.16, 1, .3, 1);
    --page-progress: 0;
  }
}

@layer base {
  html { overflow-x: clip; scroll-behavior: smooth; background: var(--paper); }
  body {
    min-width: 320px;
    background: var(--paper);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  body[data-menu-open] { overflow: hidden; }
  h1, h2, h3, p { margin: 0; }
  h1, h2, h3 {
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    letter-spacing: -.045em;
    line-height: .96;
  }
  h1 { font-size: clamp(3.25rem, 7vw, 6.5rem); font-weight: 900; text-transform: uppercase; }
  h2 { font-size: clamp(2.4rem, 5vw, 4.8rem); font-weight: 900; }
  h3 { font-size: clamp(1.25rem, 2vw, 2rem); font-weight: 800; line-height: 1.06; }
  p { color: var(--muted); }
  :focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 4px;
    scroll-margin-top: 88px;
    scroll-margin-bottom: 24px;
  }
  :target { scroll-margin-top: 88px; }
  .container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
  .visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .skip-link {
    position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 12px 18px;
    border-radius: 999px; background: var(--ink); color: white; transform: translateY(-160%);
  }
  .skip-link:focus { transform: translateY(0); }
}

@layer components {
  .scroll-progress {
    position: fixed; inset: 0 0 auto; z-index: 220; height: 3px; pointer-events: none;
    background: var(--lime-bright); transform: scaleX(var(--page-progress)); transform-origin: left center;
  }
  .site-nav {
    position: sticky; top: 0; z-index: 200; height: 72px; background: rgba(255,255,255,.94);
    border-bottom: 1px solid transparent; transition: border-color .24s ease, box-shadow .24s ease;
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  }
  .site-nav[data-scrolled] { border-color: var(--line); box-shadow: 0 8px 28px rgba(9,14,25,.06); }
  .nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
  .brand { width: 150px; flex: 0 0 auto; }
  .brand img { width: 100%; height: auto; }
  .nav-menu { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 34px); }
  .nav-link { color: #363d49; font-size: .88rem; font-weight: 600; white-space: nowrap; }
  .nav-link[aria-current="page"] { color: var(--ink); font-weight: 800; }
  .nav-link:hover { color: #000; }
  .site-nav .button::after { display: none; }
  .menu-button {
    display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%;
    background: white; color: var(--ink); align-items: center; justify-content: center; cursor: pointer;
  }
  .menu-button span, .menu-button::before, .menu-button::after {
    content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 4px; transition: transform .2s ease;
  }
  .menu-button { flex-direction: column; gap: 4px; }
  .button {
    min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; font-size: .92rem;
    position: relative; overflow: hidden; isolation: isolate; cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s ease, background-color .22s ease;
  }
  .button::after { content: "→"; font-size: 1.15em; }
  .button-primary { background: var(--lime-bright); color: #0d1400; }
  .button-dark { background: var(--ink); color: white; }
  .button-dark:hover { background: #202a3b; }
  .button-ghost { background: white; border-color: var(--line); color: var(--ink); }
  .button-ghost::after { display: none; }
  .button-small { min-height: 44px; padding-inline: 22px; }
  .button-ripple {
    position: absolute; z-index: 2; width: 12px; height: 12px; border-radius: 50%; pointer-events: none;
    background: rgba(255,255,255,.24); translate: -50% -50%; mix-blend-mode: soft-light;
    animation: button-ripple .68s var(--ease) both;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px; color: #567200; font-weight: 900;
    font-size: .73rem; letter-spacing: .08em; text-transform: uppercase;
  }
  .eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 4px; background: var(--lime); }
  .section { position: relative; padding-block: var(--section); }
  .section-soft { background: #f0f2f3; }
  .section-lime { background: var(--lime-mist); }
  .section-dark { background: var(--ink); color: white; }
  .section-dark p { color: #adb7c6; }
  .section-dark .eyebrow { color: var(--lime); }
  .section-heading { position: relative; max-width: 920px; margin-bottom: clamp(38px, 5vw, 68px); }
  .section-heading::after {
    content: ""; display: block; width: min(180px, 36vw); height: 4px; margin-top: 28px; border-radius: 99px;
    background: linear-gradient(90deg, var(--lime), var(--lime) 55%, rgba(183,228,22,.14));
    transform: scaleX(.08); transform-origin: left; opacity: .2;
    transition: transform 1s .22s var(--ease), opacity .5s .22s ease;
  }
  .is-scene-visible .section-heading::after { transform: scaleX(1); opacity: 1; }
  .section-heading h2 { margin-top: 14px; text-wrap: balance; }
  .section-heading p { max-width: 760px; margin-top: 18px; font-size: clamp(1rem, 1.35vw, 1.18rem); }
  .section-index {
    color: var(--lime); font-family: "Inter Tight", Inter, sans-serif; font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 900; letter-spacing: -.07em; line-height: .8;
  }
  .split { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 7vw, 96px); align-items: center; }
  .split > *, .hero-grid > *, .role-grid > *, .guide-grid > *, .verification-row > *,
  .evidence-grid > *, .review-note-grid > *, .final-grid > * { min-width: 0; }
  .split.reverse { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
  .split-copy > * + * { margin-top: 20px; }
  .split-copy h2 { text-wrap: balance; }
  .split-copy p { max-width: 580px; font-size: clamp(1rem, 1.2vw, 1.12rem); }
  .action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
  .art-stack { display: grid; gap: 14px; }
  .art-shell {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface);
    border: 1px solid var(--line); box-shadow: var(--shadow-sm); isolation: isolate;
  }
  .art-shell.motion-surface::before {
    content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: 0;
    background: radial-gradient(260px circle at var(--surface-x, 50%) var(--surface-y, 50%), rgba(183,228,22,.2), transparent 68%);
    mix-blend-mode: screen; transition: opacity .35s ease;
  }
  .art-shell.motion-surface:hover::before { opacity: 1; }
  .art-shell.dark { background: var(--ink); border-color: rgba(255,255,255,.1); }
  .art-shell.lime { background: var(--lime-soft); }
  .art-shell img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .8s ease; }
  .art-shell:hover img { transform: scale(1.012); }
  .lightbox-button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; border-radius: inherit; }
  .lightbox-button::after {
    content: "+"; position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid;
    place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: 1.4rem;
    box-shadow: 0 10px 26px rgba(9,14,25,.16); opacity: 0; transform: scale(.8); transition: .25s var(--ease);
  }
  .lightbox-button:hover::after, .lightbox-button:focus-visible::after { opacity: 1; transform: scale(1); }
  .image-note { margin-top: 12px; color: var(--muted); font-size: .78rem; text-align: center; }
  .info-strip {
    display: flex; align-items: center; gap: 14px; min-height: 60px; padding: 12px 18px;
    border-radius: 18px; background: var(--lime-soft); color: var(--ink); font-size: .9rem; font-weight: 700;
  }
  .info-strip::before { content: "!"; width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--ink); color: var(--lime); }
  .callout {
    padding: 24px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line);
  }
  .callout.dark { background: var(--ink-2); color: white; border-color: rgba(255,255,255,.1); }
  .callout h3 { margin-bottom: 10px; }
  .callout p { font-size: .94rem; }
  .tag { display: inline-flex; padding: 6px 12px; border-radius: 999px; background: var(--lime); color: var(--ink); font-size: .68rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
  .dark .tag { background: var(--ink-3); color: var(--lime); }
  .step-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .step-card {
    position: relative; padding: 26px; border-radius: var(--radius-md); background: white; border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(9,14,25,.045); overflow: hidden;
  }
  .step-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--lime); }
  .step-card h3 { margin: 16px 0 10px; }
  .step-card p { font-size: .94rem; }
  .step-card .step-number { font-size: 2.6rem; line-height: .85; font-weight: 900; color: var(--lime); letter-spacing: -.06em; }
  .access-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
  .access-card { padding: 26px; border-radius: var(--radius-md); background: var(--lime-soft); border: 1px solid rgba(139,177,0,.2); }
  .access-card.private { background: var(--ink); color: white; border-color: var(--ink); }
  .access-card p { margin-top: 12px; font-size: .9rem; }
  .access-card.private p { color: #b9c2d0; }
  .access-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--ink); font-weight: 900; }
  .private .access-icon { background: var(--lime); color: var(--ink); }
  .mini-checklist { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
  .mini-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
  .mini-checklist li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; }
  .lightbox {
    width: min(94vw, 1320px); max-height: 92vh; padding: 18px; border: 0; border-radius: 24px;
    background: white; box-shadow: var(--shadow-lg);
  }
  .lightbox::backdrop { background: rgba(5,9,16,.82); backdrop-filter: blur(6px); }
  .lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 14px; }
  .lightbox-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; }
  .lightbox-footer p { font-size: .86rem; }
  .icon-button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: white; cursor: pointer; }
  .site-footer { padding: 34px 0; background: #090d16; color: white; }
  .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .site-footer .brand { position: relative; }
  .site-footer .brand img { filter: brightness(0) invert(1); }
  .site-footer .brand::before,
  .site-footer .brand::after {
    content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none;
    background: url("logo.svg") left center / 100% auto no-repeat;
  }
  .site-footer .brand::before { clip-path: inset(0 73.33% 0 0); }
  .site-footer .brand::after { clip-path: inset(0 13.33% 0 78.67%); }
  .site-footer p { color: #8f9aac; font-size: .78rem; }
}

@layer pages {
  .dot-field::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .34;
    background-image: radial-gradient(circle, rgba(16,21,34,.2) 1px, transparent 1.5px); background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
  }
  .role-main { min-height: calc(100vh - 72px); padding: 54px 0 62px; position: relative; }
  .role-hero { display: grid; grid-template-columns: 1fr 390px; align-items: center; gap: 56px; }
  .role-hero h1 { max-width: 840px; margin-top: 20px; font-size: clamp(4.25rem, 7.4vw, 7rem); }
  .role-hero p { max-width: 760px; margin-top: 22px; font-size: 1.15rem; }
  .role-hero-art { padding: 18px; }
  .role-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 66px; }
  .role-card {
    --card-bg: var(--lime-bright); --card-ink: var(--ink); --spot-color: rgba(255,255,255,.42);
    position: relative; padding: clamp(28px, 3vw, 42px); border-radius: 28px; background: var(--card-bg); color: var(--card-ink);
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform .35s var(--ease), box-shadow .35s ease; box-shadow: var(--shadow-sm); overflow: hidden;
  }
  .role-card::before {
    content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -150px;
    border: 1px solid rgba(16,21,34,.18); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.08), 0 0 0 68px rgba(255,255,255,.045);
    transition: transform .7s var(--ease); pointer-events: none;
  }
  .role-card:hover::before { transform: translate(-28px, 28px) scale(1.08); }
  .role-card::after {
    content: ""; position: absolute; inset: -1px; pointer-events: none;
    background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), var(--spot-color) 0, transparent 34%);
  }
  .role-card:hover { box-shadow: var(--shadow-lg); }
  .role-card.advertiser { --card-bg: var(--ink); --card-ink: white; --spot-color: rgba(255,255,255,.18); }
  .role-card .eyebrow { color: inherit; }
  .role-card h2 { margin-top: 12px; font-size: clamp(2.3rem, 4vw, 4rem); text-transform: uppercase; }
  .role-card p { max-width: 520px; margin-top: 12px; color: rgba(16,21,34,.68); font-size: 1.06rem; }
  .role-card.advertiser p { color: #b5bfce; }
  .role-route { margin: 26px 0 22px; padding: 14px; border-radius: 20px; background: #fff; }
  .role-card .button { width: 100%; position: relative; z-index: 1; }
  .role-note { margin-top: 28px; color: #5f6878; font-size: .85rem; }

  .hero { position: relative; padding: clamp(82px, 9vw, 128px) 0 clamp(70px, 8vw, 112px); overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
  .hero-copy h1 { max-width: 720px; margin-top: 20px; }
  .hero-copy > p { max-width: 610px; margin-top: 24px; font-size: clamp(1rem, 1.35vw, 1.17rem); }
  .hero-art { position: relative; display: grid; gap: 12px; translate: 0 var(--parallax-y, 0); transition: translate .2s linear; }
  .hero-art::before, .hero-art::after {
    content: ""; position: absolute; border-radius: 50%; background: var(--lime); z-index: -1;
  }
  .hero-art::before { width: 220px; height: 220px; right: -90px; top: -60px; opacity: .16; }
  .hero-art::after { width: 54px; height: 54px; left: -24px; bottom: 84px; }
  .hero-art-main { padding: 8px; }
  .hero-route { max-width: 100%; margin-inline: auto; }
  .hero-art-main { animation: hero-card-float 5.8s ease-in-out infinite alternate; }
  .hero-route { animation: hero-route-float 4.8s -1.2s ease-in-out infinite alternate; }
  .hero-art[data-motion-paused] .hero-art-main,
  .hero-art[data-motion-paused] .hero-route { animation-play-state: paused; }

  /* Creator hero follows the approved 1440 px Figma frame: nav + hero = 720 px. */
  .creator-page .site-nav { height: 64px; }
  .creator-page .hero {
    min-height: 656px;
    padding: 90px 0 40px;
  }
  .creator-page .hero .container { width: min(100% - 48px, 1200px); }
  .creator-page .hero-grid {
    grid-template-columns: 650px 520px;
    gap: 30px;
    align-items: start;
  }
  .creator-page .hero-copy h1 {
    max-width: 650px;
    margin-top: 24px;
    font-size: 72px;
    line-height: .95;
  }
  .creator-page .hero-copy { translate: 0 -8px; }
  .creator-page .hero-copy > p {
    max-width: 560px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
  }
  .creator-page .hero-art { padding-top: 22px; }
  .creator-page .hero-art-main,
  .creator-page .hero-route {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .creator-page .hero-art .art-shell.motion-surface::before { display: none; }
  .creator-page .hero::before,
  .creator-page .hero-art::before,
  .creator-page .hero-art::after { display: none; }
  .creator-page .hero .action-row .button::after { display: none; }

  .cpm-section { padding-block: clamp(90px, 10vw, 132px); }
  .cpm-section .section-heading { margin-bottom: 36px; }
  .cpm-art { background: transparent; border: 0; box-shadow: none; }
  .cpm-art::after {
    content: ""; position: absolute; z-index: 2; inset: -30% auto -30% -24%; width: 18%; pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent); transform: translateX(0) skewX(-14deg);
    animation: infographic-scan 7.5s 1s ease-in-out infinite;
  }
  .cpm-art[data-motion-paused]::after { animation-play-state: paused; }

  .launch-mobile,
  .catalog-mobile { display: none; }

  .verification-grid { display: grid; gap: 26px; }
  .verification-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
  .verification-row.wide-first { grid-template-columns: .72fr 1.28fr; }
  .verification-row.wide-second { grid-template-columns: .9fr 1.1fr; }
  .verification-card { display: flex; min-height: 100%; background: white; border-radius: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
  .verification-card img { width: 100%; height: 100%; object-fit: contain; }

  .evidence-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .status-flow { margin-bottom: 28px; }
  .faq-art { margin-top: 28px; }

  .dark-feature { padding-block: clamp(86px, 9vw, 128px); }
  .dark-feature .section-index { color: var(--lime); }
  .dark-feature .art-shell { border-color: rgba(255,255,255,.1); }

  .guide-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: stretch; }
  .guide-grid .art-shell { height: 100%; }
  .guide-grid img { height: 100%; object-fit: contain; }

  .review-note-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 26px; }
  .review-note-grid .callout { min-height: 120px; }
  .character-art { max-width: 360px; margin-left: auto; translate: 0 var(--parallax-y, 0); transition: translate .2s linear; }

  .final-cta { position: relative; padding: clamp(80px, 9vw, 130px) 0; background: var(--ink); color: white; overflow: hidden; }
  .final-cta::before, .final-cta::after { content: ""; position: absolute; border-radius: 50%; }
  .final-cta::before { width: 420px; height: 420px; right: -110px; top: -180px; background: var(--lime); }
  .final-cta::after { width: 230px; height: 230px; right: 0; top: -40px; background: var(--ink); }
  .final-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: center; }
  .final-copy p { max-width: 720px; margin-top: 22px; color: #abb5c5; }
  .final-route { padding: 24px; border-radius: 24px; background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); translate: 0 var(--parallax-y, 0); transition: translate .2s linear; }
  .final-route img { filter: brightness(1.07); }
}

@layer motion {
  [data-reveal] {
    opacity: 0; transform: translateY(32px); transition: opacity .72s var(--ease), transform .72s var(--ease);
    transition-delay: calc(var(--reveal-order, 0) * 80ms);
  }
  [data-reveal="left"] { transform: translateX(-36px); }
  [data-reveal="right"] { transform: translateX(36px); }
  [data-reveal="scale"] { transform: scale(.965); }
  [data-reveal].is-visible { opacity: 1; transform: none; }
  .flow-art { animation: art-float 6s ease-in-out infinite alternate; }
  .flow-art:nth-child(even) { animation-delay: -2.1s; }
  .flow-art[data-motion-paused] { animation-play-state: paused; }
  .pulse-dot { animation: pulse-dot 1.8s ease-in-out infinite; }
  .hero-art::before { animation: hero-orbit 8s ease-in-out infinite alternate; }
  .hero-art::after { animation: pulse-dot 2.8s ease-in-out infinite; }
  .final-cta::before { animation: final-orbit 9s ease-in-out infinite alternate; }
  .hero-art[data-motion-paused]::before,
  .hero-art[data-motion-paused]::after,
  .final-cta[data-motion-paused]::before { animation-play-state: paused; }
  @keyframes button-ripple { from { opacity: .8; transform: scale(0); } to { opacity: 0; transform: scale(28); } }
  @keyframes art-float { from { transform: translateY(0); } to { transform: translateY(-8px); } }
  @keyframes hero-card-float { from { transform: translateY(0) rotate(-.15deg); } to { transform: translateY(-10px) rotate(.25deg); } }
  @keyframes hero-route-float { from { transform: translateY(0); } to { transform: translateY(7px); } }
  @keyframes hero-orbit { from { transform: translate(0, 0) scale(.96); } to { transform: translate(-24px, 20px) scale(1.08); } }
  @keyframes infographic-scan {
    0%, 22% { transform: translateX(0) skewX(-14deg); opacity: 0; }
    36% { opacity: .65; }
    58%, 100% { transform: translateX(760%) skewX(-14deg); opacity: 0; }
  }
  @keyframes final-orbit { from { transform: translate(0,0) scale(1); } to { transform: translate(-34px, 28px) scale(1.08); } }
  @keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(183,228,22,.32); } 50% { box-shadow: 0 0 0 16px rgba(183,228,22,0); } }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .hero-art, .character-art, .final-route { translate: 0 0 !important; }
  }
}

@layer responsive {
  @media (min-width: 721px) and (max-width: 1279px) {
    .hero,
    .creator-page .hero,
    .advertiser-page .hero { height: auto; min-height: 0; padding: 70px 0; }
    .hero-grid,
    .creator-page .hero-grid,
    .split,
    .split.reverse,
    .final-grid { grid-template-columns: 1fr; }
    .hero-copy { translate: 0; }
    .hero-art { width: min(100%, 620px); padding-top: 0; }
    .creator-page #payment,
    .creator-page #verification,
    .creator-page #catalog,
    .creator-page #offer,
    .creator-page #status,
    .advertiser-page #payment,
    .advertiser-page #start,
    .advertiser-page #create,
    .advertiser-page #launch,
    .advertiser-page #videos,
    .advertiser-page #manage,
    .final-cta { height: auto; min-height: 0; }
    .creator-page #verification .verified-benefit { position: static; margin: 0 0 32px auto; }
    .creator-page #offer .split { grid-template-columns: 1fr; }
    .creator-page #offer .art-stack,
    .creator-page #offer .split-copy { grid-column: 1; grid-row: auto; }
    .creator-page #offer .split-copy { order: 1; }
    .creator-page #offer .art-stack { order: 2; }
    .advertiser-page #create .create-main { grid-template-columns: 1fr; height: auto; gap: 32px; }
    .advertiser-page #create .create-flow,
    .advertiser-page #create .brief-guide { width: min(100%, 760px); height: auto; }
    .advertiser-page #create .brief-guide { margin-top: 32px; }
    .advertiser-page #launch .guide-grid { height: auto; }
    .advertiser-page #launch .launch-top { grid-template-columns: 1fr; height: auto; }
    .advertiser-page #launch .section-heading,
    .advertiser-page #launch .examples-callout { width: auto; height: auto; }
    .advertiser-page #videos .character-art { position: static; }
    .creator-page #status .faq-art { margin-bottom: 4px; }
    .role-page .role-main { height: auto; padding: 48px 0; }
    .role-page .role-hero { height: auto; grid-template-columns: 1fr; }
    .role-page .role-grid { height: auto; }
    .role-page .role-card { height: auto; }
  }

  @media (max-width: 980px) {
    .nav-menu {
      display: none; position: fixed; inset: 72px 0 auto; padding: 26px var(--gutter) 34px; background: rgba(255,255,255,.98);
      border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; box-shadow: var(--shadow-sm);
    }
    .nav-menu[data-open] { display: flex; }
    .nav-menu .button { width: 100%; }
    .menu-button { display: inline-flex; }
    .role-hero, .hero-grid, .split, .split.reverse, .final-grid { grid-template-columns: 1fr; }
    .role-hero-art { max-width: 560px; }
    .hero-art { max-width: 660px; margin-inline: auto; }
    .creator-page .site-nav { height: 72px; }
    .creator-page .hero { min-height: 0; padding: 82px 0 70px; }
    .creator-page .hero .container { width: min(100% - 2 * var(--gutter), var(--container)); }
    .creator-page .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .creator-page .hero-copy h1 { max-width: 720px; font-size: clamp(3.25rem, 9vw, 5.5rem); }
    .creator-page .hero-copy { translate: 0 0; }
    .creator-page .hero-copy > p { max-width: 610px; font-size: clamp(1rem, 1.35vw, 1.17rem); line-height: 1.58; }
    .creator-page .hero-art { padding-top: 0; }
    .split.reverse > :first-child { order: 2; }
    .split.reverse > :last-child { order: 1; }
    .character-art { margin: 0; }
  }
  @media (max-width: 720px) {
    :root { --gutter: 20px; --section: 76px; }
    h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    h2 { font-size: clamp(2.1rem, 10vw, 3.4rem); }
    .site-nav { height: 68px; }
    .creator-page .site-nav { height: 68px; }
    .brand { width: 120px; }
    .nav-menu { inset-block-start: 68px; }
    .role-main { padding-top: 34px; }
    .role-hero { grid-template-columns: 1fr; gap: 28px; }
    .role-hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
    .role-hero p { font-size: 1rem; }
    .role-hero-art { padding: 0; }
    .role-grid, .step-grid, .access-grid, .evidence-grid, .review-note-grid, .guide-grid,
    .verification-row, .verification-row.wide-first, .verification-row.wide-second { grid-template-columns: 1fr; }
    .role-grid { margin-top: 40px; }
    .role-card { padding: 30px; }
    .role-card h2 { font-size: 2.45rem; }
    .hero { padding-top: 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-copy h1 { max-width: 100%; }
    .creator-page .hero { padding-top: 70px; }
    .creator-page .hero-copy h1 { max-width: 100%; font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .hero-art::before { width: 130px; height: 130px; right: -30px; }
    .action-row { flex-direction: column; align-items: stretch; }
    .action-row .button { width: 100%; }
    .section-heading { margin-bottom: 34px; }
    .section-heading p { font-size: .98rem; }
    .split { gap: 34px; }
    .art-shell { border-radius: 20px; }
    .lightbox-button::after { opacity: 1; transform: scale(.9); width: 36px; height: 36px; }
    .final-cta::before { width: 260px; height: 260px; right: -100px; top: -100px; }
    .final-route { padding: 18px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
  }
}

/* Figma parity pass: fixed artboard rhythm and independently animated artwork. */
@layer pages {
  .site-nav { height: 64px; }
  .site-nav .container,
  .hero .container,
  .role-page .container { width: min(100% - 48px, 1200px); }
  .brand { width: 150px; }

  .layered-scene {
    position: relative;
    width: 100%;
    aspect-ratio: var(--scene-ratio);
    overflow: visible;
    isolation: isolate;
  }
  .creator-scene, .advertiser-scene { --scene-ratio: 520 / 325; }
  .role-scene { --scene-ratio: 380 / 260; }
  .characters-scene { --scene-ratio: 360 / 203; }
  .layered-scene .scene-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    will-change: transform;
  }
  .layered-scene .scene-layer-a { clip-path: polygon(0 0, 36% 0, 36% 100%, 0 100%); }
  .layered-scene .scene-layer-b { clip-path: polygon(34% 0, 70% 0, 70% 100%, 34% 100%); }
  .layered-scene .scene-layer-c { clip-path: polygon(68% 0, 100% 0, 100% 100%, 68% 100%); }

  .hero {
    min-height: 656px;
    height: 656px;
    padding: 90px 0 40px;
  }
  .hero-grid {
    grid-template-columns: 650px 520px;
    gap: 30px;
    align-items: start;
  }
  .hero-copy { translate: 0 -8px; }
  .hero-copy h1 {
    max-width: 650px;
    margin-top: 24px;
    font-size: 72px;
    line-height: .95;
  }
  .hero-copy > p {
    max-width: 560px;
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.7;
  }
  .hero-art { padding-top: 22px; }
  .hero-art-main,
  .hero-route {
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-art .art-shell.motion-surface::before,
  .hero::before,
  .hero-art::before,
  .hero-art::after { display: none; }
  .hero .action-row .button::after { display: none; }
  .advertiser-page .hero-copy h1 { font-size: 60px; max-width: 660px; }
  .advertiser-page .hero-art { padding-top: 36px; }

  .section { padding: 60px 0; overflow: hidden; }
  .section > .container { height: 100%; }
  .section-heading { margin-bottom: 32px; }
  .section-heading::after { display: none; }
  .section-heading h2,
  .split-copy h2 { font-size: 48px; line-height: .98; }
  .section-heading p { margin-top: 14px; font-size: 17px; }
  .cpm-section { padding: 60px 0; }
  .cpm-section .section-heading { margin-bottom: 26px; }
  .cpm-art img { max-height: 620px; object-fit: contain; }

  .creator-page #payment { height: 900px; }
  .creator-page #verification { height: 1900px; padding-block: 72px; }
  .creator-page #catalog { height: 680px; padding-block: 48px; }
  .creator-page #offer { height: 680px; padding-block: 48px; }
  .creator-page #status { height: 1100px; padding-block: 56px; }
  .creator-page #verification { position: relative; }
  .creator-page #verification .section-heading { width: 730px; margin-left: 20px; margin-bottom: 38px; }
  .creator-page #verification .verified-benefit { position: absolute; z-index: 2; top: 96px; right: max(20px, calc((100vw - 1240px) / 2 + 20px)); width: 366px; }
  .creator-page #verification .verification-grid { gap: 38px; }
  .creator-page #verification .verification-row { grid-template-columns: 520px 680px; gap: 40px; }
  .creator-page #verification .verification-card { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .creator-page #catalog .split,
  .creator-page #offer .split { height: 100%; gap: 54px; }
  .creator-page #catalog .art-stack,
  .creator-page #offer .art-stack { max-height: 584px; align-content: center; }
  .creator-page #catalog .art-stack img,
  .creator-page #offer .art-stack img { max-height: 448px; object-fit: contain; }
  .creator-page #catalog .art-stack .lime img { max-height: 150px; }
  .creator-page #offer .split { grid-template-columns: 410px 780px; gap: 50px; }
  .creator-page #offer .art-stack { grid-column: 2; grid-row: 1; }
  .creator-page #offer .split-copy { grid-column: 1; grid-row: 1; align-self: start; }
  .creator-page #offer .art-stack img { width: 780px; max-height: 570px; }
  .creator-page #offer .offer-action-route { width: 410px; margin-top: 70px; }
  .creator-page #offer .offer-action-route img { width: 410px; max-height: 158px; }
  .creator-page #status .section-heading { margin-bottom: 24px; }
  .creator-page #status .status-flow { margin-bottom: 20px; }
  .creator-page #status .faq-art { margin-top: 20px; }
  .creator-page #status { padding: 54px 0 26px; }
  .creator-page #status .evidence-grid { grid-template-columns: 540px 540px; gap: 160px; }
  .creator-page #status .evidence-grid .art-shell { width: 540px; height: 370px; }
  .creator-page #status .evidence-grid img { width: 100%; height: 100%; object-fit: cover; }
  .creator-page #status .faq-art { position: relative; height: 224px; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .creator-page #status .faq-art img { position: absolute; left: -28px; top: -30px; width: 1296px; max-width: none; height: 284px; }

  .advertiser-page #payment { height: 900px; }
  .advertiser-page #start { height: 680px; padding-block: 52px; }
  .advertiser-page #create { height: 900px; padding: 72px 0 64px; }
  .advertiser-page #launch { height: 900px; padding: 44px 0 26px; }
  .advertiser-page #videos { height: 900px; padding-block: 54px; }
  .advertiser-page #manage { height: 680px; padding-block: 42px; }
  .advertiser-page #start .split,
  .advertiser-page #create .split,
  .advertiser-page #manage .split { height: 100%; }
  .advertiser-page #create .art-stack { max-height: 760px; }
  .advertiser-page #create .create-main { display: grid; grid-template-columns: 540px 680px; gap: 0; height: 556px; }
  .advertiser-page #create .section-heading { width: 468px; margin: 0; }
  .advertiser-page #create .create-flow { width: 680px; height: 450px; align-self: start; }
  .advertiser-page #create .create-flow img { width: 100%; height: 100%; object-fit: cover; }
  .advertiser-page #create .access-grid { grid-template-columns: 220px 220px; gap: 18px; margin-top: 38px; position: relative; }
  .advertiser-page #create .access-grid::after { content: ""; position: absolute; left: 30px; right: 30px; bottom: -17px; height: 4px; border-radius: 99px; background: var(--lime); }
  .advertiser-page #create .access-card { height: 166px; padding: 18px; }
  .advertiser-page #create .access-card p { display: none; }
  .advertiser-page #create .access-card h3 { margin-top: 12px; font-size: 20px; }
  .advertiser-page #create .access-icon { float: left; width: 36px; height: 36px; margin: 10px 12px 0 0; }
  .advertiser-page #create .brief-guide { width: 1220px; height: 208px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .advertiser-page #launch > .container { width: min(100% - 48px, 1280px); }
  .advertiser-page #launch .launch-top { display: grid; grid-template-columns: 780px 460px; gap: 40px; height: 224px; }
  .advertiser-page #launch .section-heading { width: 780px; margin: 0; }
  .advertiser-page #launch .examples-callout { width: 460px; height: 196px; padding: 26px 30px; }
  .advertiser-page #launch .guide-grid { grid-template-columns: 780px 480px; gap: 20px; height: 544px; }
  .advertiser-page #launch .guide-grid img { width: 100%; height: 100%; object-fit: contain; }
  .advertiser-page #launch .moderation-strip { height: 44px; min-height: 44px; margin-top: 18px; padding-block: 6px; }
  .advertiser-page #videos .section-heading { margin-bottom: 24px; }
  .advertiser-page #videos .art-shell > img { max-height: 450px; object-fit: contain; }
  .advertiser-page #videos .review-note-grid { margin-top: 18px; }
  .advertiser-page #videos .character-art { position: absolute; right: 7vw; top: 42px; }
  .advertiser-page #manage .faq-art { margin-top: 0; }
  .advertiser-page #manage .split-copy > * + * { margin-top: 14px; }
  .advertiser-page #manage .callout { padding: 18px 20px; }

  .final-cta { height: 520px; padding: 70px 0 62px; }
  .final-cta h2 { font-size: 52px; }
  .final-brand { position: relative; display: block; width: 150px; margin-bottom: 34px; }
  .final-brand img { filter: brightness(0) invert(1); }
  .final-brand::before,
  .final-brand::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: url("logo.svg") left center / 100% auto no-repeat; }
  .final-brand::before { clip-path: inset(0 73.33% 0 0); }
  .final-brand::after { clip-path: inset(0 13.33% 0 78.67%); }
  .final-route { max-height: 308px; padding: 12px; }
  .site-footer { display: none; }

  .role-page .site-footer { display: none; }
  .role-page .role-main { height: 960px; min-height: 0; padding: 55px 0 50px; }
  .role-page .role-hero { height: 281px; grid-template-columns: 820px 380px; gap: 20px; }
  .role-page .role-hero h1 { margin-top: 20px; max-width: 820px; font-size: 72px; line-height: .96; }
  .role-page .role-hero p { margin-top: 20px; font-size: 18px; }
  .role-page .role-hero-art { padding: 0; border: 0; background: transparent; box-shadow: none; }
  .role-page .role-grid { height: 482px; margin-top: 24px; gap: 40px; }
  .role-page .role-card { height: 482px; padding: 32px; }
  .role-page .role-card h2 { margin-top: 8px; font-size: 40px; }
  .role-page .role-card p { margin-top: 8px; font-size: 16px; line-height: 1.55; }
  .role-page .role-route { height: 196px; margin: 16px 0 22px; padding: 0; overflow: hidden; }
  .role-page .role-route img { width: 100%; height: 100%; }
  .role-page .role-card .button { min-height: 56px; }
  .role-page .role-note { margin-top: 28px; }
}

@layer motion {
  @media (prefers-reduced-motion: no-preference) {
    .layered-scene .scene-layer-a { animation: scene-a 5.8s ease-in-out infinite alternate; }
    .layered-scene .scene-layer-b { animation: scene-b 6.4s -1.7s ease-in-out infinite alternate; }
    .layered-scene .scene-layer-c { animation: scene-c 5.2s -2.5s ease-in-out infinite alternate; }
  }
  @keyframes scene-a { from { transform: translate3d(0,0,0) rotate(0); } to { transform: translate3d(-2px,-5px,0) rotate(-.25deg); } }
  @keyframes scene-b { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,-7px,0) scale(1.006); } }
  @keyframes scene-c { from { transform: translate3d(0,0,0) rotate(0); } to { transform: translate3d(3px,-4px,0) rotate(.25deg); } }
}

@layer responsive {
  @media (max-width: 980px) {
    .site-nav,
    .creator-page .site-nav,
    .advertiser-page .site-nav { height: 64px; }
    .nav-menu { inset-block-start: 64px; }
    .hero,
    .creator-page .hero,
    .advertiser-page .hero { height: auto; min-height: 0; padding: 64px 0; }
    .hero-grid,
    .creator-page .hero-grid { grid-template-columns: 1fr; gap: 38px; }
    .hero-copy { translate: 0 0; }
    .hero-art { padding-top: 0; }
    .advertiser-page #videos .character-art { position: static; }
    .creator-page #status .faq-art { margin-bottom: 4px; }
  }

  @media (max-width: 720px) {
    :root { --gutter: 20px; }
    .site-nav,
    .creator-page .site-nav,
    .advertiser-page .site-nav { height: 64px; }
    .nav-menu { inset-block-start: 64px; }
    .brand { width: 120px; }
    .section { padding: 40px 0; }
    .section-heading h2,
    .split-copy h2 { font-size: 34px; line-height: 1; }
    .section-heading p,
    .split-copy p { font-size: 15px; line-height: 1.5; }
    .hero,
    .creator-page .hero,
    .advertiser-page .hero { height: 696px; padding: 34px 0 24px; }
    .hero-grid,
    .creator-page .hero-grid { gap: 20px; }
    .hero-copy h1,
    .creator-page .hero-copy h1,
    .advertiser-page .hero-copy h1 { margin-top: 14px; font-size: 44px; line-height: .95; }
    .hero-copy > p,
    .creator-page .hero-copy > p { margin-top: 14px; font-size: 15px; line-height: 1.48; }
    .hero-copy .action-row { margin-top: 18px; }
    .hero-copy .action-row .button { min-height: 44px; }
    .hero-art { width: 100%; max-width: 350px; }
    .hero-route { max-height: 112px; overflow: hidden; }

    .creator-page #payment { height: 940px; }
    .creator-page #verification { height: 2570px; padding-block: 44px; }
    .creator-page #catalog { height: 700px; padding-block: 38px; }
    .creator-page #offer { height: 700px; padding-block: 38px; }
    .creator-page #status { height: 1340px; padding-block: 42px; }
    .creator-page #catalog > .container { display: none; }
    .creator-page #catalog .catalog-mobile { display: grid; width: 342px; margin: 0 auto; grid-template-rows: 44px 62px 42px 314px 112px; gap: 14px; }
    .creator-page #catalog .catalog-mobile .section-index { font-size: 58px; line-height: 44px; }
    .creator-page #catalog .catalog-mobile h2 { margin: 0; font-family: var(--display); font-size: 31px; line-height: 1; letter-spacing: -.035em; }
    .creator-page #catalog .catalog-mobile p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--muted); }
    .creator-page #catalog .catalog-mobile .lightbox-button,
    .creator-page #catalog .catalog-mobile .lightbox-button img,
    .creator-page #catalog .catalog-mobile-route { display: block; width: 342px; height: 100%; object-fit: contain; }
    .creator-page #catalog .catalog-mobile .lightbox-button { border-radius: 18px; overflow: hidden; }
    .creator-page #catalog .split,
    .creator-page #offer .split { height: auto; gap: 22px; }
    .creator-page #catalog .art-stack,
    .creator-page #offer .art-stack { max-height: none; }
    .creator-page #catalog .art-stack img,
    .creator-page #offer .art-stack img { max-height: 310px; }
    .creator-page #catalog .art-stack .lime img { max-height: 120px; }
    .creator-page #offer .split { grid-template-columns: 1fr; }
    .creator-page #offer .art-stack,
    .creator-page #offer .split-copy { grid-column: 1; grid-row: auto; }
    .creator-page #offer .split-copy { order: 1; }
    .creator-page #offer .art-stack { order: 2; }
    .creator-page #offer .container { position: relative; }
    .creator-page #offer .offer-action-route { position: absolute; left: 0; bottom: 0; width: 100%; margin: 0; }
    .creator-page #offer .offer-action-route img { width: 100%; }
    .creator-page #verification { padding: 50px 0 40px; }
    .creator-page #verification > .container { width: 342px; }
    .creator-page #verification .section-heading { width: 342px; margin: 0; }
    .creator-page #verification .verified-benefit { position: static; width: 342px; margin-top: 62px; }
    .creator-page #verification .verification-grid { margin-top: 24px; gap: 24px; }
    .creator-page #verification .verification-row { gap: 24px; }
    .creator-page #verification .verification-card picture,
    .creator-page #verification .verification-card img { display: block; width: 100%; height: auto; }
    .creator-page #status .evidence-grid { grid-template-columns: 1fr; gap: 18px; }
    .creator-page #status .evidence-grid .art-shell { width: 100%; height: auto; }
    .creator-page #status .evidence-grid img { width: 100%; height: auto; object-fit: contain; }
    .creator-page #status .faq-art { height: auto; overflow: hidden; }
    .creator-page #status .faq-art img { position: static; width: 100%; max-width: 100%; height: auto; }

    .advertiser-page #payment { height: 940px; }
    .advertiser-page #start { height: 700px; padding-block: 40px; }
    .advertiser-page #create { height: 860px; padding-block: 40px; }
    .advertiser-page #launch { height: 860px; padding: 22px 0 20px; }
    .advertiser-page #videos { height: 1370px; padding-block: 42px; }
    .advertiser-page #manage { height: 920px; padding-block: 40px; }
    .advertiser-page #start .split,
    .advertiser-page #create .split,
    .advertiser-page #manage .split { height: auto; }
    .advertiser-page #create .create-main { grid-template-columns: 1fr; height: auto; gap: 20px; }
    .advertiser-page #create .section-heading { width: auto; }
    .advertiser-page #create .create-flow { width: 100%; height: auto; }
    .advertiser-page #create .access-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
    .advertiser-page #create .access-card { height: 142px; padding: 14px; }
    .advertiser-page #create .access-card h3 { font-size: 15px; }
    .advertiser-page #create .brief-guide { width: 100%; height: auto; margin-top: 20px; }
    .advertiser-page #launch > .container { width: 354px; }
    .advertiser-page #launch .launch-top { display: block; height: 126px; }
    .advertiser-page #launch .section-heading { width: 354px; height: 126px; margin: 0; }
    .advertiser-page #launch .section-heading h2 { margin-top: 12px; font-size: 27px; line-height: .95; }
    .advertiser-page #launch .section-heading p { margin-top: 8px; font-size: 11px; line-height: 1.35; }
    .advertiser-page #launch .examples-callout,
    .advertiser-page #launch .guide-grid,
    .advertiser-page #launch .moderation-strip { display: none; }
    .advertiser-page #launch .launch-mobile { display: grid; gap: 10px; margin-top: 10px; }
    .advertiser-page #launch .launch-mobile > img,
    .advertiser-page #launch .launch-mobile-task,
    .advertiser-page #launch .launch-mobile-task img { display: block; width: 354px; height: auto; }
    .advertiser-page #launch .launch-mobile-task { border: 0; border-radius: 18px; overflow: hidden; }
    .advertiser-page #videos .art-shell > img { max-height: none; }

    .final-cta { height: 460px; padding: 42px 0; }
    .final-cta h2 { font-size: 36px; }
    .final-copy p { margin-top: 14px; font-size: 14px; }
    .final-route { display: none; }
    .site-footer { display: none; }

    .role-page .role-main { height: 1666px; padding: 0; }
    .role-page .role-hero { height: 420px; grid-template-columns: 1fr; grid-template-rows: 176px 176px; gap: 12px; padding-top: 34px; }
    .role-page .role-hero h1 { margin-top: 12px; font-size: 42px; line-height: 1; }
    .role-page .role-hero p { margin-top: 12px; font-size: 16px; line-height: 1.5; }
    .role-page .role-hero-art { width: 350px; height: 176px; justify-self: center; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #f7f8fa; }
    .role-page .role-hero-art .layered-scene { height: 100%; aspect-ratio: auto; }
    .role-page .role-grid { height: auto; margin-top: 0; padding-top: 20px; gap: 20px; }
    .role-page .role-card { height: 541px; padding: 32px; }
    .role-page .role-card h2 { font-size: 34px; }
    .role-page .role-route { height: auto; aspect-ratio: 516 / 196; margin-top: 18px; }
    .role-page .role-note { margin-top: 20px; font-size: 13px; }

    .menu-button { display: none; }
    .nav-menu { display: flex; position: static; inset: auto; padding: 0; flex-direction: row; align-items: center; gap: 10px; background: transparent; border: 0; box-shadow: none; }
    .nav-menu .button { width: auto; min-height: 44px; padding-inline: 18px; font-size: 13px; }
    .role-page .nav-menu .role-link { display: none; }
    .creator-page .nav-menu .advertiser-link,
    .creator-page .nav-menu [data-platform-link="login"],
    .advertiser-page .nav-menu .creator-link,
    .advertiser-page .nav-menu [data-platform-link="login"] { display: none; }
    .creator-page .nav-menu .creator-link,
    .advertiser-page .nav-menu .advertiser-link { display: inline-flex; font-size: 12px; }
    .hero-copy .action-row .button-ghost { display: none; }
    .hero-route { display: none; }
  }
}
