@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0a0a0a;
  --paper: #f2f1eb;
  --lime: #c8ff32;
  --blue: #5bb8ff;
  --orange: #ff7048;
  --muted: #a9aaa2;
  --line: rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 8%, rgba(73, 126, 255, 0.12), transparent 26rem),
    var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-shell { overflow: hidden; }
.topbar {
  width: min(1440px, calc(100% - 64px));
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 12px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font: 700 16px/1 "Manrope", sans-serif;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: #c9c9c3;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--lime); }
.nav-links .nav-cta {
  color: var(--ink);
  background: var(--paper);
  padding: 12px 18px;
  border-radius: 999px;
}
.nav-links .nav-cta:hover { color: var(--ink); background: var(--lime); }
.menu-toggle { display: none; }
.section {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}
.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  align-items: center;
  gap: 56px;
  padding-top: 70px;
  padding-bottom: 74px;
}
.eyebrow, .section-kicker, .card-label {
  font: 500 11px/1.4 "DM Mono", monospace;
  letter-spacing: .11em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 50, .35);
  padding: 9px 13px;
  border-radius: 999px;
  text-transform: uppercase;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200,255,50,.11);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 700px;
  margin: 28px 0 28px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: .94;
  letter-spacing: -.065em;
}
.lime { color: var(--lime); }
.hero-lede {
  max-width: 650px;
  color: #b7b8b0;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; margin-top: 36px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.button-ghost { color: var(--paper); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.creator-stats {
  display: flex;
  gap: 38px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.creator-stats div { display: flex; flex-direction: column; gap: 5px; }
.creator-stats strong { font-size: 22px; }
.creator-stats span { color: #898a84; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-visual { position: relative; min-width: 0; }
.data-console {
  min-height: 590px;
  border: 1px solid rgba(200,255,50,.28);
  background:
    linear-gradient(rgba(200,255,50,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,50,.035) 1px, transparent 1px),
    #0d0f0e;
  background-size: 32px 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
  position: relative;
}
.data-console::before,
.data-console::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  border-color: var(--lime);
  pointer-events: none;
}
.data-console::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.data-console::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.console-header,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8c8f87;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .1em;
}
.console-header {
  height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(200,255,50,.16);
}
.console-header span:last-child { color: var(--lime); }
.console-time { padding: 26px 28px 22px; }
.console-time span {
  display: block;
  margin-bottom: 8px;
  color: #72756e;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .12em;
}
.console-time strong {
  color: var(--paper);
  font: 500 clamp(34px, 4.4vw, 66px)/1 "DM Mono", monospace;
  letter-spacing: -.06em;
}
.console-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.console-metrics > div {
  min-height: 126px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-right: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.console-metrics > div:nth-child(even) { border-right: 0; }
.console-metrics > div:nth-child(n+3) { border-bottom: 0; }
.console-metrics span {
  grid-column: 1 / -1;
  align-self: start;
  color: #777a73;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .1em;
}
.console-metrics strong {
  color: var(--lime);
  font: 600 40px/1 "DM Mono", monospace;
  letter-spacing: -.05em;
}
.console-metrics small {
  padding-bottom: 5px;
  color: #a7aaa2;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
.console-spectrum { padding: 22px 20px 18px; }
.console-spectrum > div {
  display: grid;
  grid-template-columns: 112px 48px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 28px;
}
.console-spectrum span,
.console-spectrum b {
  color: #8f928a;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
.console-spectrum b { color: var(--paper); text-align: right; }
.console-spectrum i {
  height: 4px;
  display: block;
  background: rgba(255,255,255,.09);
  position: relative;
  overflow: hidden;
}
.console-spectrum i::after {
  content: "";
  width: var(--level);
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200,255,50,.6);
}
.level-100 { --level: 100%; }
.level-50 { --level: 50%; }
.level-40 { --level: 40%; }
.level-20 { --level: 20%; }
.level-17 { --level: 17%; }
.console-footer {
  padding: 0 20px;
  min-height: 43px;
  border-top: 1px solid rgba(200,255,50,.16);
}
.profile-window {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: #121212;
  box-shadow: 0 40px 100px rgba(0,0,0,.52);
  transform: rotate(1.8deg);
  overflow: hidden;
}
.window-bar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #777;
  font: 400 9px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; background: #4a4a47; border-radius: 50%; }
.verified-chip { justify-self: end; color: var(--lime); }
.profile-image-wrap { aspect-ratio: 1.64; overflow: hidden; background: #080808; }
.profile-image-wrap img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 32%; }
.window-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.window-caption div { display: flex; flex-direction: column; gap: 5px; }
.window-caption strong { font-size: 14px; }
.window-caption div span { color: #7f807a; font-size: 11px; }
.proof-badge {
  padding: 8px 10px;
  border: 1px solid rgba(200,255,50,.28);
  border-radius: 99px;
  color: var(--lime);
  white-space: nowrap;
  font: 500 9px/1 "DM Mono", monospace;
}
.floating-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  padding: 11px 14px;
  border-radius: 4px;
  font: 500 9px/1 "DM Mono", monospace;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.floating-note span { font-weight: 700; }
.note-top { top: -26px; right: 32px; background: var(--blue); transform: rotate(-2deg); }
.note-bottom { bottom: -18px; left: 24px; background: var(--orange); transform: rotate(2deg); }
.orbit {
  position: absolute;
  border: 1px solid rgba(200,255,50,.2);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 180px; height: 180px; top: -62px; left: -72px; }
.orbit-two { width: 70px; height: 70px; top: -7px; left: -17px; }
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-1deg) scale(1.01);
}
.ticker div {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 15px 0;
  animation: ticker 24s linear infinite;
  font: 600 11px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.section-kicker { color: #8e8f88; margin-bottom: 36px; }
.manifesto { padding-top: 144px; padding-bottom: 150px; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: end;
}
.manifesto h2, .section-heading h2, .standards-intro h2, .contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.manifesto-copy > p {
  color: #a8a9a2;
  font-size: 18px;
  line-height: 1.75;
}
.signature-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.signature-line span { font-size: 20px; font-weight: 700; }
.signature-line small { color: #777872; font: 400 10px/1.5 "DM Mono", monospace; text-align: right; }
.profile-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.profile-credentials span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: #9c9e96;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .07em;
}
.career-section { padding-bottom: 150px; }
.career-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 14px;
  border: 1px solid rgba(200,255,50,.26);
  background:
    linear-gradient(rgba(200,255,50,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,50,.025) 1px, transparent 1px),
    #0d0f0e;
  background-size: 24px 24px;
}
.career-proof > div {
  min-height: 150px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.12);
}
.career-proof > div:last-child { border-right: 0; }
.career-proof strong {
  color: var(--lime);
  font: 600 46px/1 "DM Mono", monospace;
  letter-spacing: -.07em;
}
.career-proof span {
  color: #85877f;
  font: 500 8px/1.4 "DM Mono", monospace;
  letter-spacing: .08em;
}
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.career-card {
  min-height: 214px;
  padding: 26px;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px 24px;
  align-content: space-between;
  border: 1px solid var(--line);
  background: #101110;
}
.career-period {
  color: var(--lime);
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: .06em;
}
.career-card > div > p {
  margin-bottom: 10px;
  color: #797b74;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .09em;
}
.career-card h3 {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.career-card > p {
  grid-column: 2;
  margin-bottom: 0;
  color: #999b94;
  font-size: 12px;
  line-height: 1.6;
}
.capability-line {
  margin-top: 14px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  border: 1px solid var(--line);
}
.capability-line span,
.capability-line a {
  color: #85877f;
  font: 500 8px/1 "DM Mono", monospace;
  letter-spacing: .08em;
}
.capability-line a {
  margin-left: auto;
  color: var(--lime);
}
.content-section { padding-bottom: 150px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}
.section-heading .section-kicker { margin-bottom: 22px; }
.section-heading > p { max-width: 450px; margin-bottom: 3px; color: #969790; line-height: 1.7; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.content-card {
  min-height: 510px;
  padding: 28px;
  position: relative;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.content-card::before {
  display: none;
}
.card-lime { background: var(--lime); }
.card-blue { background: var(--blue); }
.card-orange { background: var(--orange); }
.card-number { font: 500 10px/1 "DM Mono", monospace; }
.card-icon {
  position: relative;
  z-index: 1;
  width: 126px; height: 126px;
  margin: 10px auto 30px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-size: 36px;
  font-weight: 800;
  box-shadow: 9px 10px 0 rgba(255,255,255,.38);
}
.card-data {
  margin: 40px 0 34px;
  padding: 16px 0 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(0,0,0,.32);
  border-bottom: 1px solid rgba(0,0,0,.32);
}
.card-data strong {
  font: 700 84px/.78 "DM Mono", monospace;
  letter-spacing: -.09em;
}
.card-data span {
  padding-bottom: 3px;
  font: 500 8px/1.3 "DM Mono", monospace;
  letter-spacing: .09em;
  text-align: right;
}
.content-card h3 { margin: 9px 0 14px; max-width: 340px; font-size: 28px; line-height: 1.12; letter-spacing: -.035em; }
.content-card p:not(.card-label) { margin-bottom: 0; color: rgba(0,0,0,.65); line-height: 1.6; font-size: 14px; }
.card-arrow {
  position: absolute; right: 22px; top: 20px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 50%;
}
.gallery-section { padding-bottom: 150px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-card {
  min-width: 0;
  padding: 14px 14px 24px;
  border: 1px solid var(--line);
  background: #101110;
  transition: border-color .25s ease, transform .25s ease;
}
.gallery-card:hover {
  border-color: rgba(200,255,50,.65);
  transform: translateY(-4px);
}
.gallery-image {
  height: 580px;
  margin-bottom: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    #080908;
  background-size: 22px 22px;
}
.gallery-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .4s ease;
}
.gallery-card:hover img { transform: scale(1.018); }
.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--lime);
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: .09em;
}
.gallery-meta span:last-child { color: #7e8179; }
.gallery-card h3 {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
  transition: color .2s ease;
}
.gallery-card:hover h3 { color: var(--lime); }
.gallery-card > p {
  margin-bottom: 0;
  color: #81847c;
  font-size: 12px;
  line-height: 1.6;
}
.standards-section { padding-bottom: 150px; }
.standards-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  padding: 70px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 2px;
}
.section-kicker-dark { color: #65665f; }
.standards-intro h2 { font-size: clamp(38px, 4.2vw, 64px); }
.standards-intro > p { margin-top: 26px; max-width: 500px; color: #64655f; line-height: 1.7; }
.standards-list { margin: 0; padding: 0; list-style: none; }
.standards-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,.18);
}
.standards-list li:last-child { border-bottom: 1px solid rgba(0,0,0,.18); }
.standards-list > li > span { color: #777; font: 500 11px/1 "DM Mono", monospace; }
.standards-list h3 { margin-bottom: 8px; font-size: 20px; }
.standards-list p { margin-bottom: 0; color: #666760; line-height: 1.6; font-size: 14px; }
.disclosure-section {
  display: grid;
  grid-template-columns: 56px .6fr 1fr;
  align-items: start;
  gap: 34px;
  padding-bottom: 150px;
}
.disclosure-mark {
  width: 48px; height: 48px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: var(--lime); font: 600 18px/1 "DM Mono", monospace;
}
.disclosure-section .card-label { color: var(--lime); margin-bottom: 12px; }
.disclosure-section h2 { margin-bottom: 0; font-size: 32px; }
.disclosure-section > p { color: #969790; line-height: 1.75; }
.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
}
.contact-copy { max-width: 800px; }
.contact-copy .section-kicker { margin-bottom: 24px; }
.contact-copy h2 { font-size: clamp(42px, 5vw, 76px); }
.contact-copy > p { max-width: 630px; margin-top: 26px; margin-bottom: 0; color: #979891; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 18px; min-width: 250px; }
.button-large { min-height: 60px; }
.text-link { color: #8e8f88; font: 400 11px/1 "DM Mono", monospace; text-align: center; text-decoration: underline; text-underline-offset: 5px; }
footer {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
footer p { margin: 0; color: #71726d; font: 400 9px/1.4 "DM Mono", monospace; text-align: center; }
footer p:last-child { text-align: right; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { margin-top: 40px; }
  .manifesto-grid, .standards-panel { grid-template-columns: 1fr; gap: 55px; }
  .content-grid { grid-template-columns: 1fr 1fr; }
  .content-card:last-child { grid-column: 1 / -1; min-height: 420px; }
  .career-proof { grid-template-columns: 1fr 1fr; }
  .career-proof > div:nth-child(2) { border-right: 0; }
  .career-proof > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .career-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-image { height: 520px; }
  .disclosure-section { grid-template-columns: 56px 1fr; }
  .disclosure-section > p { grid-column: 2; }
  .contact-section { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .topbar, .section, footer { width: min(100% - 36px, 1320px); }
  .topbar { height: 72px; }
  .menu-toggle {
    width: 42px; height: 42px; padding: 0;
    display: grid; place-content: center; gap: 6px;
    color: var(--paper); background: transparent; border: 1px solid var(--line); border-radius: 50%;
  }
  .menu-toggle span { width: 17px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 71px;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px; background: #111; border: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 15px 12px; }
  .hero { min-height: auto; padding-top: 64px; gap: 20px; }
  h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .creator-stats { gap: 18px; justify-content: space-between; }
  .creator-stats strong { font-size: 19px; }
  .creator-stats span { font-size: 8px; }
  .profile-window { transform: none; }
  .window-bar { grid-template-columns: 1fr auto; }
  .window-bar > span:nth-of-type(1) { display: none; }
  .window-caption { align-items: flex-start; flex-direction: column; }
  .floating-note { display: none; }
  .data-console { min-height: auto; }
  .console-time { padding: 24px 18px 18px; }
  .console-time strong { font-size: 35px; }
  .console-metrics > div { min-height: 112px; padding: 16px; }
  .console-metrics strong { font-size: 31px; }
  .console-spectrum { padding: 18px 16px; }
  .console-spectrum > div { grid-template-columns: 92px 44px 1fr; gap: 8px; }
  .console-footer { padding: 0 16px; }
  .manifesto { padding-top: 100px; padding-bottom: 100px; }
  .manifesto-grid { gap: 40px; }
  .manifesto h2, .section-heading h2, .contact-copy h2 { font-size: 42px; }
  .signature-line { align-items: flex-start; flex-direction: column; }
  .signature-line small { text-align: left; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card, .content-card:last-child { grid-column: auto; min-height: 470px; }
  .career-section { padding-bottom: 100px; }
  .career-proof { grid-template-columns: 1fr 1fr; }
  .career-proof > div { min-height: 124px; padding: 16px; }
  .career-proof strong { font-size: 32px; }
  .career-card { grid-template-columns: 1fr; min-height: 230px; }
  .career-card > p { grid-column: 1; }
  .capability-line a { width: 100%; margin-left: 0; margin-top: 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-image { height: min(128vw, 560px); }
  .gallery-section { padding-bottom: 100px; }
  .content-section, .standards-section, .disclosure-section { padding-bottom: 100px; }
  .standards-panel { width: calc(100% + 36px); margin-left: -18px; padding: 48px 26px; gap: 40px; }
  .standards-intro h2 { font-size: 42px; }
  .disclosure-section { grid-template-columns: 1fr; gap: 20px; }
  .disclosure-section > p { grid-column: auto; }
  .contact-section { padding: 80px 0; }
  .contact-actions { width: 100%; }
  footer { grid-template-columns: 1fr; justify-items: start; }
  footer p, footer p:last-child { text-align: left; }
}
