/* ============================================================
   MILLIONS KART — Brand Site
   Palette drawn from the MK cube logo: Navy #232E62 · Red #E23B43
   ============================================================ */
:root {
  --navy: #232E62;
  --navy-deep: #131B3F;
  --navy-ink: #0C1128;
  --red: #E23B43;
  --red-hot: #FF4D55;
  --cream: #F7F6F2;
  --white: #FFFFFF;
  --grey: #8A8FA8;
  --gold: #F2B84B;
  --grad-brand: linear-gradient(135deg, #E23B43 0%, #FF6A5B 50%, #F2B84B 100%);
  --grad-navy: linear-gradient(160deg, #232E62 0%, #131B3F 60%, #0C1128 100%);
  --font-display: 'DM Sans', 'Circular Std', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-spring: cubic-bezier(.22, 1.4, .36, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy-ink);
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none), (max-width: 820px) { body { cursor: auto; } .cursor, .cursor-ring { display: none !important; } }

::selection { background: var(--red); color: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: width .25s, height .25s, background .25s;
}
.cursor-ring {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(226,59,67,.55); pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: width .3s var(--ease-spring), height .3s var(--ease-spring), border-color .3s;
}
.cursor.is-hot { width: 26px; height: 26px; background: rgba(226,59,67,.25); }
.cursor-ring.is-hot { width: 64px; height: 64px; border-color: var(--red); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: var(--navy-ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.preloader .mk-mark {
  width: 104px; height: auto; background: #fff; padding: 16px;
  border-radius: 24px; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 24px 60px -12px rgba(0,0,0,.5);
}
.preloader.is-done { pointer-events: none; }
.preloader-count {
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  letter-spacing: .35em; color: #fff; opacity: .8; text-transform: uppercase;
}
.preloader-bar { width: 180px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.preloader-bar i { display: block; height: 100%; width: 0%; background: var(--grad-brand); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.is-scrolled { background: rgba(247,246,242,.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(19,27,63,.08); padding: 12px clamp(20px, 4vw, 56px); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg, .nav-logo img { width: 40px; height: auto; }
.nav-logo-word { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .02em; color: var(--navy); line-height: 1; }
.nav-logo-word span { display: block; font-size: 9px; letter-spacing: .42em; color: var(--red); font-weight: 700; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 38px); }
.nav-links a { font-weight: 700; font-size: 14px; color: var(--navy); position: relative; padding: 4px 0; }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-smooth);
}
.nav-links a:not(.nav-cta):hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--navy); color: #fff !important; padding: 12px 24px; border-radius: 100px;
  font-size: 13px; letter-spacing: .04em; overflow: hidden; position: relative; display: inline-block;
  transition: transform .3s var(--ease-spring), background .3s;
}
.nav-cta:hover { background: var(--red); transform: translateY(-2px) scale(1.04); }
/* burger (mobile menu) */
.nav-burger {
  display: none; background: none; border: none; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer;
}
.nav-burger span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: transform .35s var(--ease-spring), opacity .25s; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 340px);
    background: var(--navy-ink); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 30px; padding: 40px 36px;
    transform: translateX(105%); transition: transform .45s var(--ease-smooth);
    box-shadow: -30px 0 80px rgba(12,17,40,.4); z-index: 950;
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links a { display: block !important; color: #fff; font-family: var(--font-display); font-size: 26px; font-weight: 800; }
  .nav-links a:not(.nav-cta)::after { background: var(--gold); height: 3px; }
  .nav-links .nav-cta { font-size: 15px; margin-top: 10px; background: var(--red); }
  .nav-burger { position: relative; z-index: 960; }
  .nav.open .nav-burger span { background: #fff; }
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(12,17,40,.5); opacity: 0;
    pointer-events: none; transition: opacity .4s; z-index: 940;
  }
  .nav.open ~ .nav-scrim, body.menu-open .nav-scrim { opacity: 1; pointer-events: auto; }
}

/* extra mobile polish */
@media (max-width: 560px) {
  .hero { padding-top: 120px; }
  .hero-ctas .btn { padding: 15px 26px; font-size: 14px; }
  .brand-card { min-height: 380px; }
  .stat { border-left-width: 0; padding-left: 0; border-top: 2px solid rgba(255,255,255,.14); padding-top: 16px; }
  .pull-quote::before { font-size: 150px; top: -14px; }
  .footer-giant { font-size: clamp(40px, 13vw, 90px); }
  .masonry { columns: 2 140px; column-gap: 12px; }
  .masonry figure { margin-bottom: 12px; border-radius: 14px; }
  .filmstrip img { border-radius: 12px; }
  .moments-grid { gap: 14px; }
}

/* ---------- Type ---------- */
.h-display {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(44px, 8.4vw, 118px); line-height: .98; letter-spacing: -.02em; color: var(--navy);
}
.h-display .accent { color: var(--red); }
.h-display .outline { -webkit-text-stroke: 2px var(--navy); color: transparent; }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.6vw, 58px); line-height: 1.04; letter-spacing: -.015em; color: var(--navy); }
.h2 .accent { color: var(--red); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 12px; letter-spacing: .34em; text-transform: uppercase; color: var(--red);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--red); }
.lede { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.75; color: #444a63; max-width: 62ch; }
.lede strong { color: var(--navy); }

/* word-reveal helper */
.wr { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wr > span { display: inline-block; transform: translateY(115%); }

/* ---------- Layout ---------- */
.section { padding: clamp(80px, 11vw, 150px) clamp(20px, 6vw, 90px); position: relative; }
.section-tight { padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px); }
.wrap { max-width: 1280px; margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 140px clamp(20px, 6vw, 90px) 90px; position: relative; overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; pointer-events: none;
}
.hero-blob.b1 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(226,59,67,.5), transparent 65%); top: -160px; right: -120px; }
.hero-blob.b2 { width: 540px; height: 540px; background: radial-gradient(circle, rgba(35,46,98,.45), transparent 65%); bottom: -180px; left: -140px; }
.hero-blob.b3 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(242,184,75,.5), transparent 65%); top: 30%; left: 42%; }
.hero-kicker { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 13px; letter-spacing: .3em; text-transform: uppercase; color: var(--navy); margin-bottom: 34px; opacity: .85; }
.hero-kicker .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(226,59,67,.5);} 55% { box-shadow: 0 0 0 12px rgba(226,59,67,0);} }
.hero-sub { margin-top: 36px; max-width: 56ch; font-size: clamp(16px, 1.6vw, 20px); line-height: 1.7; color: #3d4360; }
.hero-ctas { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--grey); font-weight: 700;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after { content: ''; width: 1.5px; height: 44px; background: linear-gradient(var(--red), transparent); animation: drip 1.6s infinite var(--ease-smooth); }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* floating chips */
.chip-float {
  position: absolute; background: #fff; border: 1px solid rgba(19,27,63,.08);
  box-shadow: 0 24px 60px -18px rgba(19,27,63,.25); border-radius: 18px;
  padding: 16px 22px; display: flex; flex-direction: column; gap: 2px; pointer-events: none;
}
.chip-float b { font-family: var(--font-display); font-size: 24px; color: var(--navy); }
.chip-float small { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
@media (max-width: 1080px) { .chip-float { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-weight: 800; font-size: 15px;
  padding: 18px 34px; border-radius: 100px; border: none; overflow: hidden;
  transition: transform .35s var(--ease-spring), box-shadow .35s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-red { background: var(--grad-brand); color: #fff; box-shadow: 0 18px 44px -14px rgba(226,59,67,.55); }
.btn-red:hover { box-shadow: 0 26px 60px -16px rgba(226,59,67,.7); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn .arr { transition: transform .3s var(--ease-spring); }
.btn:hover .arr { transform: translateX(5px); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--navy); color: #fff; overflow: hidden; padding: 20px 0;
  transform: rotate(-1.2deg) scale(1.02); position: relative; z-index: 5;
}
.marquee.flip { transform: rotate(1.2deg) scale(1.02); background: var(--red); }
.marquee-track { display: flex; width: max-content; gap: 0; animation: scrollx 28s linear infinite; }
.marquee.flip .marquee-track { animation-direction: reverse; }
.marquee span {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(16px, 2vw, 24px);
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; padding: 0 26px;
  display: flex; align-items: center; gap: 26px;
}
.marquee span i { font-style: normal; color: var(--gold); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-band { background: var(--grad-navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: clamp(28px, 4vw, 60px); }
.stat b {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(46px, 5.6vw, 78px);
  display: flex; align-items: baseline; line-height: 1; background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat b em { font-style: normal; font-size: .55em; }
.stat p { margin-top: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: 12.5px; color: rgba(255,255,255,.72); }
.stat { border-left: 2px solid rgba(255,255,255,.14); padding-left: 24px; }

/* ---------- Cards / brands ---------- */
.brand-card {
  border-radius: 30px; padding: clamp(34px, 4.4vw, 64px); position: relative; overflow: hidden;
  min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end;
  transform-style: preserve-3d; will-change: transform; transition: box-shadow .4s;
}
.brand-card:hover { box-shadow: 0 40px 90px -30px rgba(19,27,63,.5); }
.brand-card .bg-word {
  position: absolute; top: 18px; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 9vw, 150px);
  letter-spacing: -.02em; opacity: .07; white-space: nowrap; pointer-events: none;
}
.brand-card .brand-logo-img { height: 44px; width: auto; object-fit: contain; margin-bottom: 22px; align-self: flex-start; }
.brand-card h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 38px); font-weight: 800; margin-bottom: 14px; }
.brand-card p { line-height: 1.7; max-width: 46ch; font-size: 15.5px; }
.brand-card .brand-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0; }
.brand-card .brand-tags i {
  font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 100px; border: 1px solid currentColor; opacity: .8;
}
.brand-card .btn { align-self: flex-start; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr)); gap: 30px; margin-top: 56px; }
.bc-dark { background: var(--grad-navy); color: #fff; }
.bc-dark .bg-word { color: #fff; }
.bc-blush { background: linear-gradient(160deg, #F6E3DC 0%, #EFD1C4 55%, #E8BFAE 100%); color: var(--navy-ink); }
.bc-blush .bg-word { color: var(--navy); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 60px; counter-reset: step; }
.step {
  background: #fff; border-radius: 24px; padding: 36px 30px; position: relative;
  border: 1px solid rgba(19,27,63,.07); transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.step:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: 0 30px 60px -22px rgba(19,27,63,.3); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--font-display); font-weight: 800; font-size: 54px;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 18px; line-height: 1;
}
.step h4 { font-family: var(--font-display); font-size: 21px; color: var(--navy); margin-bottom: 12px; }
.step p { font-size: 14.5px; line-height: 1.7; color: #4c5270; }

/* ---------- Founders ---------- */
.founders-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 34px; margin-top: 60px; }
.founder-card { position: relative; border-radius: 28px; overflow: hidden; background: var(--navy-deep); }
.founder-photo { position: relative; aspect-ratio: 4/4.6; overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease-smooth); filter: saturate(1.02); }
.founder-card:hover .founder-photo img { transform: scale(1.06); }
.founder-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--grad-navy);
}
.founder-fallback b {
  font-family: var(--font-display); font-size: 110px; font-weight: 800;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.founder-meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px;
  background: linear-gradient(transparent, rgba(12,17,40,.94) 55%); color: #fff;
}
.founder-meta h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; }
.founder-meta p { color: var(--gold); font-weight: 800; font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; margin-top: 6px; }
.founder-meta .founder-bio { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.65; margin-top: 12px; text-transform: none; letter-spacing: 0; font-weight: 500; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; margin-top: 70px; }
.timeline::before {
  content: ''; position: absolute; left: clamp(16px, 3vw, 30px); top: 0; bottom: 0; width: 2px;
  background: linear-gradient(var(--red), var(--navy) 80%, transparent);
}
.tl-item { position: relative; padding: 0 0 64px clamp(60px, 8vw, 110px); }
.tl-item::before {
  content: ''; position: absolute; left: clamp(9px, 3vw, 23px); top: 6px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--cream);
  border: 3px solid var(--red); box-shadow: 0 0 0 6px rgba(226,59,67,.12);
}
.tl-year {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 5vw, 64px);
  line-height: 1; -webkit-text-stroke: 1.6px var(--navy); color: transparent; margin-bottom: 14px;
}
.tl-item.hot .tl-year { -webkit-text-stroke: 0; color: var(--red); }
.tl-item h4 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.tl-item p { max-width: 60ch; line-height: 1.75; color: #444a63; font-size: 15.5px; }

/* ---------- Quote block ---------- */
.pull-quote {
  background: var(--grad-navy); border-radius: 30px; color: #fff;
  padding: clamp(40px, 6vw, 80px); position: relative; overflow: hidden;
}
.pull-quote::before {
  content: '\201C'; position: absolute; top: -30px; left: 22px; font-family: var(--font-display);
  font-size: 240px; color: rgba(226,59,67,.35); line-height: 1;
}
.pull-quote blockquote { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 36px); line-height: 1.35; max-width: 26ch; position: relative; }
.pull-quote cite { display: block; margin-top: 26px; font-style: normal; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; font-size: 12.5px; color: var(--gold); }

/* ---------- Values (careers) ---------- */
.values-stack { display: grid; gap: 18px; margin-top: 60px; }
.value-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: #fff; border: 1px solid rgba(19,27,63,.08); border-radius: 22px;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3.4vw, 48px);
  transition: transform .4s var(--ease-spring), background .4s, color .4s;
}
.value-row:hover { background: var(--navy); transform: scale(1.015); }
.value-row:hover h4, .value-row:hover .value-num { color: #fff; }
.value-row:hover p { color: rgba(255,255,255,.75); }
.value-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--red); min-width: 52px; transition: color .4s; }
.value-row h4 { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.4vw, 30px); color: var(--navy); flex: 1; transition: color .4s; }
.value-row p { max-width: 38ch; font-size: 14px; line-height: 1.65; color: #4c5270; transition: color .4s; }
@media (max-width: 720px) { .value-row { flex-direction: column; align-items: flex-start; gap: 10px; } }

/* ---------- Perks ---------- */
.perks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 56px; }
.perk {
  background: #fff; border-radius: 22px; padding: 30px 26px; border: 1px solid rgba(19,27,63,.07);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}
.perk:hover { transform: translateY(-8px); box-shadow: 0 26px 54px -22px rgba(19,27,63,.28); }
.perk .ico { font-size: 30px; margin-bottom: 16px; display: inline-block; transition: transform .4s var(--ease-spring); }
.perk:hover .ico { transform: scale(1.25) rotate(-8deg); }
.perk h4 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.perk p { font-size: 13.5px; line-height: 1.65; color: #4c5270; }

/* ---------- Roles ---------- */
.roles { margin-top: 56px; display: grid; gap: 14px; }
.role {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid rgba(19,27,63,.08); border-radius: 18px; padding: 24px 30px;
  transition: transform .3s var(--ease-spring), border-color .3s;
}
.role:hover { transform: translateX(8px); border-color: var(--red); }
.role h4 { font-family: var(--font-display); font-size: 18px; color: var(--navy); }
.role small { display: block; margin-top: 4px; color: var(--grey); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.role .role-arr { font-size: 22px; color: var(--red); transition: transform .3s var(--ease-spring); }
.role:hover .role-arr { transform: translateX(6px); }

/* ---------- Big statement ---------- */
.statement { text-align: center; }
.statement .h-display { font-size: clamp(34px, 6.4vw, 92px); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-brand); border-radius: 34px; text-align: center; color: #fff;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 70px); position: relative; overflow: hidden;
}
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 64px); line-height: 1.05; }
.cta-band p { margin: 20px auto 36px; max-width: 52ch; font-size: 16.5px; line-height: 1.7; opacity: .95; }
.cta-band .btn-white:hover { box-shadow: 0 24px 50px -18px rgba(0,0,0,.4); }
.cta-band .confetti-holder { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* ---------- Offices ---------- */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 50px; }
.office { background: #fff; border-radius: 20px; padding: 30px; border: 1px solid rgba(19,27,63,.07); }
.office b { font-family: var(--font-display); color: var(--red); font-size: 13px; letter-spacing: .24em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.office p { color: var(--navy); font-weight: 600; line-height: 1.6; font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-ink); color: #fff; padding: 80px clamp(20px, 6vw, 90px) 40px; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; max-width: 1280px; margin: 0 auto; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: var(--font-display); font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer a, .footer p { color: rgba(255,255,255,.72); font-size: 14.5px; line-height: 2.1; display: block; transition: color .25s, transform .25s; }
.footer a:hover { color: #fff; transform: translateX(4px); }
.footer-brandline { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brandline svg, .footer-brandline img { width: 46px; height: auto; }
.footer-brandline img { filter: drop-shadow(0 0 1px rgba(255,255,255,.4)); }
.footer-brandline b { font-family: var(--font-display); font-size: 20px; }
.footer-tag { max-width: 34ch; }
.footer-bottom {
  max-width: 1280px; margin: 60px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.footer-giant {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(60px, 12vw, 210px);
  line-height: 1; text-align: center; margin: 70px auto -10px; letter-spacing: -.02em;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap; pointer-events: none;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 190px clamp(20px, 6vw, 90px) 90px; position: relative; overflow: hidden; }

/* ---------- Reveal defaults (JS adds motion) ---------- */
[data-reveal] { opacity: 0; transform: translateY(46px); }
[data-reveal-l] { opacity: 0; transform: translateX(-60px); }
[data-reveal-r] { opacity: 0; transform: translateX(60px); }
[data-scale] { opacity: 0; transform: scale(.86); }
.no-js [data-reveal], .no-js [data-reveal-l], .no-js [data-reveal-r], .no-js [data-scale] { opacity: 1; transform: none; }

/* ---------- Confetti bits ---------- */
.confetti-bit { position: fixed; width: 10px; height: 14px; z-index: 9990; pointer-events: none; top: 0; left: 0; }

/* ---------- Wavy divider ---------- */
.wave { display: block; width: 100%; height: 70px; margin-bottom: -2px; }

/* ---------- Film strip (auto-scrolling photo marquee) ---------- */
.filmstrip { overflow: hidden; padding: 10px 0; position: relative; }
.filmstrip-track { display: flex; gap: 18px; width: max-content; animation: scrollx 46s linear infinite; }
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
.filmstrip img {
  height: clamp(180px, 26vw, 300px); width: auto; border-radius: 18px; object-fit: cover;
  box-shadow: 0 18px 40px -18px rgba(19,27,63,.35);
  transition: transform .5s var(--ease-spring), filter .5s;
}
.filmstrip img:nth-child(odd) { transform: rotate(-1.4deg); }
.filmstrip img:nth-child(even) { transform: rotate(1.2deg); }
.filmstrip img:hover { transform: scale(1.06) rotate(0deg); filter: saturate(1.15); z-index: 2; }

/* ---------- Moments grid (about) ---------- */
.moments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr)); gap: 20px; margin-top: 56px; }
.moment { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4/3; }
.moment img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-smooth); }
.moment:hover img { transform: scale(1.08); }
.moment figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(12,17,40,.85));
  color: #fff; font-weight: 800; font-size: 13.5px; letter-spacing: .06em;
}
.moment.tall { aspect-ratio: 3/4; grid-row: span 1; }

/* ---------- Premium polish ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad-brand); z-index: 1001; border-radius: 0 3px 3px 0;
  box-shadow: 0 0 12px rgba(226,59,67,.5);
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -90%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); transition: left .1s;
}
.btn:hover::after { left: 140%; transition: left .65s ease; }
.marquee:hover .marquee-track { animation-play-state: paused; }
body.fade-out { opacity: 0; }
body { transition: opacity .25s ease; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(12,17,40,.93); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; z-index: 9995;
  opacity: 0; pointer-events: none; transition: opacity .3s; padding: 4vmin;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 86vh; border-radius: 16px; object-fit: contain;
  box-shadow: 0 40px 120px rgba(0,0,0,.6); transform: scale(.93);
  transition: transform .4s var(--ease-spring);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 16px; right: 22px; width: 48px; height: 48px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: #fff; font-size: 22px; cursor: pointer; transition: background .3s, transform .3s;
}
.lightbox-close:hover { background: var(--red); transform: rotate(90deg); }
.masonry figure, .moment, .filmstrip img { cursor: zoom-in; }

/* gradient shimmer on CTA band */
.cta-band { background-size: 180% 180%; animation: gradShift 7s ease infinite; }
@keyframes gradShift { 0%,100% { background-position: 0% 40%; } 50% { background-position: 100% 60%; } }

/* ---------- Masonry gallery (careers) ---------- */
.masonry { columns: 3 300px; column-gap: 18px; margin-top: 56px; }
.masonry figure { break-inside: avoid; margin: 0 0 18px; border-radius: 20px; overflow: hidden; position: relative; }
.masonry img { width: 100%; display: block; transition: transform .7s var(--ease-smooth), filter .7s; }
.masonry figure:hover img { transform: scale(1.06); filter: saturate(1.12); }
.masonry figure::after {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(transparent 60%, rgba(226,59,67,.35)); transition: opacity .5s;
}
.masonry figure:hover::after { opacity: 1; }
