:root {
  --bg: #07090c;
  --bg-soft: #0b0f14;
  --panel: #0e141b;
  --panel-strong: #121a23;
  --paper: #f4f2eb;
  --text: #f1f4f3;
  --muted: #98a4aa;
  --muted-deep: #728088;
  --line: rgba(221, 233, 238, .12);
  --line-strong: rgba(221, 233, 238, .24);
  --accent: #e8fff4;
  --accent-strong: #a0f7c7;
  --accent-rgb: 160, 247, 199;
  --ai: #a0f7c7;
  --games: #71c7ff;
  --studio: #d7a1ff;
  --studio-hot: #ff8bc6;
  --dev: #ffbd68;
  --dev-hot: #ff8a4c;
  --sans: Inter, Aptos, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 74% -8%, rgba(var(--accent-rgb), .09), transparent 26%),
    linear-gradient(145deg, var(--bg) 0%, #080b10 54%, var(--bg) 100%);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.studio {
  --bg: #0d0811;
  --bg-soft: #120b18;
  --panel: #17101e;
  --panel-strong: #211329;
  --paper: #f8f0f6;
  --text: #fbf4fa;
  --muted: #b4a2b2;
  --muted-deep: #8e788d;
  --line: rgba(248, 220, 241, .12);
  --line-strong: rgba(238, 187, 231, .28);
  --accent: #ffe7f7;
  --accent-strong: #d7a1ff;
  --accent-rgb: 215, 161, 255;
}
body.dev {
  --bg: #0d0a06;
  --bg-soft: #141008;
  --panel: #1a140b;
  --panel-strong: #24190d;
  --paper: #f7f1e8;
  --text: #fbf6ef;
  --muted: #b6a795;
  --muted-deep: #8f7d68;
  --line: rgba(250, 230, 200, .12);
  --line-strong: rgba(255, 198, 114, .28);
  --accent: #fff1d7;
  --accent-strong: #ffbd68;
  --accent-rgb: 255, 189, 104;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-150%); border-radius: 7px; padding: 10px 14px; color: var(--bg); background: var(--accent-strong); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  display: grid;
  position: relative;
  z-index: 20;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-size: 16px; line-height: 1; letter-spacing: -.025em; }
.brand small { color: var(--accent-strong); font: 800 12px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; }
.brand-mark { display: block; position: relative; width: 34px; height: 32px; }
.brand-mark i { display: block; position: absolute; right: 0; height: 8px; border: 1.5px solid var(--accent-strong); border-radius: 1px; }
.brand-mark i:nth-child(1) { top: 1px; width: 31px; }
.brand-mark i:nth-child(2) { top: 11px; width: 26px; }
.brand-mark i:nth-child(3) { top: 21px; width: 21px; }
.site-header nav { display: flex; justify-content: center; gap: 34px; }
.site-header nav a { color: var(--muted); font: 700 12px/1 var(--mono); letter-spacing: .06em; text-decoration: none; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--text); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.language-switcher { position: relative; }
.language-trigger {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255,255,255,.025);
  font: 750 12px/1 var(--mono);
  cursor: pointer;
}
.language-trigger:hover, .language-trigger:focus-visible, .language-trigger[aria-expanded="true"] { border-color: var(--accent-strong); background: rgba(var(--accent-rgb), .1); }
.language-chevron { color: var(--accent-strong); font-size: 15px; transition: transform .18s ease; }
.language-trigger[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.site-header .language-options {
  display: block;
  position: absolute;
  z-index: 40;
  top: calc(100% + 14px);
  right: 0;
  width: min(680px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 18px;
  background: rgba(8, 12, 17, .98);
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
}
.site-header .language-options[hidden] { display: none; }
.language-options > p { margin: 0 0 13px; color: var(--muted-deep); font: 800 12px/1.2 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.language-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
.site-header .language-grid a {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 10px;
  color: var(--muted);
  font: 700 12px/1.25 var(--sans);
  letter-spacing: 0;
}
.site-header .language-grid a:hover, .site-header .language-grid a:focus-visible { border-color: var(--line-strong); color: var(--text); background: rgba(255,255,255,.04); }
.site-header .language-grid a[aria-current="page"] { border-color: rgba(var(--accent-rgb), .35); color: var(--accent-strong); background: rgba(var(--accent-rgb), .08); }
.header-cta { border: 1px solid var(--line-strong); border-radius: 999px; padding: 13px 17px; color: var(--text); background: rgba(var(--accent-rgb), .05); font: 800 12px/1 var(--mono); letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.header-cta:hover, .header-cta:focus-visible { border-color: var(--accent-strong); background: rgba(var(--accent-rgb), .12); }

.hero {
  display: grid;
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: 730px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, .92fr);
  align-items: center;
  gap: clamp(60px, 7vw, 110px);
  margin: 0 auto;
  padding: 82px 0 94px;
}
.hero-grid { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-grid::before { content: ""; position: absolute; inset: 0 -15vw; opacity: .23; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 75%, transparent); }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--accent-strong); font: 800 12px/1.4 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 23px; height: 1px; background: currentColor; box-shadow: 8px 0 rgba(var(--accent-rgb), .4); }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 6.1vw, 92px); font-weight: 690; line-height: .96; letter-spacing: -.072em; }
h1 em, h2 em { color: var(--accent-strong); font-family: var(--serif); font-weight: 400; }
.hero-lede { max-width: 690px; margin: 30px 0 0; color: #b8c2c6; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.55; }
.studio .hero-lede { color: #c7b8c5; }
.dev .hero-lede { color: #c9bca9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; border: 1px solid var(--line-strong); border-radius: 999px; padding: 0 20px; font: 800 12px/1 var(--mono); letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.button-primary { border-color: var(--accent-strong); color: var(--bg); background: var(--accent-strong); box-shadow: 0 12px 38px rgba(var(--accent-rgb), .13); }
.button-primary:hover, .button-primary:focus-visible { transform: translateY(-1px); box-shadow: 0 18px 46px rgba(var(--accent-rgb), .2); }
.button-secondary { color: var(--text); background: rgba(255,255,255,.025); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--accent-strong); }
.assurances { display: flex; flex-wrap: wrap; gap: 19px; margin: 30px 0 0; padding: 0; color: var(--muted-deep); font: 700 12px/1.4 var(--mono); letter-spacing: .055em; list-style: none; text-transform: uppercase; }
.assurances li { display: flex; align-items: center; gap: 8px; }
.assurances li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-strong); box-shadow: 0 0 12px rgba(var(--accent-rgb), .7); }

.family-map { display: grid; position: relative; z-index: 2; min-height: 560px; grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr 1fr auto; gap: 16px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; padding: 20px; background: linear-gradient(145deg, rgba(20,27,35,.94), rgba(8,12,17,.96)); box-shadow: 0 45px 100px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.03); }
.family-map::before { content: ""; position: absolute; inset: 48px; opacity: .18; background-image: radial-gradient(circle, #cbd6d9 1px, transparent 1px); background-size: 18px 18px; mask-image: radial-gradient(circle, #000, transparent 68%); }
.map-caption, .map-foot { display: flex; position: relative; z-index: 3; grid-column: 1 / -1; align-items: center; justify-content: space-between; color: var(--muted-deep); font: 750 12px/1 var(--mono); letter-spacing: .11em; }
.map-caption b { color: var(--ai); font-weight: inherit; }
.map-foot { align-self: end; border-top: 1px solid var(--line); padding-top: 16px; letter-spacing: .06em; text-transform: uppercase; }
.map-node { display: grid; position: relative; z-index: 4; min-height: 142px; align-content: end; border: 1px solid var(--line); border-radius: 12px; padding: 17px; color: var(--text); background: rgba(255,255,255,.025); text-decoration: none; }
.map-node:hover, .map-node:focus-visible { transform: translateY(-2px); border-color: currentColor; }
.map-node small { position: absolute; top: 15px; right: 15px; color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.map-node strong { font-size: 25px; letter-spacing: -.04em; }
.map-node span { margin-top: 3px; color: var(--muted); font: 700 12px/1.35 var(--mono); letter-spacing: .06em; overflow-wrap: normal; word-break: normal; text-transform: uppercase; }
.map-ai { color: var(--ai); background: radial-gradient(circle at 0 100%, rgba(160,247,199,.12), transparent 60%), rgba(255,255,255,.02); }
.map-games { color: var(--games); background: radial-gradient(circle at 100% 100%, rgba(113,199,255,.13), transparent 60%), rgba(255,255,255,.02); }
.map-studio { color: var(--studio); background: radial-gradient(circle at 0 0, rgba(215,161,255,.13), transparent 60%), rgba(255,255,255,.02); }
.map-dev { color: var(--dev); background: radial-gradient(circle at 100% 0, rgba(255,189,104,.13), transparent 60%), rgba(255,255,255,.02); }
.map-games, .map-dev { text-align: right; }
.map-ai small, .map-studio small { right: auto; left: 15px; }
.map-ai strong, .map-ai > span { width: calc(100% - 92px); justify-self: start; }
.map-games strong, .map-games > span { width: calc(100% - 92px); justify-self: end; }
.map-node strong, .map-node span { color: inherit; }
.map-core { display: grid; position: absolute; z-index: 7; top: 50%; left: 50%; width: 154px; height: 154px; transform: translate(-50%, -50%); place-items: center; border: 1px solid rgba(240,247,247,.28); border-radius: 50%; color: #f3f7f6; background: radial-gradient(circle, #18222c 0 47%, #0a1016 48% 100%); box-shadow: 0 0 0 12px rgba(9,14,19,.88), 0 0 70px rgba(160,247,199,.08); }
.map-core::before, .map-core::after { content: ""; position: absolute; border: 1px solid rgba(228,238,240,.12); border-radius: 50%; }
.map-core::before { inset: 12px; }
.map-core::after { inset: 28px; }
.map-core span { position: relative; z-index: 3; margin-top: -8px; font: 800 27px/1 var(--mono); letter-spacing: -.05em; }
.map-core small { position: absolute; z-index: 3; right: 23px; bottom: 35px; left: 23px; color: var(--muted-deep); font: 800 12px/1.2 var(--mono); letter-spacing: .02em; text-align: center; }
.map-core i { position: absolute; z-index: 4; width: 7px; height: 7px; border-radius: 50%; }
.map-core i:nth-child(1) { top: 23px; left: 50%; background: var(--ai); box-shadow: 0 0 12px var(--ai); }
.map-core i:nth-child(2) { right: 29px; bottom: 42px; background: var(--games); box-shadow: 0 0 12px var(--games); }
.map-core i:nth-child(3) { bottom: 35px; left: 33px; background: var(--studio); box-shadow: 0 0 12px var(--studio); }
.map-line { position: absolute; z-index: 3; width: 1px; height: 105px; background: linear-gradient(var(--line), rgba(240,247,247,.35), var(--line)); transform-origin: bottom; }
.map-line-a { top: 123px; left: 43%; transform: rotate(-42deg); }
.map-line-b { top: 123px; right: 43%; transform: rotate(42deg); }
.map-line-c { bottom: 102px; left: 43%; transform: rotate(42deg); }
.map-line-d { right: 43%; bottom: 102px; transform: rotate(-42deg); }

.signal-strip { display: grid; width: 100%; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(4,7,10,.56); }
.signal-strip article { min-height: 172px; border-right: 1px solid var(--line); padding: 29px max(24px, calc((100vw - var(--max)) / 8)); }
.signal-strip article:last-child { border-right: 0; }
.signal-strip span { color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.signal-strip strong { display: block; margin-top: 22px; color: var(--accent-strong); font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -.055em; }
.signal-strip p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.section { padding: 118px max(24px, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: 810px; }
.section-heading h2, .materialize h2, .coming h2, .final-cta h2, .sequence h2 { margin: 0; font-size: clamp(43px, 5vw, 72px); line-height: .99; letter-spacing: -.061em; }
.section-heading > p:last-child, .split-heading > p, .materialize-copy > p, .coming > div > p:last-child, .final-cta > div > p:last-child { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.68; }
.split-heading { display: grid; max-width: none; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); align-items: end; gap: 80px; }
.split-heading > p { margin: 0; }

.products { background: linear-gradient(180deg, rgba(12,16,21,.25), rgba(6,9,12,.72)); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 66px; }
.product-card { display: flex; position: relative; min-height: 570px; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; padding: clamp(30px, 4vw, 48px); background: var(--panel); }
.product-card::before { content: ""; position: absolute; top: -150px; right: -120px; width: 380px; height: 380px; border: 1px solid currentColor; border-radius: 50%; opacity: .12; box-shadow: 0 0 0 35px currentColor, 0 0 0 80px currentColor; }
.product-ai { color: var(--ai); background: radial-gradient(circle at 100% 0, rgba(160,247,199,.12), transparent 42%), #0b1513; }
.product-games { color: var(--games); background: radial-gradient(circle at 100% 0, rgba(113,199,255,.14), transparent 42%), #09111d; }
.product-studio { color: var(--studio); background: radial-gradient(circle at 100% 0, rgba(215,161,255,.14), transparent 42%), #130d18; }
.product-dev { color: var(--dev); background: radial-gradient(circle at 100% 0, rgba(255,189,104,.14), transparent 42%), #151006; }
.product-top { display: flex; position: relative; z-index: 2; align-items: center; justify-content: space-between; font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.product-top i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 16px currentColor; }
.product-card h3 { position: relative; z-index: 2; margin: 52px 0 0; color: var(--text); font-size: clamp(32px, 4vw, 50px); line-height: 1; letter-spacing: -.055em; }
.product-card h3 em { color: currentColor; font-family: var(--serif); font-weight: 400; }
.product-card > p { position: relative; z-index: 2; max-width: 610px; margin: 22px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.product-proof { display: grid; position: relative; z-index: 2; grid-template-columns: auto 1fr; align-items: end; gap: 18px; margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.product-proof strong { font-size: clamp(35px, 4vw, 52px); line-height: .9; letter-spacing: -.06em; }
.product-proof span { max-width: 220px; color: var(--muted-deep); font: 700 12px/1.45 var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.product-stage { display: flex; position: relative; z-index: 2; align-items: center; justify-content: space-between; gap: 10px; margin-top: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 25px 0; font: 800 12px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.product-stage i { width: 20px; height: 1px; background: currentColor; opacity: .5; }
.product-card ul { position: relative; z-index: 2; margin: 28px 0 34px; padding: 0; color: var(--muted); list-style: none; }
.product-card li { display: flex; gap: 10px; margin-top: 10px; font-size: 13px; line-height: 1.45; }
.product-card li::before { content: "+"; color: currentColor; font-family: var(--mono); }
.product-card > a { display: flex; position: relative; z-index: 2; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--line); padding-top: 20px; color: currentColor; font: 800 12px/1 var(--mono); letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.product-card > a:hover, .product-card > a:focus-visible { color: var(--text); }
.claim-note, .compat-note { max-width: 920px; margin: 24px 0 0; color: var(--muted-deep); font-size: 12px; line-height: 1.65; }

.network { position: relative; overflow: hidden; background: #05080b; }
.network-backdrop { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(30deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)), linear-gradient(150deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)), linear-gradient(30deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)), linear-gradient(150deg, var(--line) 12%, transparent 12.5%, transparent 87%, var(--line) 87.5%, var(--line)); background-position: 0 0, 0 0, 36px 63px, 36px 63px; background-size: 72px 126px; mask-image: linear-gradient(to bottom, #000, transparent 70%); }
.network-heading { position: relative; z-index: 2; }
.network-flow { display: grid; position: relative; z-index: 2; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 13px; margin-top: 65px; }
.network-flow article { min-height: 280px; border: 1px solid var(--line); border-radius: 14px; padding: 30px; background: rgba(14,20,27,.88); }
.network-flow article > span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted); font: 800 12px/1 var(--mono); }
.network-flow small { display: block; margin-top: 39px; color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.network-flow strong { display: block; margin-top: 10px; font-size: 24px; letter-spacing: -.035em; }
.network-flow p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.network-flow > i { align-self: center; color: var(--muted-deep); font: normal 18px/1 var(--mono); }
.network-flow .flow-core { border-color: rgba(160,247,199,.3); background: radial-gradient(circle at 50% 100%, rgba(160,247,199,.1), transparent 55%), #0d1715; }
.source-lanes { display: grid; position: relative; z-index: 2; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 18px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--line); }
.source-lanes div { min-height: 130px; padding: 23px; background: #0b1015; }
.source-lanes span { color: var(--accent-strong); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.source-lanes b { display: block; margin-top: 23px; color: var(--text); font-size: 14px; }
.source-lanes small { display: block; margin-top: 6px; color: var(--muted-deep); font-size: 12px; }
.network-boundary { display: grid; position: relative; z-index: 2; grid-template-columns: minmax(250px,.7fr) 1.3fr; gap: 70px; margin-top: 28px; border-left: 2px solid var(--accent-strong); padding: 20px 24px; background: rgba(var(--accent-rgb), .045); }
.network-boundary strong { font-size: 20px; line-height: 1.4; }
.network-boundary p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.principles { background: var(--paper); color: #11171a; }
.principles .eyebrow { color: #2f8161; }
.principles .section-heading > p, .principles .split-heading > p { color: #596469; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 65px; border: 1px solid rgba(14,22,25,.14); background: rgba(14,22,25,.14); }
.principle-grid article { min-height: 310px; padding: 30px; background: var(--paper); }
.principle-grid span { color: #718086; font: 800 12px/1 var(--mono); }
.principle-grid h3 { margin: 74px 0 0; font-size: 22px; letter-spacing: -.04em; }
.principle-grid p { margin: 14px 0 0; color: #5d686c; font-size: 14px; line-height: 1.65; }

.sequence { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); align-items: center; gap: 90px; background: linear-gradient(135deg, #0c1117, #070a0e); }
.sequence ol { margin: 0; padding: 0; list-style: none; }
.sequence li { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 15px; min-height: 86px; border-top: 1px solid var(--line); color: var(--muted-deep); }
.sequence li::after { content: ""; width: 8px; height: 8px; border: 1px solid currentColor; border-radius: 50%; }
.sequence li > span { font: 800 12px/1 var(--mono); }
.sequence li div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.sequence li strong { color: var(--text); font-size: 22px; }
.sequence li small { font: 700 12px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.sequence li.done { color: var(--ai); }
.sequence li.active { color: var(--games); }
.sequence li.next { color: var(--studio); }
.sequence li.next::after { background: currentColor; box-shadow: 0 0 15px currentColor; }

.final-cta { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; background: radial-gradient(circle at 85% 10%, rgba(113,199,255,.08), transparent 30%), radial-gradient(circle at 45% 100%, rgba(215,161,255,.08), transparent 34%), #06090c; }
.cta-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cta-links a { display: grid; min-height: 148px; grid-template-columns: 1fr auto; align-content: space-between; border: 1px solid var(--line); border-radius: 12px; padding: 23px; text-decoration: none; }
.cta-links a:hover, .cta-links a:focus-visible { transform: translateY(-2px); border-color: currentColor; }
.cta-links a > span { grid-column: 1 / -1; color: var(--muted); font-size: 12px; }
.cta-links b { font-weight: 400; }
.cta-ai { color: var(--ai); background: rgba(160,247,199,.04); }
.cta-games { color: var(--games); background: rgba(113,199,255,.04); }
.cta-studio { color: var(--studio); background: rgba(215,161,255,.04); }
.cta-dev { color: var(--dev); background: rgba(255,189,104,.04); }

/* Studio and Dev product pages */
.product-hero { grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr); }
.studio-canvas, .dev-console { position: relative; z-index: 2; min-height: 535px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 18px; background: linear-gradient(145deg, rgba(34,19,42,.95), rgba(12,7,16,.98)); box-shadow: 0 45px 100px rgba(0,0,0,.4); }
.studio-canvas::before { content: ""; position: absolute; right: -120px; bottom: -170px; width: 410px; height: 410px; border: 1px solid rgba(var(--accent-rgb),.14); border-radius: 50%; box-shadow: 0 0 0 45px rgba(var(--accent-rgb),.025), 0 0 0 90px rgba(var(--accent-rgb),.018); }
.canvas-top, .console-chrome { display: flex; position: relative; z-index: 2; height: 56px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 0 20px; color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .09em; }
.canvas-top b, .console-chrome b { color: var(--accent-strong); font-weight: inherit; }
.canvas-scene { display: grid; position: relative; z-index: 2; grid-template-columns: 1fr 150px; gap: 14px; padding: 20px 20px 0; }
.scene-viewport { display: grid; position: relative; min-height: 275px; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: radial-gradient(circle at 50% 52%, rgba(var(--accent-rgb),.18), transparent 30%), linear-gradient(145deg, #190e21, #0e0a14); }
.scene-viewport::before, .scene-viewport::after { content: ""; position: absolute; width: 170px; height: 170px; border: 1px solid rgba(var(--accent-rgb),.3); transform: rotate(30deg) skew(-12deg); }
.scene-viewport::after { width: 100px; height: 100px; transform: rotate(57deg) skew(10deg); }
.scene-viewport span { position: relative; z-index: 2; color: var(--accent); font: 800 13px/1.25 var(--mono); letter-spacing: .1em; text-align: center; }
.scene-viewport i { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--studio-hot); box-shadow: 0 0 15px var(--studio-hot); }
.scene-viewport i:nth-child(1) { top: 28%; left: 28%; }.scene-viewport i:nth-child(2) { top: 30%; right: 24%; }.scene-viewport i:nth-child(3) { right: 34%; bottom: 20%; }
.scene-tree { display: grid; align-content: start; gap: 8px; }
.scene-tree span { display: flex; min-height: 46px; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 7px; padding: 0 10px; color: var(--muted); background: rgba(255,255,255,.02); font: 700 12px/1 var(--mono); text-transform: uppercase; }
.scene-tree i { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-strong); }
.canvas-timeline { display: flex; position: relative; z-index: 2; align-items: center; gap: 4px; height: 75px; margin: 13px 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.canvas-timeline span { height: 24px; flex: 1; border-radius: 3px; background: rgba(var(--accent-rgb),.12); }
.canvas-timeline span:nth-child(2), .canvas-timeline span:nth-child(4) { height: 38px; background: rgba(255,139,198,.18); }
.canvas-timeline i { position: absolute; top: 11px; bottom: 11px; left: 57%; width: 1px; background: var(--studio-hot); box-shadow: 0 0 10px var(--studio-hot); }
.canvas-result { display: grid; position: relative; z-index: 2; grid-template-columns: 1fr 1fr; gap: 12px; padding: 18px 20px 0; }
.canvas-result div { display: grid; gap: 7px; }
.canvas-result span { color: var(--muted-deep); font: 700 12px/1 var(--mono); text-transform: uppercase; }
.canvas-result strong { color: var(--accent-strong); font: 800 12px/1 var(--mono); }
.studio-canvas > p, .dev-console > p { position: relative; z-index: 2; margin: 18px 20px 0; color: var(--muted-deep); font: 700 12px/1 var(--mono); letter-spacing: .06em; }

.dev-console { min-height: 505px; background: linear-gradient(145deg, rgba(35,24,11,.95), rgba(13,9,4,.98)); }
.console-chrome { justify-content: flex-start; gap: 7px; }
.console-chrome i { width: 7px; height: 7px; border: 1px solid var(--muted-deep); border-radius: 50%; }
.console-chrome span { margin-left: 10px; }
.console-chrome b { margin-left: auto; }
.console-code { position: relative; z-index: 2; margin: 24px 24px 0; border: 1px solid var(--line); border-radius: 9px; padding: 19px 20px; background: #0b0804; }
.console-code p { display: grid; grid-template-columns: 110px 1fr; margin: 0; border-bottom: 1px solid rgba(255,255,255,.045); padding: 12px 0; color: #c7b8a4; font: 700 12px/1.2 var(--mono); }
.console-code p:last-child { border: 0; }
.console-code span { color: var(--accent-strong); }
.console-resolve { display: flex; position: relative; z-index: 2; align-items: center; gap: 12px; margin: 20px 24px 0; color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .08em; }
.console-resolve i { height: 5px; flex: 1; border-radius: 2px; background: var(--accent-strong); opacity: .28; }
.console-resolve i:nth-of-type(2) { opacity: .55; }.console-resolve i:nth-of-type(3) { opacity: .95; box-shadow: 0 0 14px rgba(var(--accent-rgb),.4); }
.console-resolve b { color: var(--accent-strong); }
.console-ready { display: flex; position: relative; z-index: 2; align-items: center; justify-content: space-between; margin: 22px 24px 0; border-left: 2px solid var(--accent-strong); padding: 16px 18px; color: var(--accent); background: rgba(var(--accent-rgb),.06); font: 800 12px/1 var(--mono); }
.console-ready strong { color: var(--muted-deep); font-weight: inherit; }

.vision { background: linear-gradient(180deg, rgba(var(--accent-rgb),.025), transparent); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 64px; }
.problem-grid article { position: relative; min-height: 410px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; padding: 30px; background: var(--panel); }
.problem-grid article > span { color: var(--accent-strong); font: 800 12px/1 var(--mono); }
.problem-grid h3 { margin: 58px 0 0; font-size: 25px; letter-spacing: -.04em; }
.problem-grid p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.mini-version, .mini-nodes, .mini-focus, .mini-matrix, .mini-lock, .mini-stacks { position: absolute; right: 25px; bottom: 25px; left: 25px; height: 92px; border-top: 1px solid var(--line); }
.mini-version { display: flex; align-items: end; gap: 8px; padding-top: 18px; }
.mini-version i { height: 40%; flex: 1; border: 1px solid var(--line-strong); border-radius: 3px; background: rgba(var(--accent-rgb),.04); }
.mini-version i:nth-child(2) { height: 62%; }.mini-version i:nth-child(3) { height: 80%; background: rgba(var(--accent-rgb),.13); }.mini-version i:nth-child(4) { height: 100%; border-color: var(--accent-strong); }
.mini-nodes i { position: absolute; width: 13px; height: 13px; border: 1px solid var(--accent-strong); border-radius: 50%; }
.mini-nodes i:nth-child(1) { top: 19px; left: 5%; }.mini-nodes i:nth-child(2) { top: 52px; left: 25%; }.mini-nodes i:nth-child(3) { top: 25px; left: 48%; }.mini-nodes i:nth-child(4) { top: 54px; right: 23%; }.mini-nodes i:nth-child(5) { top: 16px; right: 3%; background: var(--accent-strong); }
.mini-nodes::before { content: ""; position: absolute; top: 44px; right: 4%; left: 6%; height: 1px; transform: rotate(-3deg); background: var(--line-strong); }
.mini-focus { display: grid; place-items: center; }
.mini-focus i { width: 86%; height: 48px; border: 1px solid var(--line); border-radius: 4px; }
.mini-focus span { position: absolute; width: 36%; height: 48px; border: 1px solid var(--accent-strong); border-radius: 4px; background: rgba(var(--accent-rgb),.12); box-shadow: 0 0 24px rgba(var(--accent-rgb),.08); }
.mini-matrix { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; align-content: end; padding-top: 18px; }
.mini-matrix i { height: 22px; border: 1px solid var(--line-strong); border-radius: 2px; }
.mini-matrix i:nth-child(3n) { background: rgba(var(--accent-rgb),.13); }.mini-matrix i:nth-child(7) { border-color: var(--accent-strong); background: rgba(var(--accent-rgb),.2); }
.mini-lock { display: grid; place-items: center; }
.mini-lock i { width: 40px; height: 34px; border: 1px solid var(--accent-strong); border-radius: 5px; background: rgba(var(--accent-rgb),.08); }
.mini-lock i::before { content: ""; display: block; width: 22px; height: 18px; margin: -14px auto 0; border: 1px solid var(--accent-strong); border-bottom: 0; border-radius: 14px 14px 0 0; }
.mini-lock span { position: absolute; right: 0; bottom: 5px; color: var(--muted-deep); font: 800 12px/1 var(--mono); }
.mini-stacks { display: flex; align-items: end; gap: 8px; padding-top: 18px; }
.mini-stacks i { height: 35px; flex: 1; border: 1px solid var(--line-strong); border-radius: 3px; box-shadow: 0 -7px 0 -1px var(--panel), 0 -8px 0 0 var(--line-strong), 0 -14px 0 -1px var(--panel), 0 -15px 0 0 var(--line-strong); }
.mini-stacks i:nth-child(3) { height: 52px; border-color: var(--accent-strong); }

.workflows { background: var(--paper); color: #19151a; }
.dev .workflows { color: #1c1710; }
.workflows .eyebrow { color: #80559d; }.dev .workflows .eyebrow { color: #9b5d1d; }
.workflows .section-heading > p:last-child { color: #675c67; }.dev .workflows .section-heading > p:last-child { color: #6a6053; }
.workflow-tags { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 64px; border: 1px solid rgba(26,18,27,.14); background: rgba(26,18,27,.14); }
.workflow-tags article { display: grid; min-height: 300px; grid-template-columns: 1fr auto; align-content: start; padding: 32px; background: var(--paper); }
.workflow-tags article > span { color: #8f778c; font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.dev-tags article > span { color: #8c765c; }
.workflow-tags article > b { grid-row: 1; grid-column: 2; border: 1px solid rgba(61,34,67,.16); border-radius: 999px; padding: 7px 9px; color: #8f778c; font: 800 12px/1 var(--mono); letter-spacing: .07em; }
.dev-tags article > b { color: #8c765c; }
.workflow-tags strong { grid-column: 1 / -1; margin-top: 66px; font-size: 27px; letter-spacing: -.04em; }
.workflow-tags p { grid-column: 1 / -1; max-width: 490px; margin: 15px 0 0; color: #665d65; font-size: 14px; line-height: 1.65; }
.dev-tags p { color: #6a6156; }

.materialize { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 95px; }
.materialize-copy { position: sticky; top: 35px; }
.materialize-flow { margin: 0; padding: 0; list-style: none; }
.materialize-flow li { display: grid; grid-template-columns: 60px 1fr; gap: 18px; min-height: 154px; border-top: 1px solid var(--line); padding: 29px 0; }
.materialize-flow li:last-child { border-bottom: 1px solid var(--line); }
.materialize-flow li > span { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--accent-strong); font: 800 12px/1 var(--mono); }
.materialize-flow small { color: var(--accent-strong); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.materialize-flow strong { display: block; margin-top: 8px; font-size: 22px; letter-spacing: -.035em; }
.materialize-flow p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.product-network { display: grid; grid-template-columns: minmax(340px,.75fr) minmax(0,1.25fr); align-items: center; gap: 100px; background: radial-gradient(circle at 18% 50%, rgba(var(--accent-rgb),.12), transparent 26%), var(--bg-soft); }
.product-network > div:last-child { max-width: 720px; }
.product-network h2 { margin: 0; font-size: clamp(42px, 4.9vw, 70px); line-height: .99; letter-spacing: -.06em; }
.product-network p { margin: 25px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.product-network ul { margin: 26px 0 0; padding: 0; color: var(--muted); list-style: none; }
.product-network li { display: flex; gap: 11px; margin-top: 12px; font-size: 13px; }
.product-network li::before { content: "+"; color: var(--accent-strong); font-family: var(--mono); }
.network-orbit { display: grid; position: relative; width: min(100%, 390px); aspect-ratio: 1; place-items: center; margin: auto; border: 1px solid rgba(var(--accent-rgb),.24); border-radius: 50%; }
.network-orbit::before, .network-orbit::after { content: ""; position: absolute; border: 1px solid rgba(var(--accent-rgb),.14); border-radius: 50%; }
.network-orbit::before { inset: 12%; }.network-orbit::after { inset: 28%; background: rgba(var(--accent-rgb),.05); }
.network-orbit span { position: relative; z-index: 3; color: var(--accent); font: 800 35px/1 var(--mono); }
.network-orbit i { position: absolute; z-index: 4; width: 12px; height: 12px; border-radius: 50%; background: var(--accent-strong); box-shadow: 0 0 18px var(--accent-strong); }
.network-orbit i:nth-child(1) { top: 8%; left: 49%; }.network-orbit i:nth-child(2) { right: 12%; bottom: 22%; }.network-orbit i:nth-child(3) { bottom: 15%; left: 17%; background: var(--studio-hot); }
.dev-orbit i:nth-child(3) { background: var(--dev-hot); }

.coming { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 80px; border-top: 1px solid var(--line); background: radial-gradient(circle at 100% 0, rgba(var(--accent-rgb),.12), transparent 34%), #08070a; }
.dev-coming { background: radial-gradient(circle at 100% 0, rgba(var(--accent-rgb),.12), transparent 34%), #0b0804; }
.coming > div { max-width: 900px; }

footer { display: grid; grid-template-columns: 1.45fr .65fr .7fr .8fr; gap: 45px; border-top: 1px solid var(--line); padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 28px; background: #040609; }
.studio footer { background: #070409; }.dev footer { background: #070502; }
.footer-brand p { margin: 15px 0 0; color: var(--muted-deep); font-size: 13px; }
.footer-brand .footer-company { display: grid; gap: 7px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 19px; }
.footer-brand .footer-company p { display: flex; flex-wrap: wrap; gap: 7px 15px; margin: 0; line-height: 1.55; }
.footer-brand .footer-company a { color: var(--text); text-decoration: none; }
.footer-brand .footer-company a:hover, .footer-brand .footer-company a:focus-visible { color: var(--accent-strong); }
.footer-brand .footer-company strong { color: var(--muted); font: inherit; }
.footer-brand .footer-company p:last-child { font: 700 12px/1.55 var(--mono); letter-spacing: .035em; }
footer > div:not(.footer-brand):not(.footer-bottom) { display: grid; align-content: start; gap: 12px; }
footer > div > strong { margin-bottom: 7px; color: var(--muted); font: 800 12px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
footer > div > a { color: var(--muted); font-size: 13px; text-decoration: none; }
footer > div > a:hover, footer > div > a:focus-visible { color: var(--accent-strong); }
.footer-bottom { display: flex; grid-column: 1 / -1; align-items: center; justify-content: space-between; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 24px; color: var(--muted-deep); font: 700 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1080px) {
  .site-header { gap: 24px; }
  .site-header nav { gap: 18px; }
  .site-header > nav { display: none; }
  .hero, .product-hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 840px; }
  .family-map, .studio-canvas, .dev-console { width: min(100%, 720px); margin: 0 auto; }
  .signal-strip { grid-template-columns: repeat(2, 1fr); }
  .signal-strip article:nth-child(2) { border-right: 0; }
  .signal-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-heading { grid-template-columns: 1fr; gap: 30px; }
  .network-flow { grid-template-columns: 1fr; }
  .network-flow > i { transform: rotate(90deg); justify-self: center; }
  .source-lanes { grid-template-columns: repeat(3,1fr); }
  .principle-grid { grid-template-columns: repeat(2,1fr); }
  .sequence, .final-cta, .materialize, .product-network { grid-template-columns: 1fr; }
  .materialize-copy { position: static; }
  .network-orbit { width: min(70vw, 390px); }
  .coming { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 760px) {
  .site-header { width: min(calc(100% - 32px), var(--max)); min-height: 76px; grid-template-columns: 1fr auto; }
  .site-header > nav { display: none; }
  .header-actions { gap: 6px; }
  .header-cta { display: none; }
  .language-trigger { min-height: 40px; padding: 0 12px; }
  .site-header .language-options { position: fixed; top: 68px; right: 16px; left: 16px; width: auto; max-height: calc(100dvh - 84px); overflow-y: auto; }
  .language-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand strong { font-size: 14px; }
  .brand-mark { width: 30px; }
  .hero { width: min(calc(100% - 32px), var(--max)); min-height: 0; gap: 55px; padding: 62px 0 70px; }
  h1 { font-size: clamp(46px, 14vw, 68px); }
  .hero-lede { font-size: 17px; }
  .button { width: 100%; }
  .assurances { gap: 12px; }
  .family-map { min-height: 550px; gap: 9px; padding: 13px; }
  .map-node { min-height: 128px; padding: 12px; }
  .map-node strong { font-size: 20px; }
  .map-node small { top: 10px; right: 10px; font-size: 12px; }
  .map-ai small, .map-studio small { right: auto; left: 10px; }
  .map-ai strong, .map-ai > span, .map-games strong, .map-games > span { width: calc(100% - 42px); }
  .map-core { width: 104px; height: 104px; }
  .map-core small { bottom: 31px; font-size: 12px; }
  .map-line { display: none; }
  .map-foot { gap: 12px; font-size: 12px; }
  .signal-strip article { min-height: 145px; padding: 24px 20px; }
  .signal-strip strong { font-size: 28px; }
  .section { padding: 84px 20px; }
  .section-heading h2, .materialize h2, .coming h2, .final-cta h2, .sequence h2, .product-network h2 { font-size: clamp(39px, 11vw, 54px); }
  .product-grid, .problem-grid, .workflow-tags { grid-template-columns: 1fr; }
  .product-card { min-height: 540px; padding: 28px; }
  .product-card::before { width: 280px; height: 280px; }
  .product-proof { grid-template-columns: 1fr; }
  .source-lanes { grid-template-columns: 1fr 1fr; }
  .source-lanes div:last-child { grid-column: 1 / -1; }
  .network-boundary { grid-template-columns: 1fr; gap: 16px; }
  .principle-grid, .cta-links { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 260px; }
  .sequence { gap: 55px; }
  .sequence li div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .studio-canvas { min-height: 560px; }
  .canvas-scene { grid-template-columns: 1fr; }
  .scene-tree { grid-template-columns: 1fr 1fr; }
  .scene-tree span { min-height: 38px; }
  .canvas-timeline { margin-top: 10px; }
  .canvas-result { padding-top: 12px; }
  .dev-console { min-height: 490px; }
  .console-code { margin-right: 14px; margin-left: 14px; padding: 14px; }
  .console-code p { grid-template-columns: 85px 1fr; font-size: 12px; }
  .console-resolve, .console-ready { margin-right: 14px; margin-left: 14px; }
  .materialize-flow li { grid-template-columns: 48px 1fr; }
  footer { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; line-height: 1.4; }
}

@media (prefers-reduced-motion: no-preference) {
  .button, .map-node, .product-card > a, .cta-links a, .header-cta { transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
  .map-core i, .network-orbit i { animation: pulse 2.8s ease-in-out infinite alternate; }
  .map-core i:nth-child(2), .network-orbit i:nth-child(2) { animation-delay: -.9s; }
  .map-core i:nth-child(3), .network-orbit i:nth-child(3) { animation-delay: -1.8s; }
  .console-resolve i { animation: resolve 2.2s ease-in-out infinite; }
  .console-resolve i:nth-of-type(2) { animation-delay: .25s; }.console-resolve i:nth-of-type(3) { animation-delay: .5s; }
}
@keyframes pulse { to { transform: scale(1.55); opacity: .55; } }
@keyframes resolve { 0%, 20% { opacity: .18; } 60%, 100% { opacity: 1; } }

/* Company narrative v2 */
.company-v2 .hero {
  min-height: 760px;
  padding-top: 76px;
  padding-bottom: 92px;
}
.company-v2 h1 { max-width: 720px; }
.company-v2 .hero-lede { max-width: 660px; }
.company-v2 .map-caption b { color: var(--text); }
.company-v2 .map-core small { color: #91a09f; letter-spacing: .045em; }
.company-v2 .map-foot { color: #829092; }

.idea {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 20%, rgba(160,247,199,.07), transparent 28%),
    linear-gradient(180deg, #090d12, #070a0e);
}
.idea::before {
  content: "";
  position: absolute;
  top: 0;
  right: max(24px, calc((100vw - var(--max)) / 2));
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-strong));
  opacity: .6;
}
.idea-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .72fr);
  align-items: end;
  gap: 80px;
}
.idea-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.idea-intro h2 {
  margin: 0;
  font-size: clamp(45px, 5.25vw, 76px);
  line-height: .98;
  letter-spacing: -.064em;
}
.idea-intro h2 em { color: var(--accent-strong); font-family: var(--serif); font-weight: 400; }
.idea-intro > p:last-child { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--line);
}
.idea-grid article {
  min-height: 280px;
  padding: 30px;
  background: linear-gradient(150deg, rgba(18,25,32,.98), rgba(10,14,19,.98));
}
.idea-grid article > span { color: var(--accent-strong); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.idea-grid h3 { margin: 88px 0 0; font-size: 24px; line-height: 1.1; letter-spacing: -.04em; }
.idea-grid p { max-width: 330px; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.62; }

.company-v2 .products { border-top: 1px solid var(--line); }
.company-v2 .product-grid { margin-top: 58px; }
.company-v2 .product-card {
  min-height: 430px;
  padding: clamp(29px, 3.3vw, 42px);
}
.company-v2 .product-card::before { width: 310px; height: 310px; }
.company-v2 .product-card h3 { margin-top: 46px; font-size: clamp(31px, 3.55vw, 46px); }
.company-v2 .product-card > p { max-width: 540px; font-size: 15px; line-height: 1.62; }
.product-summary {
  display: flex;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 32px;
}
.product-summary span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255,255,255,.025);
  font: 750 12px/1 var(--mono);
  letter-spacing: .035em;
}

.company-v2 .network { padding-top: 126px; padding-bottom: 92px; }
.t2t-layout {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
}
.company-v2 .network-heading { max-width: 760px; }
.company-v2 .network-heading > p:last-of-type {
  max-width: 690px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.patent-mark {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.patent-mark span {
  border: 1px solid rgba(160,247,199,.35);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--accent-strong);
  background: rgba(160,247,199,.05);
  font: 800 12px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.patent-mark p { margin: 0; color: var(--muted-deep); font-size: 12px; line-height: 1.55; }
.t2t-proof {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-left: 2px solid var(--accent-strong);
  padding: 25px 0 3px 23px;
}
.t2t-proof > span { color: var(--accent-strong); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.t2t-proof strong { display: block; max-width: 620px; margin-top: 14px; font-size: 18px; line-height: 1.45; letter-spacing: -.02em; }
.t2t-proof p { margin: 9px 0 0; color: var(--muted-deep); font-size: 12px; line-height: 1.55; }
.t2t-journey { display: grid; gap: 10px; }
.t2t-journey article {
  min-height: 176px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  background: rgba(13,19,25,.9);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.t2t-journey article > span { color: var(--muted-deep); font: 800 12px/1 var(--mono); letter-spacing: .1em; }
.t2t-journey strong { display: block; margin-top: 25px; font-size: 22px; letter-spacing: -.035em; }
.t2t-journey p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.t2t-journey > i { justify-self: center; height: 14px; color: var(--muted-deep); font: normal 15px/1 var(--mono); }
.t2t-journey .journey-core {
  border-color: rgba(160,247,199,.3);
  background: radial-gradient(circle at 100% 100%, rgba(160,247,199,.1), transparent 50%), #0d1715;
}
.t2t-journey .journey-core > span { color: var(--accent-strong); }
.t2t-network-map {
  display: grid;
  position: relative;
  min-height: 550px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr auto;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(160,247,199,.1), transparent 32%),
    linear-gradient(145deg, rgba(18,26,33,.96), rgba(7,11,15,.98));
  box-shadow: 0 40px 90px rgba(0,0,0,.3);
}
.t2t-network-map::before {
  content: "";
  position: absolute;
  inset: 54px;
  opacity: .18;
  background-image: radial-gradient(circle, #cbd6d9 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle, #000, transparent 70%);
}
.tn-caption, .tn-output {
  display: flex;
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-deep);
  font: 800 12px/1 var(--mono);
  letter-spacing: .1em;
}
.tn-caption b { color: var(--accent-strong); font-weight: inherit; }
.tn-output { align-self: end; border-top: 1px solid var(--line); padding-top: 17px; }
.tn-output b { color: var(--text); font-weight: inherit; }
.tn-node {
  display: grid;
  position: relative;
  z-index: 4;
  min-height: 158px;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px;
  background: rgba(255,255,255,.025);
}
.tn-node > span { position: absolute; top: 15px; color: var(--accent-strong); font: 800 12px/1 var(--mono); }
.tn-node strong { font-size: 18px; letter-spacing: -.035em; }
.tn-node small { margin-top: 6px; color: var(--muted-deep); font: 750 12px/1 var(--mono); letter-spacing: .055em; text-transform: uppercase; }
.tn-machines, .tn-sources { text-align: right; }
.tn-machines > span, .tn-sources > span { right: 15px; }
.tn-device { background: radial-gradient(circle at 0 100%, rgba(160,247,199,.1), transparent 66%), rgba(255,255,255,.02); }
.tn-machines { background: radial-gradient(circle at 100% 100%, rgba(113,199,255,.1), transparent 66%), rgba(255,255,255,.02); }
.tn-peers { background: radial-gradient(circle at 0 0, rgba(215,161,255,.08), transparent 66%), rgba(255,255,255,.02); }
.tn-sources { background: radial-gradient(circle at 100% 0, rgba(160,247,199,.08), transparent 66%), rgba(255,255,255,.02); }
.tn-core {
  display: grid;
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  place-items: center;
  border: 1px solid rgba(160,247,199,.42);
  border-radius: 50%;
  background: radial-gradient(circle, #172620 0 47%, #08100d 48% 100%);
  box-shadow: 0 0 0 12px rgba(7,12,14,.9), 0 0 65px rgba(160,247,199,.12);
}
.tn-core::before, .tn-core::after { content: ""; position: absolute; border: 1px solid rgba(160,247,199,.13); border-radius: 50%; }
.tn-core::before { inset: 14px; }
.tn-core::after { inset: 30px; }
.tn-core span { position: relative; z-index: 3; margin-top: -9px; color: var(--text); font: 800 28px/1 var(--mono); letter-spacing: -.05em; }
.tn-core small { position: absolute; z-index: 3; right: 20px; bottom: 35px; left: 20px; color: var(--accent-strong); font: 800 12px/1.15 var(--mono); letter-spacing: .035em; text-align: center; }
.tn-line { position: absolute; z-index: 3; top: 50%; left: 50%; width: 1px; height: 124px; background: linear-gradient(var(--line), rgba(160,247,199,.32), var(--line)); transform-origin: bottom; }
.tn-line-a { transform: translate(-50%, -100%) rotate(-44deg); }
.tn-line-b { transform: translate(-50%, -100%) rotate(44deg); }
.tn-line-c { transform: translate(-50%, -2%) rotate(136deg); }
.tn-line-d { transform: translate(-50%, -2%) rotate(224deg); }
.t2t-capabilities {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}
.t2t-capabilities article {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 27px;
  background: rgba(12,18,24,.92);
}
.t2t-capabilities article > span { color: var(--accent-strong); font: 800 12px/1.3 var(--mono); letter-spacing: .085em; }
.t2t-capabilities h3 { margin: 78px 0 0; font-size: 23px; line-height: 1.08; letter-spacing: -.04em; }
.t2t-capabilities p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.62; }
.t2t-capabilities .cap-speed { background: radial-gradient(circle at 100% 0, rgba(113,199,255,.11), transparent 46%), rgba(10,17,25,.94); }
.t2t-capabilities .cap-speed > span { color: var(--games); }
.t2t-capabilities .cap-offload { background: radial-gradient(circle at 100% 0, rgba(160,247,199,.1), transparent 46%), rgba(10,20,17,.94); }
.t2t-capabilities .cap-compute { background: radial-gradient(circle at 100% 0, rgba(215,161,255,.12), transparent 48%), rgba(18,12,24,.94); }
.t2t-capabilities .cap-compute > span { color: var(--studio); }
.network-promise {
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 64px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent-strong);
  border-radius: 0 12px 12px 0;
  padding: 23px 25px;
  background: rgba(160,247,199,.035);
}
.network-promise strong { font-size: 17px; white-space: nowrap; }
.network-promise p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.network-promise ul { display: flex; gap: 7px; margin: 0; padding: 0; list-style: none; }
.network-promise li { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; color: var(--accent-strong); font: 750 12px/1 var(--mono); letter-spacing: .035em; }

@media (max-width: 1080px) {
  .idea-intro, .t2t-layout { grid-template-columns: 1fr; }
  .idea-intro { gap: 28px; }
  .idea-intro .eyebrow { margin-bottom: 0; }
  .t2t-layout { gap: 64px; }
  .t2t-journey, .t2t-network-map { width: min(100%, 720px); }
  .t2t-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .network-promise { grid-template-columns: 1fr; gap: 14px; }
  .network-promise strong { white-space: normal; }
}

@media (max-width: 760px) {
  .company-v2 .hero { padding-top: 58px; padding-bottom: 68px; }
  .company-v2 h1 { font-size: clamp(45px, 13.4vw, 65px); }
  .company-v2 .map-core span { margin-top: 0; }
  .company-v2 .map-core small { display: none; }
  .idea-grid { grid-template-columns: 1fr; }
  .idea-grid article { min-height: 230px; }
  .idea-grid h3 { margin-top: 64px; }
  .company-v2 .product-card { min-height: 390px; }
  .company-v2 .network { padding-top: 88px; padding-bottom: 78px; }
  .patent-mark { grid-template-columns: 1fr; gap: 12px; }
  .patent-mark span { justify-self: start; }
  .t2t-journey article { min-height: 170px; padding: 24px; }
  .t2t-network-map { min-height: 530px; gap: 8px; padding: 13px; }
  .tn-node { min-height: 142px; padding: 12px; }
  .tn-node > span { top: 11px; }
  .tn-machines > span, .tn-sources > span { right: 11px; }
  .tn-node strong { font-size: 15px; }
  .tn-core { width: 122px; height: 122px; }
  .tn-core span { margin-top: 0; font-size: 25px; }
  .tn-core small { display: none; }
  .tn-line { display: none; }
  .tn-caption, .tn-output { gap: 12px; font-size: 12px; }
  .t2t-capabilities { grid-template-columns: 1fr; }
  .t2t-capabilities article { min-height: 250px; }
  .t2t-capabilities h3 { margin-top: 62px; }
  .network-promise { margin-top: 48px; }
  .network-promise ul { flex-wrap: wrap; }
}
