:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f8;
  --bg-dark: #090716;
  --panel: #111827;
  --panel-soft: #182235;
  --text: #162033;
  --muted: #637083;
  --line: #d9e1ec;
  --purple: #4a178f;
  --violet: #6f2bd8;
  --peach: #ff8b78;
  --amber: #ffd36a;
  --cyan: #1cc8ff;
  --green: #29d391;
  --black: #080a12;
  --ok: #168a5a;
  --danger: #c03232;
  --shadow: 0 20px 54px rgba(14, 22, 40, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 7, 22, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  color: #fff;
}

.brand img,
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(111, 43, 216, 0.34);
}

.brand-word {
  letter-spacing: 0;
  font-size: 18px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #d9e1f5;
  font-weight: 650;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 780;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #151021;
  background: linear-gradient(135deg, var(--amber), var(--peach));
  box-shadow: 0 14px 30px rgba(255, 139, 120, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  color: #fff;
  background: #111;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    linear-gradient(120deg, rgba(9, 7, 22, 0.98), rgba(31, 12, 64, 0.9)),
    var(--bg-dark);
  color: #fff;
}

.hero::before,
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(90deg, rgba(28, 200, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 211, 106, 0.11) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(9, 7, 22, 0), var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: 720px;
  margin: 0 auto;
  padding: 86px 22px 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(28, 200, 255, 0.34);
  border-radius: 999px;
  color: #dff7ff;
  background: rgba(28, 200, 255, 0.1);
  font-size: 13px;
  font-weight: 760;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--black);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--black);
}

.lead {
  color: #dfe7f6;
  font-size: 20px;
  max-width: 710px;
}

.page-lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 780px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.proof-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-item strong {
  display: block;
  color: var(--amber);
  font-size: 23px;
  line-height: 1.1;
}

.proof-item span {
  color: #c9d3e6;
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.orbital-terminal,
.ledger-visual,
.terminal-card,
.app-preview,
.support-visual {
  background:
    linear-gradient(145deg, rgba(18, 24, 44, 0.96), rgba(44, 19, 85, 0.92)),
    var(--panel);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.orbital-terminal {
  min-height: 500px;
  padding: 28px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.orbital-terminal::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(28, 200, 255, 0.18);
  pointer-events: none;
}

.terminal-top,
.price-row,
.asset-list div,
.terminal-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.terminal-top {
  position: relative;
  z-index: 1;
  color: #c9d3e6;
  font-weight: 760;
}

.terminal-top strong {
  color: #fff;
}

.price-row {
  position: relative;
  z-index: 1;
  margin: 44px 0 26px;
}

.price-row span {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.price-row strong,
.asset-list strong {
  color: var(--green);
}

.market-chart {
  position: relative;
  z-index: 1;
  height: 190px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.market-chart span {
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}

.asset-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.asset-list div,
.terminal-line {
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-list span,
.terminal-line span {
  color: #d6deef;
}

.dashboard-float {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(360px, 88%);
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 211, 106, 0.36);
  background: rgba(8, 10, 18, 0.9);
  box-shadow: var(--shadow);
}

.float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
}

.risk-meter {
  height: 12px;
  margin: 16px 0 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.risk-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--amber));
}

.dashboard-float p {
  margin: 0;
  color: #cbd6e8;
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 66px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.soft-panel,
.feature-panel,
.legal-card,
.contact-card,
.download-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 30px;
}

.feature-rows {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #eef8ff);
  border: 1px solid var(--line);
}

.css-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: #12182c;
  color: var(--cyan);
  font-weight: 900;
  font-size: 18px;
  box-shadow: inset 0 0 0 1px rgba(28, 200, 255, 0.26);
}

.ledger-visual {
  position: relative;
  padding: 28px;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.ledger-screen {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 8px;
  background: #f9fbff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.ledger-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: #09101e;
  background: #d8fff0;
  font-size: 12px;
  font-weight: 800;
}

.ledger-lines {
  display: grid;
  gap: 12px;
}

.ledger-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-line:last-child {
  border-bottom: 0;
}

.ledger-line strong {
  color: var(--black);
}

.ledger-line small {
  display: block;
  color: var(--muted);
}

.amount {
  color: var(--violet);
  font-weight: 850;
}

.band {
  background: var(--bg-soft);
}

.band-dark {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #f8fbff;
}

.band-dark .container,
.band-dark .section-head {
  position: relative;
  z-index: 1;
}

.band-dark h2,
.band-dark h3 {
  color: #fff;
}

.band-dark .page-lead,
.band-dark p {
  color: #cad5e7;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.planning-card {
  padding: 24px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.planning-card .css-icon {
  margin-bottom: 22px;
  background: rgba(28, 200, 255, 0.1);
  color: var(--cyan);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: steps;
}

.steps-single {
  grid-template-columns: 1fr;
  margin-top: 26px;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  counter-increment: steps;
}

.step::before {
  content: "0" counter(steps);
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #14101f;
  background: linear-gradient(135deg, var(--amber), var(--peach));
  font-weight: 900;
}

.quote-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.quote-large,
.quote-stack article {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-large {
  padding: 34px;
  font-size: 22px;
}

.quote-stack {
  display: grid;
  gap: 22px;
}

.quote-stack article {
  padding: 24px;
}

.author {
  margin-top: 20px;
  color: var(--violet);
  font-weight: 850;
}

.cta-band {
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b1020, #2b1459);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #fff;
}

.page-hero {
  padding: 82px 0 70px;
  background:
    linear-gradient(135deg, #090716, #24114c 58%, #3c1768);
  color: #fff;
}

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

.page-hero .page-lead {
  color: #e3e9f6;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 48px;
  align-items: center;
}

.page-photo {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.terminal-card {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  color: var(--violet);
  font-size: 30px;
  line-height: 1.1;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 94px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.legal-aside strong {
  display: block;
  color: var(--black);
  margin-bottom: 12px;
}

.legal-aside span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.legal-card {
  padding: 34px;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-card h2 {
  font-size: 26px;
}

.highlight {
  padding: 18px;
  border-radius: 8px;
  background: #fff5d6;
  border: 1px solid #f1d074;
  color: #33270b;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.form-card {
  padding: 32px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--black);
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(28, 200, 255, 0.22);
  border-color: var(--cyan);
}

.check-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
  margin: 8px 0 22px;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-status {
  margin-top: 16px;
  min-height: 26px;
  font-weight: 760;
}

.form-status.success {
  color: var(--ok);
}

.form-status.error {
  color: var(--danger);
}

.contact-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f8fbff;
}

.contact-photo {
  height: 240px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 22px;
}

.support-visual {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: #fff;
  font-weight: 850;
}

.support-visual img {
  width: 86px;
  height: 86px;
  border-radius: 8px;
}

.download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: center;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  padding: 14px 18px;
  border-radius: 8px;
  background: #080a12;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.store-button strong {
  display: block;
  line-height: 1.1;
  font-size: 18px;
}

.store-button span {
  display: block;
  font-size: 11px;
  color: #d4d4d4;
}

.download-photo {
  min-height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.app-preview {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 34px;
}

.app-preview img {
  width: 94px;
  height: 94px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.app-preview div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-preview strong,
.app-preview span {
  display: block;
}

.app-preview span {
  color: #c9d3e6;
  font-size: 14px;
}

.compat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.download-card {
  padding: 26px;
}

.footer {
  padding: 54px 0 26px;
  background: #080a12;
  color: #cbd5e8;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand {
  color: #fff;
}

.footer p {
  max-width: 440px;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-weight: 700;
}

.copyright {
  padding-top: 22px;
  color: #8f9bb0;
  font-size: 14px;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.h5-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #090716, #24114c 60%, #3c1768);
  color: #fff;
}

.h5-shell {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 28px 18px 42px;
}

.h5-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-weight: 850;
}

.h5-card {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.h5-card h1,
.h5-card h2,
.h5-card h3 {
  color: #fff;
}

.h5-card p,
.h5-card .page-lead {
  color: #dfe7f6;
}

.h5-stack {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: #0d1020;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .split,
  .about-split,
  .download-hero-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 64px;
  }

  .hero-media {
    min-height: 430px;
  }

  .orbital-terminal {
    min-height: 430px;
  }

  .dashboard-float {
    left: 18px;
    bottom: -20px;
  }

  .planning-grid,
  .steps,
  .principles,
  .metric-strip,
  .compat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-wall,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding: 10px 16px;
  }

  .brand-word {
    font-size: 15px;
  }

  .brand img,
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero-inner,
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .lead,
  .page-lead {
    font-size: 17px;
  }

  .hero-proof,
  .planning-grid,
  .steps,
  .principles,
  .metric-strip,
  .compat-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .page-hero {
    padding: 62px 0 54px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .quote-large {
    font-size: 19px;
    padding: 24px;
  }

  .download-photo,
  .page-photo,
  .ledger-visual {
    min-height: 360px;
  }

  .orbital-terminal {
    min-height: 390px;
    padding: 22px;
  }

  .price-row {
    display: block;
  }

  .price-row strong {
    display: block;
    margin-top: 10px;
  }

  .market-chart {
    gap: 6px;
  }
}
