/* Go Boundless — site stylesheet (rebuilt from gobndlss.com visual spec, 2026-08) */
:root {
  --orange: #ff4400;
  --black: #000;
  --ink: #333336;
  --grey: #8a8a91;
  --bg-grey: #f6f6f6;
  --white: #fff;
  --pad: clamp(20px, 3vw, 44px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.serif { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }

/* reveal animations */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s } .rv-d2 { transition-delay: .16s } .rv-d3 { transition-delay: .24s }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* header */
header.site { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; justify-content: space-between; align-items: center; padding: 18px var(--pad); color: #fff; transition: color .4s; }
body.hdr-dark header.site { color: var(--ink); }
header.site .socials { display: flex; gap: 22px; font-size: 13px; font-weight: 600; letter-spacing: .02em; }
header.site .socials a { color: var(--orange); }
.logo { font-weight: 700; font-size: 20px; color: var(--orange); letter-spacing: -0.03em; }
.logo .flip, .wordmark .flip, .fword .flip { display: inline-block; transform: scaleY(-1); }
.logo .flip { transition: transform .5s cubic-bezier(.6,0,.2,1); }
.logo:hover .flip { transform: none; }
nav.main { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
nav.main a:hover { color: var(--orange); }
@media (max-width: 860px) { nav.main { display: none; } }

/* shared section bits */
.kicker { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 34px; }
.kicker::before { content: ""; width: 10px; height: 10px; border: 3px solid var(--orange); border-radius: 50%; flex: none; }
.kicker em { font-style: normal; color: var(--grey); font-size: 12px; border-left: 1px solid #ddd; padding-left: 10px; }
.big-h { font-size: clamp(36px, 5vw, 76px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.02; color: #000; max-width: 20ch; }
section.pad { padding: 110px var(--pad); position: relative; background: #fff; }
.page-hero { padding: 170px var(--pad) 70px; }
.page-hero h1 { font-size: clamp(48px, 8vw, 120px); font-weight: 600; color: #000; letter-spacing: -0.04em; }
.page-hero p.lead { margin-top: 18px; color: var(--grey); font-size: 19px; max-width: 46ch; }
.btn { display: inline-block; background: var(--orange); color: #fff; padding: 15px 30px; border-radius: 99px; font-weight: 600; margin: 0 8px 0 0; }
.btn.ghost { background: transparent; border: 1px solid #333; color: inherit; }
.linkline { font-weight: 500; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

/* home hero */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; background: #7db8d9; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .top { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 110px var(--pad) 0; color: #fff; }
.hero h1 { font-size: clamp(34px, 4.2vw, 60px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.05; }
.hero .tag { font-size: clamp(24px, 2.4vw, 38px); color: #fff; text-align: right; }
.hero .sub { position: relative; z-index: 2; padding: 26px var(--pad); color: #fff; font-size: 19px; display: flex; align-items: center; gap: 10px; }
.hero .sub .dot { width: 14px; height: 14px; border: 4px solid var(--orange); border-radius: 50%; flex: none; }
.wordmark { position: relative; z-index: 2; font-weight: 700; color: var(--orange); font-size: clamp(90px, 17.5vw, 260px); line-height: .78; letter-spacing: -0.04em; text-align: center; white-space: nowrap; user-select: none; }

/* home: sticky-stack full-viewport project highlight banners (1:1 with original:
   text block at TOP, image constantly darkened via brightness(0.7)) */
.highlights { position: relative; background: #000; }
.hl { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: flex-start; color: #fff; }
.hl > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); will-change: transform; transform-origin: center; }
.hl .info { position: relative; z-index: 2; width: 100%; padding: 100px 24px 0; }
.hl .row1 { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.hl .row1 h3 { font-size: clamp(38px, 5vw, 72px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.1; }
.hl .row1 .client { font-size: 21px; font-weight: 500; margin-top: 26px; white-space: nowrap; }
.hl .line { height: 1px; background: rgba(255,255,255,.35); margin: 8px 0 12px; }
.hl .row2 { font-size: clamp(19px, 1.95vw, 28px); font-weight: 500; color: #fff; }

/* work listing page cards */
.work-list { background: #000; padding: 90px var(--pad); display: grid; gap: 70px; }
.case-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; color: #fff; }
.case-card:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
.case-card:nth-child(even) figure { order: 2; }
.case-card figure { overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; margin: 0; }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.65,.3,1); }
.case-card:hover img { transform: scale(1.06); }
.case-card h3 { font-size: clamp(30px, 3.4vw, 52px); font-weight: 600; letter-spacing: -0.03em; }
.case-card .meta { color: var(--grey); margin-top: 10px; font-size: 15px; display: flex; gap: 14px; flex-wrap: wrap; }
.case-card .meta b { color: var(--orange); font-weight: 600; }

/* impact */
.impact .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.featured { background: var(--bg-grey); border-radius: 8px; overflow: hidden; }
.featured img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
.featured .body { padding: 28px; }
.featured h4 { font-size: 22px; font-weight: 600; color: #000; }
.featured p { margin-top: 10px; color: var(--grey); font-size: 15px; line-height: 1.55; }
.featured .mini { display: flex; gap: 40px; margin-top: 22px; }
.featured .mini b { font-size: 34px; color: var(--orange); font-weight: 600; }
.featured .mini span { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); margin-top: 4px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #e5e5e5; border: 1px solid #e5e5e5; border-radius: 8px; overflow: hidden; }
.stat { background: #fff; padding: 30px 26px; }
.stat b { font-size: clamp(34px, 3.2vw, 52px); font-weight: 600; color: #000; letter-spacing: -0.03em; }
.stat span { display: block; margin-top: 8px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }

/* services */
.srow { display: grid; grid-template-columns: 260px 1.2fr 1fr; gap: 40px; padding: 44px 0; border-bottom: 1px solid #eee; }
.srow .num { color: var(--orange); font-size: 13px; font-weight: 600; }
.srow h3 { display: inline; font-size: 34px; font-weight: 600; color: #000; letter-spacing: -0.03em; margin-left: 8px; }
.srow p { color: var(--grey); line-height: 1.6; font-size: 16.5px; }
.srow ul { list-style: none; text-align: right; color: var(--ink); font-size: 14.5px; display: grid; gap: 9px; }

/* benefit cards */
.bgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.bcard { background: #fff; border-radius: 8px; padding: 30px; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; }
.bcard.orange { background: var(--orange); color: #fff; }
.bcard.dark { background: #101012; color: #fff; }
.bcard h4 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; }
.bcard h4::before { content: "◦ "; color: var(--orange); }
.bcard.orange h4::before, .bcard.dark h4::before { color: #fff; }
.bcard p { font-size: 15px; line-height: 1.55; opacity: .75; margin-top: 12px; }
.bcard .metric { font-size: 46px; font-weight: 600; }

/* pricing */
.pgrid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 40px; margin-top: 60px; align-items: center; }
.pcore { text-align: center; }
.plan-tabs { display: inline-flex; border: 1px solid #ddd; border-radius: 99px; overflow: hidden; font-size: 13px; margin-bottom: 26px; }
.plan-tabs span { padding: 8px 18px; }
.plan-tabs .on { background: #000; color: #fff; }
.pcore h3 { font-size: 30px; color: var(--grey); font-weight: 500; }
.price { font-size: clamp(48px, 5vw, 72px); font-weight: 600; color: #000; letter-spacing: -0.04em; margin: 14px 0 6px; }
.price small { font-size: 16px; color: var(--grey); font-weight: 400; letter-spacing: 0; }
.pnote { font-size: 13px; color: var(--orange); }
.pctas { margin-top: 28px; display: flex; gap: 26px; justify-content: center; font-weight: 500; }
.plist { list-style: none; display: grid; gap: 22px; }
.plist li b { display: block; color: #000; font-size: 16px; }
.plist li span { font-size: 13.5px; color: var(--grey); line-height: 1.5; }
.plist li::before { content: "✓"; color: var(--orange); float: left; margin-right: 12px; }
.pimg { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; }
.pimg img { width: 100%; height: 100%; object-fit: cover; }

/* faq */
.faq-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; margin-top: 56px; }
details { border-bottom: 1px solid #ddd; padding: 20px 0; }
summary { cursor: pointer; list-style: none; font-size: 17px; font-weight: 500; color: #000; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "≡"; color: var(--orange); font-size: 22px; transition: transform .3s; flex: none; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding-top: 14px; color: var(--grey); line-height: 1.6; font-size: 15px; max-width: 60ch; }

/* testimonials */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.tcard { background: var(--bg-grey); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; }
.tcard q { quotes: "\201C" "\201D"; font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.tcard .who { margin-top: 26px; font-size: 13px; }
.tcard .who b { display: block; color: #000; font-size: 14px; }
.tcard .who span { color: var(--grey); }

/* about page */
.intro-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-top: 40px; }
.intro-grid .big { font-size: clamp(26px, 2.6vw, 40px); font-weight: 500; color: #000; letter-spacing: -0.03em; line-height: 1.15; }
.intro-grid p { color: var(--grey); line-height: 1.65; margin-bottom: 18px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.values .v { background: var(--bg-grey); border-radius: 8px; padding: 28px; }
.values .v h4 { color: #000; font-size: 19px; margin-bottom: 10px; }
.values .v p { color: var(--grey); font-size: 14.5px; line-height: 1.55; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 18px; margin-top: 56px; }
.member img { aspect-ratio: 3/4; object-fit: cover; border-radius: 8px; width: 100%; background: var(--bg-grey); }
.member b { display: block; margin-top: 14px; color: #000; font-size: 16px; }
.member span { color: var(--grey); font-size: 13.5px; }
.method { counter-reset: step; margin-top: 56px; }
.mrow { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid #eee; }
.mrow .n { color: var(--orange); font-weight: 600; }
.mrow h4 { color: #000; font-size: 21px; display: inline; }
.mrow p { color: var(--grey); line-height: 1.6; margin-top: 8px; }
.timeline { margin-top: 56px; border-top: 1px solid #eee; }
.trow { display: grid; grid-template-columns: 1fr 90px; gap: 20px; padding: 26px 0; border-bottom: 1px solid #eee; align-items: baseline; }
.trow b { color: #000; font-size: 19px; }
.trow p { color: var(--grey); font-size: 14.5px; margin-top: 6px; }
.trow .yr { color: var(--orange); font-weight: 600; text-align: right; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 50px; margin-top: 30px; }
.contact-grid aside ul { list-style: none; display: grid; gap: 12px; color: var(--grey); font-size: 14.5px; }
.contact-grid aside ul li::before { content: "• "; color: var(--orange); }
.contact-grid aside.note { color: var(--grey); font-size: 14px; line-height: 1.6; }
form.contact label { display: block; margin-top: 22px; font-size: 13px; color: var(--grey); }
form.contact input, form.contact select, form.contact textarea { width: 100%; border: 0; border-bottom: 1px solid #ddd; padding: 12px 0; font: inherit; color: #000; background: transparent; outline: none; }
form.contact input:focus, form.contact select:focus, form.contact textarea:focus { border-color: var(--orange); }
form.contact button { margin-top: 30px; border: 0; background: none; font: inherit; font-weight: 500; cursor: pointer; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; background: var(--bg-grey); border-radius: 8px; padding: 44px 28px; margin-top: 70px; text-align: center; }
.channels h4 { color: #000; font-size: 17px; margin: 10px 0 6px; }
.channels p { color: var(--grey); font-size: 13.5px; margin-bottom: 12px; }
.channels .ico { color: var(--orange); font-size: 22px; }

/* case detail */
.case-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: #111; }
.case-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.case-hero .inner { position: relative; z-index: 2; padding: 60px var(--pad); background: linear-gradient(transparent, rgba(0,0,0,.55)); width: 100%; }
.case-hero h1 { font-size: clamp(44px, 6.4vw, 96px); font-weight: 600; letter-spacing: -0.04em; }
.case-hero p { margin-top: 8px; font-size: 18px; opacity: .9; }
.case-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px var(--pad); border-bottom: 1px solid #eee; }
.case-meta h5 { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.case-meta div { color: #000; font-size: 15px; line-height: 1.6; }
.case-body { padding: 90px var(--pad); display: grid; gap: 70px; }
.case-sec { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.case-sec h2 { font-size: 26px; color: #000; letter-spacing: -0.02em; }
.case-sec .txt p { color: var(--ink); font-size: 17px; line-height: 1.7; margin-bottom: 18px; max-width: 70ch; }
.case-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 0 var(--pad) 40px; }
.case-gallery img { border-radius: 8px; width: 100%; object-fit: cover; aspect-ratio: 6/5; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0 var(--pad) 90px; }
.case-stats .stat { border: 1px solid #eee; border-radius: 8px; }
.case-team { padding: 0 var(--pad) 90px; }
.case-team .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.case-team .row b { display: block; color: #000; }
.case-team .row span { color: var(--grey); font-size: 13.5px; }
.next-case { background: #000; color: #fff; padding: 90px var(--pad); text-align: center; }
.next-case .lbl { color: var(--grey); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.next-case a h2 { font-size: clamp(40px, 6vw, 88px); font-weight: 600; letter-spacing: -0.04em; margin-top: 12px; transition: color .3s; }
.next-case a:hover h2 { color: var(--orange); }

/* legal */
.legal-body { padding: 40px var(--pad) 110px; max-width: 860px; }
.legal-body h2 { color: #000; font-size: 21px; margin: 38px 0 10px; letter-spacing: -0.02em; }
.legal-body p, .legal-body li { color: var(--ink); line-height: 1.7; font-size: 15.5px; }
.legal-body ul { padding-left: 22px; margin-top: 8px; }
.legal-body .updated { color: var(--grey); font-size: 13px; }

/* cta band + footer */
.cta-band { position: relative; padding: 110px var(--pad); text-align: center; background: #000; color: #fff; border-bottom: 1px solid #1c1c1e; }
.cta-band h2 { font-size: clamp(34px, 4.6vw, 68px); font-weight: 600; letter-spacing: -0.04em; }
.cta-band p { color: var(--grey); margin: 18px 0 30px; }
footer.site { position: relative; background: #000; color: #fff; padding: 90px var(--pad) 30px; }
.fword { font-weight: 700; color: var(--orange); font-size: clamp(64px, 10vw, 150px); letter-spacing: -0.04em; line-height: 1; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 40px; margin: 70px 0; font-size: 14.5px; }
footer.site .cols h5 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
footer.site .cols a { display: block; padding: 4px 0; color: #cfcfd4; }
footer.site .cols a:hover { color: var(--orange); }
footer.site .clock { font-size: 30px; font-weight: 600; }
footer.site .legal { border-top: 1px solid #222; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--grey); font-size: 12.5px; }
.newsletter input { background: transparent; border: 0; border-bottom: 1px solid #333; color: #fff; padding: 10px 0; width: 100%; font: inherit; outline: none; }
.newsletter button { background: none; border: 0; color: var(--orange); font: inherit; font-weight: 600; cursor: pointer; margin-top: 10px; }

/* responsive */
@media (max-width: 860px) {
  .case-card, .case-card:nth-child(even), .impact .grid, .srow, .pgrid, .faq-wrap,
  .intro-grid, .contact-grid, .case-sec { grid-template-columns: 1fr; }
  .case-card:nth-child(even) figure { order: 0; }
  .bgrid, .tgrid, .values, .team-grid, .channels, .case-gallery, .case-stats { grid-template-columns: 1fr; }
  .case-meta, .case-team .row { grid-template-columns: 1fr 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .srow ul { text-align: left; }
}

/* ============ signature animations (rebuilt from original, 2026-08) ============ */

/* preloader */
#preloader { position: fixed; inset: 0; z-index: 200; background: #000; display: flex; align-items: center; justify-content: center; transition: transform .7s cubic-bezier(.76,0,.24,1); }
#preloader img { width: min(52vw, 640px); animation: pre-pop .9s cubic-bezier(.2,.65,.3,1) both; }
#preloader.done { transform: translateY(-101%); }
@keyframes pre-pop { from { opacity: 0; transform: scale(.86) translateY(30px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { #preloader { display: none; } }

/* brand morph: giant hero wordmark collapses into header logo */
#brand { position: fixed; top: 0; left: 50%; z-index: 60; transform-origin: top center; will-change: transform; transform: translate(-50%, 14px); }
/* on home the mark renders at full size and is scaled DOWN so it stays sharp when huge */
#brand img { width: 100%; }
#brand { width: 120px; }
@media (max-width: 860px) { #brand { width: 92px; } }
body[data-page="home"] #brand { width: 94.4vw; }
@media (prefers-reduced-motion: reduce) { body[data-page="home"] #brand { width: 120px; } }
body[data-page="home"] .logo-mark { visibility: hidden; }

/* hero layers parallax */
.hero .top, .hero .sub { will-change: transform; }
.hero .tag img { width: clamp(180px, 21vw, 300px); }

/* char-split reveal */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .14em; margin-bottom: -.14em; }
.split .c { display: inline-block; transform: translateY(115%); transition: transform .7s cubic-bezier(.2,.65,.3,1); will-change: transform; }
.split.in .c { transform: none; }
@media (prefers-reduced-motion: reduce) { .split .c { transform: none; transition: none; } }

/* scrolling image pairs — transparent, scrolls over the pinned intro video */
.pairs-sec { position: relative; padding: 14vh 40px; overflow: hidden; background: transparent; }
/* measured: narrow 350px images that start side-by-side at the center and spread
   to the window edges, leaving a wide center gap where the pinned video shows */
.pair { display: flex; justify-content: space-between; gap: 0; padding: 5vh 0; }
.pair .pi { width: min(350px, 24vw); will-change: transform; }
.pair .pi img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* intro statement — sticky black stage with inset video; the brand image pairs
   scroll over it (matches original: Intro is position:sticky, pairs transparent) */
.intro-sec { position: sticky; top: 0; height: 100vh; background: #000; display: flex; align-items: center; justify-content: center; }
.intro-sec .vid-wrap { position: absolute; inset: 6vh 11.8vw; overflow: hidden; background: #111; will-change: transform; }
.intro-sec video { width: 100%; height: 100%; object-fit: cover; }
.intro-sec h2 { position: relative; z-index: 2; font-size: clamp(38px, 6.4vw, 130px); font-weight: 600; letter-spacing: -0.04em; line-height: 1.04; color: #fff; max-width: 14ch; text-align: center; padding: 0 var(--pad); }
@media (max-width: 860px) { .intro-sec .vid-wrap { inset: 4vh 5vw; } }

/* serif cta rows between sections */
.cta-row { position: relative; background: #fff; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 16vh var(--pad); flex-wrap: wrap; }
.cta-row .s { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(22px, 2.2vw, 32px); color: var(--grey); border-right: 1px solid #ddd; padding-right: 28px; }
.cta-row a { font-weight: 500; border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

/* dot enlarge */
.dot-sec { position: relative; background: #fff; display: flex; justify-content: center; padding: 8vh 0; }
.dot-sec .dot { width: 120px; height: 120px; will-change: transform; transform: scale(.15); }

/* partner logo marquee */
.marquee { overflow: hidden; margin-top: 60px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee .track { display: flex; gap: 70px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee img { height: 30px; filter: brightness(0) invert(1); opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-label { color: var(--grey); font-size: 13px; margin-top: 60px; }

/* footer wordmark velocity skew */
.fword img { width: min(60vw, 880px); will-change: transform, filter; }

/* custom cursor */
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor summary { cursor: none; }
  #cursor { position: fixed; z-index: 300; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); pointer-events: none; top: 0; left: 0; transition: width .25s, height .25s, opacity .25s; transform: translate(-50%, -50%); mix-blend-mode: difference; }
  #cursor.hover { width: 34px; height: 34px; }
  #cursor.label { width: 120px; height: 120px; mix-blend-mode: normal; background: rgba(255,255,255,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 12px; color: #000; letter-spacing: .02em; text-transform: uppercase; }
}

/* benefits bento grid (1:1 with original layout) */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.bento .cell { background: #fff; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.bento .cell .txt { padding: 28px; }
.bento .cell h4 { font-size: 22px; font-weight: 600; color: #000; letter-spacing: -0.02em; }
.bento .cell h4::before { content: "◦ "; color: var(--orange); }
.bento .cell p { font-size: 14.5px; line-height: 1.55; color: var(--grey); margin-top: 10px; }
.bento .cell > img { width: 100%; object-fit: cover; flex: 1; min-height: 0; }
.bento .stackcol { display: grid; gap: 18px; }
.bento .mini-card { background: #fff; border-radius: 8px; padding: 28px; text-align: center; }
.bento .mini-card .pill { display: inline-block; border: 1px solid #ddd; border-radius: 99px; padding: 6px 14px; font-size: 11px; letter-spacing: .08em; }
.bento .mini-card .big { font-size: 21px; font-weight: 600; color: #000; margin-top: 16px; }
.bento .orange-card { background: var(--orange); color: #fff; border-radius: 8px; padding: 28px 28px 0; text-align: center; overflow: hidden; }
.bento .orange-card h4 { color: #fff; font-size: 22px; font-weight: 600; }
.bento .orange-card p { color: rgba(255,255,255,.85); font-size: 13px; margin: 8px 0 18px; }
.bento .orange-card img { max-height: 210px; margin: 0 auto; border-radius: 12px 12px 0 0; }
.bstats { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 18px; margin-top: 18px; }
.bstats .cell { background: #fff; border-radius: 8px; padding: 26px; }
.bstats .cell b { font-size: 42px; font-weight: 600; color: #000; letter-spacing: -0.03em; }
.bstats .cell span { display: block; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 8px; }
.bstats .cell small { color: var(--grey); font-size: 12.5px; }
.bstats .plogos { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; margin-top: 14px; }
.bstats .plogos img { height: 20px; opacity: .45; }
.bphoto { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: 18px; }
.bphoto .cell { position: relative; border-radius: 8px; overflow: hidden; min-height: 260px; background: #fff; }
.bphoto .cell img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bphoto .cell .ov { position: relative; z-index: 2; padding: 26px; }
.bphoto .cell .ov h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.bphoto .cell .ov .num { font-size: 46px; font-weight: 600; color: var(--orange); }
.bphoto .cell.light .ov h4 { color: #000; } .bphoto .cell.light .ov p { color: var(--grey); }
.bphoto .cell.dark12 { color: #fff; }
.bphoto .cell.dark12 img.bg { filter: brightness(.75); }
.bphoto .pill { display: inline-block; background: var(--orange); color: #fff; border-radius: 99px; padding: 4px 12px; font-size: 12px; font-weight: 600; margin: 8px 0; }
.bphoto .stars { letter-spacing: 3px; font-size: 13px; }
.bphoto .cell p { font-size: 14px; line-height: 1.5; margin-top: 6px; }
@media (max-width: 860px) { .bento, .bstats, .bphoto { grid-template-columns: 1fr; } }

/* Achievements — black section per original */
section.pad.impact-dark { background: #000; } .impact-dark { background: #000; color: #c0c0c0; }
.impact-dark .kicker { font-size: 35px; color: #c0c0c0; margin-bottom: 44px; }
.impact-dark .kicker em { color: var(--grey); border-color: #333; }
.impact-dark .big-h { color: #fff; }
.impact-dark .media-row { display: grid; grid-template-columns: 1.6fr 1fr .45fr; gap: 40px; margin-top: 70px; align-items: start; }
.impact-dark .media-row > img { border-radius: 8px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.impact-dark .mid .lbl { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #c0c0c0; }
.impact-dark .mid h4 { font-size: clamp(28px, 3.3vw, 48px); color: #fff; font-weight: 600; letter-spacing: -0.03em; margin-top: 14px; }
.impact-dark .mid p { color: #c0c0c0; font-size: 16px; line-height: 1.6; margin-top: 18px; }
.impact-dark .mid .vc { display: inline-block; font-size: 24px; color: #fff; border-bottom: 2px solid var(--orange); margin-top: 26px; }
.impact-dark .side .ms { margin-bottom: 34px; }
.impact-dark .side .ms span { display: block; font-size: 14px; color: var(--grey); margin-bottom: 6px; }
.impact-dark .side .ms b { font-size: clamp(38px, 3.9vw, 56px); color: #c0c0c0; font-weight: 600; letter-spacing: -0.03em; }
.impact-dark .snap { border-top: 1px solid #222; margin-top: 80px; padding-top: 30px; }
.impact-dark .snap .lbl { color: #c0c0c0; font-size: 15px; margin-bottom: 40px; }
.impact-dark .snap .row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.impact-dark .snap .row span { display: block; font-size: 14px; color: var(--grey); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; }
.impact-dark .snap .row b { font-size: clamp(36px, 3.9vw, 56px); color: #c0c0c0; font-weight: 600; letter-spacing: -0.03em; }
@media (max-width: 860px) { .impact-dark .media-row, .impact-dark .snap .row { grid-template-columns: 1fr; } }
/* pac-man eating the partner logos */
.dot-sec { position: relative; background: #fff; display: flex; align-items: center; gap: 0; padding: 9vh var(--pad); overflow: hidden; }
.dot-sec .dot { width: 88px; flex: none; position: relative; z-index: 2; animation: chomp .5s steps(1) infinite; }
@keyframes chomp { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(18deg); } }
.eatrow { overflow: hidden; flex: 1; margin-left: -12px; }
.eatrow .track { display: flex; gap: 90px; align-items: center; width: max-content; animation: eatmarquee 18s linear infinite reverse; }
.eatrow img { height: 26px; opacity: .5; }
@keyframes eatmarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .dot-sec .dot, .eatrow .track { animation: none; } }
/* giant services heading */
.wwd { font-size: clamp(80px, 15.4vw, 222px); font-weight: 600; letter-spacing: -0.05em; line-height: .95; color: #000; }
.wwd-sub { font-size: clamp(22px, 2.4vw, 34px); color: var(--grey); letter-spacing: -0.02em; margin-top: 24px; max-width: 34ch; }

/* footer top row: wordmark left, presence right (original layout) */
.ftop { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.fpresence { text-align: right; font-size: 15px; }
.fpresence .clock { font-size: 34px; font-weight: 600; margin-top: 8px; }
footer.site .cols { grid-template-columns: 1fr 1fr 1.4fr; }
@media (max-width: 860px) { .ftop { flex-direction: column; align-items: flex-start; } .fpresence { text-align: left; } }

/* Benefits — original 3-col grid, tall cards span 2 rows */
.adv { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 320px; gap: 16px; margin-top: 56px; }
.adv .card { background: var(--bg-grey); border-radius: 8px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.adv .tall { grid-row: span 2; }
.adv .card .tx { padding: 28px; }
.adv .card h4 { font-size: 22px; font-weight: 600; color: #000; letter-spacing: -0.02em; }
.adv .card h4::before { content: "◦ "; color: var(--orange); }
.adv .card p { font-size: 14.5px; line-height: 1.55; color: var(--grey); margin-top: 10px; }
.adv .card .fill { flex: 1; min-height: 0; object-fit: cover; width: 100%; }
.adv .bgimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.adv .over { position: relative; z-index: 2; padding: 28px; }
.adv .num { font-size: 52px; font-weight: 600; color: var(--orange); letter-spacing: -0.03em; }
.adv .apps { display: grid; gap: 0; padding: 10px 28px; }
.adv .apps .row { border-bottom: 1px solid #e5e5e5; padding: 16px 0; }
.adv .apps .row:last-child { border-bottom: 0; }
.adv .apps .row em { font-style: normal; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.adv .apps .row b { display: block; color: #000; font-size: 17px; margin-top: 3px; }
.adv .apps .row span { font-size: 13px; color: var(--grey); }
.adv .center { text-align: center; justify-content: center; }
.adv .pillb { display: inline-block; border: 1px solid #ddd; border-radius: 99px; padding: 6px 14px; font-size: 11px; letter-spacing: .08em; }
.adv .statement { font-size: 21px; font-weight: 600; color: #000; margin-top: 16px; }
.adv .plogos { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; margin-top: 18px; }
.adv .plogos img { height: 22px; opacity: .45; }
.adv .caption { font-size: 12px; color: var(--grey); text-align: center; padding-bottom: 14px; }
.adv .stars { color: #fff; letter-spacing: 3px; font-size: 13px; }
.adv .pillo { display: inline-block; background: var(--orange); color: #fff; border-radius: 99px; padding: 4px 12px; font-size: 12px; font-weight: 600; margin: 8px 0; }
.adv .dark p, .adv .dark h4 { color: #fff; }
.adv .dark h4::before { color: #fff; }
.adv .dark .bgimg { filter: brightness(.72); }
@media (max-width: 860px) { .adv { grid-template-columns: 1fr; grid-auto-rows: auto; } .adv .tall { grid-row: auto; } .adv .card { min-height: 300px; } }
