@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --arena-black: #08090a;
  --arena-deep: #0d0f11;
  --arena-panel: #131619;
  --arena-panel-2: #191c20;
  --arena-white: #f4f3ef;
  --arena-soft: #c4c6c4;
  --arena-muted: #858a8b;
  --arena-line: rgba(244, 243, 239, .14);
  --arena-line-bright: rgba(244, 243, 239, .28);
  --arena-orange: #ff6a00;
  --arena-orange-light: #ff9a3c;
  --arena-red: #c93f37;
  --arena-blue: #4f718b;
  --arena-shadow: 0 22px 70px rgba(0, 0, 0, .34);
  --ease-arena: cubic-bezier(.22, .8, .2, 1);
  --ease-impact: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--arena-white);
  background: var(--arena-black);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.is-booting { overflow: hidden; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--arena-orange-light);
  outline-offset: 4px;
}

[hidden] { display: none !important; }

.mono,
.eyebrow,
.readout-label,
.section-index,
.status-line,
.brand-wordmark,
.nav-link,
.card-kicker,
.lower-third,
.gate-status,
.gate-meta,
.gate-kicker,
.gate-footer,
.stat-label,
.footer-meta {
  font-family: 'DM Mono', monospace;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 100vh;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .8s var(--ease-arena);
}

body.is-booting .site-shell { opacity: 0; pointer-events: none; }
body.is-live .site-shell {
  opacity: 1;
  pointer-events: auto;
}

/* Arena entrance */
.arena-gate {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--arena-white);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 106, 0, .08), transparent 21rem),
    linear-gradient(135deg, #090a0b 0%, #111416 58%, #08090a 100%);
  isolation: isolate;
  transition: opacity .65s var(--ease-impact), visibility .65s;
}

.arena-gate::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.018) 4px 5px);
  content: '';
  pointer-events: none;
}

.arena-gate::after {
  position: absolute;
  inset: -20%;
  z-index: -3;
  background: conic-gradient(from 210deg at 50% 43%, transparent 0 20%, rgba(255, 106, 0, .07) 27%, transparent 37% 61%, rgba(79, 113, 139, .07) 70%, transparent 79%);
  animation: gate-light 7s linear infinite;
  content: '';
  pointer-events: none;
}

.arena-gate.is-entering {
  opacity: 0;
  visibility: hidden;
}

.gate-court,
.site-court {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gate-court::before,
.gate-court::after,
.site-court::before,
.site-court::after {
  position: absolute;
  border: 1px solid rgba(244, 243, 239, .14);
  content: '';
}

.gate-court::before {
  top: 50%;
  left: 50%;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 120px rgba(255, 106, 0, .012), 0 0 0 240px rgba(255, 255, 255, .012);
}

.gate-court::after {
  top: 50%;
  left: 50%;
  width: min(38vw, 480px);
  height: min(38vw, 480px);
  border-color: rgba(255, 106, 0, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gate-frame {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(244, 243, 239, .1);
}

.gate-frame::before,
.gate-frame::after {
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: var(--arena-orange);
  border-style: solid;
  content: '';
}

.gate-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.gate-frame::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.gate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(1220px, calc(100% - 84px));
  min-height: 100svh;
  padding: 28px 0 25px;
}

.gate-topbar,
.gate-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 243, 239, .56);
  font-size: .64rem;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gate-topbar { padding-bottom: 22px; border-bottom: 1px solid var(--arena-line); }
.gate-topbar strong { color: var(--arena-white); font-weight: 500; }
.gate-footer { padding-top: 18px; border-top: 1px solid var(--arena-line); }
.gate-footer span:last-child { color: var(--arena-orange-light); }

.gate-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .48fr);
  gap: clamp(30px, 8vw, 120px);
  align-items: center;
  padding: 46px 0;
}

.gate-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--arena-orange-light);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gate-kicker::before,
.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
  content: '';
}

.gate-title {
  max-width: 810px;
  margin: 0;
  color: var(--arena-white);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(4.5rem, 12vw, 10.8rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .78;
  text-transform: uppercase;
}

.gate-title span { display: block; color: var(--arena-orange); }

.gate-intro {
  max-width: 450px;
  margin: 30px 0 0;
  color: var(--arena-soft);
  font-size: clamp(.9rem, 1.4vw, 1.04rem);
  line-height: 1.7;
}

.gate-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 1px;
  max-width: 620px;
  margin-top: 32px;
  border: 1px solid var(--arena-line);
  background: var(--arena-line);
  font-size: .59rem;
  letter-spacing: .08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.gate-meta div { min-height: 68px; padding: 13px; background: rgba(13, 15, 17, .88); }
.gate-meta span { display: block; margin-top: 5px; color: var(--arena-white); font-size: .72rem; }

.gate-action-row { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 34px; }

.arena-button,
.action-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 52px;
  padding: 14px 15px 14px 20px;
  overflow: hidden;
  border: 1px solid var(--arena-orange);
  color: var(--arena-black);
  background: var(--arena-orange);
  font-family: 'DM Mono', monospace;
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .24s var(--ease-impact), background .24s, box-shadow .24s, border-color .24s;
}

.arena-button::before,
.action-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.32) 48%, transparent 78%);
  transform: translateX(-120%);
  transition: transform .65s var(--ease-arena);
  content: '';
  pointer-events: none;
}

.arena-button:hover,
.action-link:hover { box-shadow: 0 0 28px rgba(255, 106, 0, .26); transform: translateY(-3px); }
.arena-button:hover::before,
.action-link:hover::before { transform: translateX(120%); }
.arena-button:active,
.action-link:active { transform: translateY(1px) scale(.98); }
.arena-button[disabled] { color: rgba(8, 9, 10, .65); border-color: rgba(255, 106, 0, .45); background: rgba(255, 106, 0, .45); cursor: wait; box-shadow: none; }
.button-arrow { position: relative; z-index: 1; display: grid; width: 24px; height: 24px; place-items: center; color: var(--arena-orange); background: var(--arena-black); font-size: 1rem; line-height: 1; transition: transform .25s var(--ease-impact); }
.arena-button:hover .button-arrow,
.action-link:hover .button-arrow { transform: translateX(4px); }
.button-label { position: relative; z-index: 1; }

.gate-visual {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
}

.gate-index {
  position: absolute;
  top: 7%;
  right: 8%;
  color: rgba(244, 243, 239, .07);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-size: clamp(11rem, 24vw, 22rem);
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: .8;
  user-select: none;
}

.arena-orb-stage {
  position: relative;
  display: grid;
  width: min(42vw, 470px);
  min-width: 280px;
  aspect-ratio: 1;
  place-items: center;
  perspective: 900px;
}

.arena-orb-stage::after {
  position: absolute;
  right: 12%;
  bottom: 7%;
  left: 12%;
  height: 11%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .58);
  filter: blur(12px);
  transform: translateY(34%) rotateX(68deg);
  content: '';
  pointer-events: none;
}

.arena-orb {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 177, 96, .52);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 27% 19%, rgba(255, 246, 214, .7) 0 2%, rgba(255, 185, 101, .28) 7%, transparent 18%),
    radial-gradient(circle at 34% 29%, #ffb160 0, #ee5b06 24%, #8b270a 57%, #2e120b 79%, #100b0a 100%);
  box-shadow:
    inset 16px 13px 24px rgba(255, 197, 117, .2),
    inset -31px -39px 52px rgba(0, 0, 0, .7),
    inset 7px -6px 18px rgba(0, 0, 0, .18),
    0 0 60px rgba(255, 106, 0, .16),
    0 0 0 12px rgba(255, 106, 0, .04),
    0 0 0 48px rgba(244, 243, 239, .025);
  transform: rotateZ(-7deg);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform .6s var(--ease-impact), box-shadow .35s;
}

.arena-orb::before,
.arena-orb::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.arena-orb::before {
  z-index: 3;
  border: 1px solid rgba(255, 219, 164, .3);
  background: radial-gradient(ellipse at 28% 20%, rgba(255,255,255,.14), transparent 20% 48%, rgba(0,0,0,.18) 80%, rgba(0,0,0,.36) 100%);
  box-shadow: inset 5px 4px 10px rgba(255, 236, 196, .16), inset -7px -10px 16px rgba(0,0,0,.2);
}

.arena-orb::after {
  z-index: 2;
  background: radial-gradient(ellipse at 33% 26%, transparent 0 28%, rgba(0,0,0,.04) 48%, rgba(0,0,0,.3) 100%);
}

.orb-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.arena-orb.has-canvas .orb-surface { display: none; }

.orb-surface {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  border-radius: 50%;
}

.orb-surface::before,
.orb-surface::after {
  position: absolute;
  border: 3px solid rgba(13, 8, 6, .78);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 177, 96, .08);
  content: '';
}

.orb-surface::before { top: -21%; left: 17%; width: 39%; height: 142%; transform: rotate(-19deg); }
.orb-surface::after { top: 34%; left: -34%; width: 168%; height: 43%; transform: rotate(-7deg); }
.orb-stripe { position: absolute; width: 180%; height: 45%; border: 3px solid rgba(13, 8, 6, .78); border-radius: 50%; box-shadow: 0 0 0 1px rgba(255, 177, 96, .08); }
.orb-stripe-a { top: -18%; left: -39%; transform: rotate(29deg); }
.orb-stripe-b { top: 60%; left: -39%; transform: rotate(29deg); }
.orb-glint { position: absolute; z-index: 2; top: 18%; left: 22%; width: 22%; height: 9%; border-radius: 50%; background: rgba(255,255,255,.24); filter: blur(5px); transform: rotate(-28deg); }
.orb-label { position: absolute; right: -40px; bottom: 11%; z-index: 3; padding: 9px 11px; color: var(--arena-black); background: var(--arena-white); font-family: 'DM Mono', monospace; font-size: .58rem; letter-spacing: .08em; transform: rotate(-8deg); }

.gate-status {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(244, 243, 239, .5);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gate-status::before { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--arena-orange); box-shadow: 0 0 12px var(--arena-orange); content: ''; }
.gate-status.ready::before { background: #9dd3ae; box-shadow: 0 0 12px rgba(157, 211, 174, .7); }

@keyframes gate-light { to { transform: rotate(360deg); } }
@keyframes gate-reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
/* Site chrome and sections */
.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 max(28px, calc((100% - 1220px) / 2));
  border-bottom: 1px solid rgba(244, 243, 239, .1);
  background: rgba(8, 9, 10, .84);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; color: var(--arena-white); text-decoration: none; }
.brand-mark { display: grid; width: 33px; height: 33px; place-items: center; border: 1px solid var(--arena-orange); color: var(--arena-orange); font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.brand-wordmark { font-size: .66rem; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 36px); }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 27px 0; color: var(--arena-muted); font-size: .62rem; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; transition: color .2s; }
.nav-link::after { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--arena-orange); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-impact); content: ''; }
.nav-link::before { width: 5px; height: 5px; border-radius: 50%; background: var(--arena-orange); opacity: 0; transform: translateX(-5px); transition: opacity .2s, transform .2s; content: ''; }
.nav-link:hover, .nav-link.is-active { color: var(--arena-white); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active::before { opacity: 1; transform: translateX(0); }
.header-readout { display: flex; align-items: center; gap: 8px; min-width: max-content; color: var(--arena-muted); font-family: 'DM Mono', monospace; font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
.status-led { width: 6px; height: 6px; border-radius: 50%; background: #9dd3ae; box-shadow: 0 0 10px rgba(157, 211, 174, .7); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--arena-line-bright); color: var(--arena-white); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 5px 0; background: currentColor; transition: transform .2s, opacity .2s; }

.page-section { position: relative; width: min(1220px, calc(100% - 84px)); margin: 0 auto; scroll-margin-top: 100px; }
.hero-section { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(30px, 7vw, 110px); align-items: center; min-height: 100svh; padding-top: 120px; padding-bottom: 70px; }
.hero-section::before { position: absolute; top: 13%; right: -19vw; width: min(62vw, 900px); aspect-ratio: 1; border: 1px solid rgba(255,106,0,.16); border-radius: 50%; content: ''; }
.hero-section::after { position: absolute; top: 0; bottom: 0; left: 53%; width: 1px; background: linear-gradient(transparent, rgba(244,243,239,.12) 25%, rgba(244,243,239,.04) 75%, transparent); content: ''; }
.site-court { inset: 76px 0 0; opacity: .9; }
.site-court::before { top: 35%; right: -6%; width: 40vw; min-width: 400px; aspect-ratio: 1; border-radius: 50%; transform: rotate(-20deg); }
.site-court::after { top: 51%; left: 54%; width: 19vw; min-width: 250px; aspect-ratio: 1; border-color: rgba(255, 106, 0, .16); border-radius: 50%; }
.hero-copy { position: relative; z-index: 1; }
.hero-title { max-width: 760px; margin: 0; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(5.4rem, 13vw, 12rem); font-weight: 800; letter-spacing: -.07em; line-height: .75; text-transform: uppercase; }
.hero-title span { display: block; color: var(--arena-orange); }
.hero-lede { max-width: 535px; margin: 34px 0 0; color: var(--arena-soft); font-size: clamp(.95rem, 1.5vw, 1.08rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.action-link { color: var(--arena-white); border-color: var(--arena-line-bright); background: transparent; }
.action-link:hover { border-color: var(--arena-orange); background: var(--arena-orange); color: var(--arena-black); }
.action-link .button-arrow { color: var(--arena-white); background: var(--arena-orange); }
.action-link:hover .button-arrow { color: var(--arena-orange); background: var(--arena-black); }

.hero-readout { position: relative; z-index: 1; max-width: 430px; margin-left: auto; padding: 20px; border: 1px solid var(--arena-line); background: linear-gradient(145deg, rgba(25,28,32,.92), rgba(10,11,12,.9)); box-shadow: var(--arena-shadow); }
.readout-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--arena-line); color: var(--arena-muted); font-size: .57rem; letter-spacing: .12em; text-transform: uppercase; }
.readout-top span:last-child { color: var(--arena-orange-light); }
.readout-core { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; background: var(--arena-line); }
.readout-cell { min-height: 92px; padding: 16px 14px; background: var(--arena-panel); }
.readout-label { display: block; color: var(--arena-muted); font-size: .55rem; letter-spacing: .08em; line-height: 1.45; text-transform: uppercase; }
.readout-value { display: block; margin-top: 9px; color: var(--arena-white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.55rem; font-weight: 600; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.readout-value.orange { color: var(--arena-orange); }
.readout-note { margin: 18px 0 0; color: var(--arena-muted); font-size: .7rem; line-height: 1.6; }
.hero-orb-wrap { display: flex; justify-content: flex-end; margin-top: 44px; }
.hero-orb-wrap .arena-orb-stage { width: 116px; min-width: 116px; }
.hero-orb-wrap .arena-orb {
  box-shadow:
    inset 7px 6px 11px rgba(255, 197, 117, .2),
    inset -13px -17px 24px rgba(0, 0, 0, .7),
    0 0 30px rgba(255, 106, 0, .15);
}
.hero-orb-wrap .orb-surface::before, .hero-orb-wrap .orb-surface::after, .hero-orb-wrap .orb-stripe { border-width: 1px; }
.hero-orb-wrap .orb-label { right: -70px; bottom: 4%; font-size: .5rem; }
.lower-third { display: flex; align-items: center; gap: 13px; margin-top: 55px; color: var(--arena-muted); font-size: .59rem; letter-spacing: .1em; text-transform: uppercase; }
.lower-third::before { width: 34px; height: 2px; background: var(--arena-orange); content: ''; }

.content-section { padding: 150px 0 125px; border-top: 1px solid var(--arena-line); }
.section-heading { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 28px; align-items: start; margin-bottom: 62px; }
.section-index { color: var(--arena-orange); font-size: .66rem; letter-spacing: .12em; line-height: 1.4; }
.section-index::before { display: block; width: 28px; height: 2px; margin-bottom: 13px; background: var(--arena-orange); content: ''; }
.section-title { max-width: 780px; margin: 0; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(3.2rem, 7.5vw, 7rem); font-weight: 700; letter-spacing: -.055em; line-height: .82; text-transform: uppercase; }
.section-title span { color: var(--arena-orange); }
.section-intro { max-width: 490px; margin: 22px 0 0; color: var(--arena-muted); font-size: .9rem; line-height: 1.75; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.profile-copy { max-width: 535px; color: var(--arena-soft); font-size: 1.08rem; line-height: 1.85; }
.profile-copy strong { color: var(--arena-white); font-weight: 700; }
.readout-list { border-top: 1px solid var(--arena-line-bright); }
.readout-line { display: grid; grid-template-columns: 1fr 1.15fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--arena-line); }
.readout-line dt, .readout-line dd { margin: 0; font-family: 'DM Mono', monospace; font-size: .63rem; line-height: 1.55; text-transform: uppercase; }
.readout-line dt { color: var(--arena-muted); letter-spacing: .08em; }
.readout-line dd { color: var(--arena-white); }
.readout-line dd::before { display: inline-block; width: 5px; height: 5px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--arena-orange); content: ''; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 72px; }
.feature-card,
.work-card { position: relative; overflow: hidden; border: 1px solid var(--arena-line); background: linear-gradient(145deg, var(--arena-panel-2), var(--arena-panel)); box-shadow: 0 16px 40px rgba(0,0,0,.2); transform: perspective(900px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) translateZ(0); transition: transform .35s var(--ease-impact), border-color .3s, box-shadow .3s; will-change: transform; }
.feature-card { min-height: 220px; padding: 22px; }
.feature-card::before, .work-card::before { position: absolute; top: 0; right: 0; width: 42%; height: 1px; background: var(--arena-orange); transform: translateX(100%); transition: transform .4s var(--ease-impact); content: ''; }
.feature-card::after, .work-card::after { position: absolute; right: -34px; bottom: -90px; width: 180px; height: 180px; border: 1px solid rgba(255,106,0,.16); border-radius: 50%; content: ''; transition: transform .5s var(--ease-impact); }
.feature-card:hover, .work-card:hover { border-color: rgba(255,106,0,.68); box-shadow: 0 24px 55px rgba(0,0,0,.38), 0 0 24px rgba(255,106,0,.07); }
.feature-card:hover::before, .work-card:hover::before { transform: translateX(0); }
.feature-card:hover::after, .work-card:hover::after { transform: translate(-18px, -18px); }
.card-kicker { color: var(--arena-orange-light); font-size: .59rem; letter-spacing: .11em; text-transform: uppercase; }
.card-number { margin-top: 37px; color: rgba(244,243,239,.09); font-family: 'Barlow Condensed', sans-serif; font-size: 5rem; font-weight: 800; letter-spacing: -.08em; line-height: .7; }
.feature-card h3, .work-card h3 { position: relative; z-index: 1; margin: 28px 0 10px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.75rem; font-weight: 600; letter-spacing: .02em; line-height: 1; text-transform: uppercase; }
.feature-card p, .work-card p { position: relative; z-index: 1; max-width: 270px; margin: 0; color: var(--arena-muted); font-size: .75rem; line-height: 1.65; }

.work-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 14px; }
.work-card { min-height: 320px; padding: 28px; }
.work-card.featured { display: flex; flex-direction: column; justify-content: space-between; min-height: 390px; background: linear-gradient(140deg, #1d1c19 0%, #111315 62%); }
.work-card.featured::after { width: 360px; height: 360px; right: -120px; bottom: -190px; border-color: rgba(255,106,0,.26); }
.work-card h3 { max-width: 520px; margin-top: auto; font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -.035em; }
.work-card p { max-width: 500px; font-size: .84rem; }
.card-footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--arena-line); }
.card-status { color: var(--arena-muted); font-family: 'DM Mono', monospace; font-size: .57rem; letter-spacing: .1em; text-transform: uppercase; }
.card-status::before { display: inline-block; width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: var(--arena-orange); content: ''; }
.card-link { position: relative; z-index: 1; color: var(--arena-orange-light); font-family: 'DM Mono', monospace; font-size: .6rem; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.card-link:hover { color: var(--arena-white); }
.work-card.secondary { display: flex; flex-direction: column; justify-content: space-between; }
.work-card.secondary h3 { margin-top: auto; font-size: 2.6rem; }

.contact-section { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; min-height: 580px; padding-bottom: 90px; }
.contact-title { max-width: 700px; margin: 0; font-family: 'Barlow Condensed', Impact, sans-serif; font-size: clamp(4.2rem, 10vw, 10rem); font-weight: 700; letter-spacing: -.07em; line-height: .76; text-transform: uppercase; }
.contact-title span { display: block; color: var(--arena-orange); }
.contact-copy { max-width: 360px; color: var(--arena-soft); font-size: .9rem; line-height: 1.75; }
.contact-channel { display: block; margin-top: 27px; color: var(--arena-orange-light); font-family: 'DM Mono', monospace; font-size: .76rem; letter-spacing: .05em; overflow-wrap: anywhere; text-decoration: none; }
.contact-channel:hover { color: var(--arena-white); }
.contact-channel::after { display: inline-block; margin-left: 10px; color: var(--arena-white); content: '↗'; transition: transform .2s; }
.contact-channel:hover::after { transform: translate(3px, -3px); }
.final-court { position: absolute; right: -15%; bottom: -26%; width: 54vw; min-width: 580px; aspect-ratio: 1; border: 1px solid rgba(255,106,0,.18); border-radius: 50%; pointer-events: none; }
.final-court::before { position: absolute; inset: 22%; border: 1px solid rgba(244,243,239,.1); border-radius: 50%; content: ''; }

.site-footer { display: flex; justify-content: space-between; gap: 20px; width: min(1220px, calc(100% - 84px)); margin: 0 auto; padding: 24px 0 32px; border-top: 1px solid var(--arena-line); color: var(--arena-muted); font-size: .65rem; }
.footer-meta { letter-spacing: .07em; text-transform: uppercase; }

/* Reveals, ripples, and cursor */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease-arena), transform .75s var(--ease-arena); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-arena), transform .6s var(--ease-arena); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.ripple { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.44); pointer-events: none; transform: translate(-50%, -50%) scale(0); animation: ripple-out .65s ease-out forwards; }
@keyframes ripple-out { to { opacity: 0; transform: translate(-50%, -50%) scale(18); } }
.cursor-dot, .cursor-ring { position: fixed; z-index: 30; top: 0; left: 0; display: block; pointer-events: none; opacity: 0; transform: translate(-50%, -50%); }
.cursor-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--arena-orange); }
.cursor-ring { width: 28px; height: 28px; border: 1px solid rgba(255,106,0,.75); border-radius: 50%; transition: width .2s, height .2s, background .2s, border-color .2s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring { width: 44px; height: 44px; border-color: var(--arena-orange); background: rgba(255,106,0,.08); }

@media (prefers-reduced-motion: no-preference) {
  .gate-title, .gate-intro, .gate-meta, .gate-action-row, .gate-visual { animation: gate-reveal .75s var(--ease-arena) both; }
  .gate-intro { animation-delay: .1s; }
  .gate-meta { animation-delay: .18s; }
  .gate-action-row { animation-delay: .25s; }
  .gate-visual { animation-delay: .15s; }
  .arena-orb { animation: none; }
  .arena-orb-stage:hover .arena-orb {
    box-shadow:
      inset 16px 13px 24px rgba(255, 197, 117, .2),
      inset -31px -39px 52px rgba(0, 0, 0, .7),
      0 0 82px rgba(255, 106, 0, .3),
      0 0 0 14px rgba(255, 106, 0, .06),
      0 0 0 48px rgba(244, 243, 239, .025);
  }
}

@media (max-width: 900px) {
  .header-readout { display: none; }
  .hero-section { grid-template-columns: 1fr .78fr; gap: 35px; }
  .hero-title { font-size: clamp(5rem, 14vw, 9rem); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: span 2; }
}

@media (max-width: 760px) {
  .gate-inner, .page-section, .site-footer { width: min(100% - 32px, 560px); }
  .gate-inner { padding-top: 20px; padding-bottom: 19px; }
  .gate-frame { inset: 15px; }
  .gate-topbar, .gate-footer { font-size: .55rem; }
  .gate-topbar span:last-child, .gate-footer span:last-child { text-align: right; }
  .gate-content { display: block; padding: 62px 0 34px; }
  .gate-title { font-size: clamp(4.3rem, 21vw, 7.4rem); }
  .gate-intro { margin-top: 24px; font-size: .88rem; }
  .gate-meta { grid-template-columns: 1fr 1fr 1fr; margin-top: 25px; font-size: .5rem; }
  .gate-meta div { min-height: 63px; padding: 10px 9px; }
  .gate-meta span { font-size: .62rem; }
  .gate-action-row { margin-top: 26px; }
  .gate-visual { min-height: 300px; margin-top: 14px; }
  .arena-orb-stage { width: 270px; min-width: 270px; }
  .gate-index { top: 4%; font-size: 12rem; }
  .orb-label { right: -30px; }
  .site-header { height: 66px; padding: 0 16px; }
  .brand-wordmark { font-size: .58rem; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 66px; right: 16px; left: 16px; display: grid; gap: 0; padding: 9px 14px; border: 1px solid var(--arena-line-bright); background: rgba(13,15,17,.98); box-shadow: var(--arena-shadow); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .22s, transform .22s; }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-link { padding: 15px 2px; border-bottom: 1px solid var(--arena-line); }
  .nav-link:last-child { border-bottom: 0; }
  .hero-section { display: block; min-height: auto; padding-top: 134px; padding-bottom: 100px; }
  .hero-section::after { left: 70%; }
  .hero-title { font-size: clamp(5.2rem, 24vw, 8.6rem); }
  .hero-lede { margin-top: 25px; font-size: .9rem; }
  .hero-readout { max-width: 100%; margin: 56px 0 0; }
  .hero-orb-wrap { display: none; }
  .lower-third { margin-top: 45px; }
  .content-section { padding: 105px 0 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }
  .section-index { order: -1; }
  .section-title { font-size: clamp(3.6rem, 18vw, 6rem); }
  .profile-grid, .work-grid, .contact-section { display: block; }
  .profile-copy { font-size: .98rem; }
  .readout-list { margin-top: 43px; }
  .feature-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 52px; }
  .feature-card { min-height: 185px; }
  .feature-card:last-child { grid-column: auto; }
  .work-card, .work-card.featured { min-height: 310px; }
  .work-card.secondary { margin-top: 11px; }
  .contact-section { min-height: 0; padding-bottom: 75px; }
  .contact-title { font-size: clamp(4.5rem, 24vw, 8rem); }
  .contact-copy { margin-top: 48px; }
  .final-court { right: -60%; bottom: -18%; min-width: 500px; }
  .site-footer { display: block; padding-top: 20px; line-height: 1.8; }
  .site-footer span { display: block; }
}

@media (max-width: 420px) {
  .gate-content { padding-top: 48px; }
  .gate-title { font-size: 4.2rem; }
  .gate-meta { font-size: .45rem; }
  .gate-meta span { font-size: .56rem; }
  .gate-visual { min-height: 245px; }
  .arena-orb-stage { width: 205px; min-width: 205px; }
  .hero-title { font-size: 5rem; }
  .readout-core { grid-template-columns: 1fr 1fr; }
  .readout-cell { min-height: 82px; padding: 13px 10px; }
  .readout-value { font-size: 1.32rem; }
  .arena-button, .action-link { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none; }
}
