:root {
  --bg: #05080d;
  --bg-soft: #080d15;
  --panel: #0c131e;
  --panel-bright: #111b29;
  --line: rgba(143, 180, 222, .16);
  --line-strong: rgba(83, 169, 255, .34);
  --text: #f4f8fc;
  --muted: #8c9bae;
  --blue: #179bff;
  --blue-light: #72c7ff;
  --cyan: #31e0f2;
  --gold: #f6bc5b;
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 999;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  background: white;
  color: black;
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: none; }

.ambient {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .12;
  z-index: 0;
}
.ambient-one { width: 500px; height: 500px; background: #075cae; inset: 14vh auto auto -280px; }
.ambient-two { width: 420px; height: 420px; background: #0b80bf; inset: 120vh -250px auto auto; }

.site-header {
  height: var(--header-height);
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(4, 8, 13, .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 190px; height: 96px; padding-block: 5px; display: grid; place-items: center start; position: relative; z-index: 2; flex: 0 0 auto; }
.brand img { width: 176px; max-height: 84px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(30, 157, 255, .25)); }
.desktop-nav { display: flex; align-items: center; gap: 33px; margin-inline-start: auto; }
.desktop-nav a { color: #a9b4c1; font-size: .89rem; font-weight: 600; position: relative; transition: color .2s; }
.desktop-nav a::after { content: ""; position: absolute; height: 1px; inset: auto 0 -9px; background: var(--blue); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.desktop-nav a.active { color: white; }
.desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; position: relative; }
.language-button, .menu-button {
  color: #dce8f3;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  cursor: pointer;
}
.language-button { min-width: 54px; height: 40px; padding: 0 10px; border-radius: 12px; font-weight: 700; font-size: .72rem; letter-spacing: .06em; }
.language-menu { position: absolute; z-index: 70; top: calc(100% + 12px); inset-inline-start: 0; width: 178px; padding: 7px; border: 1px solid var(--line-strong); border-radius: 13px; background: rgba(7,13,21,.98); box-shadow: 0 20px 55px rgba(0,0,0,.45); backdrop-filter: blur(18px); }
.language-option { width: 100%; min-height: 40px; padding: 0 11px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 9px; color: #9cabbb; background: transparent; cursor: pointer; }
.language-option:hover, .language-option.active { color: white; background: rgba(23,155,255,.09); }
.language-option b { color: #5eb9ff; font-size: .67rem; letter-spacing: .08em; }
.youtube-button {
  height: 40px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #dfe9f3;
  font-size: .8rem;
  font-weight: 650;
  background: rgba(255,255,255,.025);
  transition: border-color .2s, background .2s;
}
.youtube-button svg { width: 18px; fill: #f2f6fa; }
.youtube-button:hover { border-color: var(--line-strong); background: rgba(23, 155, 255, .08); }
.menu-button { display: none; width: 42px; height: 40px; border-radius: 12px; padding: 0; place-items: center; position: relative; }
.menu-button span { width: 18px; height: 1px; position: absolute; background: white; transition: transform .2s; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 52px 24px;
  background: rgba(4,8,13,.98);
  flex-direction: column;
  align-items: center;
  gap: 28px;
  font-size: 1.35rem;
  font-weight: 600;
}
.mobile-nav:not([hidden]) { display: flex; }

.hero { min-height: 760px; height: 100svh; position: relative; display: flex; align-items: center; isolation: isolate; overflow: hidden; }
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(90deg, rgba(4,8,13,.94) 0%, rgba(4,8,13,.55) 47%, rgba(4,8,13,.12) 100%), linear-gradient(0deg, var(--bg) 0%, transparent 20%), url('/assets/hero-background.png?v=5.2.0');
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}
[dir="ltr"] .hero-art { transform: scaleX(-1) scale(1.015); }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .14;
  background-image: linear-gradient(rgba(106,160,220,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(106,160,220,.13) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; box-shadow: inset 0 0 180px rgba(0,0,0,.58); pointer-events: none; }
.hero-content { display: flex; direction: ltr; align-items: center; justify-content: space-between; gap: 60px; padding-top: var(--header-height); }
.hero-copy {
  width: min(660px, 66vw);
  padding: 34px 38px 39px;
  border: 1px solid rgba(89, 174, 255, .16);
  border-inline-start-color: rgba(64, 177, 255, .55);
  border-radius: 4px 26px 26px 4px;
  background: linear-gradient(115deg, rgba(3, 8, 14, .82), rgba(4, 11, 20, .48) 72%, transparent);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28), inset 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
}
[dir="rtl"] .hero-copy { border-radius: 26px 4px 4px 26px; }
[dir="rtl"] .hero-copy { direction: rtl; text-align: right; }
[dir="ltr"] .hero-copy { direction: ltr; text-align: left; }
.eyebrow, .kicker { margin: 0 0 22px; color: var(--blue-light); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow > span:first-child { width: 32px; height: 1px; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.hero h1 { margin: 0; max-width: 590px; font-size: clamp(2.8rem, 4.5vw, 4.75rem); line-height: 1.03; letter-spacing: -.045em; font-weight: 740; text-wrap: balance; }
.hero-body { max-width: 560px; margin: 22px 0 0; color: #aab7c5; font-size: clamp(.96rem, 1.05vw, 1.05rem); line-height: 1.78; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.button { min-height: 52px; padding: 0 22px; border-radius: 14px; display: inline-flex; justify-content: center; align-items: center; gap: 12px; font-size: .9rem; font-weight: 700; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
[dir="rtl"] .button svg { transform: scaleX(-1); }
.button-primary { color: white; background: linear-gradient(135deg, #086acb, #179bff); box-shadow: 0 12px 35px rgba(8,106,203,.26), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 15px 42px rgba(8,106,203,.38), inset 0 1px rgba(255,255,255,.25); }
.button-secondary { border: 1px solid var(--line-strong); background: rgba(7,13,22,.42); backdrop-filter: blur(10px); color: #d8e2ec; }
.button-secondary:hover { background: rgba(23,155,255,.09); }
.hero-marker { display: grid; grid-template-columns: auto 1px auto; align-items: center; gap: 17px; writing-mode: vertical-rl; height: 300px; margin-bottom: 24px; color: #708096; }
.marker-index { color: var(--blue-light); font-size: .75rem; letter-spacing: .16em; }
.marker-line { width: 1px; height: 78px; background: linear-gradient(transparent, var(--blue), transparent); }
.marker-label { font-size: .62rem; letter-spacing: .25em; }
.scroll-cue { position: absolute; bottom: 25px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 8px; transform: translateX(-50%); color: #68798c; font-size: .66rem; letter-spacing: .18em; }
.scroll-cue i { width: 1px; height: 30px; overflow: hidden; position: relative; background: rgba(255,255,255,.12); }
.scroll-cue i::after { content: ""; position: absolute; inset: -30px 0 auto; height: 22px; background: var(--blue-light); animation: scrollLine 2s infinite; }
@keyframes scrollLine { to { transform: translateY(62px); } }

.section { position: relative; z-index: 1; padding: 130px 0; border-top: 1px solid rgba(255,255,255,.035); }
.split-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 100px; align-items: start; }
.section-heading h2, .updates-heading h2, .media-heading h2, .closing h2 { margin: 0; font-size: clamp(2.3rem, 4.4vw, 4.6rem); line-height: 1.1; letter-spacing: -.045em; text-wrap: balance; }
.about { background: radial-gradient(circle at 72% 38%, rgba(13, 92, 151, .1), transparent 32%); }
.about-copy { padding-top: 56px; border-top: 1px solid var(--line); }
.about-copy > p { margin: 0; color: #a7b4c3; font-size: 1.13rem; line-height: 2; }
.studio-signature { margin-top: 45px; display: flex; align-items: baseline; gap: 15px; }
.studio-signature strong { font-size: 1.05rem; }
.studio-signature span { color: #5f6e7e; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }

.home-project { background: linear-gradient(180deg, #060a10, #08111c); overflow: hidden; }
.home-project::before { content: "TRUE ROADS"; position: absolute; inset: 0 auto auto 50%; transform: translateX(-50%); color: rgba(255,255,255,.018); font-size: clamp(7rem,17vw,15rem); font-weight: 800; letter-spacing: -.08em; white-space: nowrap; }
.home-project-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; position: relative; }
.home-project-identity { min-height: 340px; display: flex; flex-direction: column; justify-content: center; }
.home-project-identity > img { width: 100%; filter: drop-shadow(0 15px 35px rgba(0,0,0,.55)); }
.home-project-identity .status-chip { align-self: flex-start; }
.home-project-copy { padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-project-copy h2 { margin: 0; font-size: clamp(2.6rem,4.5vw,4.6rem); line-height: 1.05; letter-spacing: -.05em; }
.home-project-copy p { margin: 25px 0; color: #99a8b9; line-height: 1.95; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--blue-light); font-size: .85rem; font-weight: 700; }
.text-link b { transition: transform .2s; }
.text-link:hover b { transform: translate(-3px,-3px); }
[dir="ltr"] .text-link:hover b { transform: translate(3px,-3px); }

.gateways { background: #05080d; }
.gateway-heading { max-width: 730px; margin-bottom: 60px; }
.gateway-heading h2 { margin: 0; font-size: clamp(2.5rem,4.5vw,4.6rem); line-height: 1.08; letter-spacing: -.045em; }
.gateway-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gateway-card { min-height: 290px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-inline-start: 1px solid var(--line); background: rgba(255,255,255,.012); transition: background .25s; }
.gateway-card:first-child { border-inline-start: 0; }
.gateway-card:hover { background: rgba(23,155,255,.05); }
.gateway-card > span { color: #52677e; font-size: .68rem; letter-spacing: .15em; }
.gateway-card p { margin: 0 0 9px; color: var(--blue-light); font-size: .72rem; font-weight: 700; letter-spacing: .08em; }
.gateway-card h3 { margin: 0; font-size: 1.45rem; line-height: 1.35; }
.gateway-card > b { align-self: end; color: #54718d; font-size: 1.2rem; }
.home-updates .updates-heading .text-link, .home-media .media-heading .text-link { margin-bottom: 8px; }

.project { overflow: hidden; background: linear-gradient(180deg, #060a10, #08101a 46%, #05080d); }
.project::before { content: "TRUE ROADS"; position: absolute; inset: 8px auto auto 50%; transform: translateX(-50%); white-space: nowrap; font-size: clamp(7rem, 17vw, 15rem); font-weight: 800; letter-spacing: -.08em; color: rgba(255,255,255,.018); pointer-events: none; }
.project-glow { position: absolute; width: 800px; height: 460px; top: 150px; left: 50%; transform: translateX(-50%); background: rgba(11,126,208,.1); filter: blur(100px); border-radius: 50%; }
.project-top { display: flex; align-items: center; justify-content: space-between; gap: 60px; min-height: 230px; }
.project-top > div { flex: 0 0 auto; }
.trueroads-logo { width: min(720px, 68%); filter: drop-shadow(0 15px 34px rgba(0,0,0,.5)); }
.status-chip { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(49,224,242,.18); background: rgba(49,224,242,.045); color: #9adce5; border-radius: 999px; padding: 7px 12px; font-size: .72rem; }
.status-chip > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: #38d59f; box-shadow: 0 0 12px #38d59f; }
.project-statement { display: grid; grid-template-columns: 1fr .86fr; gap: 100px; align-items: start; margin-top: 55px; padding-top: 64px; border-top: 1px solid var(--line); }
.project-statement h2 { margin: 0; font-size: clamp(2.5rem, 4.7vw, 4.8rem); line-height: 1.05; letter-spacing: -.05em; }
.project-statement p { margin: 8px 0 0; color: #9eacbc; font-size: 1.05rem; line-height: 1.95; }
.feature-grid { margin-top: 90px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.01); }
.feature-card { position: relative; min-height: 290px; padding: 38px 34px; border-inline-start: 1px solid var(--line); transition: background .3s; }
.feature-card:first-child { border-inline-start: 0; }
.feature-card:hover { background: rgba(23,155,255,.045); }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--blue-light); background: rgba(23,155,255,.055); }
.feature-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.feature-card h3 { margin: 42px 0 10px; font-size: 1.25rem; }
.feature-card p { margin: 0; color: #8494a7; font-size: .9rem; line-height: 1.85; }
.feature-number { position: absolute; top: 35px; inset-inline-end: 32px; color: rgba(255,255,255,.17); font-size: .65rem; letter-spacing: .16em; }

.vision { min-height: 760px; display: flex; align-items: center; overflow: hidden; background: #05080d; }
.vision-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 120px; align-items: center; }
.vision-copy { max-width: 620px; margin: 31px 0 0; color: #96a5b6; font-size: 1.05rem; line-height: 1.95; }
.principles { border-top: 1px solid var(--line); }
.principle { padding: 27px 0; display: grid; grid-template-columns: 48px 1fr 20px; align-items: center; gap: 17px; border-bottom: 1px solid var(--line); }
.principle span { color: var(--blue); font-size: .7rem; letter-spacing: .15em; }
.principle strong { font-size: 1.03rem; }
.principle i { width: 6px; height: 6px; justify-self: end; border-radius: 50%; border: 1px solid #46627f; }
.vision-orbit { position: absolute; width: 680px; height: 680px; inset: 50% auto auto -410px; transform: translateY(-50%); border: 1px solid rgba(40,139,226,.1); border-radius: 50%; }
.vision-orbit span { position: absolute; border: 1px solid rgba(40,139,226,.07); border-radius: 50%; inset: 12%; }
.vision-orbit span:nth-child(2) { inset: 26%; }
.vision-orbit span:nth-child(3) { inset: 40%; background: rgba(13,106,185,.06); box-shadow: 0 0 90px rgba(13,106,185,.16); }
[dir="ltr"] .vision-orbit { inset: 50% -410px auto auto; }

.updates { background: var(--bg-soft); }
.updates-heading, .media-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 65px; }
.updates-heading > p, .media-heading > p { max-width: 350px; margin: 0 0 8px; color: #8493a5; }
.updates-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.update-card { display: grid; grid-template-columns: 125px 1fr 40px; gap: 38px; align-items: center; padding: 35px 38px; background: #080e17; transition: background .25s; }
.update-card:hover { background: #0b131e; }
.update-meta { display: flex; flex-direction: column; gap: 5px; color: #697b8f; font-size: .72rem; }
.update-meta strong { color: var(--blue-light); font-weight: 650; }
.update-card h3 { margin: 0 0 7px; font-size: 1.2rem; }
.update-card p { margin: 0; color: #8393a6; font-size: .88rem; }
.update-arrow { font-size: 1.4rem; color: #426281; }

.media { background: #060b12; }
.media-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.media-card { grid-column: span 4; position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--panel); cursor: zoom-in; }
.media-card:nth-child(5n + 1), .media-card:nth-child(5n + 5) { grid-column: span 6; }
.media-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s, filter .4s; }
.media-card:hover img { transform: scale(1.04); filter: brightness(.82); }
.media-card figcaption { position: absolute; inset: auto 0 0; padding: 45px 19px 16px; color: white; font-weight: 650; background: linear-gradient(transparent, rgba(0,0,0,.82)); transform: translateY(100%); transition: transform .28s; }
.media-card:hover figcaption { transform: none; }

.closing { position: relative; z-index: 1; min-height: 590px; display: flex; align-items: center; text-align: center; overflow: hidden; background: radial-gradient(circle at 50% 60%, rgba(0,110,210,.17), transparent 42%), #05090f; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing h2 { max-width: 850px; }
.closing p:not(.kicker) { max-width: 580px; margin: 25px auto 32px; color: #91a0b1; }
.closing-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(120deg, transparent 49.8%, rgba(23,155,255,.36) 50%, transparent 50.2%), linear-gradient(60deg, transparent 49.8%, rgba(23,155,255,.18) 50%, transparent 50.2%); background-size: 260px 260px; mask-image: radial-gradient(circle, black, transparent 68%); }

.site-footer { position: relative; z-index: 1; padding: 28px 0; border-top: 1px solid var(--line); background: #03060a; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px; }
.footer-brand { width: 110px; }
.footer-brand { height: 68px; display: grid; place-items: center; width: 155px; }
.footer-brand img { width: 145px; }
.footer-inner > p { margin: 0; color: #586778; font-size: .73rem; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; color: #667589; font-size: .73rem; }
.footer-links a:hover { color: var(--blue-light); }

.lightbox { width: min(1050px, calc(100vw - 34px)); max-height: calc(100vh - 34px); padding: 0; border: 1px solid var(--line-strong); border-radius: 18px; overflow: hidden; background: #05080d; color: white; }
.lightbox::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(10px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #020305; }
.lightbox p { margin: 0; padding: 16px 22px; }
.lightbox button { position: absolute; z-index: 2; top: 12px; inset-inline-end: 12px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(0,0,0,.65); color: white; font-size: 1.4rem; cursor: pointer; }

.loading-screen { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; background: #03060a; transition: opacity .6s, visibility .6s; animation: loaderFallback .01s forwards 2.4s; }
.loader-logo { width: 320px; height: 150px; grid-area: 1/1; display: grid; place-items: center; }
.loader-logo img { width: 300px; filter: drop-shadow(0 0 30px rgba(23,155,255,.18)); }
.loading-screen span { width: 220px; height: 1px; grid-area: 1/1; margin-top: 150px; position: relative; overflow: hidden; background: rgba(255,255,255,.08); }
.loading-screen span::after { content: ""; position: absolute; inset: 0; width: 45%; background: var(--blue); animation: loader 1.1s ease-in-out infinite; }
@keyframes loader { from { transform: translateX(-120%); } to { transform: translateX(320%); } }
.loading-screen.done { opacity: 0; visibility: hidden; animation: none; }
@keyframes loaderFallback { to { opacity: 0; visibility: hidden; } }
.reveal { opacity: 1; transform: none; }
.reveal.visible { animation: revealUp .72s ease both; }
@keyframes revealUp { from { opacity: .01; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.build-stamp {
  position: fixed;
  z-index: 90;
  inset-inline-end: 14px;
  bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(91, 177, 255, .22);
  border-radius: 7px;
  background: rgba(3, 7, 12, .76);
  color: #6f91b1;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}

body[data-build="5.2.0"] .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: .7;
}

.inner-hero { min-height: 680px; padding: calc(var(--header-height) + 90px) 0 90px; position: relative; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 25% 50%, rgba(11,105,185,.17), transparent 34%), #050a11; }
.inner-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 -120px 140px #05080d; }
.inner-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(100,160,220,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(100,160,220,.11) 1px,transparent 1px); background-size: 78px 78px; mask-image: radial-gradient(circle at 50%,black,transparent 72%); }
.inner-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; gap: 100px; align-items: center; }
.inner-hero-copy h1, .compact-hero h1 { margin: 0; max-width: 820px; font-size: clamp(3.3rem,6.1vw,6.4rem); line-height: .98; letter-spacing: -.055em; }
.inner-hero-copy > p:last-child, .compact-hero-inner > p:last-child { max-width: 670px; margin: 29px 0 0; color: #9eacbc; font-size: 1.08rem; line-height: 1.95; }
.page-logo-presence { height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: radial-gradient(circle,rgba(23,155,255,.08),transparent 64%); overflow: hidden; }
.page-logo-presence img { width: 440px; filter: drop-shadow(0 0 32px rgba(23,155,255,.22)); }
.page-logo-presence span { margin-top: 8px; color: #52657a; font-size: .62rem; letter-spacing: .28em; }
.editorial { background: #05080d; }
.editorial-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 110px; }
.editorial-copy { padding-top: 48px; border-top: 1px solid var(--line); }
.editorial-copy > p { margin: 0 0 24px; color: #9ba9b8; font-size: 1.05rem; line-height: 2; }
.value-section { background: #080d15; }
.value-section .section-heading { max-width: 760px; margin-bottom: 55px; }
.value-grid, .growth-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.value-card, .growth-card { min-height: 290px; padding: 33px; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(145deg,#0c141e,#080d14); }
.value-card > span, .growth-card > span { color: var(--blue); font-size: .68rem; letter-spacing: .17em; }
.value-card h3, .growth-card h3 { margin: 70px 0 12px; font-size: 1.45rem; }
.value-card p, .growth-card p { margin: 0; color: #8191a4; font-size: .9rem; line-height: 1.85; }
.page-cta { position: relative; z-index: 1; padding: 95px 0; border-top: 1px solid var(--line); background: radial-gradient(circle at 50%,rgba(12,104,181,.12),transparent 45%),#05090f; }
.page-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.page-cta h2 { max-width: 750px; margin: 0; font-size: clamp(2.4rem,4.3vw,4.4rem); line-height: 1.08; letter-spacing: -.045em; }
.game-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.trueroads-hero { background: radial-gradient(circle at 30% 48%,rgba(0,142,215,.13),transparent 33%),radial-gradient(circle at 70% 55%,rgba(245,174,61,.08),transparent 34%),#05090f; }
.road-lines { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(120deg,transparent 49.8%,rgba(43,167,246,.3) 50%,transparent 50.2%); background-size: 200px 200px; mask-image: radial-gradient(circle,black,transparent 70%); }
.game-logo-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.game-logo-wrap > img { width: 100%; filter: drop-shadow(0 20px 45px rgba(0,0,0,.6)); }
.game-hero-copy h1 { margin: 0; font-size: clamp(3.1rem,5.2vw,5.4rem); line-height: 1; letter-spacing: -.05em; }
.game-hero-copy > p:last-child { margin: 28px 0 0; color: #9cabbc; line-height: 1.95; }
.project-detail { background: linear-gradient(#05080d,#07101a); }
.wide-heading { max-width: 850px; }
.wide-heading > p:last-child { color: #91a0b1; font-size: 1.03rem; line-height: 1.95; }
.game-direction { background: #05080d; }
.game-facts { margin-top: 38px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 14px; }
.game-facts span { padding: 18px; display: grid; border-inline-start: 1px solid var(--line); }
.game-facts span:first-child { border-inline-start: 0; }
.game-facts b { font-size: .84rem; }
.game-facts small { color: #65778b; font-size: .66rem; }
.vision-page-hero .hero-orbit { opacity: .8; inset: 50% auto auto -310px; }
.vision-principles { min-height: auto; }
.growth-section { background: #080d15; }
.growth-section .wide-heading { margin-bottom: 60px; }
.compact-hero { min-height: 520px; text-align: center; }
.compact-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.compact-hero-inner > p:last-child { margin-inline: auto; }
.updates-page, .media-page { min-height: 520px; padding-top: 80px; }
.public-empty { min-height: 350px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); background: rgba(255,255,255,.012); }
.public-empty > span { color: rgba(87,183,255,.22); font-size: 4rem; font-weight: 800; letter-spacing: -.08em; }
.public-empty h2 { margin: 8px 0; font-size: 1.8rem; }
.public-empty p { margin: 0; color: #718196; }

.legal-page { min-height: 100vh; padding: 140px 0 90px; }
.legal-copy { width: min(780px, var(--shell)); }
.legal-copy h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); margin: 0 0 35px; }
.legal-copy h2 { margin: 42px 0 10px; }
.legal-copy p, .legal-copy li { color: #9aa8b8; }
.legal-back { color: var(--blue-light); font-weight: 650; }

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .desktop-nav, .youtube-button span { display: none; }
  .youtube-button { width: 42px; padding: 0; justify-content: center; }
  .menu-button { display: grid; }
  .split-layout, .project-statement, .vision-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-copy { padding-top: 38px; }
  .project-top { flex-direction: column; align-items: flex-start; }
  .trueroads-logo { width: min(100%, 720px); align-self: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; border-inline-start: 0; border-top: 1px solid var(--line); }
  .feature-card:first-child { border-top: 0; }
  .vision-layout { gap: 75px; }
  .vision-orbit { opacity: .55; }
  .home-project-grid, .inner-hero-layout, .game-hero-layout, .editorial-grid { grid-template-columns: 1fr; gap: 52px; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-card { min-height: 220px; border-inline-start: 0; border-top: 1px solid var(--line); }
  .gateway-card:first-child { border-top: 0; }
  .page-logo-presence { max-width: 620px; width: 100%; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .brand { width: 138px; height: 72px; padding-block: 4px; }
  .brand img { width: 134px; max-height: 64px; }
  .header-inner { gap: 14px; }
  .hero { min-height: 700px; }
  .hero-art { background-position: 63% center; }
  .hero-content { align-items: center; }
  .hero-copy { width: 100%; padding: 25px 23px 29px; border-radius: 18px; }
  .hero h1 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .hero-body { margin-top: 19px; line-height: 1.7; }
  .hero-marker { display: none; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .scroll-cue { display: none; }
  .section { padding: 95px 0; }
  .project-top { min-height: 0; gap: 28px; }
  .project-statement { margin-top: 35px; padding-top: 42px; }
  .feature-grid { margin-top: 55px; }
  .feature-card { padding: 31px 27px; }
  .value-grid, .growth-grid { grid-template-columns: 1fr; }
  .page-cta-inner { align-items: flex-start; flex-direction: column; }
  .inner-hero { min-height: 620px; padding-top: calc(var(--header-height) + 65px); }
  .inner-hero-copy h1, .compact-hero h1 { font-size: clamp(2.9rem,13vw,4.6rem); }
  .page-logo-presence { height: 235px; }
  .page-logo-presence img { width: min(360px, 90%); }
  .page-logo-presence span { margin-top: 8px; }
  .game-facts { grid-template-columns: 1fr; }
  .game-facts span { border-inline-start: 0; border-top: 1px solid var(--line); }
  .game-facts span:first-child { border-top: 0; }
  .updates-heading, .media-heading { align-items: start; flex-direction: column; margin-bottom: 40px; gap: 22px; }
  .update-card { grid-template-columns: 1fr 25px; gap: 18px; padding: 26px 24px; }
  .update-meta { grid-column: 1 / -1; flex-direction: row; gap: 15px; }
  .media-card, .media-card:nth-child(5n + 1), .media-card:nth-child(5n + 5) { grid-column: span 12; }
  .media-card figcaption { transform: none; }
  .closing { min-height: 520px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { justify-content: center; }
}

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