:root {
  --ink: #162f43;
  --ink-2: #234b64;
  --ink-soft: #567186;
  --paper: #f5f1e9;
  --paper-2: #ece5d9;
  --paper-3: #dfd5c5;
  --coral: #e6602c;
  --coral-2: #f17b4b;
  --sky: #6bb5d3;
  --teal: #65c7b5;
  --teal-deep: #173b42;
  --violet: #8f7ee8;
  --violet-deep: #26243e;
  --line: #d4cab9;
  --f-display: 'Bebas Neue', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --f-mono: 'DM Mono', monospace;
  --nav-h: 76px;
  --container-w: 1180px;
  --container-pad: 24px;
  --max-w: 1180px;
  --f-d: var(--f-display);
  --f-b: var(--f-body);
  --f-m: var(--f-mono);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--coral); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max-w), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 10000;
  padding: 12px 18px;
  background: var(--coral);
  color: #fff;
  font-family: var(--f-mono);
  font-size: 12px;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--teal); }
.section-heading {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .9;
  text-transform: uppercase;
}
.section-intro {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: #fff; }
.button-primary:hover { background: var(--coral-2); }
.button-outline { border-color: rgba(245,241,233,.35); color: var(--paper); }
.button-outline:hover { background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: #fff; }
.button-ghost { border-color: var(--line); color: var(--ink); }
.button-ghost:hover { border-color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Studio home */
.studio-hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  padding: calc(var(--nav-h) + 86px) 0 58px;
  background:
    radial-gradient(circle at 82% 16%, rgba(107,181,211,.2), transparent 28%),
    linear-gradient(145deg, #142c3e 0%, #1b4058 58%, #173440 100%);
  color: var(--paper);
}
.studio-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: '';
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}
.studio-hero::after {
  position: absolute;
  right: -180px;
  bottom: -340px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(101,199,181,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(101,199,181,.035), 0 0 0 180px rgba(101,199,181,.025);
  content: '';
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  align-items: end;
  gap: 72px;
}
.hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(80px, 10vw, 148px);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: .78;
  text-transform: uppercase;
}
.hero-copy h1 .hero-accent { color: var(--teal); }
.hero-lede {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(245,241,233,.74);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}
.build-index {
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.build-index-label {
  margin: 0;
  padding: 14px 0 12px;
  color: rgba(245,241,233,.45);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.build-index a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--paper);
  text-decoration: none;
}
.build-index a:hover .build-name { color: var(--teal); }
.build-number, .build-arrow {
  color: rgba(245,241,233,.45);
  font-family: var(--f-mono);
  font-size: 11px;
}
.build-name {
  font-family: var(--f-display);
  font-size: 27px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.hero-proof {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - var(--max-w)) / 2));
  bottom: 22px;
  color: rgba(245,241,233,.42);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.discipline-section { padding: 118px 0 132px; }
.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.section-head-row .section-intro { max-width: 460px; margin: 0; }
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.discipline-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.discipline-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(22,47,67,.14); }
.discipline-card.web-card { grid-column: span 7; background: #eadfce; }
.discipline-card.game-card { grid-column: span 5; background: var(--violet-deep); color: #f4efff; }
.discipline-card.intelligence-card {
  grid-column: span 12;
  min-height: 460px;
  background: var(--teal-deep);
  color: #eef8f5;
}
.card-copy { position: relative; z-index: 3; padding: 34px; }
.web-card .card-copy { max-width: 58%; }
.web-card .card-copy p { max-width: 360px; opacity: .9; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .65;
}
.discipline-card h3 {
  max-width: 570px;
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .88;
  text-transform: uppercase;
}
.discipline-card p {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
  opacity: .75;
}
.card-action {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 28px;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--f-mono);
  opacity: .72;
}
.web-visual {
  position: absolute;
  z-index: 1;
  right: -12%;
  bottom: -14%;
  width: 58%;
  padding: 8px;
  background: #fff;
  box-shadow: 0 28px 60px rgba(22,47,67,.2);
  transform: rotate(-4deg);
}
.web-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }
.client-preview { overflow: hidden; aspect-ratio: 4 / 3; background: linear-gradient(145deg, #12263a, #234f67); color: #f5f1e9; }
.client-preview-bar { display: flex; align-items: center; gap: 5px; height: 30px; padding: 0 12px; background: #f5f1e9; color: #6b8499; font-family: var(--f-mono); font-size: 8px; letter-spacing: .08em; }
.client-preview-bar i { width: 6px; height: 6px; border-radius: 50%; background: #e6602c; }
.client-preview-bar i:nth-child(2) { background: #e9b44c; }
.client-preview-bar i:nth-child(3) { background: #65c7b5; }
.client-preview-bar span { margin-left: 8px; white-space: nowrap; }
.client-preview-content { position: relative; height: calc(100% - 30px); padding: 28px 24px; }
.client-preview-content::after { position: absolute; right: -22%; bottom: -48%; width: 230px; height: 230px; border: 1px solid rgba(101,199,181,.4); border-radius: 50%; content: ''; box-shadow: 0 0 0 32px rgba(101,199,181,.06); }
.client-preview-content small { display: block; color: #65c7b5; font-family: var(--f-mono); font-size: 8px; letter-spacing: .16em; }
.client-preview-content strong { display: block; margin-top: 18px; font-family: var(--f-display); font-size: clamp(30px, 4vw, 48px); font-weight: 400; letter-spacing: .02em; line-height: .9; }
.client-preview-content span { display: block; margin-top: 12px; color: rgba(245,241,233,.7); font-family: var(--f-body); font-size: 11px; }
.client-preview-content b { display: inline-block; margin-top: 18px; padding: 8px 12px; background: #e6602c; color: #fff; font-family: var(--f-mono); font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.game-screen {
  position: absolute;
  right: -64px;
  bottom: -80px;
  width: 360px;
  height: 330px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 52% 44%, rgba(143,126,232,.34), transparent 27%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  transform: rotate(7deg);
}
.game-screen::before, .game-screen::after {
  position: absolute;
  border: 1px solid rgba(193,180,255,.55);
  border-radius: 50%;
  content: '';
}
.game-screen::before { inset: 66px; }
.game-screen::after { inset: 105px; background: rgba(143,126,232,.15); }
.game-pixel {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 26px;
  height: 26px;
  background: #c9bdff;
  box-shadow: -28px 0 #7666ca, 28px 0 #7666ca, 0 -28px #f17b4b;
  transform: translate(-50%, -50%) rotate(45deg);
}
.intelligence-card .card-copy { width: 50%; }
.agent-preview {
  position: absolute;
  top: 34px;
  right: 34px;
  bottom: 34px;
  width: 44%;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,29,34,.42);
}
.agent-preview-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(238,248,245,.5);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.agent-signal {
  display: grid;
  grid-template-columns: 36px 1fr 62px;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.agent-signal strong { color: var(--teal); font-family: var(--f-mono); font-size: 18px; }
.agent-signal span { font-size: 13px; }
.agent-signal em { color: rgba(238,248,245,.5); font-family: var(--f-mono); font-size: 9px; font-style: normal; text-align: right; }
.featured-system { padding: 0 0 132px; }
.system-panel {
  position: relative;
  overflow: hidden;
  padding: 74px;
  background: var(--ink);
  color: var(--paper);
}
.system-panel::after {
  position: absolute;
  right: -150px;
  top: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(107,181,211,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(107,181,211,.035), 0 0 0 140px rgba(107,181,211,.025);
  content: '';
}
.system-panel h2 { max-width: 850px; position: relative; z-index: 1; }
.system-panel .section-intro { position: relative; z-index: 1; color: rgba(245,241,233,.68); }
.system-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border: 1px solid rgba(255,255,255,.14);
}
.flow-step { min-height: 154px; padding: 22px; border-right: 1px solid rgba(255,255,255,.14); }
.flow-step:last-child { border-right: 0; }
.flow-step small { display: block; color: var(--teal); font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.flow-step strong { display: block; margin-top: 23px; font-family: var(--f-display); font-size: 30px; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; }
.flow-step p { margin: 7px 0 0; color: rgba(245,241,233,.5); font-size: 13px; line-height: 1.5; }
.studio-note { padding: 0 0 130px; }
.note-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.note-grid h2 { margin: 0; font-family: var(--f-display); font-size: clamp(48px, 6vw, 78px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.note-copy p { margin: 0; color: var(--ink-soft); font-size: 20px; line-height: 1.7; }
.note-copy p + p { margin-top: 18px; }

/* Shared subpages */
.page-hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding: calc(var(--nav-h) + 96px) 0 86px;
  color: var(--paper);
}
.page-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: '';
}
.ai-page .page-hero { background: radial-gradient(circle at 82% 26%, rgba(101,199,181,.2), transparent 30%), #102f36; }
.game-page .page-hero { background: radial-gradient(circle at 82% 26%, rgba(143,126,232,.3), transparent 31%), #222139; }
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 72px;
}
.page-hero h1 {
  max-width: 830px;
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(78px, 10vw, 138px);
  font-weight: 400;
  line-height: .8;
  text-transform: uppercase;
}
.page-hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(245,241,233,.72);
  font-size: 20px;
  line-height: 1.65;
}
.hero-side-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.12);
}
.hero-side-card small { color: rgba(245,241,233,.48); font-family: var(--f-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.hero-side-card strong { display: block; margin-top: 32px; font-family: var(--f-display); font-size: 44px; font-weight: 400; line-height: .95; text-transform: uppercase; }
.hero-side-card p { margin: 12px 0 0; color: rgba(245,241,233,.58); font-size: 14px; line-height: 1.55; }
.content-section { padding: 112px 0; }
.content-section.alt { background: var(--paper-2); }
.content-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; }
.content-grid h2 { margin: 0; font-family: var(--f-display); font-size: clamp(54px, 7vw, 90px); font-weight: 400; line-height: .88; text-transform: uppercase; }
.prose p { margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.75; }
.prose p + p { margin-top: 20px; }
.workflow-diagram { margin-top: 64px; }
.workflow-heading { display: grid; grid-template-columns: 1fr .82fr; gap: 64px; align-items: end; }
.workflow-kicker { margin: 0 0 18px; color: var(--coral); font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.workflow-heading h3 { max-width: 680px; margin: 0; font-family: var(--f-display); font-size: clamp(52px, 6vw, 84px); font-weight: 400; line-height: .87; text-transform: uppercase; }
.workflow-heading > p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.workflow-canvas { position: relative; min-height: 900px; margin-top: 44px; overflow: hidden; border: 1px solid rgba(114,153,166,.38); border-radius: 24px; background: radial-gradient(circle at 82% 18%, rgba(77,130,159,.24), transparent 33%), radial-gradient(circle at 12% 76%, rgba(112,72,154,.2), transparent 32%), #07151b; box-shadow: 0 28px 80px rgba(9,27,37,.2); }
.workflow-canvas::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 38px 38px; content: ''; opacity: .7; }
.workflow-lines { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.workflow-lines path { fill: none; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.workflow-track { stroke: rgba(104,227,193,.82); stroke-width: 2; filter: drop-shadow(0 0 5px rgba(104,227,193,.65)); }
.workflow-loop { stroke: rgba(170,142,255,.88); stroke-width: 2; stroke-dasharray: 9 13; filter: drop-shadow(0 0 5px rgba(170,142,255,.62)); }
.workflow-lines marker path { fill: #68e3c1; stroke: none; }
.workflow-spark { fill: #68e3c1; filter: drop-shadow(0 0 7px rgba(104,227,193,.9)); }
.workflow-group { position: absolute; z-index: 1; padding: 22px; border: 1px solid rgba(126,166,179,.55); border-radius: 18px; background: rgba(8,24,31,.62); }
.workflow-sources { top: 24px; right: 28px; left: 28px; height: 182px; }
.workflow-core { top: 224px; right: 28px; left: 28px; height: 316px; border-color: rgba(114,157,219,.85); background: rgba(7,25,36,.8); box-shadow: inset 0 0 44px rgba(58,117,168,.1), 0 0 28px rgba(43,104,158,.1); }
.workflow-bottom-grid { position: absolute; z-index: 1; top: 584px; right: 28px; left: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.workflow-people { position: relative; inset: auto; min-height: 270px; border-color: rgba(83,215,141,.76); background: rgba(7,32,29,.68); }
.workflow-results { position: relative; inset: auto; min-height: 270px; border-color: rgba(83,215,141,.76); background: rgba(7,32,29,.68); }
.workflow-group-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #9baeb3; font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.workflow-group-head span { color: #68e3c1; }
.workflow-group-head strong { color: #f3f2e9; font-size: 12px; font-weight: 500; }
.workflow-group-note { position: relative; z-index: 1; margin: 12px 0 18px; color: rgba(220,231,228,.58); font-size: 13px; line-height: 1.5; }
.workflow-source-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.workflow-core-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 46px 0; }
.workflow-bottom-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.workflow-node { min-width: 0; padding: 15px; border: 1px solid rgba(104,157,180,.66); border-radius: 10px; background: rgba(11,34,44,.86); transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.workflow-node:hover { border-color: #68e3c1; box-shadow: 0 0 24px rgba(104,227,193,.16); transform: translateY(-4px); }
.workflow-source-node { min-height: 94px; display: flex; align-items: center; gap: 12px; border-color: rgba(70,215,157,.68); background: rgba(8,43,38,.78); }
.workflow-core-node { min-height: 145px; border-color: rgba(106,166,232,.72); background: rgba(15,42,57,.9); }
.workflow-bottom-node { min-height: 145px; display: flex; align-items: flex-start; gap: 12px; border-color: rgba(163,112,232,.74); background: rgba(37,24,53,.84); }
.workflow-bottom-node:last-child { border-color: rgba(70,215,157,.68); background: rgba(8,43,38,.78); }
.workflow-node svg { flex: 0 0 42px; width: 42px; height: 42px; fill: none; stroke: #9ed8ea; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.workflow-source-node svg, .workflow-bottom-node:last-child svg { stroke: #68e3c1; }
.workflow-bottom-node svg { stroke: #c0a6ff; }
.workflow-node h4 { margin: 9px 0 0; color: #f4f2ea; font-family: var(--f-display); font-size: clamp(24px, 2.2vw, 34px); font-weight: 400; line-height: .92; text-transform: uppercase; }
.workflow-source-node h4 { margin: 0; font-size: clamp(22px, 2vw, 29px); }
.workflow-node small { display: block; color: #68e3c1; font-family: var(--f-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.workflow-node p { margin: 8px 0 0; color: rgba(220,231,228,.65); font-size: 12px; line-height: 1.48; }
.workflow-loop-note { position: relative; z-index: 1; max-width: 420px; margin: 26px auto 0; color: rgba(192,166,255,.76); font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em; text-align: center; }
.workflow-caption { max-width: 620px; margin: 24px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.intelligence-scope { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 32px; background: var(--line); border: 1px solid var(--line); }
.intelligence-scope div { min-height: 120px; padding: 22px 24px; background: var(--paper-2); }
.intelligence-scope strong { display: block; color: var(--ink); font-family: var(--f-display); font-size: 42px; font-weight: 400; line-height: .95; }
.intelligence-scope span { display: block; margin-top: 12px; color: var(--ink-soft); font-family: var(--f-mono); font-size: 10px; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.live-product { background: #0e262b; color: var(--paper); }
.live-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.live-head .section-intro { color: rgba(245,241,233,.62); }
.product-frame { overflow: hidden; border: 1px solid rgba(255,255,255,.16); background: #fff; box-shadow: 0 34px 90px rgba(0,0,0,.32); }
.product-frame-top { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; background: #dfe8e6; }
.product-frame-top i { display: block; width: 7px; height: 7px; border-radius: 50%; background: #8ca09b; }
.product-frame iframe { display: block; width: 100%; height: min(680px, 66vw); min-height: 430px; border: 0; background: #15262f; }
.guardrail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.guardrail { padding: 30px; border-top: 3px solid var(--teal); background: rgba(255,255,255,.055); }
.guardrail h3 { margin: 0; font-family: var(--f-display); font-size: 32px; font-weight: 400; text-transform: uppercase; }
.guardrail p { margin: 12px 0 0; color: rgba(245,241,233,.58); font-size: 14px; line-height: 1.6; }
.coming-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 54px;
  border: 1px solid var(--line);
  background: #292642;
  color: #f5f1ff;
}
.coming-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  content: '';
}
.coming-card-content { position: relative; z-index: 1; max-width: 690px; }
.coming-card h2 { margin: 0; font-family: var(--f-display); font-size: clamp(62px, 8vw, 104px); font-weight: 400; line-height: .86; text-transform: uppercase; }
.coming-card p { max-width: 600px; margin: 24px 0 0; color: rgba(245,241,255,.62); font-size: 18px; line-height: 1.65; }
.build-pill { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.build-pill::before { width: 7px; height: 7px; border-radius: 50%; background: #a497f2; content: ''; box-shadow: 0 0 16px #a497f2; }
.live-game-card { min-height: 520px; }
.live-game-card .coming-card-content { max-width: 600px; }
.geo-hunt-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(193,180,255,.55);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(143,126,232,.22), transparent 42%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  transform: translateY(-50%);
}
.geo-hunt-visual::before, .geo-hunt-visual::after { position: absolute; inset: 28px; border: 1px solid rgba(193,180,255,.34); border-radius: 50%; content: ''; }
.geo-hunt-visual::after { inset: 50%; width: 1px; height: 72%; border: 0; border-left: 1px solid rgba(193,180,255,.32); border-radius: 0; transform: translate(-50%, -50%); }
.geo-hunt-dot { position: absolute; top: 30%; left: 64%; width: 18px; height: 18px; border: 4px solid #292642; border-radius: 50%; background: #f17b4b; box-shadow: 0 0 0 10px rgba(241,123,75,.16), 0 0 28px rgba(241,123,75,.9); }
.release-contract { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.release-contract article { min-height: 220px; padding: 30px; border: 1px solid var(--line); }
.release-contract small { color: var(--coral); font-family: var(--f-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.release-contract h3 { margin: 36px 0 0; font-family: var(--f-display); font-size: 34px; font-weight: 400; text-transform: uppercase; }
.release-contract p { margin: 10px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.page-cta { padding: 90px 0; background: var(--coral); color: #fff; }
.page-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.page-cta h2 { max-width: 760px; margin: 0; font-family: var(--f-display); font-size: clamp(52px, 7vw, 88px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.page-cta .button { border-color: rgba(255,255,255,.45); color: #fff; flex: 0 0 auto; }

@media (max-width: 1023px) {
  :root { --nav-h: 68px; --container-pad: 22px; }
  .hero-grid, .page-hero-grid, .content-grid, .note-grid { grid-template-columns: 1fr; }
  .studio-hero { min-height: auto; padding-top: calc(var(--nav-h) + 74px); }
  .hero-grid { align-items: start; gap: 58px; }
  .hero-copy h1 { font-size: clamp(78px, 14vw, 120px); }
  .build-index { max-width: 560px; }
  .hero-proof { display: none; }
  .discipline-card.web-card, .discipline-card.game-card { grid-column: span 6; }
  .discipline-card.intelligence-card { min-height: 640px; }
  .intelligence-card .card-copy { width: 100%; }
  .agent-preview { top: auto; left: 34px; right: 34px; bottom: 34px; width: auto; height: 260px; }
  .system-panel { padding: 56px 42px; }
  .system-flow { grid-template-columns: repeat(2, 1fr); }
  .flow-step:nth-child(2) { border-right: 0; }
  .flow-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .workflow-heading { grid-template-columns: 1fr; gap: 24px; }
  .workflow-core-grid { margin-right: 20px; margin-left: 20px; }
  .page-hero { min-height: 0; }
  .page-hero-grid { gap: 50px; }
  .hero-side-card { max-width: 560px; }
  .guardrail-grid, .release-contract { grid-template-columns: 1fr; }
  .intelligence-scope { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --nav-h: 60px; --container-pad: 16px; }
  .container { width: min(100% - 32px, var(--max-w)); }
  .studio-hero { padding: calc(var(--nav-h) + 54px) 0 46px; }
  .hero-copy h1 { font-size: clamp(66px, 21vw, 96px); }
  .hero-lede { margin-top: 24px; font-size: 17px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .build-index { margin-top: 8px; }
  .discipline-section, .content-section { padding: 82px 0; }
  .section-head-row, .live-head { display: block; margin-bottom: 34px; }
  .section-head-row .section-intro, .live-head .section-intro { margin-top: 18px; }
  .discipline-grid { display: block; }
  .discipline-card { display: block; min-height: 470px; margin-bottom: 16px; }
  .discipline-card.intelligence-card { min-height: 650px; }
  .card-copy { padding: 26px; }
  .discipline-card h3 { font-size: 58px; }
  .web-visual { right: -14%; width: 88%; }
  .web-card .card-copy { max-width: 78%; }
  .game-screen { right: -115px; }
  .geo-hunt-visual { right: -92px; width: 280px; height: 280px; }
  .agent-preview { left: 24px; right: 24px; bottom: 24px; height: 290px; }
  .agent-signal { grid-template-columns: 30px 1fr; }
  .agent-signal em { display: none; }
  .featured-system { padding-bottom: 82px; }
  .system-panel { padding: 42px 24px; }
  .system-flow { grid-template-columns: 1fr; }
  .flow-step, .flow-step:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .flow-step:last-child { border-bottom: 0; }
  .workflow-diagram { margin-top: 48px; }
  .workflow-heading h3 { font-size: clamp(50px, 15vw, 72px); }
  .workflow-heading > p { font-size: 17px; }
  .workflow-canvas { display: grid; min-height: 0; gap: 18px; padding: 16px; overflow: visible; }
  .workflow-canvas::before { border-radius: 18px; }
  .workflow-lines { display: none; }
  .workflow-group, .workflow-bottom-grid, .workflow-people, .workflow-results { position: relative; inset: auto; top: auto; right: auto; bottom: auto; left: auto; min-height: 0; height: auto; }
  .workflow-sources, .workflow-core, .workflow-people, .workflow-results { padding: 18px; }
  .workflow-source-grid, .workflow-core-grid, .workflow-bottom-cards { grid-template-columns: 1fr; margin-right: 0; margin-left: 0; }
  .workflow-bottom-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .workflow-source-node, .workflow-core-node, .workflow-bottom-node { min-height: 0; }
  .workflow-source-node { align-items: flex-start; }
  .workflow-group + .workflow-group { margin-top: 0; }
  .workflow-group:not(:last-child)::after { position: absolute; right: 50%; bottom: -19px; width: 1px; height: 18px; background: #68e3c1; box-shadow: 0 0 8px rgba(104,227,193,.8); content: ''; transform: translateX(50%); }
  .workflow-bottom-grid::before { position: absolute; top: -19px; right: 50%; width: 1px; height: 18px; background: #68e3c1; box-shadow: 0 0 8px rgba(104,227,193,.8); content: ''; transform: translateX(50%); }
  .studio-note { padding-bottom: 82px; }
  .note-grid { gap: 30px; }
  .note-copy p { font-size: 17px; }
  .page-hero { padding: calc(var(--nav-h) + 62px) 0 66px; }
  .page-hero h1 { font-size: clamp(70px, 20vw, 96px); }
  .page-hero-copy p { font-size: 17px; }
  .content-grid { gap: 32px; }
  .architecture-card { min-height: 190px; }
  .architecture-card h3 { margin-top: 30px; }
  .intelligence-scope { grid-template-columns: 1fr; }
  .product-frame iframe { min-height: 540px; height: 105vw; }
  .coming-card { min-height: 500px; padding: 34px 24px; }
  .page-cta .container { display: block; }
  .page-cta .button { margin-top: 28px; width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy, .build-index, .discipline-card { animation: rise-in .75s both; }
  .build-index { animation-delay: .12s; }
  .discipline-card:nth-child(2) { animation-delay: .08s; }
  .discipline-card:nth-child(3) { animation-delay: .16s; }
  .workflow-group { animation: workflow-group-rise .75s both; }
  .workflow-sources { animation-delay: .05s; }
  .workflow-core { animation-delay: .16s; }
  .workflow-bottom-grid { animation: workflow-group-rise .75s .28s both; }
  .workflow-source-node, .workflow-core-node, .workflow-bottom-node { animation: workflow-node-rise .55s both; }
  .workflow-source-node:nth-child(2), .workflow-core-node:nth-child(2), .workflow-bottom-node:nth-child(2) { animation-delay: .12s; }
  .workflow-source-node:nth-child(3), .workflow-core-node:nth-child(3) { animation-delay: .24s; }
  .workflow-track { stroke-dasharray: 12 18; animation: workflow-flow 3.2s linear infinite; }
  .workflow-loop { animation: workflow-flow 4.5s linear infinite reverse; }
  .workflow-spark { animation: workflow-spark 1.8s ease-in-out infinite; }
  @keyframes rise-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes workflow-group-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes workflow-node-rise { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes workflow-flow { to { stroke-dashoffset: -90; } }
  @keyframes workflow-spark { 0%, 100% { opacity: .35; r: 4; } 50% { opacity: 1; r: 7; } }
}

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