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

:root {
  --bg: #f4fff9;
  --bg-deep: #041018;
  --bg-panel: rgba(255, 255, 255, 0.7);
  --panel-strong: #07141d;
  --line: rgba(7, 20, 29, 0.12);
  --line-strong: rgba(255, 255, 255, 0.1);
  --ink: #07141d;
  --muted: #5a6b76;
  --mint: #14f195;
  --violet: #9945ff;
  --sky: #00c2ff;
  --lemon: #ecff72;
  --shadow: 0 20px 60px rgba(4, 16, 24, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(20, 241, 149, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(153, 69, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 68% 72%,
      rgba(0, 194, 255, 0.14),
      transparent 28%
    ),
    linear-gradient(180deg, #fbfffd 0%, var(--bg) 46%, #eef7ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.6;
}

body::before {
  width: 280px;
  height: 280px;
  top: 100px;
  left: -40px;
  background: rgba(20, 241, 149, 0.22);
}

body::after {
  width: 340px;
  height: 340px;
  top: 420px;
  right: -120px;
  background: rgba(153, 69, 255, 0.18);
}

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

.page {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 255, 249, 0.78);
  border-bottom: 1px solid rgba(7, 20, 29, 0.07);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(4, 16, 24, 0.16));
}

.brand-text {
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--mint), var(--violet));
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #03110a;
  background: linear-gradient(135deg, var(--mint), var(--sky) 55%, #8ef1ff);
  box-shadow: 0 14px 32px rgba(20, 241, 149, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(7, 20, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 52px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 20, 29, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: 0 0 0 6px rgba(20, 241, 149, 0.12);
}

.headline {
  margin: 24px 0 20px;
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.headline .accent {
  display: block;
  background: linear-gradient(135deg, #0f1720, #0d6c78 36%, #7b37d8 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}

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

.mini-card {
  min-height: 126px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(7, 20, 29, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.mini-card h3 {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-family: "Syne", sans-serif;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(20, 241, 149, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 80% 8%,
      rgba(153, 69, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(160deg, #07141d 0%, #0c2230 45%, #081119 100%);
  color: white;
  box-shadow: 0 28px 80px rgba(4, 16, 24, 0.28);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255, 255, 255, 0.08),
      transparent 62%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 110px
    );
  pointer-events: none;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.panel-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.live-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(20, 241, 149, 0.9);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.metric-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  font-family: "Syne", sans-serif;
}

.flow {
  display: grid;
  gap: 12px;
}

.flow-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-id {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.flow-copy strong,
.ops-copy strong {
  display: block;
  font-size: 15px;
}

.flow-copy span,
.ops-copy span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.flow-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 241, 149, 0.12);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  padding: 34px 0;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--violet));
}

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

.feature-card,
.ops-panel,
.launch-panel,
.safety-panel,
.story-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(7, 20, 29, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.feature-card::after,
.story-panel::after,
.launch-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(20, 241, 149, 0.14),
    transparent 68%
  );
  pointer-events: none;
}

.feature-card h3,
.story-panel h3,
.launch-panel h3 {
  margin: 0 0 10px;
  font-family: "Syne", sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.feature-card p,
.story-panel p,
.launch-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-chip {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(4, 16, 24, 0.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.story-panel.dark,
.ops-panel,
.safety-panel {
  color: white;
  background: linear-gradient(155deg, #07141d, #0d1d2b);
  border-color: rgba(255, 255, 255, 0.08);
}

.story-panel.dark p,
.ops-panel p,
.safety-panel p,
.ops-panel .meta {
  color: rgba(255, 255, 255, 0.72);
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.loop-step {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 20, 29, 0.08);
  box-shadow: var(--shadow);
}

.loop-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-family: "Syne", sans-serif;
  background: linear-gradient(
    135deg,
    rgba(20, 241, 149, 0.22),
    rgba(153, 69, 255, 0.18)
  );
}

.loop-step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.loop-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.safety-layout,
.ops-layout,
.launch-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 18px;
}

.stack-list,
.launch-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.stack-row,
.launch-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-icon,
.launch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-family: "Syne", sans-serif;
  background: linear-gradient(
    135deg,
    rgba(20, 241, 149, 0.18),
    rgba(0, 194, 255, 0.1)
  );
  color: var(--mint);
}

.stack-row strong,
.launch-row strong {
  display: block;
  font-size: 16px;
}

.stack-row span,
.launch-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

.ops-panel {
  padding: 0;
}

.ops-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 22px 22px;
}

.ops-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.ops-stat span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
}

.ops-stat strong {
  display: block;
  margin-top: 8px;
  font-family: "Syne", sans-serif;
  font-size: 28px;
}

.ops-title {
  margin: 10px 0 0;
  font-family: "Syne", sans-serif;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.table-shell {
  margin: 0 22px 22px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 72px 1.3fr 1fr 0.8fr 0.9fr;
  gap: 10px;
  padding: 14px 16px;
  align-items: center;
}

.table-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-row + .table-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tag-positive,
.tag-neutral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag-positive {
  background: rgba(20, 241, 149, 0.12);
  color: var(--mint);
}

.tag-neutral {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.launch-panel {
  min-height: 100%;
}

.launch-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.launch-badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(7, 20, 29, 0.06);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.whitepaper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.whitepaper-points {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.whitepaper-points li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background: rgba(7, 20, 29, 0.05);
  color: var(--muted);
  line-height: 1.6;
}

.whitepaper-points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: 0 0 0 6px rgba(20, 241, 149, 0.12);
}

.waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

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

.field-grid-single {
  grid-template-columns: 1fr;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(7, 20, 29, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.form-input::placeholder {
  color: #7f8b93;
}

.form-input:focus {
  outline: none;
  border-color: rgba(0, 194, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.12);
}

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

.waitlist-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  color: #0a8453;
}

.form-status.is-error {
  color: #b42318;
}

.button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  padding: 24px 0 48px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 20, 29, 0.08);
}

.footer-copy {
  max-width: 540px;
}

.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 20px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  padding: 4px 0;
  transition:
    transform 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  color: #111111;
  opacity: 0.78;
}

.social-link:focus-visible {
  outline: 2px solid rgba(0, 194, 255, 0.45);
  outline-offset: 6px;
}

.social-link-icon {
  width: 22px;
  height: 22px;
  line-height: 1;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(7, 20, 29, 0.1);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--sky) 58%, #8ef1ff);
  color: #03110a;
  box-shadow: 0 18px 38px rgba(4, 16, 24, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease,
    box-shadow 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  box-shadow: 0 22px 42px rgba(4, 16, 24, 0.22);
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 2px solid rgba(0, 194, 255, 0.42);
  outline-offset: 4px;
}

.scroll-top-icon {
  width: 22px;
  height: 22px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .safety-layout,
  .ops-layout,
  .launch-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .loop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    display: none;
  }
}

@media (max-width: 1024px) {
  .shell {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero {
    padding: 44px 0 32px;
  }

  .section {
    padding: 30px 0;
  }

  .headline {
    font-size: clamp(3.2rem, 8vw, 5rem);
  }

  .hero-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar-inner {
    gap: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(var(--max), calc(100% - 20px));
  }

  .topbar-inner,
  .footer-inner,
  .section-header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .actions,
  .hero-actions {
    width: 100%;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text {
    font-size: 18px;
  }

  .actions .button,
  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-note,
  .feature-grid,
  .loop-grid,
  .field-grid,
  .metric-strip,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .headline {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-copy p,
  .section-header p {
    font-size: 16px;
  }

  .table-head,
  .table-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .table-head {
    display: none;
  }

  .table-row {
    gap: 8px;
    padding: 16px;
  }

  .table-row > div::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
  }

  .flow-row,
  .stack-row,
  .launch-row {
    grid-template-columns: 1fr;
  }

  .waitlist-actions {
    align-items: stretch;
  }

  .whitepaper-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-actions .button {
    width: 100%;
  }

  .whitepaper-actions .button {
    width: 100%;
  }

  .footer-socials {
    width: 100%;
    justify-content: flex-start;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
