/* ==========================================================================
   Wildcard — creative agency / studio template
   Theme tokens: override these to recolour the whole template.
   ========================================================================== */
:root {
  --brand: #ff4d2e;
  --accent: #c9f06b;
  --accent-2: #7b61ff;
  --bg: #f2efe8;
  --surface: #ffffff;
  --ink: #111111;
  --ink-2: #1c1c1c;
  --text: #111111;
  --muted: #5b5850;
  --line: #d9d4c7;
  --radius: 20px;
  --font-display: "Syne", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 17px/1.6 var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: .95; letter-spacing: -0.035em; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; font-weight: 700; }
.skip-link:focus { top: 16px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
@media (max-width: 600px) { .container { width: calc(100% - 32px); } }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.label { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 22px; }
.label::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--brand); }
.big { font-size: clamp(2.6rem, 7vw, 6.4rem); }
.arrow { display: inline-block; transition: transform .3s var(--ease); }
a:hover .arrow { transform: translate(4px, -4px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: 999px; font-weight: 600; border: 1.5px solid var(--ink); transition: background .25s, color .25s, transform .25s; cursor: pointer; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-lime { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-lime:hover { background: #fff; border-color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 800 1.5rem var(--font-display); letter-spacing: -.04em; }
.logo svg { width: 34px; height: 34px; transition: transform .6s var(--ease); }
.logo:hover svg { transform: rotate(180deg); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: block; padding: 8px 16px; border-radius: 999px; font-weight: 500; transition: background .2s; }
.nav-links a:hover { background: rgba(0,0,0,.06); }
.nav-links a[aria-current="page"] { background: var(--ink); color: #fff; }
.nav-links .nav-cta a { background: var(--brand); color: var(--ink); font-weight: 600; margin-left: 8px; }
.nav-links .nav-cta a:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; height: 46px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--ink); background: transparent; font-weight: 600; cursor: pointer; align-items: center; gap: 10px; }
.menu-toggle i { position: relative; width: 16px; height: 2px; background: currentColor; transition: .3s; }
.menu-toggle i::before { content: ""; position: absolute; left: 0; top: -5px; width: 16px; height: 2px; background: currentColor; transition: .3s; }
.menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(-90deg); }
@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: stretch; position: fixed; inset: 80px 0 auto 0; background: var(--ink); padding: 24px 16px 32px; gap: 2px; }
  .nav-links.open a { color: #fff; font: 800 2rem var(--font-display); letter-spacing: -.03em; padding: 10px 12px; border-radius: 12px; }
  .nav-links.open a[aria-current="page"] { background: rgba(255,255,255,.1); }
  .nav-links.open .nav-cta a { margin: 12px 0 0; text-align: center; color: var(--ink); font-size: 1.3rem; border-radius: 999px; }
}

/* Hero */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(40px, 6vw, 70px); position: relative; }
.hero h1 { font-size: clamp(3.1rem, 11.2vw, 11.5rem); line-height: .88; letter-spacing: -.055em; margin: 0; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; animation: rise 1s var(--ease) both; }
.hero h1 .line:nth-child(2) > span { animation-delay: .08s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .16s; }
@keyframes rise { from { transform: translateY(105%); } }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero h1 .pill-word { display: inline-flex; align-items: center; vertical-align: middle; height: .72em; width: 1.6em; border-radius: 999px; margin: 0 .08em; overflow: hidden; background: var(--accent-2); position: relative; top: -.04em; }
.hero h1 .pill-word svg { width: 100%; height: 100%; }
.hero-foot { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; margin-top: clamp(32px, 5vw, 60px); }
.hero-foot p { font-size: clamp(1.1rem, 1.7vw, 1.4rem); max-width: 520px; margin: 0; }
.badge { width: 150px; height: 150px; position: relative; flex: none; display: grid; place-items: center; }
.badge svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.badge .dot { width: 64px; height: 64px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; font-size: 1.6rem; transition: transform .3s; }
.badge:hover .dot { transform: scale(1.1) rotate(45deg); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 640px) { .hero-foot { grid-template-columns: 1fr; } .badge { width: 120px; height: 120px; } }

/* Showreel */
.reel { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 7; background: var(--ink); }
.reel svg.art { width: 100%; height: 100%; object-fit: cover; }
.reel .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 110px; height: 110px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; border: 0; cursor: pointer; transition: transform .3s var(--ease); }
.reel .play:hover { transform: translate(-50%, -50%) scale(1.08); }
@media (max-width: 600px) { .reel { aspect-ratio: 4 / 3; } .reel .play { width: 84px; height: 84px; font-size: .72rem; } }

/* Marquee */
.marquee { background: var(--ink); color: var(--bg); overflow: hidden; padding: 26px 0; transform: rotate(-1.5deg); margin: 60px -20px; border-block: 1px solid var(--ink); }
.marquee.lime { background: var(--accent); color: var(--ink); transform: rotate(1.2deg); margin-top: -90px; position: relative; z-index: -1; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee.lime .marquee-track { animation-direction: reverse; }
.marquee-track span { font: 800 clamp(1.8rem, 4vw, 3.2rem)/1 var(--font-display); letter-spacing: -.03em; padding: 0 28px; display: inline-flex; align-items: center; gap: 56px; white-space: nowrap; }
.marquee-track span::after { content: "✳"; color: var(--brand); font-size: .8em; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro / stats */
.intro { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 100px); }
.intro h2 { font-size: clamp(2rem, 4.2vw, 3.6rem); line-height: 1.02; }
.intro p { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-top: 1.5px solid var(--ink); }
.stats div { padding: 24px 20px 0 0; }
.stats strong { display: block; font: 800 clamp(2.6rem, 5vw, 4.2rem)/1 var(--font-display); letter-spacing: -.05em; }
.stats span { color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; row-gap: 24px; } }

/* Work */
.section-top { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.section-top h2 { margin: 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 40px); }
.work-grid.feature .case:nth-child(3n+1) { grid-column: 1 / -1; }
.work-grid.feature .case:nth-child(3n+1) .case-media { aspect-ratio: 16 / 7.5; }
.case { display: block; }
.case-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; background: var(--line); }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.case:hover .case-media img { transform: scale(1.05); }
.case-media .view { position: absolute; right: 18px; bottom: 18px; background: var(--bg); color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: .9rem; transform: translateY(12px); opacity: 0; transition: .35s var(--ease); }
.case:hover .view, .case:focus-visible .view { transform: none; opacity: 1; }
.case-info { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-top: 16px; }
.case-info h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0; letter-spacing: -.03em; }
.case-info span { color: var(--muted); font-size: .95rem; text-align: right; }
@media (max-width: 720px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-grid.feature .case:nth-child(3n+1) .case-media { aspect-ratio: 4 / 3; }
  .case-info { flex-direction: column; gap: 2px; }
  .case-info span { text-align: left; }
}

/* Services */
.dark { background: var(--ink); color: var(--bg); }
.dark .label::before { background: var(--accent); }
.dark .muted { color: #b3ada0; }
.services { border-top: 1px solid #3a3a3a; }
.service { border-bottom: 1px solid #3a3a3a; }
.service summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 20px; padding: clamp(22px, 3vw, 34px) 0; transition: color .25s, padding .35s var(--ease); }
.service summary::-webkit-details-marker { display: none; }
.service summary:hover { color: var(--accent); padding-left: 12px; }
.service .num { font: 600 .95rem var(--font-body); color: #9c968a; }
.service h3 { font-size: clamp(1.8rem, 4.6vw, 4rem); margin: 0; letter-spacing: -.045em; }
.service .plus { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid currentColor; display: grid; place-items: center; font-size: 1.5rem; transition: transform .35s var(--ease), background .25s; }
.service[open] .plus { transform: rotate(45deg); background: var(--accent); color: var(--ink); border-color: var(--accent); }
.service-body { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 20px; padding-bottom: 34px; }
.service-body p { color: #c9c3b6; font-size: 1.08rem; margin: 0; grid-column: 2; }
.service-body ul { grid-column: 3; list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; align-content: start; }
.service-body li { border: 1px solid #4a4a4a; padding: 6px 14px; border-radius: 999px; font-size: .9rem; }
@media (max-width: 760px) {
  .service summary { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .service .plus { width: 42px; height: 42px; }
  .service-body { grid-template-columns: 1fr; }
  .service-body p, .service-body ul { grid-column: 1; }
}

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: p; list-style: none; padding: 0; margin: 0; }
.process li { background: var(--surface); border-radius: var(--radius); padding: 28px; min-height: 300px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .35s var(--ease); }
.process li:hover { transform: translateY(-6px) rotate(-1deg); }
.process li:nth-child(2) { background: var(--accent); }
.process li:nth-child(3) { background: var(--brand); }
.process li:nth-child(4) { background: var(--ink); color: var(--bg); }
.process .step { font: 800 4.5rem/1 var(--font-display); letter-spacing: -.06em; margin-bottom: auto; }
.process h3 { font-size: 1.6rem; margin: 24px 0 8px; letter-spacing: -.03em; }
.process p { margin: 0; font-size: .98rem; }
.process li:nth-child(1) p, .process li:nth-child(2) p, .process li:nth-child(3) p { color: #2b2b2b; }
@media (max-width: 1000px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } .process li { min-height: 0; } .process .step { margin-bottom: 20px; } }

/* Team */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member figure { margin: 0; }
.member .portrait { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; transition: border-radius .4s var(--ease); }
.member:hover .portrait { border-radius: 50% 50% var(--radius) var(--radius); }
.member .portrait svg { width: 100%; height: 100%; }
.member figcaption { padding-top: 14px; }
.member b { display: block; font: 700 1.2rem var(--font-display); letter-spacing: -.02em; }
.member span { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .team { grid-template-columns: 1fr 1fr; } }

/* Testimonial */
.quote-block { text-align: center; max-width: 1060px; margin: 0 auto; }
.quote-block blockquote { margin: 0; font: 700 clamp(1.7rem, 3.8vw, 3.2rem)/1.12 var(--font-display); letter-spacing: -.035em; }
.quote-block blockquote::before { content: "“"; display: block; font-size: 2.5em; line-height: .6; color: var(--brand); margin-bottom: 10px; }
.quote-block figcaption { margin-top: 28px; color: var(--muted); }
.quote-block figcaption b { color: var(--text); }
.clients { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 80px; }
.clients div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); height: 110px; display: grid; place-items: center; font: 800 1.25rem var(--font-display); letter-spacing: -.03em; color: #6b675e; transition: background .25s, color .25s; }
.clients div:hover { background: var(--ink); color: var(--accent); }
@media (max-width: 800px) { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients { grid-template-columns: repeat(2, 1fr); } }

/* Big CTA */
.cta { background: var(--brand); color: var(--ink); text-align: center; overflow: hidden; }
.cta .label::before { background: var(--ink); }
.cta h2 { font-size: clamp(3rem, 13vw, 13rem); line-height: .85; letter-spacing: -.06em; margin: 0 0 40px; }
.cta h2 a { display: inline-block; transition: transform .4s var(--ease); }
.cta h2 a:hover { transform: skewX(-8deg); }
.cta p { font-size: 1.2rem; max-width: 540px; margin: 0 auto 36px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--bg); padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; margin-bottom: 20px; }
.footer-grid h3 { font: 600 .8rem var(--font-body); text-transform: uppercase; letter-spacing: .14em; color: #9c968a; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid address { font-style: normal; color: #c9c3b6; }
.newsletter { display: flex; border-bottom: 1.5px solid #555; max-width: 420px; }
.newsletter input { flex: 1; min-width: 0; background: none; border: 0; padding: 14px 0; color: var(--bg); }
.newsletter input::placeholder { color: #8f897d; }
.newsletter input:focus { outline: none; }
.newsletter:focus-within { border-color: var(--accent); }
.newsletter button { background: none; border: 0; color: var(--accent); font-weight: 600; cursor: pointer; padding: 0 0 0 12px; }
.form-msg { min-height: 1.4em; font-size: .92rem; margin-top: 10px; color: var(--accent); }
.footer-word { font: 800 clamp(4rem, 21vw, 22rem)/.8 var(--font-display); letter-spacing: -.07em; margin: 70px 0 30px; color: #1f1f1f; white-space: nowrap; overflow: hidden; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: #9c968a; font-size: .9rem; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--bg); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-grid > div:first-child { grid-column: 1 / -1; } }

/* ---------- Work page ---------- */
.page-hero { padding: clamp(50px, 8vw, 110px) 0 clamp(40px, 6vw, 70px); }
.page-hero h1 { font-size: clamp(3.4rem, 12vw, 12rem); line-height: .85; letter-spacing: -.06em; margin: 0; }
.page-hero h1 sup { font-size: .25em; vertical-align: top; position: relative; top: .5em; color: var(--brand); letter-spacing: 0; }
.page-hero p { font-size: clamp(1.1rem, 1.6vw, 1.35rem); max-width: 620px; margin: 28px 0 0; color: var(--muted); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filters button { border: 1.5px solid var(--ink); background: transparent; border-radius: 999px; padding: 10px 20px; font-weight: 600; cursor: pointer; transition: .2s; }
.filters button:hover { background: rgba(0,0,0,.06); }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; }
.case[hidden] { display: none; }
.case-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.case-meta i { font-style: normal; font-size: .82rem; padding: 4px 12px; border-radius: 999px; background: rgba(0,0,0,.06); }
.results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.results div { background: var(--surface); border-radius: var(--radius); padding: 32px; }
.results strong { display: block; font: 800 clamp(2.8rem, 5vw, 4.4rem)/1 var(--font-display); letter-spacing: -.05em; color: var(--brand); }
.results p { margin: 8px 0 0; color: var(--muted); }
@media (max-width: 800px) { .results { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.form { display: grid; gap: 34px; }
.field { display: grid; gap: 6px; }
.field label, .field legend { font-weight: 600; font-size: .95rem; }
.field input, .field textarea, .field select { width: 100%; background: transparent; border: 0; border-bottom: 1.5px solid var(--ink); padding: 12px 0; font-size: clamp(1.15rem, 2vw, 1.5rem); border-radius: 0; transition: border-color .2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a857a; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field input:focus-visible, .field textarea:focus-visible { box-shadow: 0 2px 0 0 var(--brand); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
fieldset.field { border: 0; padding: 0; margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: inline-block; padding: 10px 18px; border: 1.5px solid var(--ink); border-radius: 999px; font-weight: 500; transition: .2s; }
.chips label:hover span { background: rgba(0,0,0,.06); }
.chips input:checked + span { background: var(--ink); color: #fff; }
.chips input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }
.form .error { color: #b3261e; font-size: .9rem; min-height: 1.2em; }
.form-status { font-weight: 600; padding: 16px 20px; border-radius: 14px; background: var(--accent); display: none; }
.form-status.show { display: block; }
.contact-aside { display: grid; gap: 28px; position: sticky; top: 110px; }
.aside-card { background: var(--surface); border-radius: var(--radius); padding: 30px; }
.aside-card.dark { background: var(--ink); color: var(--bg); }
.aside-card h2 { font-size: 1.6rem; letter-spacing: -.03em; }
.aside-card a.big-link { font: 700 clamp(1.2rem, 2.2vw, 1.6rem) var(--font-display); letter-spacing: -.02em; border-bottom: 2px solid currentColor; }
.aside-card p { color: var(--muted); }
.aside-card.dark p { color: #c9c3b6; }
.offices { display: grid; gap: 18px; }
.offices div { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; }
.offices b { font-family: var(--font-display); font-size: 1.15rem; }
.offices small { grid-column: 2; color: #b3ada0; }
.offices time { grid-row: span 2; font-variant-numeric: tabular-nums; font-weight: 600; background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 8px; font-size: .9rem; align-self: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-aside { position: static; } }
@media (max-width: 560px) { .two { grid-template-columns: 1fr; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
main { overflow-x: clip; }
.page-hero h1 { font-size: clamp(2.4rem, 11vw, 12rem); }
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(2.5rem, 12.5vw, 4rem); }
  .hero h1 .pill-word { display: none; }
}
.hero h1 { font-size: clamp(2.5rem, 7.2vw, 7.8rem); }
.intro h2 { font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.9rem); line-height: 1.08; letter-spacing: -.03em; }
.stats strong { font-size: clamp(2.2rem, 3.6vw, 3.4rem); }
.marquee.lime { margin-top: -40px; }
.case-info h3 { font-weight: 700; }
.footer-word { font-size: 11.4vw; white-space: nowrap; overflow: visible; color: #242424; text-align: center; margin-inline: auto; }
@media (min-width: 1500px) { .footer-word { font-size: 10.6rem; } }
.footer-grid h2 { font-weight: 700; letter-spacing: -.03em; }
.cta h2 a::after { content: "\2197"; font-size: .45em; vertical-align: top; margin-left: .05em; display: inline-block; transition: transform .4s var(--ease); }
.cta h2 a:hover::after { transform: translate(6px, -6px); }
