/* ============================================================
   THE FROHMAN LAB — design system
   ============================================================ */
:root {
  --paper: #EFE8D8;
  --paper-deep: #E2DAC5;
  --ink: #14110C;
  --ink-soft: #24201A;
  --whisper: #8A8275;
  --vermillion: #5B3AB8;
  --vermillion-deep: #3F2590;
  --blue: #2563EB;
  --red: #E5392B;

  --display: "Fraunces", "Times New Roman", serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
  font-weight: 400;
  line-height: 1.5;
}
@media (hover: none) { body { cursor: auto; } }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: none; }

::selection { background: var(--vermillion); color: var(--paper); }

/* ============================================================
   GRAIN OVERLAY — global texture
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor.is-hover {
  width: 56px; height: 56px;
  background: var(--paper);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity .3s var(--ease);
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 5vh 5vw;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.preloader.is-done {
  transform: translateY(-100%);
  transition: transform 1.4s var(--ease-out);
}
.preloader__count {
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
}
.preloader__count sup {
  font-family: var(--mono);
  font-size: 14px;
  vertical-align: top;
  margin-left: 8px;
  opacity: 0.6;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.preloader__label {
  max-width: 240px;
  line-height: 1.4;
  opacity: 0.6;
}
.preloader__bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  background: var(--vermillion);
  width: 0%;
  transition: width .15s linear;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: var(--paper);
}
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.nav__brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.nav__links { display: flex; gap: 32px; }
.nav__links a { position: relative; transition: opacity .3s var(--ease); }
.nav__links a:hover { opacity: 0.5; }
.nav__cta {
  border: 1px solid var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s var(--ease);
}
.nav__cta:hover { background: var(--paper); color: var(--ink); mix-blend-mode: normal; }
.nav__cta .arrow { display: inline-block; transition: transform .3s var(--ease); }
.nav__cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav { padding: 20px; }
}

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO PORTRAIT — floating photo with flashes
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero__portrait {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  width: clamp(280px, 32vw, 480px);
  aspect-ratio: 866 / 1300;
  height: auto;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}
.hero__portrait-figure {
  position: absolute;
  inset: 0;
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-0.6deg); }
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 60px 80px rgba(11,11,11,0.55))
    drop-shadow(0 0 40px rgba(37,99,235,0.2))
    drop-shadow(0 0 1px rgba(11,11,11,0.5));
  position: relative;
  z-index: 2;
}
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: -10% -15%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.14) 0%, rgba(107,63,212,0.08) 40%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: haloPulse 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero__portrait::after {
  content: "";
  position: absolute;
  bottom: -3%;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(11,11,11,0.45) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
  pointer-events: none;
}

/* Placeholder shown until real photo is dropped in */
.hero__portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  text-align: center;
  border: 1px dashed rgba(11,11,11,0.25);
  border-radius: 4px;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(11,11,11,0.08) 49.5%, rgba(11,11,11,0.08) 50.5%, transparent 50.5%),
    var(--paper-deep);
  background-size: 12px 12px, 100% 100%;
  padding: 24px;
  line-height: 1.6;
}
.hero__portrait-placeholder strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 32, "SOFT" 0, "WONK" 0;
}
.hero__portrait-placeholder span { color: var(--vermillion); }

/* Full-image flash overlay — periodically pings */
.hero__portrait-flash {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(255,255,255,0.7) 50%,
    transparent 70%);
  background-size: 250% 100%;
  mix-blend-mode: overlay;
  opacity: 0;
  pointer-events: none;
  animation: heroFlash 7s ease-in-out infinite;
}
@keyframes heroFlash {
  0%, 88%, 100% { opacity: 0; background-position: -100% 0; }
  90%, 96% { opacity: 1; }
  92% { background-position: 200% 0; }
  98% { background-position: 200% 0; opacity: 0; }
}

/* Glasses + watch shine — small bright dots that pulse periodically */
/* Positions are placeholder — will be fine-tuned to actual photo */
.hero__portrait-shine {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6) 25%, rgba(255,255,255,0.15) 55%, transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  filter: blur(0.5px);
}
.hero__portrait-shine--glasses-l {
  top: 22.7%;
  left: 36.4%;
  width: 36px;
  height: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: shinePulse 4.2s ease-in-out infinite;
  animation-delay: 1s;
}
.hero__portrait-shine--glasses-r {
  top: 22.3%;
  left: 57.2%;
  width: 36px;
  height: 22px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: shinePulse 4.2s ease-in-out infinite;
  animation-delay: 1.18s;
}
.hero__portrait-shine--watch {
  top: 71.9%;
  left: 49.7%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,230,140,1) 0%, rgba(255,200,80,0.6) 30%, transparent 70%);
  animation: shinePulse 5s ease-in-out infinite;
  animation-delay: 2.6s;
}
@keyframes shinePulse {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  45%, 55% { opacity: 1; transform: translate(-50%, -50%) scale(1.6); }
}

/* Big "ghosted" name behind portrait */
.hero__bgmark {
  position: absolute;
  bottom: -8vw;
  left: -2vw;
  font-family: var(--display);
  font-size: 28vw;
  font-weight: 300;
  line-height: 0.8;
  color: var(--ink);
  opacity: 0.05;
  white-space: nowrap;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: -2;
}

@media (max-width: 1100px) {
  .hero__portrait {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 40px auto 0;
    width: min(70vw, 360px);
    height: auto;
  }
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.hero__meta-block { max-width: 200px; line-height: 1.6; }
.hero__meta-block strong { color: var(--ink); display: block; }

.hero__name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  position: relative;
  margin: 60px 0 40px;
  z-index: 2;
  max-width: 56vw;
  mix-blend-mode: normal;
}
@media (max-width: 1100px) {
  .hero__name { max-width: none; }
}
.hero__name .line {
  display: block;
  overflow: hidden;
}
.hero__name .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise 1.4s var(--ease-out) forwards;
}
.hero__name .line:nth-child(2) span { animation-delay: 0.15s; }
.hero__name .ital {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--vermillion);
}
@keyframes heroRise {
  to { transform: translateY(0); }
}

.hero__rotator {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 60vw;
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 80, "WONK" 1;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1s forwards;
}
.hero__rotator-prefix {
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.hero__rotator-words {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__rotator-words span {
  position: relative;
  color: var(--ink);
}
.hero__rotator-words span::after {
  content: ".";
  color: var(--vermillion);
}
.hero__rotator-words span.cycling {
  color: var(--vermillion);
}
@keyframes fadeIn { to { opacity: 1; } }

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.4s forwards;
}
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll-hint .line-anim {
  width: 60px;
  height: 1px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__scroll-hint .line-anim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Floating decorative lab elements */
.lab-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.lab-el {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  opacity: 0;
  animation: fadeIn 1.2s var(--ease-out) 1.6s forwards;
}
.lab-el.tag {
  border: 1px solid var(--ink);
  padding: 6px 10px;
  border-radius: 2px;
  background: var(--paper);
}
.lab-el.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vermillion);
}
.lab-el.circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px dashed var(--ink);
  opacity: 0.3;
  animation: fadeIn 1.2s var(--ease-out) 1.6s forwards, slowSpin 60s linear infinite;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }

/* hero positioning of decorative items */
.lab-el-1 { top: 18%; right: 8%; }
.lab-el-2 { top: 32%; right: 4%; transform: rotate(8deg); }
.lab-el-3 { top: 60%; right: 12%; }
.lab-el-4 { top: 25%; left: 6%; transform: rotate(-6deg); }
.lab-el-5 { top: 55%; left: 4%; }
.lab-el-circle { top: 12%; right: 14%; }

@media (max-width: 800px) {
  .hero { padding: 120px 20px 60px; }
  .lab-el { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marqueeMove 40s linear infinite;
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  letter-spacing: -0.02em;
  align-items: center;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .star {
  color: var(--ink);
  opacity: 0.4;
  font-style: italic;
  display: inline-block;
}
@keyframes marqueeMove {
  to { transform: translateX(-50%); }
}

/* ============================================================
   MANIFESTO — sticky scroll-jack
   ============================================================ */
.manifesto {
  position: relative;
  background: var(--paper);
}
.manifesto__intro {
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.manifesto__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.manifesto__label .num {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 6px;
}
.manifesto__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.manifesto__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
@media (max-width: 800px) {
  .manifesto__intro { grid-template-columns: 1fr; padding: 100px 20px 60px; }
}

.manifesto__sticky {
  position: relative;
  height: 600vh;
}
.manifesto__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.manifesto__act {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 0 8vw;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.manifesto__act.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.manifesto__act-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 24px;
}
.manifesto__act-word {
  font-family: var(--display);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.manifesto__act-word .ital {
  font-style: italic;
  color: var(--vermillion);
  display: block;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.manifesto__act-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto__act-body p {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 0, "WONK" 0;
  max-width: 480px;
}
.manifesto__act-body .stat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  display: flex;
  gap: 32px;
  margin-top: 12px;
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  max-width: 480px;
}
.manifesto__act-body .stat div strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 48, "SOFT" 0, "WONK" 0;
}

.manifesto__progress {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.manifesto__progress span {
  width: 32px;
  height: 2px;
  background: var(--ink);
  opacity: 0.2;
  transition: opacity .4s var(--ease), background .4s var(--ease);
}
.manifesto__progress span.is-active {
  opacity: 1;
  background: var(--vermillion);
}

@media (max-width: 800px) {
  .manifesto__act { grid-template-columns: 1fr; padding: 100px 20px 40px; align-content: start; gap: 24px; overflow-y: auto; }
  .manifesto__sticky { height: 320vh; }
}

/* ============================================================
   TRADES — three card slabs
   ============================================================ */
.trades {
  background: var(--paper);
  padding: 160px 40px 120px;
  position: relative;
}
.trades__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.trades__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.trades__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.trades__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trade {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 40px 32px 32px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 4px;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  transform-style: preserve-3d;
}
.trade:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.trade__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.trade__title {
  font-family: var(--display);
  font-size: clamp(36px, 3.2vw, 56px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
  margin-bottom: 16px;
}
.trade__title em {
  font-style: italic;
  display: block;
  color: var(--vermillion);
}
.trade__desc {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  max-width: 320px;
  margin-bottom: 32px;
}
.trade__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px 0;
}
.trade__visual svg {
  width: 70%;
  height: auto;
  transition: transform .8s var(--ease-out);
}
.trade:hover .trade__visual svg {
  transform: rotate(8deg) scale(1.08);
}
.trade__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}
.trade__cta .arrow {
  display: inline-block;
  transition: transform .3s var(--ease);
}
.trade:hover .trade__cta .arrow { transform: translateX(6px); }

@media (max-width: 1000px) {
  .trades__grid { grid-template-columns: 1fr; }
  .trades { padding: 100px 20px 80px; }
  .trades__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .trade { min-height: 460px; }
}

/* ============================================================
   FEATURED OBJECT — scroll-rotated
   ============================================================ */
.feature {
  background: var(--ink);
  color: var(--paper);
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.feature__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.feature__content { z-index: 2; }
.feature__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 32px;
}
.feature__title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 32px;
}
.feature__title em {
  font-style: italic;
  color: var(--vermillion);
  display: block;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.feature__body {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 460px;
  margin-bottom: 32px;
}
.feature__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 460px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.feature__specs > div { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 12px; }
.feature__specs > div span { opacity: 0.6; display: block; margin-bottom: 4px; }
.feature__specs > div strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  font-variation-settings: "opsz" 32, "SOFT" 0, "WONK" 0;
}

.feature__visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__watch {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.feature__watch svg { width: 100%; height: 100%; }

.feature__bg-text {
  position: absolute;
  bottom: -8vw;
  left: -2vw;
  font-family: var(--display);
  font-size: 28vw;
  font-weight: 300;
  line-height: 0.8;
  color: var(--paper);
  opacity: 0.04;
  white-space: nowrap;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 1;
  pointer-events: none;
  letter-spacing: -0.05em;
}

@media (max-width: 1000px) {
  .feature__inner { grid-template-columns: 1fr; }
  .feature { padding: 100px 20px; }
  .feature__visual { height: 400px; }
}

/* ============================================================
   PARALLAX GALLERY — horizontal scroll-jacked
   ============================================================ */
.gallery {
  position: relative;
  height: 700vh;
  background: var(--paper);
}
.gallery__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.gallery__head {
  position: absolute;
  top: 60px;
  left: 40px;
  right: 40px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  pointer-events: none;
}
.gallery__head .num { color: var(--ink); display: block; margin-bottom: 6px; }
.gallery__track {
  display: flex;
  gap: 40px;
  padding: 0 10vw;
  will-change: transform;
}
.gallery__card {
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.gallery__card .img-slot {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: transform 1.2s var(--ease-out), opacity .8s var(--ease);
}
.gallery__card:hover .img-slot { transform: scale(1.06); opacity: 0.65; }
.gallery__card .img-slot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11,11,11,0.85) 100%);
}
.gallery__card-meta {
  position: relative;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  color: var(--vermillion);
}
.gallery__card-title {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
}
.gallery__card-title em {
  font-style: italic;
  color: var(--vermillion);
  display: block;
}

.gallery__progress {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 1px;
  background: rgba(11,11,11,0.15);
  z-index: 5;
}
.gallery__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vermillion);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
}

@media (max-width: 800px) {
  .gallery { height: 300vh; }
  .gallery__card { width: 280px; height: 420px; padding: 20px; }
  .gallery__card-title { font-size: 28px; }
}

/* ============================================================
   LIFT-OFF SECTION — items rise as you scroll
   ============================================================ */
.liftoff {
  background: var(--paper);
  padding: 320px 40px 360px;
  position: relative;
  overflow: hidden;
}
.liftoff__head {
  max-width: 1400px;
  margin: 0 auto 100px;
  text-align: center;
}
.liftoff__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.liftoff__title {
  font-family: var(--display);
  font-size: clamp(50px, 8vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.liftoff__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.liftoff__stage {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: 700px;
}
.liftoff__item {
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform;
}
.liftoff__item .label { color: var(--vermillion); }
.liftoff__item .big {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 0.9;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
}
.liftoff__item .big em {
  font-style: italic;
  color: var(--vermillion);
}
.liftoff__item-1 {
  top: 5%; left: 5%;
  width: 280px; height: 200px;
}
.liftoff__item-2 {
  top: 12%; right: 8%;
  width: 320px; height: 240px;
}
.liftoff__item-3 {
  top: 45%; left: 22%;
  width: 240px; height: 180px;
  background: var(--vermillion);
  color: var(--ink);
}
.liftoff__item-3 .label { color: var(--ink); }
.liftoff__item-3 .big em { color: var(--paper); }
.liftoff__item-4 {
  top: 50%; right: 4%;
  width: 260px; height: 220px;
}
.liftoff__item-5 {
  top: 65%; left: 42%;
  width: 280px; height: 160px;
  background: var(--paper-deep);
  color: var(--ink);
}
.liftoff__item-5 .label { color: var(--vermillion); }

@media (max-width: 1000px) {
  .liftoff { padding: 120px 20px 140px; }
  .liftoff__stage { height: auto; display: flex; flex-direction: column; gap: 20px; }
  .liftoff__item { position: relative; top: auto !important; left: auto !important; right: auto !important; width: 100% !important; height: 160px; }
}

/* ============================================================
   PINNED PARALLAX SCENE — image fills viewport, text overlays
   ============================================================ */
.pinned {
  position: relative;
  height: 400vh;
  background: var(--ink);
}
.pinned__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pinned__bg {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 30% 40%, #2a1a14 0%, #0B0B0B 60%);
  will-change: transform;
}
.pinned__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,59,29,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,59,29,0.1) 0%, transparent 40%);
}
.pinned__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.pinned__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--paper);
  padding: 0 40px;
  max-width: 1200px;
}
.pinned__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 32px;
  will-change: transform;
}
.pinned__title {
  font-family: var(--display);
  font-size: clamp(60px, 12vw, 220px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  will-change: transform;
}
.pinned__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.pinned__sub {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  font-style: italic;
  margin-top: 32px;
  opacity: 0.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
}

/* ============================================================
   SEXY MOMENT — the cheeky reveal
   ============================================================ */
.sexy {
  background: var(--paper);
  padding: 200px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sexy__rotor {
  position: absolute;
  font-family: var(--display);
  font-size: 22vw;
  font-weight: 300;
  color: var(--paper-deep);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  will-change: transform;
}
.sexy__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.sexy__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 32px;
}
.sexy__line {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.sexy__line em {
  font-style: italic;
  color: var(--red);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  position: relative;
  display: inline-block;
}
.sexy__line em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 8%;
  height: 14%;
  background: var(--red);
  opacity: 0.18;
  z-index: -1;
}
.sexy__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-top: 40px;
}


/* ============================================================
   INSIGHT BANNER
   ============================================================ */
.insights {
  background: var(--paper);
  padding: 180px 40px 200px;
  position: relative;
  overflow: hidden;
}
.insights__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.insights__head {
  margin-bottom: 100px;
}
.insights__lines {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.insight {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.insight.is-in {
  opacity: 1;
  transform: translateY(0);
}
.insight:nth-child(even) {
  padding-left: 12vw;
}
.insight__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink);
  padding-top: 12px;
  border-top: 2px solid var(--vermillion);
}
.insight p {
  font-family: var(--display);
  font-size: clamp(28px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.insight p em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
@media (max-width: 800px) {
  .insights { padding: 100px 20px 120px; }
  .insights__lines { gap: 60px; }
  .insight { grid-template-columns: 1fr; gap: 16px; }
  .insight:nth-child(even) { padding-left: 0; }
}

/* ============================================================
   TRADE CARD LISTS (deliverables)
   ============================================================ */
.trade__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.trade__list li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.75);
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.trade__list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.trade__list li::before {
  content: "→";
  color: var(--vermillion);
  font-size: 12px;
  transition: transform .3s var(--ease);
}
.trade:hover .trade__list li { color: var(--paper); }
.trade:hover .trade__list li::before { transform: translateX(3px); }

/* ============================================================
   NOW TICKER — live status strip
   ============================================================ */
.now {
  background: var(--paper-deep);
  border-top: 1px solid rgba(11,11,11,0.08);
  border-bottom: 1px solid rgba(11,11,11,0.08);
  padding: 28px 40px;
}
.now__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.now__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.now__label .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 1.6s var(--ease) infinite;
}
.now__items {
  overflow: hidden;
  position: relative;
  height: 28px;
}
.now__items-track {
  display: flex;
  flex-direction: column;
  animation: nowRotate 12s ease-in-out infinite;
}
.now__items-track span {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  height: 28px;
  line-height: 28px;
  font-variation-settings: "opsz" 24, "SOFT" 20, "WONK" 0;
}
.now__items-track span em {
  font-style: italic;
  color: var(--vermillion);
}
@keyframes nowRotate {
  0%, 22% { transform: translateY(0); }
  25%, 47% { transform: translateY(-28px); }
  50%, 72% { transform: translateY(-56px); }
  75%, 97% { transform: translateY(-84px); }
  100% { transform: translateY(0); }
}
.now__availability {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.now__availability strong {
  color: var(--ink);
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  font-variation-settings: "opsz" 24, "SOFT" 0, "WONK" 0;
}
@media (max-width: 800px) {
  .now__inner { grid-template-columns: 1fr; gap: 16px; }
  .now { padding: 24px 20px; }
}

/* ============================================================
   CLIENT LOGO WALL
   ============================================================ */
.clients {
  background: var(--paper);
  padding: 140px 0 100px;
  overflow: hidden;
  position: relative;
}
.clients__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 40px;
  text-align: center;
}
.clients__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
}
.clients__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.clients__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.clients__track-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(11,11,11,0.1);
  border-bottom: 1px solid rgba(11,11,11,0.1);
  padding: 40px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.clients__track {
  display: flex;
  gap: 80px;
  animation: clientsMove 50s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.clients__track span {
  display: inline-flex;
  gap: 80px;
  align-items: center;
}
.client-logo {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  opacity: 0.5;
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 48, "SOFT" 60, "WONK" 1;
  transition: opacity .3s var(--ease);
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-logo:hover { opacity: 1; }
.client-logo--placeholder {
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px dashed rgba(11,11,11,0.3);
  border-radius: 2px;
  opacity: 0.4;
}
.client-logo .star { color: var(--vermillion); font-size: 0.5em; }
@keyframes clientsMove {
  to { transform: translateX(-50%); }
}

/* ============================================================
   CASE STUDY — the Servpro story
   ============================================================ */
.case {
  background: var(--ink);
  color: var(--paper);
  padding: 160px 40px 180px;
  position: relative;
  overflow: hidden;
}
.case__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.case__bg-number {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 52vw;
  font-weight: 300;
  line-height: 0.75;
  color: var(--vermillion);
  opacity: 0.08;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  letter-spacing: -0.05em;
}
.case__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.case__label::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--vermillion);
}
.case__client {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-bottom: 16px;
}
.case__title {
  font-family: var(--display);
  font-size: clamp(48px, 7.5vw, 140px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 60px;
  max-width: 1000px;
}
.case__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
}
.case__block h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 500;
}
.case__block p {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.9;
  font-variation-settings: "opsz" 24, "SOFT" 0, "WONK" 0;
}
.case__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(240,235,224,0.2);
  padding-top: 60px;
}
.case__number {
  position: relative;
}
.case__number .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.case__number .big {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 140px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.case__number .big em {
  font-style: italic;
  color: var(--blue);
  font-size: 0.5em;
  display: inline-block;
  vertical-align: top;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
}
.case__number .caption {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-top: 16px;
  max-width: 200px;
}
@media (max-width: 900px) {
  .case { padding: 100px 20px 120px; }
  .case__grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .case__numbers { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
}

/* ============================================================
   PROCESS — how we work together
   ============================================================ */
.process {
  background: var(--paper);
  padding: 160px 40px 140px;
  position: relative;
  overflow: hidden;
}
.process__head {
  max-width: 1400px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.process__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.process__label .num {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 6px;
}
.process__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.process__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.process__flow {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.process__line {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(11,11,11,0.15);
  z-index: 0;
}
.process__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.8s var(--ease-out);
}
.process__flow.is-in .process__line::after { transform: scaleX(1); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.process__step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.process__flow.is-in .process__step { opacity: 1; transform: translateY(0); }
.process__flow.is-in .process__step:nth-child(1) { transition-delay: 0.2s; }
.process__flow.is-in .process__step:nth-child(2) { transition-delay: 0.5s; }
.process__flow.is-in .process__step:nth-child(3) { transition-delay: 0.8s; }
.process__flow.is-in .process__step:nth-child(4) { transition-delay: 1.1s; }
.process__flow.is-in .process__step:nth-child(5) { transition-delay: 1.4s; }

.process__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  margin: 48px auto 0;
  position: relative;
  z-index: 2;
  transition: all .4s var(--ease);
}
.process__flow.is-in .process__dot {
  background: var(--vermillion);
  border-color: var(--vermillion);
}
.process__step:hover .process__dot {
  transform: scale(1.4);
}
.process__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-top: 32px;
}
.process__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 400;
  text-align: center;
  margin-top: 8px;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1;
}
.process__name em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1;
}
.process__desc {
  font-family: var(--body);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: var(--whisper);
  margin-top: 16px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 900px) {
  .process { padding: 100px 20px 80px; }
  .process__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .process__steps { grid-template-columns: 1fr; gap: 48px; }
  .process__line { display: none; }
  .process__dot { margin: 0 auto 0; }
  .process__num { margin-top: 16px; }
}

/* ============================================================
   PRICING — three tiers
   ============================================================ */
.pricing {
  background: var(--paper-deep);
  padding: 160px 40px 140px;
  position: relative;
}
.pricing__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.pricing__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.pricing__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.pricing__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--paper);
  border: 1px solid rgba(11,11,11,0.1);
  padding: 40px 36px 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
}
.tier:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
  border-color: var(--ink);
}
.tier--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.tier--featured .tier__tag { color: var(--ink); }
.tier--featured .tier__list li { color: rgba(240,235,224,0.75); border-color: rgba(255,255,255,0.1); }
.tier__flag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--vermillion);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 0 2px 2px;
}
.tier__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.tier__name {
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 72, "SOFT" 30, "WONK" 1;
}
.tier__name em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
}
.tier__price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 1px solid currentColor;
  margin-bottom: 24px;
  opacity: 0.75;
}
.tier__price strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  opacity: 1;
  margin-top: 4px;
  font-variation-settings: "opsz" 48, "SOFT" 0, "WONK" 0;
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.tier__list li {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,11,11,0.08);
  display: flex;
  gap: 12px;
}
.tier__list li::before {
  content: "✦";
  color: var(--vermillion);
  flex-shrink: 0;
}
.tier__cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  transition: all .3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tier__cta:hover {
  background: var(--vermillion);
  border-color: var(--vermillion);
  color: var(--paper);
}
.tier--featured .tier__cta:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.tier__cta .arrow { transition: transform .3s var(--ease); }
.tier__cta:hover .arrow { transform: translateX(4px); }
.pricing__note {
  max-width: 1400px;
  margin: 60px auto 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
@media (max-width: 900px) {
  .pricing { padding: 100px 20px 80px; }
  .pricing__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--paper);
  padding: 160px 40px 140px;
}
.faq__head {
  max-width: 1400px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.faq__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.faq__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.faq__list {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.faq__item {
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 36px 60px 36px 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0;
  transition: padding-left .4s var(--ease);
  display: block;
}
.faq__q:hover { padding-left: 16px; }
.faq__q .plus {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: transform .4s var(--ease);
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  background: var(--vermillion);
}
.faq__q .plus::before {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  margin-top: -1px;
}
.faq__q .plus::after {
  top: 0; left: 50%;
  width: 2px; height: 100%;
  margin-left: -1px;
  transition: transform .4s var(--ease);
}
.faq__item.is-open .faq__q .plus::after { transform: scaleY(0); }
.faq__item.is-open .faq__q .plus { transform: translateY(-50%) rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s var(--ease), padding .6s var(--ease);
  padding: 0 80px 0 0;
}
.faq__item.is-open .faq__a {
  max-height: 500px;
  padding-bottom: 36px;
}
.faq__a p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 700px;
}

/* ============================================================
   HOBBIES — off the clock
   ============================================================ */
.hobbies {
  background: var(--paper-deep);
  padding: 140px 40px 120px;
  position: relative;
  overflow: hidden;
}
.hobbies__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.hobbies__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.hobbies__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.hobbies__title em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hobbies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hobby {
  position: relative;
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid rgba(11,11,11,0.08);
  border-radius: 4px;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
}
.hobby:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: var(--ink);
}
.hobby__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.hobby__name {
  font-family: var(--display);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1;
}
.hobby__name em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 48, "SOFT" 100, "WONK" 1;
}
.hobby__desc {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.75;
}
@media (max-width: 900px) {
  .hobbies { padding: 100px 20px 80px; }
  .hobbies__head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .hobbies__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STAGING NOTE — playful tongue-in-cheek strip
   ============================================================ */
.staging {
  padding: 100px 40px;
  background: var(--paper-deep);
  text-align: center;
}
.staging__inner {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 1;
}
.staging__inner em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
}
.staging__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-top: 32px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--paper);
  padding: 160px 40px 120px;
  position: relative;
  overflow: hidden;
}
.contact__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.contact__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact__label .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vermillion);
  animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}
.contact__big {
  font-family: var(--display);
  font-size: clamp(60px, 11vw, 200px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.045em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  margin-bottom: 60px;
}
.contact__big em {
  font-style: italic;
  color: var(--vermillion);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.contact__big a {
  border-bottom: 4px solid var(--ink);
  padding-bottom: 8px;
  transition: border-color .3s var(--ease);
}
.contact__big a:hover { border-color: var(--vermillion); }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.contact__grid > div span { color: var(--whisper); display: block; margin-bottom: 8px; }
.contact__grid > div strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  font-variation-settings: "opsz" 32, "SOFT" 0, "WONK" 0;
}

@media (max-width: 800px) {
  .contact { padding: 100px 20px 80px; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 40px 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 14px; }
.footer__brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* ============================================================
   REVEAL ANIMATION (fade-up on scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact__form {
  max-width: 900px;
  margin: 80px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whisper);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11,11,11,0.25);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: border-color .3s var(--ease);
  width: 100%;
  cursor: none;
  font-variation-settings: "opsz" 24, "SOFT" 0, "WONK" 0;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-bottom-color: var(--vermillion);
}
.contact__form textarea {
  resize: vertical;
  min-height: 120px;
  font-size: 18px;
}
.contact__form-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
.contact__submit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 20px 40px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .3s var(--ease);
  cursor: none;
}
.contact__submit:hover {
  background: var(--vermillion);
  transform: translateY(-2px);
}
.contact__submit .arrow { transition: transform .3s var(--ease); }
.contact__submit:hover .arrow { transform: translateX(6px); }
.contact__submit.is-sending { opacity: 0.6; pointer-events: none; }
.contact__status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--whisper);
}
.contact__status.is-success { color: var(--blue); }
.contact__status.is-error { color: var(--red); }
@media (max-width: 700px) {
  .contact__form-row { grid-template-columns: 1fr; }
}
