/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #0a0a0a; color: #e8e6e0; }
body {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 768px) {
  body { cursor: auto; }
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --fg: #e8e6e0;
  --fg-dim: #6b6b66;
  --fg-mid: #98968e;
  --line: #1f1f1d;
  --line-2: #2a2a27;
  --accent: oklch(0.92 0.18 105);
  --accent-dim: oklch(0.92 0.18 105 / 0.3);
  --red: oklch(0.65 0.22 25);
}

/* ============ TYPE ============ */
.display {
  font-family: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}
.mono { font-family: 'JetBrains Mono', monospace; }
.uppercase { text-transform: uppercase; letter-spacing: 0.08em; }
.dim { color: var(--fg-dim); }
.mid { color: var(--fg-mid); }
.accent { color: var(--accent); }

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

/* ============ CURSOR ============ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transition: width .2s ease, height .2s ease, background .2s ease;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  transition: width .25s cubic-bezier(.2,.8,.2,1), height .25s cubic-bezier(.2,.8,.2,1), border-color .25s, background .25s;
  mix-blend-mode: difference;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--accent);
  background: oklch(0.92 0.18 105 / 0.08);
}
.cursor-dot.hover { width: 0; height: 0; }
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ LAYOUT ============ */
.shell {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .shell { padding: 0 20px; }
}

.hairline { border-top: 1px solid var(--line); }
.hairline-b { border-bottom: 1px solid var(--line); }

.ascii-divider {
  font-family: 'JetBrains Mono', monospace;
  color: var(--fg-dim);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
  padding: 8px 0;
  letter-spacing: 0;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-logo-mark {
  width: 14px; height: 14px;
  background: var(--accent);
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.nav-link {
  position: relative;
  color: var(--fg-mid);
  transition: color .2s;
}
.nav-link:hover { color: var(--fg); }
.nav-link::before {
  content: '/';
  margin-right: 6px;
  color: var(--fg-dim);
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  padding-top: 32px;
}
.hero-meta-item span { display: block; color: var(--fg); margin-top: 6px; font-size: 12px; letter-spacing: 0.06em; }
@media (max-width: 768px) {
  .hero-meta { grid-template-columns: 1fr 1fr; }
}

.hero-headline {
  font-size: clamp(56px, 13vw, 220px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin: 40px 0;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: inline-block;
  transform: translateY(120%);
  animation: rise 1.2s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.1s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.25s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.4s; }
@keyframes rise {
  to { transform: translateY(0); }
}

.hero-redact {
  display: inline-block;
  position: relative;
  background: var(--fg);
  color: var(--fg);
  padding: 0 0.2em;
  border-radius: 2px;
  transition: background .3s, color .3s;
}
.hero-redact:hover {
  background: transparent;
  color: var(--accent);
}
.hero-italic { font-style: italic; font-family: 'Space Grotesk', sans-serif; font-weight: 300; }

.hero-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  padding-top: 48px;
}
.hero-manifesto {
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
  color: var(--fg-mid);
}
.hero-manifesto strong { color: var(--fg); font-weight: 500; }
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-cta-num {
  font-size: 60px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
}
.hero-cta-num em {
  font-style: normal;
  color: var(--accent);
}
@media (max-width: 768px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .hero-cta { align-items: flex-start; }
}

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  background: var(--bg);
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-mid);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  margin-bottom: 60px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.section-label .num { color: var(--accent); }
.section-label .title { color: var(--fg); font-size: 12px; }

.section-h {
  font-size: clamp(40px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 14ch;
  margin-bottom: 80px;
}

/* ============ PROCESS ============ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 32px 28px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--bg-2); }
.process-step:hover .process-num { color: var(--accent); }
.process-step-num {
  font-size: 11px;
  color: var(--fg-dim);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.process-num {
  font-size: 80px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 32px;
  color: var(--fg);
  transition: color .3s;
}
.process-title {
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.process-desc {
  font-size: 12px;
  color: var(--fg-mid);
  line-height: 1.5;
  margin-top: auto;
}
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
  .process-step { border-right: none; }
}

/* ============ BRANDS REDACTED ============ */
.brands {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.brands-row {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  margin-bottom: 16px;
}
.brands-row.reverse {
  animation-direction: reverse;
  animation-duration: 75s;
}
.brand-logo {
  flex-shrink: 0;
  height: 80px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-2);
  background: var(--bg);
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--fg);
  min-width: 220px;
  transition: all .25s;
}
.brand-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fg);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  transform-origin: left;
}
.brand-logo:hover::before {
  transform: scaleX(0);
  transform-origin: right;
}
.brand-logo span {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s;
}
.brand-logo:hover span { opacity: 1; }
.brand-logo:hover { border-color: var(--accent); }

.brands-caption {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  margin-top: 32px;
}
.brands-caption .accent { color: var(--accent); }

/* ============ ROLES ============ */
.roles {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.role {
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1fr 200px 200px 60px;
  gap: 32px;
  align-items: center;
  position: relative;
  transition: padding .35s cubic-bezier(.2,.8,.2,1);
  cursor: none;
}
.role::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--accent);
  transition: width .35s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.role:hover::before { width: 100%; }
.role:hover { color: var(--bg); padding-left: 32px; }
.role:hover .role-num,
.role:hover .role-meta,
.role:hover .role-arrow { color: var(--bg); }
.role > * { position: relative; z-index: 1; }
.role-num {
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  transition: color .25s;
}
.role-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.role-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-mid);
  transition: color .25s;
}
.role-meta strong { display: block; color: var(--fg); margin-bottom: 4px; transition: color .25s; }
.role:hover .role-meta strong { color: var(--bg); }
.role-arrow {
  font-size: 28px;
  text-align: right;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--fg-mid);
  transition: transform .35s, color .25s;
}
.role:hover .role-arrow { transform: translateX(8px); }

.role.closed {
  opacity: 0.4;
}
.role.closed::before { display: none; }
.role.closed:hover { color: inherit; padding-left: 0; }
.role.closed:hover .role-num,
.role.closed:hover .role-meta,
.role.closed:hover .role-meta strong,
.role.closed:hover .role-arrow { color: var(--fg-mid); }
.role.closed .role-title { text-decoration: line-through; text-decoration-thickness: 1px; }
.role.closed:hover .role-arrow { transform: none; }

@media (max-width: 900px) {
  .role { grid-template-columns: 40px 1fr 40px; }
  .role-meta { display: none; }
}

/* ============ ROLES EXPAND ============ */
.role-detail {
  padding: 0 0 0 112px;
  font-size: 13px;
  color: var(--fg-mid);
  line-height: 1.6;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s cubic-bezier(.2,.8,.2,1), padding .4s;
  border-bottom: 1px solid var(--line);
}
.role-detail.open {
  max-height: 600px;
  padding: 32px 0 48px 112px;
}
.role-detail h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}
.role-detail ul li {
  list-style: none;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.role-detail ul li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
}
@media (max-width: 700px) {
  .role-detail { padding-left: 0; grid-template-columns: 1fr; gap: 24px; }
  .role-detail.open { padding: 24px 0 32px 0; }
}

/* ============ APPLY ============ */
.apply {
  padding: 160px 0;
  text-align: left;
  position: relative;
  border-top: 1px solid var(--line);
}
.apply-h {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(60px, 12vw, 200px);
  letter-spacing: -0.05em;
  line-height: 0.85;
  font-weight: 500;
  margin-bottom: 80px;
}
.apply-h .stroke {
  -webkit-text-stroke: 1px var(--fg);
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.apply-text {
  max-width: 480px;
  font-size: 14px;
  color: var(--fg-mid);
  line-height: 1.6;
}
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  border: 1px solid var(--fg);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  overflow: hidden;
  transition: color .35s;
  font-weight: 500;
}
.apply-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.apply-btn:hover::before { transform: translateY(0); }
.apply-btn:hover { color: var(--bg); border-color: var(--accent); }
.apply-btn span { position: relative; z-index: 1; }
.apply-btn .arrow { font-size: 18px; }
@media (max-width: 768px) {
  .apply-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.footer-col strong {
  color: var(--fg);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
}
.footer-col a {
  display: block;
  margin-bottom: 6px;
  color: var(--fg-mid);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
}
.footer-mark .blink::after {
  content: '_';
  color: var(--accent);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}
@media (max-width: 768px) {
  .footer-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ============ STATUS LIGHT ============ */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ MARQUEE BIG ============ */
.marquee-big {
  padding: 60px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-big-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(60px, 10vw, 140px);
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1;
}
.marquee-big-track .stroke {
  -webkit-text-stroke: 1px var(--fg);
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.marquee-big-track .dot {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  align-self: center;
  flex-shrink: 0;
}
