:root {
  --white: #f9f9f9;
  --paper: #f9f9f9;
  --paper-2: #111111;
  --black: #000000;
  --ink: #000000;
  --ink-2: #a7a7a7;
  --muted: #646464;
  --line: rgba(249, 249, 249, 0.14);
  --line-strong: rgba(249, 249, 249, 0.34);
  --accent: #e85002;
  --accent-2: #f16001;
  --accent-deep: #c10801;
  --cream: #d9c3ab;
  --grey-1: #333333;
  --grey-2: #646464;
  --grey-3: #a7a7a7;
  --grey-4: #1a1a1a;
  --green: #e85002;
  --pink: #d9c3ab;
  --lavender: #333333;
  --mint: #333333;
  --orange-grad: linear-gradient(135deg, #000000 0%, #c10801 38%, #f16001 70%, #d9c3ab 100%);
  --orange-grad-soft: linear-gradient(145deg, #000000 0%, #c10801 45%, #f16001 78%, #d9c3ab 100%);
  --dot-orange-on-dark: radial-gradient(circle at center, #e85002 0 30%, transparent 32%) 0 0/14px 14px, #000000;
  --dot-orange-on-light: radial-gradient(circle at center, #e85002 0 28%, transparent 30%) 0 0/14px 14px, #333333;
  --max: 1480px;
  --pad-x: clamp(20px, 5.2vw, 96px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 8%, rgba(232, 80, 2, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 30%, rgba(193, 8, 1, 0.16), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
::selection { background: var(--accent); color: var(--white); }

/* ---------- polka dot motif (signature pattern) ---------- */
.dot-panel {
  position: relative;
  background: var(--ink);
  background-image:
    radial-gradient(circle at center, var(--accent) 38%, transparent 40%);
  background-size: 16px 16px;
  background-position: 0 0;
}
.dot-panel--gradient {
  background:
    radial-gradient(circle at center, #e85002 38%, transparent 40%) 0 0/16px 16px,
    linear-gradient(160deg, #f16001 0%, #c10801 60%, #000000 100%);
}
.dot-panel--mask {
  /* fade dots from solid (top) to nothing (bottom) — like the reference's helmet sphere */
  -webkit-mask-image: linear-gradient(160deg, #000 30%, transparent 90%);
          mask-image: linear-gradient(160deg, #000 30%, transparent 90%);
}

/* ---------- progress + ticker ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 90;
  width: 100%;
  height: 3px; background: var(--accent); transform: scaleX(var(--scroll-progress, 0)); transform-origin: left;
  will-change: transform;
}
.ticker {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  height: 32px; background: var(--ink); color: var(--paper);
  overflow: hidden; display: flex; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.12);
}
.ticker-track {
  display: flex; gap: 36px; white-space: nowrap;
  animation: ticker 38s linear infinite; padding-left: 36px;
}
.ticker-track span:first-child, .ticker-track span:nth-child(6) { color: var(--accent-2); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; min-height: 76px; padding: 18px var(--pad-x);
  color: var(--header-color, #151a18);
  transition: color 320ms var(--ease), background 320ms var(--ease);
}
.site-header.is-scrolled {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--line);
}
.site-header.on-dark {
  --header-color: var(--paper);
  background: rgba(0, 0, 0, .5);
  border-bottom-color: rgba(255,255,255,.08);
}
.logo-link { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.logo-image {
  display: block;
  width: 42px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
}
.logo-mark {
  display: grid; width: 28px; height: 28px; place-items: center;
  color: var(--ink); background: var(--paper); border-radius: 50%;
}
.logo-mark svg { color: var(--ink); }
.site-header.on-dark .logo-mark svg { color: var(--ink); }
.logo-word { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; text-transform: none; }
.logo-word em { color: var(--accent); }
.site-header.on-dark .logo-word em { color: var(--accent-2); }

.desktop-nav { display: flex; gap: clamp(14px, 2.6vw, 36px); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.roll-link { position: relative; display: block; height: 18px; overflow: hidden; }
.roll-link span { display: block; transition: transform 500ms var(--ease); }
.roll-link span:last-child { transform: translateY(10px); }
.roll-link:hover span:first-child { transform: translateY(-110%); }
.roll-link:hover span:last-child { transform: translateY(-100%); color: var(--accent); }
.site-header.on-dark .roll-link:hover span:last-child { color: var(--accent-2); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.talk-button {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 38px; padding: 8px 16px;
  border: 1px solid currentColor; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease);
}
.talk-button:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.site-header.on-dark .talk-button:hover { background: var(--accent); color: var(--white); }
.talk-button em { color: var(--accent); font-size: 13px; }
.site-header.on-dark .talk-button em { color: var(--accent-2); }
.talk-button:hover em { color: inherit; }
.status-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: breathe 2s ease-in-out infinite; }
.site-header.on-dark .status-dot { background: var(--accent-2); }

.menu-button { display: none; gap: 10px; align-items: center; color: inherit; background: transparent; border: 0; }
.menu-text { display: grid; height: 18px; overflow: hidden; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.menu-text span { transition: transform 380ms var(--ease); }
.menu-button[aria-expanded="true"] .menu-text span { transform: translateY(-18px); }
.burger-lines { position: relative; width: 24px; height: 18px; }
.burger-lines span { position: absolute; left: 0; width: 24px; height: 1.5px; background: currentColor; transition: transform 380ms var(--ease), top 380ms var(--ease); }
.burger-lines span:first-child { top: 6px; }
.burger-lines span:last-child { top: 12px; }
.menu-button[aria-expanded="true"] .burger-lines span:first-child { top: 9px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .burger-lines span:last-child { top: 9px; transform: rotate(-45deg); }

/* ---------- menu panel ---------- */
.menu-panel {
  position: fixed; inset: 0; z-index: 70;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 40px; padding: 96px var(--pad-x) 64px;
  background: var(--ink); color: var(--paper);
  opacity: 0; visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 760ms var(--ease), opacity 420ms var(--ease), visibility 760ms var(--ease);
}
.menu-panel.is-open { opacity: 1; visibility: visible; clip-path: inset(0 0 0 0); }
.menu-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.5); border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 16px; }
.menu-links { display: flex; flex-direction: column; gap: 4px; font-family: var(--serif); font-size: clamp(48px, 9vw, 140px); line-height: 0.95; letter-spacing: -0.02em; }
.menu-links a { display: flex; align-items: baseline; gap: 28px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); transition: padding 400ms var(--ease), color 300ms; }
.menu-links a:hover { padding-left: 28px; color: var(--accent-2); }
.menu-links .num { font-family: var(--mono); font-size: 12px; font-style: normal; color: rgba(255,255,255,.4); letter-spacing: 0.06em; }
.menu-links .dash { color: rgba(255,255,255,.3); }
.menu-footer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.menu-footer .lab { margin: 0 0 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.menu-footer a, .menu-footer span { font-family: var(--sans); font-size: 16px; color: var(--paper); }
.social-row { display: flex; flex-direction: column; gap: 4px; }
.social-row a:hover { color: var(--accent-2); }

/* ---------- shared ---------- */
.section { position: relative; width: 100%; padding: clamp(96px, 12vw, 180px) var(--pad-x); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 28px; color: var(--ink-2); font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.eyebrow .dot-light { background: var(--accent-2); }
.eyebrow .dot-accent { background: var(--accent); }
.dark-section .eyebrow { color: rgba(255,255,255,.5); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 720ms var(--ease), transform 900ms var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  color: #151a18;
  background: #dfe8df;
  overflow: hidden;
  --reel-progress: 0;
  --reel-scale-x: 0.62;
  --reel-scale-y: 0.46;
  --reel-radius: 32px;
  --reel-y: 42px;
  --reel-shadow-alpha: 0.22;
}
.hero-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(520px, 1.12fr);
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(36px, 6vw, 112px);
  row-gap: 32px;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(112px, 12vw, 170px) var(--pad-x) clamp(42px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(223, 232, 223, .96) 0%, rgba(223, 232, 223, .72) 34%, rgba(223, 232, 223, .12) 58%, rgba(223, 232, 223, 0) 100%),
    linear-gradient(180deg, rgba(223, 232, 223, .28) 0%, rgba(223, 232, 223, 0) 30%, rgba(202, 214, 204, .34) 100%),
    url("assets/revisionai-hero-cracked-banner.png") center center / cover no-repeat,
    #dfe8df;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(15, 20, 18, .055) 1px, transparent 1px) 0 0/76px 76px,
    linear-gradient(90deg, rgba(15, 20, 18, .055) 1px, transparent 1px) 0 0/76px 76px,
    radial-gradient(circle at 66% 42%, rgba(232, 80, 2, .14), transparent 26rem);
  opacity: .78;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(223, 232, 223, 0) 72%, rgba(213, 224, 215, .96) 100%);
}
.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-ghost-word {
  position: absolute;
  left: clamp(28px, 26vw, 520px);
  bottom: clamp(54px, 10vh, 112px);
  color: rgba(20, 28, 24, .1);
  font-size: clamp(92px, 15vw, 245px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: 0;
  white-space: nowrap;
}
.hero-rule {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(20, 28, 24, .22);
  transform-origin: left center;
}
.hero-rule-left {
  left: var(--pad-x);
  top: 30.5%;
  width: min(34vw, 620px);
  opacity: .72;
}
.hero-rule-title {
  right: var(--pad-x);
  top: 36.4%;
  width: clamp(80px, 15vw, 280px);
  opacity: .78;
}
.hero-orb {
  position: absolute;
  display: block;
  width: clamp(18px, 1.6vw, 28px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(249,249,249,.8), rgba(249,249,249,.22) 22%, transparent 24%),
    radial-gradient(circle at center, #151a18 0 42%, rgba(232,80,2,.82) 45%, #151a18 66%, rgba(20,28,24,.3) 68%);
  box-shadow: 0 0 34px rgba(232, 80, 2, .2);
}
.hero-orb-one { left: clamp(24px, 3vw, 58px); top: clamp(92px, 15vh, 160px); }
.hero-orb-two { right: clamp(32px, 6vw, 116px); top: clamp(150px, 26vh, 252px); width: clamp(14px, 1.2vw, 22px); opacity: .9; }
.hero-micro-rail {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(52px, 6vh, 72px);
  display: flex;
  gap: 4px;
  padding: 5px;
  color: rgba(20,28,24,.72);
  background: rgba(20,28,24,.06);
  border: 1px solid rgba(20,28,24,.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .02em;
}
.hero-micro-rail span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 18px;
  border-radius: 999px;
  background: rgba(223,232,223,.72);
}
.hero-balance-mark {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(56px, 7vh, 82px);
  width: clamp(72px, 8vw, 142px);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20,28,24,.22), var(--accent));
  opacity: .86;
}
.hero-meta {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: start;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(20, 28, 24, .18);
  color: rgba(20, 28, 24, .68);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.hero-content {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  align-self: center;
  justify-self: start;
  display: grid;
  gap: 32px;
  width: min(760px, 48vw);
}
.hero .reveal { opacity: 1; transform: none; }
.hero .eyebrow {
  color: rgba(20, 28, 24, .66);
  font-size: 12px;
}
.hero-copy {
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  left: min(100%, 810px);
  top: 50%;
  width: clamp(82px, 10vw, 190px);
  height: 1px;
  background: rgba(20,28,24,.3);
}
.hero h1 { margin: 0; font-weight: 800; line-height: .92; letter-spacing: 0; max-width: none; font-size: clamp(52px, 5vw, 82px); white-space: nowrap; color: #111816; }
.hero h1 em { color: var(--accent); }
.hero-brief {
  max-width: 680px;
}
.hero-brief p {
  max-width: 650px;
  margin: 0;
  color: rgba(20, 28, 24, .72);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.5;
}
.hero-control-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(20, 28, 24, .18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.hero-action:hover { transform: translateY(-2px); }
.hero-action:active { transform: translateY(0) scale(.98); }
.hero-action-primary { background: #111816; border-color: #111816; color: var(--paper); }
.hero-action-secondary { color: rgba(20, 28, 24, .72); background: rgba(20, 28, 24, .035); }
.hero-action-secondary:hover { border-color: rgba(20, 28, 24, .36); background: rgba(20, 28, 24, .08); }
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}
.hero-chips span {
  padding: 7px 12px;
  color: rgba(20, 28, 24, .66);
  background: rgba(223, 232, 223, .48);
  border: 1px solid rgba(20, 28, 24, .14);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-bottom-bar {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 28, 24, .18);
  color: rgba(20, 28, 24, .56);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.hero-reel {
  position: relative; grid-column: 1 / -1;
  height: 110vh;
  height: 110dvh;
  margin-top: 0;
  margin-inline: 0;
  overflow: hidden; background: var(--ink);
}
.reel-stage { position: sticky; top: 0; display: grid; height: 100vh; height: 100dvh; place-items: center; overflow: hidden; }
.reel-frame {
  position: relative; width: 100vw; height: 100dvh; max-width: 100vw; max-height: 100dvh;
  overflow: hidden; background: var(--ink); border-radius: var(--reel-radius);
  box-shadow: 0 var(--reel-y) 110px rgba(0, 0, 0, var(--reel-shadow-alpha));
  transform: translate3d(0, var(--reel-y), 0) scale(var(--reel-scale-x), var(--reel-scale-y));
  will-change: transform;
}
#agent-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.reel-video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; background: var(--ink); }
.reel-grid { position: absolute; inset: 0; z-index: 2; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.reel-frame::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.5) 100%); pointer-events: none; }
.reel-corner { position: absolute; z-index: 4; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.6); display: flex; flex-direction: column; gap: 4px; }
.reel-corner.tl { top: 24px; left: 32px; }
.reel-corner.tr { top: 24px; right: 32px; text-align: right; }
.reel-corner.bl { bottom: 24px; left: 32px; }
.reel-corner.bl span:last-child { color: var(--accent-2); }
.reel-corner.br { bottom: 24px; right: 32px; text-align: right; }

/* ---------- ABOUT (horizontal) ---------- */
.about { height: var(--about-height, 100dvh); overflow: visible; padding: 0; scrollbar-width: none; position: relative; }
.about::-webkit-scrollbar { display: none; }
.horizontal-band { display: flex; align-items: stretch; gap: 0; width: max-content; height: 100dvh; min-height: 100dvh; position: sticky; top: 0; transform: translate3d(calc(var(--about-x, 0px) * -1), 0, 0); will-change: transform; }
.about-title { flex: 0 0 56vw; padding: 120px clamp(40px, 6vw, 96px) 48px clamp(40px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; gap: 12px; border-right: 1px solid var(--line); position: relative; }
.about-title > span { display: block; font-family: var(--sans); font-size: clamp(56px, 7vw, 132px); font-weight: 500; line-height: 1; letter-spacing: -0.025em; }
.about-title > span:nth-child(3) em { color: var(--accent); font-size: 0.9em; }
.about-title .about-sub { max-width: 380px; margin-top: 24px; color: var(--ink-2); font-size: 16px; }
.about-scroll-hint { position: absolute; bottom: 60px; left: clamp(40px, 6vw, 96px); display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); }
.about-scroll-hint .arrow { display: inline-block; width: 32px; height: 1px; background: currentColor; position: relative; }
.about-scroll-hint .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(-45deg); }

.about-cards { display: flex; gap: 24px; padding: 78px 96px 78px 0; }
.clay-card {
  display: flex; flex-direction: column; flex: 0 0 min(48vw, 880px); width: min(48vw, 880px);
  height: calc(100dvh - 156px); padding: clamp(28px, 3vw, 44px);
  background: var(--grey-1); border: 1px solid var(--line); border-radius: 32px;
  transform-style: preserve-3d; transition: transform 260ms var(--ease);
  position: relative; overflow: hidden;
}
.clay-card[data-tone="paper"] { background: #1a1a1a; }
.clay-card[data-tone="mint"] { background: #242424; }
.clay-card[data-tone="lavender"] { background: #303030; }
.clay-card[data-tone="ink"] { background: #050505; border-color: rgba(255,255,255,.12); color: var(--paper); }
.clay-card[data-tone="ink"] em { color: var(--accent-2); }
.card-head { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.clay-card[data-tone="ink"] .card-head { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.15); }
.card-visual { position: relative; flex: 0 0 clamp(300px, 52%, 520px); min-height: 0; margin: 20px 0 18px; }
.card-visual-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
}
.vis { position: absolute; inset: 0; }
.vis-docs .doc { position: absolute; width: 60%; height: 92px; background: #333333; border-radius: 12px; box-shadow: 0 24px 60px rgba(0,0,0,.32); border: 1px solid var(--line); }
.vis-docs .d1 { left: 8%; top: 8%; transform: rotate(-6deg); }
.vis-docs .d2 { left: 22%; top: 30%; background: var(--accent); }
.vis-docs .d3 { left: 34%; top: 56%; transform: rotate(7deg); }
.vis-docs .doc-line { position: absolute; left: 8%; top: 14%; width: 60%; height: 4px; background: rgba(249,249,249,.18); border-radius: 2px; }
.vis-docs .doc-line.l2 { top: 22%; width: 36%; }
.vis-map { display: grid; place-items: center; }
.vis-map svg { max-width: 80%; max-height: 90%; }
.vis-orbit { display: grid; place-items: center; }
.vis-orbit .ring { width: 80%; aspect-ratio: 1; border: 1px solid rgba(249,249,249,.26); border-radius: 50%; position: absolute; animation: spin 16s linear infinite; }
.vis-orbit .ring.r2 { width: 50%; border-style: dashed; animation-duration: 9s; animation-direction: reverse; }
.vis-orbit .planet { width: 28%; aspect-ratio: 1; background: var(--accent); border-radius: 50%; position: absolute; }
.vis-orbit .moon { width: 12%; aspect-ratio: 1; background: var(--accent); border-radius: 50%; position: absolute; top: 20%; right: 18%; }
.vis-orbit .dot-tag { position: absolute; bottom: 12%; right: 8%; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--paper); padding: 4px 8px; background: var(--grey-2); border-radius: 999px; }
@keyframes spin { to { transform: rotate(1turn); } }

.card-body h2 { margin: 0 0 10px; max-width: 580px; font-family: var(--sans); font-size: clamp(28px, 3vw, 48px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
.card-body h2 em { color: var(--accent); }
.clay-card[data-tone="ink"] .card-body h2 em { color: var(--accent-2); }
.card-body p { max-width: 460px; margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.card-body p + p { margin-top: 14px; }
.clay-card[data-tone="ink"] .card-body p { color: rgba(255,255,255,.65); }
.card-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s; }
.card-link:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.card-link span { font-size: 14px; }
.end-card { background: #050505; color: var(--paper); border: none; }
.end-card .card-link { border-color: rgba(255,255,255,.4); color: var(--paper); }
.end-card .card-link:hover { background: var(--paper); color: var(--ink); }

/* ---------- ABOUT SUMMARY ---------- */
.about-summary { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(88px, 11vw, 160px); background: #080808; }
.about-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .82fr);
  gap: clamp(44px, 8vw, 132px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}
.about-summary-lead h2 {
  margin: 0;
  max-width: 900px;
  color: var(--paper);
  font-size: clamp(42px, 6vw, 104px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -0.028em;
}
.about-summary-lead h2 em { color: var(--accent-2); font-family: var(--serif); font-style: italic; font-weight: 400; }
.about-summary-copy > p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
}
.about-summary-rows {
  display: grid;
  gap: 0;
  margin-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid rgba(255,255,255,.16);
}
.about-summary-rows div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.about-summary-rows span {
  color: var(--accent-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-summary-rows p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.5;
}

/* ---------- WE CREATE ---------- */
.create-transition {
  position: relative; z-index: 5; height: 820dvh; background: var(--ink);
  --create-progress: 0;
  --create-light-opacity: 1;
  --create-grid-opacity: 0;
  --create-title-opacity: 1; --create-title-y: 34px;
  --create-final-opacity: 0;
  --create-visual-opacity: 0; --create-visual-x: 0px; --create-visual-y: 0px;
  --create-visual-w: 420px; --create-visual-h: 568px;
  --create-visual-scale-x: 1; --create-visual-scale-y: 1;
  --create-visual-radius: 36px;
  --create-controls-opacity: 0;
  --create-dark-opacity: 0;
  --create-quote-opacity: 0; --create-quote-y: 48px;
  --create-company-opacity: 0; --create-company-y: 44px;
  --create-scene-scale: 1; --create-scene-shift: 0px;
}
.create-panel { position: sticky; top: 0; height: 100dvh; background: var(--ink); display: grid; place-items: center; overflow: hidden; }
.create-light, .create-dark { position: absolute; inset: 0; pointer-events: none; }
.create-light { z-index: 0; background: linear-gradient(rgba(249,249,249,0.05) 1px, transparent 1px) 0 0/88px 88px, linear-gradient(90deg, rgba(249,249,249,0.05) 1px, transparent 1px) 0 0/88px 88px, var(--ink); opacity: var(--create-light-opacity); }
.create-light::after { content: ""; position: absolute; inset: 0; background: var(--lavender); opacity: var(--create-grid-opacity); }
.create-dark { z-index: 4; background: radial-gradient(circle at 70% 10%, rgba(255,255,255,.12), transparent 26%), radial-gradient(circle at 44% 48%, rgba(255,255,255,.06), transparent 23%), var(--black); opacity: var(--create-dark-opacity); }
.create-final { position: absolute; inset: 0; z-index: 2; opacity: var(--create-final-opacity); pointer-events: none; }
.create-final h2 { position: absolute; left: var(--pad-x); top: 50%; margin: 0; color: var(--paper); font-family: var(--sans); font-size: clamp(58px, 8.5vw, 168px); font-weight: 800; line-height: 0.9; letter-spacing: -0.03em; opacity: var(--create-title-opacity); transform: translate3d(0, calc(-50% + var(--create-title-y)), 0); }
.create-final h2 em { font-family: var(--serif); color: var(--accent); font-style: italic; font-weight: 400; }
.create-intro { position: absolute; left: var(--pad-x); top: calc(50% + clamp(82px, 10vw, 160px)); width: min(560px, calc(100vw - var(--pad-x) * 2)); margin: 0; color: rgba(249,249,249,.68); font-size: clamp(15px, 1.25vw, 20px); line-height: 1.55; opacity: var(--create-title-opacity); transform: translate3d(0, calc(var(--create-title-y) * .45), 0); }
.create-placeholder { position: absolute; left: 0; top: 0; z-index: 3; width: var(--create-visual-w); height: var(--create-visual-h); overflow: hidden; background: var(--ink); border-radius: var(--create-visual-radius); opacity: var(--create-visual-opacity); transform: translate3d(var(--create-visual-x), var(--create-visual-y), 0) scale(var(--create-visual-scale-x), var(--create-visual-scale-y)); transform-origin: 0 0; pointer-events: auto; will-change: transform, opacity; }
.create-video { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: cover; object-position: center center; background: var(--ink); }
.create-video[hidden] { display: none; }
.create-video-controls {
  position: absolute;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 8;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(249,249,249,.18);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  opacity: var(--create-controls-opacity);
  pointer-events: none;
  transform: translateY(calc(12px * (1 - var(--create-controls-opacity))));
  transition: opacity 160ms linear, transform 160ms linear;
}
.create-video-controls[hidden] { display: none; }
.create-video-scrub {
  display: grid;
  align-items: center;
  width: clamp(120px, 16vw, 240px);
  min-height: 34px;
  padding: 0 10px;
  background: rgba(249,249,249,.08);
  border: 1px solid rgba(249,249,249,.16);
  border-radius: 999px;
}
.create-video-scrub input {
  --scrub-progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.create-video-scrub input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0 var(--scrub-progress), rgba(249,249,249,.22) var(--scrub-progress) 100%);
}
.create-video-scrub input::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  margin-top: -5px;
  appearance: none;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.create-video-scrub input::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: rgba(249,249,249,.22);
}
.create-video-scrub input::-moz-range-progress {
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.create-video-scrub input::-moz-range-thumb {
  width: 13px;
  height: 13px;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.create-video-controls button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--paper);
  background: rgba(249,249,249,.08);
  border: 1px solid rgba(249,249,249,.16);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}
.create-video-controls button:hover {
  background: var(--accent);
  color: var(--white);
}
.create-video-controls button:active {
  transform: translateY(1px) scale(.98);
}
.placeholder-scene { position: absolute; inset: 0; background: var(--orange-grad-soft); transform: translate3d(0, var(--create-scene-shift), 0) scale(var(--create-scene-scale)); transform-origin: center; }
.ps-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 48px 48px; opacity: .5; }
.ps-orb { position: absolute; right: 12%; top: 14%; width: 28%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #d9c3ab, #e85002 55%, #c10801); box-shadow: 0 40px 100px rgba(232,80,2,.55); }
.ps-block { position: absolute; background: rgba(255,255,255,.3); border-radius: 8px; border: 1px solid rgba(255,255,255,.4); }
.ps-block.b1 { left: 12%; top: 60%; width: 24%; height: 16%; }
.ps-block.b2 { left: 40%; top: 70%; width: 18%; height: 12%; background: rgba(255,122,61,.55); }
.ps-block.b3 { left: 14%; top: 38%; width: 14%; height: 10%; background: var(--ink); border: none; }
.ps-line { position: absolute; left: 0; right: 0; bottom: 22%; height: 1px; background: rgba(255,255,255,.4); }

.create-quote, .create-company { position: absolute; z-index: 5; color: var(--paper); pointer-events: none; }
.create-quote { left: var(--pad-x); right: var(--pad-x); top: clamp(56px, 12dvh, 116px); max-height: calc(100dvh - 72px); opacity: var(--create-quote-opacity); transform: translate3d(0, var(--create-quote-y), 0); }
.create-quote .quote-mark { display: block; color: rgba(255,255,255,.36); font-family: var(--sans); font-size: 112px; font-weight: 500; line-height: 0.5; }
.create-quote p { max-width: min(1320px, calc(100vw - var(--pad-x) * 2)); margin: 18px 0 0; color: rgba(255,255,255,.32); font-family: var(--sans); font-size: 68px; font-weight: 500; font-style: normal; line-height: 1.03; letter-spacing: -0.02em; }
.create-quote em { color: inherit; font-family: inherit; font-style: normal; }
.teleprompter-copy { display: flex; flex-wrap: wrap; align-items: baseline; column-gap: .22em; row-gap: .08em; }
.teleprompter-copy [data-teleprompter-word] {
  display: inline-block;
  font-family: inherit;
  font-style: normal;
}
.teleprompter-copy [data-teleprompter-letter] {
  --letter-lit: 0;
  display: inline-block;
  color: rgba(255,255,255, calc(.28 + (var(--letter-lit) * .72)));
  transition: color 120ms linear, text-shadow 120ms linear;
  text-shadow: 0 0 calc(var(--letter-lit) * 18px) rgba(255,255,255, calc(var(--letter-lit) * .18));
}
.create-company { left: 50%; top: 50%; display: grid; gap: clamp(14px, 2vw, 24px); width: min(980px, calc(100vw - var(--pad-x) * 2)); text-align: center; opacity: var(--create-company-opacity); transform: translate3d(-50%, calc(-50% + var(--create-company-y)), 0); }
.create-company p { margin: 0; }
.create-company-kicker { color: var(--accent-2); font-family: var(--mono); font-size: clamp(11px, 1vw, 14px); letter-spacing: 0.08em; text-transform: uppercase; }
.create-company-title { font-size: clamp(44px, 7vw, 120px); font-weight: 500; line-height: .95; letter-spacing: -0.02em; }
.create-company-detail { justify-self: center; max-width: 680px; color: rgba(255,255,255,.66); font-size: clamp(16px, 1.35vw, 21px); line-height: 1.55; }
.create-company em { color: var(--accent-2); }

/* ---------- SERVICES ---------- */
.dark-section { color: var(--paper); background: var(--ink); }
.services {
  z-index: 1;
  min-height: auto;
  margin-top: 0;
  overflow: hidden;
  background: var(--ink);
  padding-top: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(48px, 6vw, 84px);
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
  opacity: var(--next-page-bg-opacity, 0);
  pointer-events: none;
}
.services > .split-heading {
  position: relative;
  z-index: 1;
  opacity: var(--next-page-heading-opacity, 0);
  transform: translate3d(0, var(--next-page-heading-y, 44px), 0) scale(var(--next-page-heading-scale, .96));
  transform-origin: center top;
  will-change: opacity, transform;
}
.services > .service-grid {
  position: relative;
  z-index: 1;
  opacity: var(--next-page-grid-opacity, 0);
  transform: translate3d(0, var(--next-page-grid-y, 48px), 0);
  will-change: opacity, transform;
}
.split-heading { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: clamp(32px, 7vw, 120px); align-items: start; max-width: var(--max); margin: 0 auto; }
.split-heading h2 { margin: 0; max-width: 1080px; font-weight: 500; font-size: clamp(40px, 6vw, 100px); line-height: 1; letter-spacing: -0.025em; }
.split-heading h2 em { color: var(--accent-2); }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); max-width: var(--max); margin: clamp(72px, 10vw, 130px) auto 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.service-item { display: flex; flex-direction: column; min-height: 380px; padding: clamp(24px, 2.4vw, 36px); border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); transition: background 320ms var(--ease); }
.service-item:hover { background: rgba(255,255,255,.04); }
.service-item:hover .si-vis { color: var(--accent-2); }
.si-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.si-head span:first-child { color: var(--paper); font-weight: 500; }
.si-tag { padding: 4px 8px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-size: 10px; }
.si-vis { color: rgba(255,255,255,.6); margin: 32px 0 32px; transition: color .3s; }
.si-vis svg { width: 100%; height: auto; max-height: 70px; }
.service-item h3 { margin: auto 0 16px; font-family: var(--sans); font-size: clamp(22px, 2vw, 32px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
.service-item h3 em { color: var(--accent-2); }
.service-item p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.5; }

/* ---------- WORK ---------- */
.work { padding-top: clamp(56px, 7vw, 96px); padding-bottom: 0; }
.work-header { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: end; max-width: var(--max); margin: 0 auto; }
.work-header .eyebrow { grid-column: 1 / -1; }
.work-sub { grid-column: 1 / -1; max-width: 680px; margin: -10px 0 8px; color: var(--ink-2); font-size: clamp(16px, 1.3vw, 20px); line-height: 1.55; }
.work-header h2 { margin: 0; max-width: 760px; font-weight: 500; font-size: clamp(44px, 6.8vw, 116px); line-height: 1; letter-spacing: -0.025em; }
.work-header h2 em { color: var(--accent); }

.work-marquee { display: flex; gap: 0; width: 100vw; margin: 64px calc(var(--pad-x) * -1) 56px; padding: 24px 0; overflow: hidden; background: var(--ink); color: var(--paper); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.work-marquee div { display: flex; flex: 0 0 auto; gap: 32px; padding: 0 16px; animation: marquee 32s linear infinite; }
.work-marquee span { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 60px); font-style: italic; line-height: 1; white-space: nowrap; }
.work-marquee span:nth-child(even) { color: var(--accent-2); font-style: normal; }
@keyframes marquee { to { transform: translateX(-100%); } }

.work-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 16px; max-width: var(--max); margin: 0 auto; }
.project-card { position: relative; min-height: 540px; overflow: hidden; background: var(--grey-1); border: 1px solid var(--line); border-radius: 24px; transform-style: preserve-3d; transition: transform 260ms var(--ease); }
.project-large { grid-row: span 2; min-height: 1080px; }
.project-corner { position: absolute; z-index: 3; font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.project-corner.tl { top: 24px; left: 24px; }
.project-corner.tr { top: 24px; right: 24px; }
.dark-card .project-corner, .project-large .project-corner { color: rgba(255,255,255,.7); }
.project-card:not(.dark-card):not(.project-large) .project-corner { color: var(--ink-2); }

.proj-bg { position: absolute; inset: 0; }
.proj-bg-1 { background: radial-gradient(circle at 50% 60%, #333333, #000000); overflow: hidden; }
.proj-orb { position: absolute; left: 50%; top: 48%; transform: translate(-50%, -50%); width: 36%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #d9c3ab, var(--accent) 50%, #c10801); box-shadow: 0 60px 120px rgba(232,80,2,.45); }
/* Polka-dot overlay on the large project card, echoing reference */
.proj-bg-1::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at center, rgba(232,80,2,.85) 0 28%, transparent 30%); background-size: 18px 18px; opacity: .35; mix-blend-mode: screen; mask-image: radial-gradient(circle at 78% 22%, #000 0 26%, transparent 50%); -webkit-mask-image: radial-gradient(circle at 78% 22%, #000 0 26%, transparent 50%); pointer-events: none; }
.proj-net { position: absolute; inset: 0; width: 100%; height: 100%; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.7)); pointer-events: none; }
.project-meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(28px, 3.5vw, 56px); color: var(--paper); }
.project-card:not(.dark-card):not(.project-large) .project-meta { color: var(--paper); }
.project-card:not(.dark-card):not(.project-large)::after { background: none; }
.proj-client { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: .8; }
.project-meta strong { display: block; max-width: 760px; margin-top: 14px; font-family: var(--sans); font-size: clamp(28px, 3.8vw, 64px); font-weight: 500; line-height: 1; letter-spacing: -0.025em; }
.project-meta strong em { color: var(--accent-2); }
.project-card:not(.dark-card):not(.project-large) .project-meta strong em { color: var(--accent); }
.project-meta p { max-width: 480px; margin: 16px 0 0; opacity: .8; font-size: 15px; line-height: 1.5; }
.proj-tags { display: flex; gap: 6px; margin-top: 20px; }
.proj-tags span { padding: 4px 10px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }

.project-screen { position: absolute; inset: 32px 28px 200px; border-radius: 18px; background: #111111; overflow: hidden; border: 1px solid var(--line); }
.project-large-visual {
  position: absolute;
  inset: 32px 28px 360px;
  z-index: 1;
  overflow: hidden;
  padding: 0;
  background: #f5f2ed;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  color: inherit;
  cursor: zoom-in;
}
.project-image-trigger { display: block; width: auto; padding: 0; color: inherit; cursor: zoom-in; }
.project-image-trigger:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; }
.project-image-trigger::after {
  content: "View";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--paper);
  background: rgba(0,0,0,.58);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}
.project-image-trigger:hover::after,
.project-image-trigger:focus-visible::after { opacity: 1; transform: translateY(0); }
.project-screen-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.ps-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.ps-bar > span:not(.ps-bar-tab) { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-2); }
.ps-bar-tab { margin-left: auto; padding: 4px 10px; background: var(--accent); color: var(--white); border-radius: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.ps-content { position: relative; padding: 24px; height: calc(100% - 40px); }
.ps-row { display: block; height: 12px; background: var(--grey-1); border-radius: 4px; margin-bottom: 10px; width: 70%; }
.ps-row.r2 { width: 40%; }
.ps-chart { display: block; height: 90px; margin-top: 18px; background: var(--orange-grad); border-radius: 8px; }
.ps-pill { display: inline-block; margin-top: 14px; padding: 6px 12px; background: var(--accent-2); border-radius: 999px; width: 100px; height: 22px; }

.dark-card { background: #050505; }
.dark-card .project-screen { background: #161616; border-color: rgba(255,255,255,.08); inset: 32px 28px 220px; }
.content-machine { padding: 18px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; align-content: start; }
.content-machine .cm-thumb { display: block; aspect-ratio: 1; border-radius: 8px; }
.cm-thumb.t1 { background: var(--accent-2); }
.cm-thumb.t2 { background: var(--grey-2); }
.cm-thumb.t3 { background: var(--accent); }
.cm-bar { grid-column: 1 / -1; height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; margin-top: 8px; }

/* ---------- IMPACT ---------- */
.impact { overflow: hidden; background: #050505; }
.impact-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(32px, 7vw, 120px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vw, 96px);
}
.impact-header .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.impact-header h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(48px, 7.5vw, 132px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -0.03em;
}
.impact-header h2 em { color: var(--accent-2); font-family: var(--serif); font-style: italic; font-weight: 400; }
.impact-header p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: clamp(16px, 1.25vw, 19px); line-height: 1.55; }
.impact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.impact-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 0 0 24px;
  color: var(--paper);
  text-align: left;
  background: #111111;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), background 260ms var(--ease);
}
.impact-card:hover { transform: translateY(-4px); border-color: rgba(232,80,2,.64); background: #151515; }
.impact-feature { grid-row: span 2; }
.impact-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.impact-feature .impact-thumb { aspect-ratio: 4 / 3; }
.impact-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transform: scale(1.01);
  transition: transform 700ms var(--ease), opacity 260ms var(--ease);
}
.impact-card:hover .impact-thumb img { transform: scale(1.06); opacity: .86; }
.impact-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.55));
  pointer-events: none;
}
.impact-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0,0,0,.46);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}
.impact-play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 15px solid var(--paper);
}
.impact-card:hover .impact-play { background: var(--accent); border-color: var(--accent); transform: translate(-50%, -50%) scale(1.08); }
.impact-copy { display: grid; gap: 10px; padding: 0 24px; }
.impact-meta { color: var(--accent-2); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.impact-copy strong { max-width: 620px; font-size: clamp(22px, 2vw, 34px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; }
.impact-copy span:last-child { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.5; }
.video-modal,
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: var(--pad-x);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms linear;
}
.video-modal.is-open,
.image-modal.is-open { opacity: 1; pointer-events: auto; }
.video-modal-backdrop,
.image-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.82); border: 0; }
.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.video-modal-close,
.video-modal-direct,
.image-modal-close {
  position: absolute;
  top: 14px;
  z-index: 2;
  min-height: 34px;
  padding: 0 12px;
  color: var(--paper);
  background: rgba(0,0,0,.54);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}
.video-modal-close,
.image-modal-close {
  right: 14px;
}
.video-modal-direct {
  left: 14px;
}
.video-modal-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.image-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1420px, 100%);
  max-height: min(86dvh, 980px);
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.image-modal-frame {
  display: grid;
  place-items: center;
  width: 100%;
  max-height: min(86dvh, 980px);
  overflow: auto;
  background: #050505;
}
.image-modal-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(86dvh, 980px);
  object-fit: contain;
}

/* ---------- PORTFOLIO INDEX ---------- */
.portfolio-page {
  min-height: 100dvh;
  background: var(--ink);
}
.portfolio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad-x);
  border-bottom: 1px solid var(--line);
}
.portfolio-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portfolio-nav a {
  color: var(--ink-2);
  transition: color 220ms var(--ease);
}
.portfolio-nav a:hover {
  color: var(--paper);
}
.portfolio-shell {
  padding: clamp(64px, 8vw, 120px) var(--pad-x) clamp(88px, 10vw, 150px);
}
.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(32px, 7vw, 120px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(56px, 8vw, 110px);
}
.portfolio-hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(54px, 9vw, 148px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.portfolio-hero p:last-child {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}
.portfolio-index {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto clamp(72px, 9vw, 130px);
}
.portfolio-project {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: clamp(24px, 3vw, 44px);
  overflow: hidden;
  color: var(--paper);
  background: var(--grey-1);
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}
.portfolio-project:hover {
  transform: translateY(-4px);
  background: #333333;
}
.portfolio-project-large {
  grid-row: span 2;
  min-height: 876px;
  color: var(--paper);
  background: radial-gradient(circle at 50% 44%, #333333, #000000 68%);
}
.portfolio-project-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(232,80,2,.8) 0 28%, transparent 30%);
  background-size: 18px 18px;
  opacity: .32;
  mask-image: radial-gradient(circle at 78% 22%, #000 0 26%, transparent 52%);
  -webkit-mask-image: radial-gradient(circle at 78% 22%, #000 0 26%, transparent 52%);
  pointer-events: none;
}
.portfolio-project-dark {
  color: var(--paper);
  background: #050505;
}
.portfolio-num,
.portfolio-type,
.portfolio-action {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portfolio-type {
  justify-self: end;
  color: currentColor;
  opacity: .58;
}
.portfolio-project strong {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 720px;
  margin-top: auto;
  font-size: clamp(32px, 4.6vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.portfolio-summary {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 520px;
  margin-top: 18px;
  color: currentColor;
  opacity: .72;
  font-size: 15px;
  line-height: 1.55;
}
.portfolio-action {
  position: absolute;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 44px);
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
}
.portfolio-detail {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .8fr);
  gap: clamp(32px, 6vw, 96px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) 0;
  border-top: 1px solid var(--line);
}
.portfolio-detail h2 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
}
.portfolio-detail-body p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}
.portfolio-detail dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 32px 0 0;
  background: var(--line);
}
.portfolio-detail dl div {
  min-height: 120px;
  padding: 18px;
  background: var(--grey-1);
}
.portfolio-detail dt {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.portfolio-detail dd {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

/* ---------- PROCESS ---------- */
.process { max-width: var(--max); margin: 0 auto; }
.process-copy { max-width: 740px; }
.process-copy h2 { margin: 0; font-weight: 500; font-size: clamp(40px, 6vw, 96px); line-height: 1; letter-spacing: -0.025em; }
.process-copy h2 em { color: var(--accent); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 2px solid var(--line-strong); }
.process-step { display: flex; flex-direction: column; min-height: 280px; padding: 28px 24px; border-right: 1px solid var(--line); position: relative; background: rgba(51,51,51,.24); }
.process-step:last-child { border-right: 0; }
.proc-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; }
.proc-rule { width: 36px; height: 1px; background: var(--accent); margin-bottom: 60px; }
.process-step h3 { margin: auto 0 12px; font-family: var(--sans); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; }
.process-step p { margin: 0 0 18px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.proc-time { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; align-self: flex-start; }

/* ---------- CONTACT ---------- */
.contact { padding-top: clamp(96px, 12vw, 180px); padding-bottom: 0; }
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); max-width: var(--max); margin: 0 auto; align-items: start; }
.contact-copy h2 { margin: 0; font-weight: 500; font-size: clamp(48px, 7vw, 124px); line-height: 0.96; letter-spacing: -0.025em; }
.contact-copy h2 em { color: var(--accent-2); }
.contact-sub { max-width: 480px; margin: 28px 0 0; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.5; }
.contact-meta { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-meta .lab { margin: 0 0 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact-meta a, .contact-meta span { font-family: var(--sans); font-size: 16px; }
.contact-meta a:hover { color: var(--accent-2); }

.contact-form { display: grid; gap: 16px; padding: clamp(28px, 3vw, 44px); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; }
.form-head { display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.12); font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.form-num { color: var(--accent-2); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.schedule-button { display: inline-flex; align-items: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 999px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; transition: transform .25s, background .25s, color .25s, border-color .25s; }
.schedule-button { color: var(--ink); background: var(--accent-2); border: 0; }
.schedule-button:hover,
.schedule-button[aria-expanded="true"] { background: var(--paper); }
.schedule-button:active { transform: translateY(1px) scale(.98); }
.schedule-button .arr { font-size: 14px; }
.schedule-panel {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.schedule-panel[hidden] { display: none; }
.schedule-panel-head {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cal-inline-embed {
  display: block;
  width: 100%;
  min-height: 680px;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow: hidden;
}
.schedule-pending {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 220px;
  padding: 28px;
  color: var(--ink);
}
.schedule-pending p {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.schedule-pending span {
  display: block;
  max-width: 420px;
  color: rgba(0,0,0,.58);
  font-size: 14px;
  line-height: 1.55;
}
.schedule-fallback {
  justify-self: start;
  color: rgba(255,255,255,.62);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.schedule-fallback:hover {
  color: var(--accent-2);
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.58); padding: 18px var(--pad-x) 64px; }
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-grid span, .footer-grid a { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-grid a:hover { color: var(--accent-2); }

@keyframes breathe { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: .5; } }
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: flex; }
  .talk-button { display: none; }
  .hero-stage { grid-template-columns: 1fr; align-content: center; min-height: 100vh; min-height: 100dvh; padding-top: 116px; }
  .hero-content { grid-column: 1 / -1; justify-self: start; width: min(680px, 100%); }
  .hero-ghost-word { left: 20px; bottom: 14%; font-size: clamp(64px, 20vw, 152px); }
  .hero-rule-title { display: none; }
  .hero-rule-left { top: 34%; width: 54vw; }
  .hero-balance-mark { width: 96px; }
  .split-heading, .about-summary-grid, .impact-header, .contact-grid { grid-template-columns: 1fr; }
  .work-header { grid-template-columns: 1fr; }
  .portfolio-header { align-items: flex-start; flex-direction: column; }
  .portfolio-hero, .portfolio-index, .portfolio-detail { grid-template-columns: 1fr; }
  .portfolio-project, .portfolio-project-large { min-height: 420px; }
  .portfolio-detail dl { grid-template-columns: 1fr; }
  .create-video-controls { left: 20px; right: 20px; justify-content: space-between; }
  .create-video-scrub { flex: 1; width: auto; }
  .service-grid, .work-grid, .impact-grid, .process-track { grid-template-columns: 1fr; }
  .service-grid, .process-track { border-left: 0; }
  .service-item, .process-step { border-right: 0; }
  .project-large { grid-row: auto; min-height: 540px; }
  .impact-feature { grid-row: auto; }
  .impact-feature .impact-thumb { aspect-ratio: 16 / 9; }
  .about-summary-rows div { grid-template-columns: 1fr; gap: 8px; }
  .clay-card { flex-basis: calc(100vw - 44px); width: calc(100vw - 44px); }
  .contact-meta { grid-template-columns: 1fr 1fr; }
  .form-foot { align-items: flex-start; flex-direction: column; }
  .form-message { text-align: left; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .menu-footer { grid-template-columns: 1fr; }
  .menu-links { font-size: clamp(40px, 13vw, 80px); }
  .create-quote .quote-mark { font-size: 82px; }
  .create-quote p { font-size: 50px; }
}

@media (max-width: 620px) {
  .hero-stage { padding: 108px 20px 34px; row-gap: 24px; }
  .hero-content { gap: 22px; }
  .hero-ghost-word { bottom: 20%; font-size: clamp(54px, 21vw, 92px); }
  .hero-orb-two, .hero-micro-rail, .hero-balance-mark, .hero-rule-left { display: none; }
  .hero-meta { gap: 8px; font-size: 10px; }
  .hero-meta span:nth-child(2) { display: none; }
  .hero-copy::after { display: none; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); white-space: normal; }
  .hero-brief p { font-size: 15px; }
  .hero-control-rail { align-items: flex-start; flex-direction: column; }
  .hero-actions { margin-top: 0; }
  .hero-action { min-height: 40px; padding: 0 13px; }
  .hero-chips span { font-size: 9px; }
  .hero-bottom-bar span:nth-child(2) { display: none; }
  .create-quote { top: 56px; }
  .create-quote .quote-mark { font-size: 58px; }
  .create-quote p { font-size: 32px; }
}

@media (max-width: 760px) {
  :root {
    --pad-x: clamp(18px, 5vw, 24px);
  }

  body {
    letter-spacing: 0;
  }

  .ticker {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding-block: 14px;
  }

  .logo-word {
    font-size: 13px;
  }

  .logo-image {
    width: 36px;
    height: 26px;
  }

  .menu-panel {
    overflow-y: auto;
    padding: 88px var(--pad-x) 34px;
    gap: 24px;
  }

  .menu-meta {
    align-items: flex-start;
    gap: 12px;
  }

  .menu-links {
    font-size: clamp(36px, 12.5vw, 58px);
    line-height: 1;
  }

  .menu-links a {
    gap: 12px;
    padding-block: 12px;
    min-width: 0;
  }

  .menu-links .dash,
  .menu-links a:first-child em {
    display: none;
  }

  .menu-footer {
    gap: 20px;
    padding-top: 18px;
  }

  .section {
    padding-block: clamp(72px, 18vw, 104px);
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.35;
    white-space: normal;
  }

  .hero {
    min-height: auto;
    overflow: visible;
  }

  .hero-stage {
    min-height: min(100dvh, 760px);
    padding-inline: var(--pad-x);
    background:
      linear-gradient(180deg, rgba(223, 232, 223, .98) 0%, rgba(223, 232, 223, .88) 48%, rgba(223, 232, 223, .42) 100%),
      url("assets/revisionai-hero-cracked-banner.png") 58% center / cover no-repeat,
      #dfe8df;
  }

  .hero-stage::before {
    background:
      linear-gradient(rgba(15, 20, 18, .055) 1px, transparent 1px) 0 0/48px 48px,
      linear-gradient(90deg, rgba(15, 20, 18, .055) 1px, transparent 1px) 0 0/48px 48px,
      radial-gradient(circle at 78% 20%, rgba(232, 80, 2, .14), transparent 18rem);
  }

  .hero-meta {
    align-items: flex-start;
  }

  .hero h1 {
    max-width: 9ch;
    text-wrap: balance;
  }

  .hero-brief p {
    max-width: 34rem;
    text-wrap: pretty;
  }

  .hero-action {
    justify-content: center;
  }

  .hero-reel {
    height: clamp(420px, 72dvh, 620px);
  }

  .reel-stage {
    position: relative;
    height: 100%;
  }

  .reel-frame {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
  }

  .reel-corner {
    font-size: 8px;
  }

  .reel-corner.tl,
  .reel-corner.bl {
    left: 16px;
  }

  .reel-corner.tr,
  .reel-corner.br {
    right: 16px;
  }

  .reel-corner.tl,
  .reel-corner.tr {
    top: 16px;
  }

  .reel-corner.bl,
  .reel-corner.br {
    bottom: 16px;
  }

  .about {
    height: auto !important;
    padding: clamp(72px, 18vw, 104px) var(--pad-x);
    overflow: hidden;
  }

  .horizontal-band {
    position: relative !important;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none !important;
    gap: 24px;
  }

  .about-title {
    display: grid;
    gap: 12px;
    flex: none;
    padding: 0;
    border-right: 0;
  }

  .about-title > span {
    font-size: clamp(42px, 16vw, 72px);
  }

  .about-title .about-sub {
    max-width: 32rem;
    margin-top: 4px;
  }

  .about-scroll-hint {
    display: none;
  }

  .about-cards {
    display: grid;
    gap: 16px;
    padding: 0;
  }

  .clay-card {
    width: 100%;
    min-height: 0;
    height: auto;
    flex: none;
    padding: 22px;
    border-radius: 22px;
  }

  .card-visual {
    flex: none;
    min-height: 220px;
    aspect-ratio: 16 / 10;
    margin: 16px 0;
  }

  .card-visual-image {
    position: relative;
  }

  .card-body h2 {
    font-size: clamp(26px, 8.2vw, 38px);
    letter-spacing: 0;
  }

  .card-body p {
    font-size: 15px;
  }

  .about-summary-grid,
  .split-heading,
  .impact-header,
  .contact-grid {
    gap: 28px;
  }

  .about-summary-lead h2,
  .work-header h2,
  .impact-header h2,
  .process-copy h2,
  .contact-copy h2 {
    font-size: clamp(38px, 13vw, 64px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .create-transition {
    height: auto;
    min-height: 0;
    padding: clamp(76px, 18vw, 108px) var(--pad-x);
    background: #050505;
  }

  .create-panel {
    position: relative;
    display: grid;
    gap: 34px;
    height: auto;
    min-height: 0;
    place-items: stretch;
    overflow: visible;
    background: transparent;
  }

  .create-light,
  .create-dark {
    display: none;
  }

  .create-final,
  .create-quote {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .create-company {
    display: none;
  }

  .create-final {
    display: grid;
    gap: 20px;
  }

  .create-final h2,
  .create-intro,
  .create-placeholder {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1;
    transform: none !important;
  }

  .create-final h2 {
    max-width: 8ch;
    font-size: clamp(44px, 15vw, 72px);
    line-height: .92;
  }

  .create-intro {
    max-width: 34rem;
    color: rgba(249,249,249,.7);
    font-size: 16px;
  }

  .create-placeholder {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
  }

  .create-video-controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    justify-content: stretch;
    width: 100%;
    border-radius: 18px;
    opacity: 1;
    pointer-events: auto !important;
    transform: none;
  }

  .create-video-controls button {
    flex: 0 0 auto;
  }

  .create-quote {
    display: grid;
    max-height: none;
    gap: 12px;
    padding-block: 8px;
  }

  .create-quote .quote-mark {
    font-size: 54px;
  }

  .create-quote p {
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(25px, 7.6vw, 38px);
    line-height: 1.12;
    letter-spacing: 0;
  }

  .teleprompter-copy [data-teleprompter-letter] {
    color: inherit;
    text-shadow: none;
  }

  .work {
    padding-bottom: clamp(72px, 18vw, 104px);
  }

  .work-marquee {
    margin-block: 42px 28px;
    padding-block: 18px;
  }

  .work-grid,
  .impact-grid,
  .process-track {
    gap: 14px;
  }

  .project-card,
  .project-large {
    display: grid;
    align-content: start;
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .project-card::after {
    display: none;
  }

  .project-large-visual,
  .project-screen,
  .dark-card .project-screen {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 11;
    margin: 42px 0 22px;
    border-radius: 14px;
  }

  .project-meta {
    position: relative;
    padding: 0 4px 4px;
  }

  .project-meta strong {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 0;
  }

  .project-meta p {
    font-size: 14px;
  }

  .impact-card {
    border-radius: 20px;
  }

  .impact-copy {
    padding-inline: 20px;
  }

  .process-track {
    margin-top: 42px;
    border-top-width: 1px;
  }

  .process-step {
    min-height: 220px;
    padding: 22px;
  }

  .proc-rule {
    margin-bottom: 34px;
  }

  .contact {
    padding-bottom: clamp(64px, 16vw, 96px);
  }

  .contact-sub {
    font-size: 16px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }

  .form-head,
  .schedule-panel-head {
    align-items: flex-start;
    gap: 12px;
  }

  .schedule-button {
    width: 100%;
    justify-content: center;
  }

  .cal-inline-embed {
    min-height: 560px;
    border-radius: 14px;
  }

  .video-modal,
  .image-modal {
    padding: 14px;
  }

  .video-modal-panel,
  .image-modal-panel {
    border-radius: 16px;
  }

  .video-modal-close,
  .video-modal-direct,
  .image-modal-close {
    top: 10px;
    min-height: 32px;
    font-size: 9px;
  }

  .video-modal-close,
  .image-modal-close {
    right: 10px;
  }

  .video-modal-direct {
    left: 10px;
    max-width: calc(100% - 112px);
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .hero-action,
  .create-video-controls,
  .create-video-scrub {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-chips {
    display: none;
  }

  .create-video-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .create-video-scrub {
    grid-column: 1 / -1;
  }

  .project-corner.tl {
    left: 16px;
  }

  .project-corner.tr {
    right: 16px;
  }
}

@media (min-width: 1600px) {
  .create-quote .quote-mark { font-size: 120px; }
  .create-quote p { font-size: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
