/* =====================================================================
   ADMINISTRATION AUTOPILOT — Static site
   Award-worthy editorial dark theme. Orbitron display + Sora body.
   ===================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #333333;
  --grey-light: #666666;
  --orange: #F16026;
  --orange-hot: #ff7a3d;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --bg-white: #ffffff;

  --font-display: 'Orbitron', 'Sora', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, -apple-system, sans-serif;
  --font-sub: 'Sora', system-ui, sans-serif; /* Myriad Pro substitute */

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--orange); color: var(--black); }

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Custom cursor */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
  mix-blend-mode: difference;
}
.cursor.is-hover { width: 44px; height: 44px; background: var(--white); }
.cursor.is-hidden { opacity: 0; }
@media (hover: none) { .cursor { display: none; } }

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: transform 1s var(--ease), opacity .6s var(--ease);
}
.loader__mark {
  width: 88px; height: 88px;
  animation: markSpin 1.6s var(--ease) infinite;
}
.loader__count {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--grey-light);
}
.loader.is-done { transform: translateY(-100%); opacity: 0; }
@keyframes markSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Container */
.container {
  width: min(1440px, 92vw);
  margin: 0 auto;
}
.container--wide { width: min(1600px, 96vw); }

/* Typography */
.h-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
}
.h-eyebrow {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em; /* tracking 200 */
  text-transform: uppercase;
  color: var(--grey-light);
}
.h-eyebrow .dot { color: var(--orange); }
.h-sub {
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  font-size: 13px;
}
.text-body {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.55;
}
.text-lead {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.78);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 400;
}

.h-massive {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.88;
  font-size: clamp(48px, 9vw, 168px);
  text-transform: uppercase;
}
.h-2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 0.92;
  font-size: clamp(38px, 5.5vw, 92px);
  text-transform: uppercase;
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(28px, 3vw, 44px);
  text-transform: uppercase;
  line-height: 1;
}

/* Line-mask reveal utility (used with SplitType) */
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; }
.mask .line { display: inline-block; transform: translateY(110%); will-change: transform; }
.reveal .line { transform: translateY(0); transition: transform 1.1s var(--ease-out); }
.reveal .line:nth-child(2) { transition-delay: .1s; }
.reveal .line:nth-child(3) { transition-delay: .2s; }
.reveal .line:nth-child(4) { transition-delay: .3s; }
.reveal .line:nth-child(5) { transition-delay: .4s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 999px;
  transition: color .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange);
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { border-color: var(--orange); color: var(--white); }
.btn .arrow {
  transition: transform .4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px) rotate(-8deg); }

.btn--solid {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn--solid::before { background: var(--white); }
.btn--solid:hover { color: var(--black); border-color: var(--white); }

.btn--ghost { border-color: rgba(255,255,255,0.24); }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mark {
  width: 44px; height: 44px;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__wordmark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__wordmark span:last-child { color: var(--orange); }
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__links a {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  padding: 8px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--orange);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.nav__cta:hover { background: var(--white); color: var(--black); transform: translateY(-1px); }

.nav__menu {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__menu span {
  width: 16px; height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease);
}
.nav.is-open .nav__menu span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.is-open .nav__menu span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: inline-flex; }
  .nav.is-open + .mobile-menu { transform: translateY(0); }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--black);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .7s var(--ease-out);
  padding: 120px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: 0; color: var(--orange); }

/* =============================== HERO =============================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(241,96,38,0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(241,96,38,0.08), transparent 60%),
    var(--black);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 80%);
}
.hero__mark {
  position: absolute;
  right: -5vw;
  top: 10vh;
  width: 62vw;
  max-width: 900px;
  opacity: 0.08;
  z-index: 1;
  filter: grayscale(0);
  will-change: transform;
}
@media (max-width: 960px) {
  .hero__mark { right: -25vw; top: 6vh; width: 120vw; opacity: 0.06; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.hero__eyebrow .pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(241,96,38,0.6);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241,96,38,0.6); }
  100% { box-shadow: 0 0 0 16px rgba(241,96,38,0); }
}
.hero__title { margin: 0 0 40px; }
.hero__title .accent { color: var(--orange); font-style: italic; font-family: var(--font-display); font-weight: 700; }
.hero__meta {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: flex-end;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.hero__lead {
  max-width: 560px;
}
.hero__stats {
  display: flex;
  gap: 40px;
}
.hero__stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}
.hero__stat .num .plus { color: var(--orange); }
.hero__stat .label {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 8px;
}
.hero__ctas { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 960px) {
  .hero__meta { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
}

/* Ticker under hero */
.ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(0,0,0,0.6);
}
.ticker__track {
  display: flex;
  gap: 60px;
  padding: 22px 0;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex; align-items: center; gap: 60px;
}
.ticker__item .dot { color: var(--orange); }
@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================== MANIFESTO =========================== */
.manifesto {
  padding: 160px 0;
  background: var(--black);
  position: relative;
}
.manifesto__intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 100px;
}
.manifesto__label { align-self: start; }
.manifesto__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.chapter {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.chapter__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.15em;
}
.chapter__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.chapter__body { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 480px; }
@media (max-width: 960px) {
  .manifesto__intro { grid-template-columns: 1fr; gap: 24px; }
  .chapter { grid-template-columns: 60px 1fr; }
  .chapter__body { grid-column: 1 / -1; padding-left: 60px; }
}

/* =========================== SERVICES =========================== */
.services {
  padding: 160px 0;
  background: var(--white);
  color: var(--black);
  position: relative;
}
.services .h-eyebrow { color: var(--grey); }
.services .h-eyebrow .dot { color: var(--orange); }
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.services__title {
  color: var(--black);
}
.services__title .accent { color: var(--orange); font-style: italic; }
.services__lead { color: var(--grey); max-width: 460px; justify-self: end; }

.services__list {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.service {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  align-items: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: color .4s var(--ease);
}
.service::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform .6s var(--ease-out);
  z-index: 0;
}
.service:hover::before { transform: translateY(0); }
.service:hover { color: var(--white); }
.service:hover .service__num { color: var(--orange); }
.service:hover .service__preview { opacity: 1; transform: translateY(0); pointer-events: auto; }
.service > * { position: relative; z-index: 1; }

.service__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.15em;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}
.service__desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: currentColor;
  opacity: 0.7;
  max-width: 440px;
}
.service__arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease), background .3s var(--ease);
  flex-shrink: 0;
}
.service:hover .service__arrow { background: var(--orange); border-color: var(--orange); transform: rotate(-45deg); }

.service__preview {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-40%);
  width: 260px;
  height: 340px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s var(--ease), transform .6s var(--ease-out);
  z-index: 2;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.service__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
}
@media (max-width: 1100px) { .service__preview { display: none; } }
@media (max-width: 800px) {
  .services__head { grid-template-columns: 1fr; }
  .service { grid-template-columns: 60px 1fr; }
  .service__desc, .service__arrow { grid-column: 1 / -1; }
  .service__arrow { justify-self: start; }
}

/* =========================== INDUSTRIES =========================== */
.industries {
  padding: 160px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.industries__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.industries__lead { max-width: 480px; justify-self: end; }

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry {
  background: var(--black);
  padding: 40px 32px 36px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background .4s var(--ease), color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.industry.is-featured { background: var(--orange); color: var(--white); }
.industry.is-featured .industry__num { color: var(--white); }
.industry:hover { background: var(--white); color: var(--black); }
.industry:hover .industry__num { color: var(--orange); }
.industry__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 700;
}
.industry__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}
.industry__meta {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 1100px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } .industries__head { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .industries__grid { grid-template-columns: 1fr; } }

/* =========================== PROCESS =========================== */
.process {
  background: var(--white);
  color: var(--black);
  position: relative;
}
.process__head {
  padding: 160px 0 60px;
}
.process__head .h-eyebrow { color: var(--grey); }
.process__title { color: var(--black); }
.process__title .accent { color: var(--orange); font-style: italic; }

.process__track {
  display: flex;
  gap: 40px;
  padding: 40px 0 160px;
  padding-left: max(4vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.process__track::-webkit-scrollbar { display: none; }
.step {
  min-width: 420px;
  max-width: 420px;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 40px 36px;
  background: var(--black);
  color: var(--white);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.step:hover { transform: translateY(-6px); }
.step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.9;
  color: var(--orange);
  margin-bottom: 20px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1;
}
.step__body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin-bottom: 32px;
}
.step__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.step__list li {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: flex; align-items: center; gap: 10px;
}
.step__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* =========================== STATS =========================== */
.stats {
  background: var(--black);
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 7vw, 120px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.stat__num .unit { color: var(--orange); }
.stat__label {
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 16px;
}
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }

/* =========================== MARQUEE =========================== */
.marquee {
  padding: 40px 0;
  background: var(--orange);
  color: var(--white);
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg);
  margin: -20px 0;
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerMove 60s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 8vw, 140px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex; align-items: center; gap: 60px;
  -webkit-text-stroke: 1px transparent;
}
.marquee__item .dot { color: var(--black); }
.marquee__item .out { color: transparent; -webkit-text-stroke: 1.5px var(--white); }

/* =========================== ABOUT =========================== */
.about {
  padding: 160px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.about__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border-radius: 4px;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(1.05);
  will-change: transform;
}
.about__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(241,96,38,0.15));
  z-index: 1;
  pointer-events: none;
}
.about__photo::after {
  content: 'SPOTLIGHT / 01';
  position: absolute;
  left: 20px; bottom: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--white);
  z-index: 2;
}
.about__body { padding-top: 40px; }
.about__body .h-2 { margin-bottom: 32px; }
.about__body p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
.about__pills { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0; }
.pill {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.pill.is-hot { background: var(--orange); border-color: var(--orange); color: var(--white); }
@media (max-width: 960px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }

/* =========================== CONTACT =========================== */
.contact {
  padding: 160px 0 100px;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact__title { margin-bottom: 40px; }
.contact__title .accent { color: var(--orange); font-style: italic; }
.contact__info { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact__info .row { display: flex; flex-direction: column; gap: 6px; }
.contact__info .row .label {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.contact__info .row .value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  transition: color .3s var(--ease);
}
.contact__info a.row:hover .value { color: var(--orange); }

.form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.form__field input,
.form__field select,
.form__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color .3s var(--ease);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form__field select { color: rgba(255,255,255,0.7); }
.form__field select option { background: var(--black); color: var(--white); }
.form__submit {
  align-self: flex-start;
  margin-top: 12px;
}
.form__note {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--grey-light);
  text-transform: uppercase;
}
@media (max-width: 960px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } .form__row { grid-template-columns: 1fr; } }

/* =========================== FOOTER =========================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 340px; margin: 16px 0 0; }
.footer__col h5 {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin: 0 0 20px;
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col li a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color .3s var(--ease); }
.footer__col li a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.footer__bottom a:hover { color: var(--orange); }
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
}

/* =========================== BIG WORD BAND =========================== */
.wordband {
  background: var(--black);
  padding: 60px 0 100px;
  overflow: hidden;
}
.wordband__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 16vw, 260px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  color: var(--white);
  white-space: nowrap;
}
.wordband__word .out { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.wordband__word .orange { color: var(--orange); }

/* Reveal animations (fallback if JS blocked) */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* Utility */
.spacer-60 { height: 60px; }
.spacer-100 { height: 100px; }

/* Small responsive helpers */
@media (max-width: 640px) {
  .hero { padding: 140px 0 40px; }
  .manifesto, .services, .industries, .about, .contact { padding: 100px 0; }
  .process__head { padding: 100px 0 40px; }
  .process__track { gap: 20px; padding-bottom: 100px; }
  .step { min-width: 85vw; max-width: 85vw; padding: 32px 24px; }
  .nav__brand .nav__wordmark { display: none; }
}

/* =========================== PLATFORMS =========================== */
.platforms { padding: 160px 0 140px; }
.platforms .industries__head { margin-bottom: 72px; }
.platforms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 120px;
}
.platform {
  background: var(--black);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background .4s var(--ease);
}
.platform:first-child { background: linear-gradient(160deg, rgba(241,96,38,0.16), rgba(0,0,0,0) 60%), var(--black); }
.platform__tag {
  font-family: var(--font-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.platform__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.platform__body { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.65; margin: 0; max-width: 560px; }
.platform__list { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 10px; }
.platform__list li { position: relative; padding-left: 20px; font-size: 14px; color: rgba(255,255,255,0.86); }
.platform__list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 2px; background: var(--orange); }
.platform__link {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--font-sub);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border-top: 1px solid var(--line);
}
.platform__link:hover { color: var(--orange); }
.platforms .stat__num { font-size: clamp(40px, 4.6vw, 76px); }
@media (max-width: 900px) {
  .platforms__grid { grid-template-columns: 1fr; margin-bottom: 80px; }
  .platform { padding: 36px 24px; }
}
@media (max-width: 640px) { .platforms { padding: 100px 0; } }
.platform:first-child { grid-column: 1 / -1; }
.platform:first-child .platform__list { grid-template-columns: 1fr 1fr; column-gap: 32px; }
@media (max-width: 900px) { .platform:first-child .platform__list { grid-template-columns: 1fr; } }

/* =========================== FAQ =========================== */
.faq { background: var(--white); color: var(--black); padding: 160px 0; }
.faq .h-eyebrow { color: var(--grey); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq__lead { margin-top: 32px; color: var(--grey); font-size: 17px; line-height: 1.6; max-width: 360px; }
.faq__lead a { color: var(--orange); border-bottom: 1px solid currentColor; }
.faq__list { border-top: 1px solid rgba(0,0,0,0.12); }
.faq__item { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0;
  font-family: var(--font-body); font-weight: 600; font-size: 18px;
  transition: color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--orange); }
.faq__icon { position: relative; flex: 0 0 22px; height: 22px; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 3px; right: 3px; top: 50%; height: 2px; margin-top: -1px; background: var(--orange); transition: transform .35s var(--ease); }
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }
.faq__a p { margin: 0 0 28px; max-width: 640px; color: #444; font-size: 16px; line-height: 1.7; }
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 640px) { .faq { padding: 100px 0; } .faq__q { font-size: 16px; } }

/* =========================== TEAM =========================== */
.team { background: var(--black); padding: 140px 0 160px; border-top: 1px solid var(--line); }
.team .industries__head { margin-bottom: 72px; }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px 32px; }
.member { display: flex; flex-direction: column; }
.member__photo { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; background: #111; margin-bottom: 24px; position: relative; }
.member__photo::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 -3px 0 var(--orange); opacity: 0; transition: opacity .4s var(--ease); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transform: scale(1.02); transition: filter .6s var(--ease), transform .8s var(--ease-out); }
.member:hover .member__photo img { filter: grayscale(0); transform: scale(1.06); }
.member:hover .member__photo::after { opacity: 1; }
.member__role { font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); }
.member__name { font-family: var(--font-display); font-weight: 700; font-size: 24px; text-transform: uppercase; margin: 10px 0 10px; line-height: 1.1; }
.member__line { color: rgba(255,255,255,0.66); font-size: 15px; line-height: 1.55; margin: 0 0 16px; }
.member__bio summary { list-style: none; cursor: pointer; font-family: var(--font-sub); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); padding: 12px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.member__bio summary::-webkit-details-marker { display: none; }
.member__bio summary span { color: var(--orange); font-size: 16px; line-height: 1; transition: transform .3s var(--ease); }
.member__bio[open] summary span { transform: rotate(45deg); }
.member__bio summary:hover { color: var(--orange); }
.member__bio p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; margin: 8px 0 12px; }
@media (hover: none) { .member__photo img { filter: none; } }
@media (max-width: 1024px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team { padding: 100px 0; } .team__grid { grid-template-columns: 1fr; } }
@media (min-width: 641px) { .member__line { min-height: 3.1em; } }
.team__grid { grid-template-columns: repeat(4, 1fr); gap: 56px 28px; }
.member__name { font-size: 21px; }
.member__photo--initials { display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 20%, rgba(241,96,38,0.22), transparent 60%), #0d0d0d; border: 1px solid var(--line); }
.member__photo--initials span { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 5vw, 80px); color: var(--orange); letter-spacing: 0.04em; }
@media (max-width: 1200px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team__grid { grid-template-columns: 1fr; } }

/* Wider team */
.crew { margin-top: 96px; padding-top: 48px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px 48px; }
.crew__head { grid-column: 1 / -1; }
.crew__dept { font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin: 0 0 18px; font-weight: 600; }
.crew__group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.crew__group:nth-of-type(3) ul { grid-template-columns: 1fr 1fr; column-gap: 32px; }
.crew__group li { display: flex; flex-direction: column; gap: 2px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.crew__name { font-weight: 600; font-size: 16px; color: var(--white); }
.crew__role { font-size: 13px; color: rgba(255,255,255,0.55); }
@media (max-width: 1024px) { .crew { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .crew { grid-template-columns: 1fr; margin-top: 64px; } .crew__group:nth-of-type(3) ul { grid-template-columns: 1fr; } }
