:root {
  --bg: #050607;
  --panel: #090d10;
  --panel-2: #0d1216;
  --text: #f4f7f8;
  --muted: #a7b1b8;
  --soft: #66727a;
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(118, 229, 255, 0.38);
  --accent: #67e5ff;
  --accent-2: #d5f8ff;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  --max: 1200px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  padding: 0 clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.72), rgba(2, 4, 6, 0));
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 9, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  min-width: 172px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand {
  width: 190px;
  min-width: 190px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(103, 229, 255, 0.34));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.nav a,
.footer nav a {
  color: rgba(244, 247, 248, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav a:hover,
.footer nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.header-action {
  justify-self: end;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.36);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease;
}

.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 42px;
  padding: 4px 5px 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 7, 9, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 5px;
  border: 1px solid rgba(103, 229, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 44%, rgba(103, 229, 255, 0.72) 46% 54%, transparent 56%),
    linear-gradient(0deg, transparent 44%, rgba(103, 229, 255, 0.46) 46% 54%, transparent 56%);
  box-shadow: 0 0 18px rgba(103, 229, 255, 0.22);
}

.language-switcher button {
  position: relative;
  min-width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  color: rgba(244, 247, 248, 0.66);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--text);
}

.language-switcher button.is-active {
  background: rgba(103, 229, 255, 0.14);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.header-action:hover {
  border-color: rgba(103, 229, 255, 0.85);
  background: rgba(103, 229, 255, 0.1);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 12px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
}

.panel-section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - clamp(40px, 8vw, 112px)));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: var(--header);
}

.hero-image,
.closing-image,
.process-bg,
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: 72% center;
  opacity: 0.92;
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.98) 36%, rgba(5, 6, 7, 0.7) 58%, rgba(5, 6, 7, 0.1) 88%),
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.92) 9%, rgba(5, 6, 7, 0.1) 24%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.32) 0%, rgba(5, 6, 7, 0.1) 54%, #050607 100%);
}

.hero-copy,
.closing-copy {
  max-width: 760px;
  padding: 9vh 0 15vh;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  max-width: 760px;
  font-size: clamp(36px, 5.2vw, 78px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.05;
  font-weight: 700;
}

.hero-copy p,
.section-copy > p,
.closing-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(244, 247, 248, 0.82);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.54;
  transform: none;
}

.button-primary {
  background: var(--text);
  color: #050607;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(5, 7, 9, 0.22);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(103, 229, 255, 0.1);
}

.next-preview {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  border-top: 1px solid var(--line);
  color: rgba(244, 247, 248, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-preview span {
  width: 54px;
  height: 1px;
  background: var(--accent);
}

.capabilities,
.projects {
  background:
    radial-gradient(circle at 86% 18%, rgba(103, 229, 255, 0.11), transparent 26%),
    linear-gradient(180deg, #050607, #0a0e11 45%, #050607);
  padding: clamp(88px, 12vw, 152px) 0;
}

.home-gateway,
.content-band {
  background:
    radial-gradient(circle at 14% 24%, rgba(103, 229, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #050607, #090d10 46%, #050607);
  padding: clamp(90px, 12vw, 154px) 0;
}

.gateway-grid,
.page-grid,
.metric-strip {
  display: grid;
  gap: 1px;
  margin-top: clamp(44px, 6vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
}

.gateway-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.vision-grid {
  grid-template-columns: repeat(4, 1fr);
}

.market-grid {
  grid-template-columns: repeat(3, 1fr);
}

.opportunity-grid {
  grid-template-columns: repeat(4, 1fr);
}

.indicator-grid {
  grid-template-columns: repeat(3, 1fr);
}

.roadmap-grid {
  grid-template-columns: repeat(3, 1fr);
}

.leadership-grid {
  grid-template-columns: repeat(3, 1fr);
}

.investor-deck-grid {
  grid-template-columns: repeat(3, 1fr);
}

.investor-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(36px, 5vw, 62px);
  background: rgba(103, 229, 255, 0.2);
  border: 1px solid rgba(103, 229, 255, 0.22);
}

.gateway-grid a,
.page-grid article,
.metric-strip article,
.investor-cta-grid a {
  min-height: 240px;
  padding: 32px clamp(22px, 3vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    #06090b;
}

.gateway-grid a,
.investor-cta-grid a {
  transition: background 180ms ease, transform 180ms ease;
}

.gateway-grid a:hover,
.investor-cta-grid a:hover {
  background:
    linear-gradient(180deg, rgba(103, 229, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #080d10;
  transform: translateY(-2px);
}

.gateway-grid span,
.page-grid span,
.metric-strip span,
.investor-cta-grid span,
.page-label,
.text-columns span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gateway-grid h3,
.page-grid h3,
.investor-cta-grid h3 {
  margin-bottom: 18px;
}

.gateway-grid p,
.page-grid p,
.metric-strip p,
.investor-cta-grid p,
.text-columns p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.deck-action {
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(28px, 4vw, 44px);
}

.page-main {
  background: var(--bg);
}

.page-hero {
  min-height: 76svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 92px) 0 clamp(76px, 10vw, 130px);
}

.page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.82;
}

.page-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.94) 34%, rgba(5, 6, 7, 0.5) 66%, rgba(5, 6, 7, 0.18) 100%),
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.36) 44%, #050607 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.page-label) {
  max-width: 680px;
  margin-top: 26px;
  color: rgba(244, 247, 248, 0.82);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.text-columns h2 {
  font-size: clamp(34px, 4.6vw, 66px);
}

.text-columns p + p {
  margin-top: 22px;
}

.metric-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.metric-strip strong {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.7) 46%, rgba(5, 6, 7, 0.38)),
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.66) 34%, #050607 100%);
  pointer-events: none;
}

.section-bg {
  z-index: 0;
  opacity: 0.66;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.media-frame {
  position: relative;
  min-height: clamp(420px, 52vw, 650px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, transparent, rgba(5, 7, 9, 0.2));
  pointer-events: none;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.capability-list {
  margin-top: clamp(42px, 6vw, 74px);
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 44px minmax(180px, 0.8fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list p,
.timeline p,
.project-rail p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.line-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent 46%, var(--accent) 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(103, 229, 255, 0.55) 47% 53%, transparent 54%);
}

.process {
  min-height: 780px;
  padding: clamp(108px, 14vw, 180px) 0;
  background: #050607;
}

.process-bg {
  opacity: 0.2;
  object-position: center;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.72) 28%, rgba(5, 6, 7, 0.82) 72%, #050607 100%),
    linear-gradient(90deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.78));
}

.process-inner {
  display: grid;
  gap: clamp(70px, 10vw, 122px);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.timeline::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 24%;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(103, 229, 255, 0.74);
  animation: scan 5.5s ease-in-out infinite;
}

.timeline article {
  min-height: 190px;
  padding: 32px 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline span,
.project-rail span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline h3 {
  margin-bottom: 12px;
}

.projects-inner {
  display: grid;
  gap: clamp(50px, 8vw, 86px);
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-rail article {
  min-height: 260px;
  padding: 34px clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.project-rail article:last-child {
  border-right: 0;
}

.project-rail h3 {
  margin-bottom: 20px;
}

.closing {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding-top: var(--header);
}

.closing-image {
  opacity: 0.82;
  object-position: 72% center;
}

.closing-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050607 0%, rgba(5, 6, 7, 0.98) 34%, rgba(5, 6, 7, 0.58) 58%, rgba(5, 6, 7, 0.08) 84%),
    linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.06) 34%, rgba(5, 6, 7, 0.72) 100%);
}

.closing-inner {
  padding-bottom: clamp(34px, 6vw, 70px);
}

.closing-copy {
  padding-bottom: clamp(64px, 10vw, 116px);
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-strip a {
  color: rgba(244, 247, 248, 0.86);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: clamp(34px, 5vw, 58px);
}

.form-success {
  margin-top: 28px;
  border: 1px solid rgba(103, 229, 255, 0.34);
  background: rgba(103, 229, 255, 0.08);
  padding: 18px 20px;
}

.form-success[hidden] {
  display: none;
}

.form-success strong {
  color: var(--accent);
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-success p {
  color: var(--muted);
  margin: 0;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: 0;
  padding: 15px 16px;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(103, 229, 255, 0.12);
}

.contact-form select option {
  background: #050607;
  color: var(--text);
}

.form-wide {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(260px, 1.1fr) minmax(420px, 1.4fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: 42px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-brand {
  align-self: start;
  width: 180px;
  min-width: 180px;
}

.footer-meta,
.footer-legal {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-meta p,
.footer-legal p {
  margin: 0;
}

.footer-meta p:first-child {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-meta a,
.footer-legal a {
  color: var(--accent);
  font-weight: 700;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px 28px;
  max-width: 420px;
}

.footer nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 10px 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-legal p {
  flex: 0 1 auto;
}

.footer-legal p:first-child {
  flex: 1 1 260px;
}

.footer-legal p:last-child {
  flex: 1 1 320px;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(315%);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 9, 0.96);
    backdrop-filter: blur(18px);
  }

  .language-switcher {
    grid-column: 2;
    min-height: 40px;
    padding-left: 9px;
  }

  .site-header.is-open .nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-copy,
  .closing-copy {
    padding-top: 12vh;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .media-frame {
    min-height: 360px;
  }

  .capability-list article {
    grid-template-columns: 34px 1fr;
  }

  .capability-list article p {
    grid-column: 2;
  }

  .timeline,
  .project-rail {
    grid-template-columns: 1fr;
  }

  .timeline {
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .timeline::before {
    top: 0;
    left: -2px;
    width: 3px;
    height: 22%;
    animation: scan-vertical 5.5s ease-in-out infinite;
  }

  .timeline article {
    min-height: 150px;
    padding: 26px 0 26px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-rail article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-rail article:last-child {
    border-bottom: 0;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer nav {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .footer-legal {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal p:last-child {
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .gateway-grid,
  .page-grid,
  .product-grid,
  .vision-grid,
  .market-grid,
  .opportunity-grid,
  .indicator-grid,
  .roadmap-grid,
  .leadership-grid,
  .investor-deck-grid,
  .investor-cta-grid,
  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }

  .text-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 66px;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 36px));
  }

  .brand,
  .footer-brand {
    width: 150px;
    min-width: 150px;
  }

  .site-header {
    gap: 8px;
    padding: 0 14px;
  }

  .language-switcher {
    min-height: 38px;
    padding: 3px 4px;
  }

  .language-switcher::before {
    display: none;
  }

  .language-switcher button {
    min-width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .hero {
    min-height: 92svh;
  }

  h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(34px, 10.6vw, 42px);
    line-height: 0.98;
  }

  .hero-copy p,
  .section-copy > p,
  .closing-copy p,
  .page-hero p:not(.page-label) {
    max-width: min(100%, 330px);
    font-size: 16px;
  }

  h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .actions,
  .button {
    width: 100%;
  }

  .next-preview {
    left: 18px;
    right: 18px;
    min-height: 62px;
    font-size: 10px;
  }

  .hero-image,
  .closing-image {
    object-position: 88% center;
  }

  .scrim,
  .closing-scrim {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.88)),
      linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.88) 22%, rgba(5, 6, 7, 0.54) 54%, #050607 100%);
  }

  .page-hero {
    min-height: 78svh;
    padding: calc(var(--header) + 72px) 0 78px;
  }

  .page-bg {
    object-position: 82% center;
  }

  .page-scrim {
    background:
      linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.86)),
      linear-gradient(180deg, #050607 0%, rgba(5, 6, 7, 0.5) 44%, #050607 100%);
  }

  .gateway-grid,
  .page-grid,
  .product-grid,
  .vision-grid,
  .market-grid,
  .opportunity-grid,
  .indicator-grid,
  .roadmap-grid,
  .leadership-grid,
  .investor-deck-grid,
  .investor-cta-grid,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .gateway-grid a,
  .page-grid article,
  .metric-strip article,
  .investor-cta-grid a {
    min-height: 190px;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer nav {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-column: auto;
    gap: 8px;
  }
}

@keyframes scan-vertical {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(355%);
  }
}

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