/* =============================================================
   THIIIRD WRLD — v3
   Inspired by Mint&Marble (Mary Demchenko)
   Palette:  #000 black / #F2EEDB cream / #5DABFE blue (accent only)
   Fonts:    Anton (display) · Playfair Italic (swash) · JetBrains Mono (body)
   ============================================================= */

@font-face {
  font-family: 'Thunder';
  src: url('assets/fonts/Thunder-BoldLC.woff2') format('woff2'),
       url('assets/fonts/Thunder-BoldLC.woff') format('woff'),
       url('assets/fonts/Thunder-BoldLC.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DirtyStains';
  src: url('assets/fonts/DirtyStains.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette */
  --black: #000000;
  --ink-1: #0A0A0A;
  --ink-2: #141414;
  --cream: #F2EEDB;
  --cream-70: rgba(242, 238, 219, 0.70);
  --cream-50: rgba(242, 238, 219, 0.50);
  --cream-30: rgba(242, 238, 219, 0.30);
  --cream-15: rgba(242, 238, 219, 0.15);
  --cream-08: rgba(242, 238, 219, 0.08);
  --blue:   #5DABFE;

  /* type scale */
  --fs-colossal: clamp(120px, 26vw, 420px);  /* giant flank letters */
  --fs-mega:     clamp(80px,  14vw, 220px);  /* hero, section display */
  --fs-xl:       clamp(48px,  7vw,  110px);  /* big headings */
  --fs-l:        clamp(30px,  4vw,  64px);   /* statement type */
  --fs-m:        clamp(22px,  2.2vw,34px);   /* sub-headings */
  --fs-s:        clamp(14px,  1vw,  17px);   /* body */
  --fs-xs:       12px;                       /* meta, mono labels */
  --fs-2xs:      10px;                       /* tiny meta */

  /* fonts */
  --f-display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --f-swash:   'Playfair Display', serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* layout */
  --pad-x: clamp(18px, 3vw, 40px);
  --max-w: 1760px;

  /* motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: var(--fs-s);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; border: none; background: none; }
h1, h2, h3, h4, h5 { font-weight: 400; letter-spacing: -0.01em; }
::selection { background: var(--blue); color: var(--black); }

html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--black); }
html::-webkit-scrollbar-thumb { background: var(--cream-15); }
html::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* -------------------------------------------------------------
   TYPE PRIMITIVES
------------------------------------------------------------- */
.display,
.hero__title-main,
.section-display,
.wearesplit__flank,
.wedo__flank,
.cta__title,
.selwork__title,
.wedo__cycle li {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.swash {
  font-family: var(--f-swash);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.mono { font-family: var(--f-mono); }

/* Bracket label — the recurring [meta] device */
.bracket-label {
  font-family: var(--f-mono);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cream-70);
  text-transform: lowercase;
  line-height: 1.35;
  position: absolute;
  z-index: 4;
}
.bracket-label--tl { top: 28px;    left: var(--pad-x); }
.bracket-label--tr { top: 28px;    right: var(--pad-x); text-align: right; }
.bracket-label--bl { bottom: 48px; left: var(--pad-x); }
.bracket-label--br { bottom: 48px; right: var(--pad-x); text-align: right; }

.hero .bracket-label { font-size: 12px; }

/* Justified body paragraph — Mint&Marble's magazine-y copy */
.justify {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  text-transform: uppercase;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.section-display {
  font-size: var(--fs-mega);
  color: var(--cream);
}

/* -------------------------------------------------------------
   LOADER — STAY [N] HERE (we're using NEW · WRLD)
------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__inner {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.loader__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.loader__welcome {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1;
}
.loader__word {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1;
  will-change: transform;
}
.loader__word--left  { justify-self: start; }
.loader__word--right { justify-self: end; }
.loader__count {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  min-width: 4ch;
  text-align: center;
}

/* -------------------------------------------------------------
   NAV
------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px var(--pad-x);
  transition: background 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out),
              padding 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--cream-08);
}
.nav__logo {
  justify-self: start;
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.3s var(--ease-out);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { width: 100%; }

.nav__menu-btn {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  justify-self: end;
  cursor: pointer;
}
.nav__menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out);
}
.nav__menu-btn.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
  .nav { grid-template-columns: auto 1fr; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 90;
  padding: 100px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-in-out);
  display: flex;
  flex-direction: column;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  justify-content: center;
}
.mobile-menu__links a {
  font-family: var(--f-display);
  font-size: clamp(40px, 11vw, 68px);
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: color 0.3s;
}
.mobile-menu__sup {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cream-50);
  text-transform: lowercase;
  vertical-align: super;
  align-self: flex-start;
  margin-top: 6px;
}
.mobile-menu__links a:hover { color: var(--blue); }
.mobile-menu__foot {
  display: flex;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid var(--cream-15);
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--cream-70);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.mobile-menu__foot a:hover { color: var(--blue); }

/* -------------------------------------------------------------
   HERO — vertical strips unfold, wordmark behind
------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--black);
}


/* Full-screen background video */
.hero__motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 0.8;
}
.hero__motion video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero content */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad-x);
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--fs-mega);
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}
.hero__title-main {
  display: inline-block;
  padding: 0 0.1em;
  font-family: 'DirtyStains', var(--f-display);
  font-weight: 400;
}
.hero__tagline {
  margin-top: 12px;
  font-family: var(--f-mono);
  font-size: clamp(12px, 1.1vw, 16px);
  letter-spacing: 0.16em;
  color: var(--cream-70);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}
.hero__cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 14px 22px;
  min-width: 240px;
  border: 1px solid var(--cream);
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: all 0.3s var(--ease-out);
}
.hero__cta svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease-out); }
.hero__cta:hover { background: var(--blue); color: var(--black); border-color: var(--blue); }
.hero__cta:hover svg { transform: translate(2px, -2px); }

/* -------------------------------------------------------------
   WE ARE split — giant flanks with bridging content
------------------------------------------------------------- */
.wearesplit {
  position: relative;
  padding: clamp(80px, 14vh, 160px) var(--pad-x);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px) 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
}

.wearesplit__flank {
  font-size: clamp(104px, 22.5vw, 363px);
  color: var(--cream);
  line-height: 0.8;
  user-select: none;
  will-change: transform;
}
.wearesplit__flank--left  { justify-self: start;  transform: translateX(-10%); }
.wearesplit__flank--right { justify-self: end;    transform: translateX(10%); }

.wearesplit__middle {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 60px 0;
}

/* Intro copy — tiny all-caps, shown twice side by side like Mint&Marble */
.wearesplit__intro {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.5;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}
.wearesplit__intro--dup {
  position: absolute;
  top: 60px;
  left: calc(50% + 90px);
}

.wearesplit__photo {
  margin: 20px auto;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-2);
}
.wearesplit__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.wearesplit__statement {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.9vw, 30px);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--cream);
  text-transform: uppercase;
}

.wearesplit__body {
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.wearesplit__body .accent {
  color: var(--blue);
}

.wearesplit__flank .accent {
  font-family: "DirtyStains", var(--f-display);
  color: var(--blue);
  font-size: 0.5em;
}

@media (max-width: 900px) {
  .wearesplit { grid-template-columns: 1fr; gap: 40px; }
  .wearesplit__flank { justify-self: center !important; transform: none !important; }
  .wearesplit__intro--dup { display: none; }
}

/* -------------------------------------------------------------
   SELECTED WORK — stacked titles, hover reveals rotated image
------------------------------------------------------------- */
.selwork {
  position: relative;
  padding: clamp(90px, 12.6vh, 144px) var(--pad-x);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.selwork__list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.selwork__item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  padding: 6px 20px;
  cursor: pointer;
  transition: color 0.4s var(--ease-out);
}
.selwork__item:hover {
  z-index: 3;
}
.selwork__num {
  font-family: var(--f-mono);
  font-size: var(--fs-2xs);
  color: var(--cream-50);
  letter-spacing: 0.06em;
}
.selwork__title {
  font-size: clamp(48px, 7.7vw, 119px);
  color: var(--cream);
  transition: color 0.4s var(--ease-out),
              -webkit-text-stroke 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}

/* Default: all items slightly dimmed */
.selwork__list:hover .selwork__item .selwork__title {
  color: transparent;
  -webkit-text-stroke: 1px var(--cream-30);
}
/* Hovered item: blue */
.selwork__list:hover .selwork__item:hover .selwork__title {
  color: var(--blue);
  -webkit-text-stroke: 0;
}

/* The reveal behind the titles (slightly rotated) */
.selwork__reveal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 3/4;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.selwork__reveal.is-visible { opacity: 1; }
.selwork__reveal-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--ink-2);
}
.selwork__reveal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.selwork__reveal-meta,
.selwork__reveal-cta {
  position: absolute;
  font-family: var(--f-mono);
  font-size: var(--fs-2xs);
  letter-spacing: 0.08em;
  color: var(--cream);
  z-index: 2;
}
.selwork__reveal-meta { top: 12px; left: 14px; }
.selwork__reveal-cta {
  bottom: 12px; right: 14px;
  border-bottom: 1px solid var(--cream);
  padding-bottom: 2px;
}

@media (max-width: 700px) {
  .selwork__reveal { display: none; }
}

/* -------------------------------------------------------------
   WE DO — cycling services + perspective-grid showcase strip
------------------------------------------------------------- */
.wedo {
  position: relative;
  padding: clamp(100px, 14vh, 180px) 0 0;
  overflow: hidden;
}
.wedo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 40px 0;
  row-gap: 40px;
}
.wedo .bracket-label { grid-column: 1 / -1; position: absolute; }

.wedo__flank {
  font-size: clamp(96px, 20.8vw, 336px);
  color: var(--cream);
  line-height: 0.8;
  grid-row: 1;
  user-select: none;
  will-change: transform;
  transform: translateZ(0);
}
.wedo__flank--left  { justify-self: start; padding-left: var(--pad-x); }
.wedo__flank--right { justify-self: end;   padding-right: var(--pad-x); grid-column: 3; }

/* Centre cycle */
.wedo__center {
  position: relative;
  grid-row: 1;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wedo__frame {
  position: absolute;
  border: 1px dashed var(--blue);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}
.wedo__cycle {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wedo__cycle li {
  font-size: clamp(12px, 1.22vw, 18px);
  color: var(--cream-30);
  line-height: 1;
  transition: color 0.3s;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 8px 20px;
  cursor: default;
}
.wedo__cycle li.is-active {
  color: var(--cream);
}

/* Hover-reveal image strip */
.wedo__strip {
  grid-column: 1 / -1;
  grid-row: 2;
  position: relative;
  padding: 40px var(--pad-x);
  overflow: hidden;
  min-height: 280px;
}
.wedo__halftone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}
.wedo__strip-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  will-change: opacity;
}
.wedo__strip-track.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.wedo__strip-track figure img {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.9);
}

@media (max-width: 900px) {
  .wedo__strip-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .wedo { grid-template-columns: 1fr; text-align: center; }
  .wedo__flank { justify-self: center !important; padding: 0 !important; grid-row: auto !important; grid-column: 1 !important; }
  .wedo__center { grid-row: auto !important; grid-column: 1 !important; }
  .wedo__strip { grid-row: auto !important; grid-column: 1 !important; }
}

/* -------------------------------------------------------------
   DRAG GALLERY
------------------------------------------------------------- */
.dragseq {
  position: relative;
  padding: clamp(100px, 14vh, 160px) 0;
  overflow: hidden;
}
.dragseq .section-display {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 var(--pad-x);
  line-height: 0.95;
}
.dragseq__wrap {
  position: relative;
  cursor: none;
}
.dragseq__wrap.is-grabbing { cursor: none; }

.dragseq__cursor {
  position: fixed;
  top: 0; left: 0;
  width: 25.5px;
  height: 25.5px;
  background: var(--cream);
  color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0;
  z-index: 9000;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s, color 0.2s;
  will-change: transform;
}
.dragseq__cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.dragseq__cursor.has-drag {
  color: var(--black);
}
.dragseq__wrap.is-grabbing .dragseq__cursor {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(0.85);
}

.dragseq__track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 0 var(--pad-x);
  will-change: transform;
  user-select: none;
}
.dragseq__link { display: contents; color: inherit; text-decoration: none; }
.dragseq__item {
  flex-shrink: 0;
  width: clamp(220px, 22vw, 340px);
  position: relative;
  border: 1px solid var(--cream-15);
  overflow: hidden;
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.dragseq__item img,
.dragseq__item video {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: filter 0.3s;
  display: block;
}
.dragseq__item:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.dragseq__item:hover img,
.dragseq__item:hover video { filter: saturate(1.1); }
.dragseq__item figcaption {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dragseq__item figcaption strong { font-weight: 500; color: var(--cream); }
.dragseq__item figcaption span { color: var(--cream-50); }

/* Nth child staggered heights for interesting skyline */
.dragseq__item:nth-child(2n) { margin-top: 40px; }
.dragseq__item:nth-child(3n) { margin-top: 20px; }

/* On touch / no-hover devices, re-enable native scrolling */
@media (hover: none) {
  .dragseq__wrap { cursor: auto; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .dragseq__wrap .dragseq__cursor { display: none; }
  .dragseq__item { scroll-snap-align: start; }
}

/* -------------------------------------------------------------
   PARTNERS
------------------------------------------------------------- */
.partners {
  position: relative;
  padding: 100px 0 80px;
  border-top: 1px solid var(--cream-08);
  border-bottom: 1px solid var(--cream-08);
  overflow: hidden;
}
.partners__row {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.partners__track {
  display: flex;
  align-items: center;
  gap: 80px;
  will-change: transform;
}
.partners__track img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1) sepia(0.2);
}
.partners__track img:hover { opacity: 1; }

/* -------------------------------------------------------------
   CTA
------------------------------------------------------------- */
.cta {
  position: relative;
  padding: clamp(120px, 18vh, 200px) var(--pad-x) 120px;
  text-align: center;
}
.cta__title {
  font-size: clamp(22px, 3vw, 46px);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.cta__form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta__form input[type="email"] {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-30);
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  text-align: left;
  transition: border-color 0.3s;
}
.cta__form input[type="email"]::placeholder { color: var(--cream-50); }
.cta__form input[type="email"]:focus { outline: none; border-color: var(--blue); }

.cta__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--cream-70);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  justify-content: flex-start;
  text-align: left;
}
.cta__check input {
  appearance: none;
  width: 14px; height: 14px;
  border: 1px solid var(--cream-30);
  cursor: pointer;
  position: relative;
}
.cta__check input:checked { background: var(--blue); border-color: var(--blue); }
.cta__check input:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 4px;
  width: 4px; height: 7px;
  border: solid var(--black);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.cta__submit {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.cta__submit svg { width: 12px; height: 12px; transition: transform 0.3s; }
.cta__submit:hover {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}
.cta__submit:hover svg { transform: translate(2px, -2px); }

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
  padding: 60px var(--pad-x) 24px;
  border-top: 1px solid var(--cream-08);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--cream-08);
}
.footer__mark {
  font-family: var(--f-display);
  font-size: clamp(28px, 5vw, 60px);
  color: var(--cream);
  letter-spacing: 0;
  line-height: 1;
}
.footer__mark img {
  height: clamp(28px, 5vw, 60px);
  width: auto;
  display: block;
}
.footer__nav {
  display: flex;
  gap: 22px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__nav a { transition: color 0.3s; }
.footer__nav a:hover { color: var(--blue); }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid var(--cream-08);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__label {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--cream-50);
  text-transform: lowercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  font-weight: 400;
}
.footer__col a,
.footer__col p {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 0;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--blue); }
.footer__social { display: flex; flex-direction: column; gap: 4px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: var(--fs-2xs);
  color: var(--cream-50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .footer__top { flex-direction: column; align-items: flex-start; gap: 30px; }
  .footer__nav { flex-wrap: wrap; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .hero__title { font-size: clamp(60.7px, 10.65vw, 167.2px); }
}

/* -------------------------------------------------------------
   Reduced motion
------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__strip-inner { transform: scaleY(1) !important; }
}
