:root {
  --navy-980: #020914;
  --navy-950: #06111f;
  --navy-900: #081a2d;
  --navy-820: #0a2540;
  --navy-760: #0d3356;
  --cyan-500: #16d4ff;
  --cyan-400: #5de8ff;
  --green-400: #43e0a7;
  --white: #ffffff;
  --ice: #eef8fc;
  --muted: #9fb4c7;
  --ink: #102033;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(0, 18, 38, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--navy-950);
}

body.menu-open {
  overflow: hidden;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(6, 17, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(2, 8, 20, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 31, 0.94);
  border-color: rgba(93, 232, 255, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--green-400));
  border-radius: 8px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.desktop-nav a,
.mobile-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--cyan-400);
}

.header-cta {
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  inset: 102px 20px auto;
  z-index: 29;
  display: none;
  padding: 18px;
  color: var(--white);
  background: rgba(6, 17, 31, 0.96);
  border: 1px solid rgba(93, 232, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-980);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slow-pan 18s ease-in-out infinite alternate;
}

.hero-grid {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(93, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 232, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 74%, transparent);
  animation: grid-drift 12s linear infinite;
}

.hero-overlay {
  background:
    radial-gradient(circle at var(--mx, 78%) var(--my, 34%), rgba(22, 212, 255, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(2, 9, 20, 0.98) 0%, rgba(2, 9, 20, 0.83) 46%, rgba(2, 9, 20, 0.36) 100%),
    linear-gradient(180deg, rgba(2, 9, 20, 0.04) 0%, rgba(2, 9, 20, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: center;
  min-height: 100svh;
  padding-top: 106px;
  padding-bottom: 78px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-400);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.1vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--green-400));
  box-shadow: 0 16px 36px rgba(22, 212, 255, 0.24);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.ops-console {
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(93, 232, 255, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 26, 45, 0.88), rgba(3, 12, 25, 0.82));
  box-shadow: var(--shadow), inset 0 0 60px rgba(22, 212, 255, 0.08);
  backdrop-filter: blur(16px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.console-top span {
  margin-right: auto;
}

.console-top i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-400);
  box-shadow: 0 0 16px var(--green-400);
}

.console-top i:nth-child(3) {
  background: var(--cyan-400);
}

.console-top i:nth-child(4) {
  background: #f7d56a;
}

.console-map {
  position: relative;
  height: 272px;
  margin: 26px 0 20px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 28%, rgba(67, 224, 167, 0.25), transparent 16%),
    radial-gradient(circle at 74% 58%, rgba(22, 212, 255, 0.28), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.route {
  position: absolute;
  inset: 30px 34px;
  border: 2px solid transparent;
  border-top-color: var(--cyan-400);
  border-right-color: rgba(93, 232, 255, 0.62);
  border-radius: 46% 58% 44% 55%;
  filter: drop-shadow(0 0 12px rgba(93, 232, 255, 0.72));
  animation: pulse-route 2.4s ease-in-out infinite;
}

.node,
.vehicle-dot {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--cyan-400);
  box-shadow: 0 0 22px var(--cyan-400);
}

.node::after {
  position: absolute;
  inset: -12px;
  content: "";
  border: 1px solid rgba(93, 232, 255, 0.5);
  border-radius: inherit;
  animation: node-ping 2s ease-out infinite;
}

.node-a {
  top: 58px;
  left: 72px;
}

.node-b {
  right: 84px;
  top: 126px;
}

.node-c {
  left: 178px;
  bottom: 62px;
}

.vehicle-dot {
  width: 18px;
  height: 18px;
  background: var(--green-400);
  offset-path: path("M 74 70 C 190 18, 320 76, 352 162 C 300 242, 158 230, 122 156");
  animation: drive-route 6s linear infinite;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.console-stats div,
.telemetry-feed span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.console-stats strong {
  display: block;
  color: var(--green-400);
  font-size: 2.2rem;
}

.console-stats span,
.telemetry-feed span {
  color: var(--muted);
  font-size: 0.82rem;
}

.telemetry-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section-heading p,
.platform-grid p,
.owner-grid p,
.vision-grid p,
.growth-board p {
  color: #b8c9d9;
  font-size: 1.05rem;
  line-height: 1.75;
}

.opportunity-section,
.tech-section,
.vision-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(22, 212, 255, 0.12), transparent 32%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.pain-grid,
.metric-grid,
.moat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.pain-grid article,
.moat-grid article {
  min-height: 290px;
  padding: 30px;
  background: rgba(8, 26, 45, 0.86);
}

.pain-grid p,
.moat-grid p,
.feature-stack p {
  color: var(--muted);
  line-height: 1.7;
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 50px;
  place-items: center;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 8px;
  font-weight: 900;
}

.platform-section,
.owner-section,
.validation-section,
.moat-section {
  color: var(--white);
  background: linear-gradient(180deg, #071625, #081a2d);
}

.platform-grid,
.owner-grid,
.vision-grid,
.tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.chip-orbit {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(93, 232, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(93, 232, 255, 0.12), transparent 35%),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.chip-orbit::before {
  position: absolute;
  inset: 34px;
  content: "";
  border: 1px dashed rgba(93, 232, 255, 0.28);
  border-radius: 50%;
  animation: rotate-orbit 18s linear infinite;
}

.chip-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-760), #1269b0);
  border: 1px solid rgba(93, 232, 255, 0.56);
  border-radius: 20px;
  font-weight: 900;
  box-shadow: 0 0 42px rgba(22, 212, 255, 0.26);
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  max-width: 170px;
  padding: 10px 12px;
  color: var(--cyan-400);
  border: 1px solid rgba(93, 232, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 26, 45, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
}

.orbit-a {
  left: 32px;
  top: 84px;
}

.orbit-b {
  right: 30px;
  top: 112px;
}

.orbit-c {
  left: 54px;
  bottom: 92px;
}

.orbit-d {
  right: 34px;
  bottom: 72px;
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mini-list span {
  padding: 10px 14px;
  color: var(--cyan-400);
  border: 1px solid rgba(93, 232, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.metric-grid.income-highlight {
  grid-template-columns: 1fr;
}

.metric-card {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.income-highlight .metric-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(22, 212, 255, 0.14), rgba(67, 224, 167, 0.1)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.income-highlight .metric-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
  content: "";
  background:
    linear-gradient(90deg, rgba(52, 64, 78, 0.96), rgba(52, 64, 78, 0.22) 42%, rgba(52, 64, 78, 0.08)),
    url("assets/nextlog-hero.png") center right / cover;
  opacity: 0.72;
}

.income-highlight .metric-card::after {
  position: absolute;
  top: 18%;
  right: 7%;
  width: 44%;
  height: 58%;
  content: "";
  border: 1px solid rgba(93, 232, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 42%, var(--cyan-400) 0 5px, transparent 6px),
    radial-gradient(circle at 58% 28%, var(--green-400) 0 6px, transparent 7px),
    radial-gradient(circle at 80% 66%, var(--cyan-400) 0 5px, transparent 6px);
  box-shadow: 0 0 34px rgba(22, 212, 255, 0.16);
  opacity: 0.88;
  animation: pulse-route 2.8s ease-in-out infinite;
}

.metric-card span {
  display: block;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.86rem;
  position: relative;
  z-index: 1;
}

.metric-card strong {
  display: block;
  color: var(--green-400);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.income-highlight .metric-card strong {
  max-width: 940px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.02;
  width: min(44%, 620px);
}

.growth-board {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 46px;
  align-items: center;
  margin-top: 40px;
  padding: 34px;
  border: 1px solid rgba(93, 232, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(22, 212, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.compact-growth {
  display: block;
}

.compact-growth h3 {
  margin-bottom: 0;
  color: var(--green-400);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 1;
}

.growth-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: end;
  height: 230px;
}

.growth-bars span {
  position: relative;
  display: grid;
  align-content: end;
  height: var(--h);
  min-height: 80px;
  padding: 18px;
  color: var(--navy-950);
  background: linear-gradient(180deg, var(--cyan-400), var(--green-400));
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 32px rgba(22, 212, 255, 0.22);
  animation: grow-bar 1.2s ease both;
}

.growth-bars b {
  font-size: 2.2rem;
}

.growth-bars small {
  font-weight: 900;
}

.owner-grid {
  grid-template-columns: minmax(0, 900px);
}

.owner-grid strong {
  color: var(--white);
}

.split-model {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(93, 232, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.split-ring {
  display: grid;
  min-height: 170px;
  place-items: center;
  text-align: center;
  border-radius: 8px;
  background:
    conic-gradient(var(--green-400) 0 180deg, rgba(255, 255, 255, 0.12) 180deg 360deg);
}

.split-ring.nextlog {
  background:
    conic-gradient(var(--cyan-400) 0 180deg, rgba(255, 255, 255, 0.12) 180deg 360deg);
}

.split-ring span {
  display: block;
  font-size: 3rem;
  font-weight: 900;
}

.split-ring small {
  display: block;
  margin-top: -28px;
  color: var(--navy-950);
  font-weight: 900;
}

.split-model p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tech-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack article {
  position: relative;
  display: block;
  min-height: 180px;
  padding: 24px;
  padding-left: 118px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-stack p {
  margin-bottom: 0;
}

.feature-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-400), var(--green-400));
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.moat-section {
  background: #071421;
}

.vision-grid {
  align-items: start;
}

.roadmap {
  position: relative;
  display: grid;
  gap: 16px;
}

.roadmap::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  content: "";
  width: 2px;
  background: linear-gradient(var(--cyan-400), var(--green-400));
}

.roadmap div {
  position: relative;
  padding: 24px 24px 24px 64px;
  border: 1px solid rgba(93, 232, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.roadmap div::before {
  position: absolute;
  left: 14px;
  top: 28px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--cyan-400);
  border-radius: 999px;
  box-shadow: 0 0 18px var(--cyan-400);
}

.roadmap span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-400);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  padding: 110px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.95), rgba(8, 26, 45, 0.86)),
    url("assets/nextlog-hero.png") center/cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 420px);
  gap: 40px;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(93, 232, 255, 0.24);
  border-radius: 8px;
  background: rgba(6, 17, 31, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.contact-card a:not(.button),
.contact-card span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  line-height: 1.45;
}

.contact-card a:not(.button):hover {
  color: var(--cyan-400);
}

.contact-card .button {
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-980);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner span:first-child {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes slow-pan {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 74px 74px;
  }
}

@keyframes node-ping {
  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes pulse-route {
  50% {
    opacity: 0.54;
    filter: drop-shadow(0 0 20px rgba(93, 232, 255, 0.95));
  }
}

@keyframes drive-route {
  to {
    offset-distance: 100%;
  }
}

@keyframes rotate-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes grow-bar {
  from {
    transform: scaleY(0.2);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

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

@media (max-width: 1040px) {
  .hero-content,
  .platform-grid,
  .owner-grid,
  .vision-grid,
  .tech-grid,
  .growth-board,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .ops-console {
    min-height: 440px;
  }

  .pain-grid,
  .moat-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-shell,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 14px;
    min-height: 62px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    gap: 34px;
    align-content: start;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 62px;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(2.2rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .eyebrow {
    max-width: 350px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-copy {
    max-width: 350px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions,
  .hero-actions .button,
  .cta-inner .button,
  .contact-card {
    width: 100%;
  }

  .button {
    padding: 0 18px;
    text-align: center;
  }

  .ops-console,
  .chip-orbit {
    min-height: 360px;
  }

  .telemetry-feed,
  .console-stats,
  .pain-grid,
  .moat-grid,
  .metric-grid,
  .split-model {
    grid-template-columns: 1fr;
  }

  .feature-stack article {
    min-height: auto;
    padding: 24px;
    padding-top: 98px;
  }

  .feature-icon {
    top: 24px;
    left: 24px;
  }

  .section {
    padding: 78px 0;
  }

  .metric-card {
    min-height: 150px;
  }

  .income-highlight .metric-card {
    min-height: 440px;
  }

  .income-highlight .metric-card::before {
    top: auto;
    left: 0;
    width: 100%;
    height: 46%;
    opacity: 0.36;
  }

  .income-highlight .metric-card::after {
    top: auto;
    right: 8%;
    bottom: 10%;
    width: 70%;
    height: 28%;
    opacity: 0.62;
  }

  .income-highlight .metric-card strong {
    width: 100%;
  }

  .growth-board {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .orbit {
    position: static;
    margin: 8px;
  }

  .chip-orbit {
    display: grid;
    align-content: end;
    padding: 18px;
  }

  .chip-core {
    top: 38%;
  }
}
