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

:root {
  --ink: #08090a;
  --carbon: #0d0f10;
  --carbon-2: #121517;
  --graphite: #191d20;
  --gunmetal: #252b2f;
  --steel: #3b4247;
  --silver: #b7bec2;
  --mist: #d9dcdd;
  --white: #f4f2ed;
  --orange: #e86f25;
  --amber: #ff9b52;
  --orange-dark: #8d3613;
  --line: rgba(183, 190, 194, 0.18);
  --display: 'Barlow Condensed', sans-serif;
  --body: 'Manrope', sans-serif;
  --mono: 'DM Mono', monospace;
  --wrap: min(1240px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); line-height: 0.94; text-transform: uppercase; }
h1 { font-size: clamp(4.7rem, 10vw, 9.5rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(3.2rem, 7vw, 6.4rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(1.65rem, 2.8vw, 2.35rem); letter-spacing: -0.02em; }
::selection { color: var(--ink); background: var(--orange); }

.wrap { width: var(--wrap); margin-inline: auto; }
.mono { font-family: var(--mono); }
.accent { color: var(--orange); }
.muted { color: var(--silver); }
.section { position: relative; padding: 132px 0; overflow: hidden; }
.section--tight { padding: 88px 0; }
.section--graphite { background: var(--carbon-2); }
.section--orange { background: var(--orange); color: var(--ink); }
.section--orange .eyebrow { color: var(--ink); }
.section--orange .eyebrow::before { background: var(--ink); }
.section::after {
  content: '';
  position: absolute;
  top: 0;
  left: max(32px, calc((100vw - 1240px) / 2));
  right: max(32px, calc((100vw - 1240px) / 2));
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--orange); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.65fr); gap: 72px; align-items: end; margin-bottom: 72px; }
.section-intro p { color: var(--silver); font-size: 1.02rem; max-width: 540px; }
.kicker { display: block; margin-bottom: 14px; color: var(--orange); font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(8, 9, 10, 0.78);
  backdrop-filter: blur(18px);
}
.nav { width: var(--wrap); min-height: 76px; margin-inline: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.5rem; font-weight: 800; letter-spacing: 0.05em; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.navlinks { justify-self: end; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.navlinks a { position: relative; color: var(--silver); font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.09em; text-transform: uppercase; transition: color .25s ease; }
.navlinks a:hover, .navlinks a.active { color: var(--white); }
.navlinks a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -12px; height: 2px; background: var(--orange); }
.nav-cta { display: inline-flex; align-items: center; min-height: 42px; padding: 0 18px; border: 1px solid var(--orange); color: var(--orange); font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.09em; text-transform: uppercase; transition: background .25s, color .25s; }
.nav-cta:hover { background: var(--orange); color: var(--ink); }
.navtoggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.navtoggle span, .navtoggle::before, .navtoggle::after { content: ''; display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .25s, opacity .25s; }
.navtoggle.is-open span { opacity: 0; }
.navtoggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.navtoggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 54px; padding: 0 22px; border: 1px solid var(--line); font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: transform .25s, border-color .25s, background .25s, color .25s; }
.btn::after { content: '↗'; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); border-color: var(--orange); }
.btn--solid { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.btn--solid:hover { background: var(--amber); border-color: var(--amber); }

/* Hero */
.hero { min-height: 100svh; padding: 132px 0 58px; display: flex; align-items: end; position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 76px 0 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; filter: contrast(1.05) saturate(.92) brightness(.8); transform: scale(1.02); animation: hero-settle 1.5s cubic-bezier(.2,.7,.2,1) both; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.98) 0%, rgba(8,9,10,.76) 34%, rgba(8,9,10,.08) 72%), linear-gradient(0deg, rgba(8,9,10,.96) 0%, transparent 42%), linear-gradient(180deg, rgba(8,9,10,.32), transparent 28%); }
.hero-grid { position: absolute; inset: 76px 0 0; opacity: .22; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 48%); }
.hero-copy { position: relative; z-index: 2; max-width: 850px; }
.hero-copy h1 span { display: block; }
.hero-copy h1 .stroke { color: transparent; -webkit-text-stroke: 1px rgba(244,242,237,.72); }
.hero-copy .lede { max-width: 600px; margin: 28px 0 36px; color: var(--mist); font-size: clamp(1rem, 1.8vw, 1.14rem); }
.hero-spec { position: absolute; z-index: 3; right: max(32px, calc((100vw - 1240px) / 2)); bottom: 62px; display: grid; gap: 8px; color: var(--silver); font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.hero-spec strong { color: var(--orange); font-weight: 500; }
.hero-line { position: absolute; z-index: 2; left: 0; bottom: 0; height: 3px; width: 38%; background: var(--orange); box-shadow: 0 0 24px rgba(232,111,37,.7); animation: line-in 1.3s .35s both; transform-origin: left; }

/* Marquee */
.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--carbon); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 17px 0; animation: ticker 28s linear infinite; }
.signal-track span { color: var(--silver); font-family: var(--mono); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.signal-track b { color: var(--orange); font-size: .72rem; }

/* Vision */
.vision-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 28px; align-items: stretch; }
.vision-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 42px; border: 1px solid var(--line); background: var(--carbon); }
.vision-copy p { color: var(--silver); }
.architecture-frame { min-height: 620px; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--carbon); }
.architecture-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .7s; }
.architecture-frame:hover img { transform: scale(1.025); filter: contrast(1.06); }
.architecture-frame::after { content: ''; position: absolute; inset: 0; border: 14px solid rgba(8,9,10,.28); pointer-events: none; }
.frame-label { position: absolute; z-index: 2; inset: auto 24px 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--white); font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.frame-label span:last-child { color: var(--orange); }

/* Product */
.product-showcase {
  min-height: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--carbon);
}
.product-showcase img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.04) saturate(.96);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.product-showcase:hover img { transform: scale(1.015); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: 0; border: 1px solid var(--line); background: var(--carbon); }
.product-stage { min-height: 720px; position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(232,111,37,.19), transparent 24%), linear-gradient(135deg, #15191b, #090a0b 70%); }
.product-stage::before { content: ''; position: absolute; width: 68%; aspect-ratio: 1; border: 1px solid rgba(232,111,37,.35); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.018), 0 0 0 84px rgba(255,255,255,.012); }
.product-stage img { position: relative; z-index: 2; width: min(82%, 700px); mix-blend-mode: screen; filter: contrast(1.16) saturate(.92); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.product-stage:hover img { transform: scale(1.035) rotate(-1deg); }
.product-data { padding: 54px 46px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--line); }
.product-data > p { color: var(--silver); }
.spec-list { margin: 34px 0 38px; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.spec-row span:first-child { color: var(--orange); font-family: var(--mono); font-size: .65rem; }
.spec-row strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: 1.25rem; line-height: 1; text-transform: uppercase; }
.spec-row small { color: var(--silver); font-size: .78rem; }

/* Performance */
.performance-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.metric { min-height: 210px; padding: 30px; background: var(--carbon); display: flex; flex-direction: column; justify-content: space-between; transition: background .3s, color .3s; }
.metric:nth-child(1), .metric:nth-child(4) { grid-column: span 5; }
.metric:nth-child(2), .metric:nth-child(3) { grid-column: span 7; }
.metric:hover { background: var(--orange); color: var(--ink); }
.metric:hover .metric-number, .metric:hover p { color: var(--ink); }
.metric-number { color: var(--orange); font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; }
.metric p { max-width: 330px; margin: 12px 0 0; color: var(--silver); font-size: .86rem; }

/* The Game / How it works */
.game-band { background: var(--carbon); }
.game-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(120% 95% at 84% 0%, black, transparent 72%);
}
.game-band > .wrap { position: relative; z-index: 2; }
.band-label { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.band-label .kicker { margin-bottom: 0; }
.band-note { color: var(--silver); font-family: var(--mono); font-size: .63rem; letter-spacing: .11em; text-transform: uppercase; }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.role { min-height: 268px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 26px; background: var(--carbon); transition: background .3s ease; }
.role:hover { background: var(--graphite); }
.role-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(232,111,37,.38); color: var(--orange); transition: background .3s, color .3s, border-color .3s; }
.role-icon svg { width: 24px; height: 24px; }
.role:hover .role-icon { border-color: var(--orange); background: var(--orange); color: var(--ink); }
.role-index { display: block; margin-bottom: 10px; color: var(--orange); font-family: var(--mono); font-size: .65rem; letter-spacing: .12em; }
.role h3 { font-size: clamp(1.45rem, 2.2vw, 1.95rem); }
.role p { margin: 12px 0 0; color: var(--silver); font-size: .86rem; }
.orb-teaser { margin: 28px 0 0; display: grid; grid-template-columns: minmax(240px, .52fr) minmax(0, 1fr); border: 1px solid var(--line); background: var(--carbon); }
.orb-stage { position: relative; min-height: 300px; display: grid; place-items: center; overflow: hidden; border-right: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(232,111,37,.2), transparent 62%), linear-gradient(135deg, #15191b, #090a0b 72%); }
.orb-stage::before {
  content: '';
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, var(--amber), var(--orange) 44%, var(--orange-dark) 80%, #2b1206);
  box-shadow: 0 0 64px rgba(232,111,37,.42);
}
.orb-stage::after { content: ''; position: absolute; width: 76%; aspect-ratio: 1; border: 1px solid rgba(232,111,37,.3); border-radius: 50%; }
.orb-copy { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.orb-copy p { max-width: 560px; margin: 0; color: var(--silver); }
.game-actions { margin-top: 28px; }

/* Story */
.story-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 90px; }
.story-statement { position: sticky; top: 128px; align-self: start; }
.story-statement h2 { font-size: clamp(3.4rem, 6vw, 5.7rem); }
.story-flow { border-left: 1px solid var(--line); }
.story-step { position: relative; padding: 0 0 54px 54px; }
.story-step:last-child { padding-bottom: 0; }
.story-step::before { content: ''; position: absolute; left: -5px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.story-step .index { color: var(--orange); font-family: var(--mono); font-size: .64rem; letter-spacing: .14em; }
.story-step h3 { margin: 12px 0 14px; }
.story-step p { color: var(--silver); max-width: 600px; }
.founder-quote { margin-top: 60px; padding: 40px; border: 1px solid var(--line); background: linear-gradient(135deg, var(--carbon-2), var(--carbon)); }
.founder-quote blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.8rem, 4vw, 3.25rem); font-weight: 600; line-height: 1.06; text-transform: uppercase; }
.founder-quote cite { display: block; margin-top: 24px; color: var(--orange); font-family: var(--mono); font-size: .65rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

/* Technology */
.tech-band { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; background: var(--carbon); }
.tech-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .4; filter: grayscale(.15) contrast(1.1); }
.tech-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.98), rgba(8,9,10,.6) 50%, rgba(8,9,10,.18)), linear-gradient(0deg, rgba(8,9,10,.7), transparent); }
.tech-copy { position: relative; z-index: 2; max-width: 700px; }
.tech-copy p { max-width: 580px; margin: 28px 0 36px; color: var(--mist); }

/* Interior pages */
.page-hero { min-height: 72svh; padding: 154px 0 78px; display: flex; align-items: end; position: relative; overflow: hidden; background: var(--carbon); }
.page-hero--image img { position: absolute; inset: 76px 0 0; width: 100%; height: calc(100% - 76px); object-fit: cover; object-position: center; opacity: .68; }
.page-hero--image::after { content: ''; position: absolute; inset: 76px 0 0; background: linear-gradient(90deg, rgba(8,9,10,.98), rgba(8,9,10,.42) 65%, rgba(8,9,10,.14)), linear-gradient(0deg, rgba(8,9,10,.95), transparent 55%); }
.page-hero-copy { position: relative; z-index: 2; max-width: 850px; }
.page-hero h1 { font-size: clamp(4.4rem, 9vw, 8.4rem); }
.page-hero p { max-width: 650px; margin: 26px 0 0; color: var(--mist); font-size: 1.08rem; }
.page-index { position: absolute; right: max(32px, calc((100vw - 1240px) / 2)); bottom: 76px; z-index: 2; color: var(--orange); font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; }
.principles { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.principle { min-height: 260px; padding: 34px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.principle:last-child { border-right: 0; }
.principle span { color: var(--orange); font-family: var(--mono); font-size: .65rem; }
.principle p { color: var(--silver); font-size: .86rem; }
.wide-copy { max-width: 860px; }
.wide-copy p { color: var(--silver); font-size: 1.05rem; }

/* Form */
.contact-layout { display: grid; grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr); gap: 80px; align-items: start; }
.contact-note { position: sticky; top: 130px; }
.contact-note p { color: var(--silver); }
.contact-points { margin-top: 34px; border-top: 1px solid var(--line); }
.contact-point { padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--silver); font-family: var(--mono); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
form.request { display: grid; gap: 20px; padding: 42px; border: 1px solid var(--line); background: var(--carbon); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; margin-bottom: 8px; color: var(--silver); font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; outline: 0; background: #0b0d0e; color: var(--white); transition: border-color .25s, box-shadow .25s; }
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: inset 3px 0 0 var(--orange); }
.form-status { display: none; margin: 0; font-family: var(--mono); font-size: .72rem; }
.honeypot { position: absolute; left: -9999px; }

.request--recruit { border-color: rgba(232,111,37,.3); background: linear-gradient(180deg, rgba(232,111,37,.07), transparent 26%), var(--carbon); }
.request.is-sent { border-color: rgba(232,111,37,.55); }
.form-lead { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-lead h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.recruit-steps { margin-top: 34px; border-top: 1px solid var(--line); }
.recruit-step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.recruit-index { color: var(--orange); font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; }
.recruit-step h4 { margin-bottom: 6px; font-size: 1.1rem; letter-spacing: -0.01em; }
.recruit-step p { margin: 0; color: var(--silver); font-size: .84rem; }
.recruit-cross { display: flex; justify-content: space-between; align-items: end; gap: 44px; padding: 40px; border: 1px solid rgba(232,111,37,.3); background: linear-gradient(120deg, rgba(232,111,37,.08), transparent 52%), var(--carbon); }
.recruit-cross h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.recruit-cross p { max-width: 560px; margin: 14px 0 0; color: var(--silver); font-size: .92rem; }

/* CTA and footer */
.cta-panel { padding: 118px 0; position: relative; overflow: hidden; background: var(--orange); color: var(--ink); }
.cta-panel::before { content: '$'; position: absolute; right: -2vw; top: 50%; transform: translateY(-54%); color: rgba(8,9,10,.1); font-family: var(--display); font-size: min(46vw, 620px); font-weight: 800; line-height: .7; }
.cta-panel .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: end; }
.cta-panel h2 { max-width: 800px; }
.cta-panel .actions { justify-content: flex-end; }
.cta-panel .btn { border-color: var(--ink); }
.cta-panel .btn--solid { background: var(--ink); color: var(--white); }
.site-footer { padding: 54px 0; border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 48px; }
.footer-brand p { max-width: 360px; margin-top: 16px; color: var(--silver); font-size: .82rem; }
.footer-title { margin-bottom: 16px; color: var(--orange); font-family: var(--mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--silver); font-size: .83rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line); color: #72797d; font-family: var(--mono); font-size: .6rem; letter-spacing: .07em; text-transform: uppercase; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
@keyframes hero-settle { from { opacity: 0; transform: scale(1.09); } to { opacity: 1; transform: scale(1.02); } }
@keyframes line-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Keeps the seven-item nav comfortable in the narrow desktop band */
@media (min-width: 1041px) and (max-width: 1200px) {
  .navlinks { gap: 15px; }
  .navlinks a { font-size: 0.61rem; letter-spacing: 0.07em; }
  .nav { gap: 24px; }
}

@media (max-width: 1040px) {
  :root { --wrap: min(100% - 40px, 1240px); }
  .nav { grid-template-columns: auto 1fr auto; gap: 16px; }
  .navlinks { display: none; position: absolute; top: 76px; left: 20px; right: 20px; padding: 24px; border: 1px solid var(--line); background: rgba(13,15,16,.98); flex-direction: column; align-items: stretch; gap: 0; }
  .navlinks.is-open { display: flex; }
  .navlinks a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .navlinks a:last-child { border-bottom: 0; }
  .navlinks a.active::after { display: none; }
  .navtoggle { display: block; justify-self: end; }
  .nav-cta { display: none; }
  .hero-spec { display: none; }
  .hero-media::after { background: linear-gradient(90deg, rgba(8,9,10,.94), rgba(8,9,10,.42) 68%, rgba(8,9,10,.08)), linear-gradient(0deg, rgba(8,9,10,.96), transparent 54%); }
  .vision-layout, .product-layout { grid-template-columns: 1fr; }
  .vision-copy { min-height: 380px; }
  .architecture-frame { min-height: 540px; }
  .product-data { border-left: 0; border-top: 1px solid var(--line); }
  .product-stage { min-height: 600px; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .principle:nth-child(2) { border-right: 0; }
  .principle:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-layout { gap: 46px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .orb-teaser { grid-template-columns: 1fr; }
  .orb-stage { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  :root { --wrap: calc(100% - 32px); }
  body { line-height: 1.6; }
  .section { padding: 90px 0; }
  .section--tight { padding: 64px 0; }
  .section::after { left: 16px; right: 16px; }
  .nav { min-height: 68px; }
  .navlinks { top: 68px; left: 16px; right: 16px; }
  .brand { font-size: 1.3rem; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { min-height: 860px; padding: 120px 0 42px; align-items: end; }
  .hero-media { inset: 68px 0 auto; height: 56%; }
  .hero-media img { object-fit: contain; object-position: center top; background: #0c0e0f; }
  .hero-media::after { background: linear-gradient(0deg, var(--ink) 0%, rgba(8,9,10,.05) 45%, rgba(8,9,10,.12) 100%); }
  .hero-grid { inset: 68px 0 0; }
  .hero-copy h1 { font-size: clamp(4.2rem, 21vw, 6.8rem); }
  .hero-copy .lede { margin: 22px 0 30px; }
  .hero .actions { display: grid; }
  .hero .btn { width: 100%; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 46px; }
  .vision-layout { gap: 16px; }
  .vision-copy { min-height: 340px; padding: 30px; }
  .architecture-frame { min-height: 360px; }
  .architecture-frame img { object-fit: contain; background: var(--carbon); }
  .frame-label { inset: auto 14px 14px; }
  .product-stage { min-height: 420px; }
  .product-stage img { width: 96%; }
  .product-showcase { min-height: 0; }
  .product-showcase img { width: 100%; }
  .product-data { padding: 36px 26px; }
  .performance-grid { grid-template-columns: 1fr; }
  .metric:nth-child(n) { grid-column: auto; min-height: 185px; }
  .story-layout { grid-template-columns: 1fr; gap: 54px; }
  .story-statement { position: static; }
  .story-flow { margin-left: 5px; }
  .story-step { padding-left: 32px; }
  .founder-quote { padding: 28px; }
  .tech-band { min-height: 620px; }
  .tech-band img { object-position: 62% center; }
  .page-hero { min-height: 690px; padding: 130px 0 58px; }
  .page-hero--image img { top: 68px; height: calc(100% - 68px); object-fit: contain; object-position: center 6%; background: var(--carbon); }
  .page-hero--image::after { top: 68px; background: linear-gradient(0deg, var(--ink) 4%, rgba(8,9,10,.2) 58%, rgba(8,9,10,.15)); }
  .page-index { display: none; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-note { position: static; }
  form.request { padding: 26px 20px; }
  .band-label { flex-direction: column; gap: 8px; }
  .role-grid { grid-template-columns: 1fr; }
  .role { min-height: 0; gap: 20px; }
  .orb-stage { min-height: 240px; }
  .orb-copy { padding: 30px 26px; }
  .game-actions .btn { width: 100%; }
  .recruit-cross { flex-direction: column; align-items: stretch; padding: 28px 24px; }
  .recruit-cross .btn { width: 100%; }
  .recruit-step { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-panel { padding: 86px 0; }
  .cta-panel .wrap { grid-template-columns: 1fr; }
  .cta-panel .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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