:root {
  --bg: #08111d;
  --bg-deep: #050910;
  --surface: rgba(8, 18, 32, 0.76);
  --surface-strong: rgba(13, 25, 41, 0.88);
  --surface-warm: rgba(29, 24, 15, 0.72);
  --border: rgba(255, 206, 112, 0.18);
  --border-soft: rgba(117, 218, 255, 0.12);
  --text: #f6f1e6;
  --muted: #b9c4d3;
  --gold: #ffce70;
  --cyan: #7ce4ff;
  --mint: #8ef0c7;
  --rose: #ff8ba3;
  --ink: #08101c;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 206, 112, 0.14), transparent 18%),
    radial-gradient(circle at 88% 0%, rgba(124, 228, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 60%, rgba(142, 240, 199, 0.08), transparent 28%),
    linear-gradient(180deg, #06101c 0%, #08111d 45%, #04070d 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI Variable Text", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 206, 112, 0.14), transparent 18%),
    radial-gradient(circle at 88% 0%, rgba(124, 228, 255, 0.14), transparent 18%),
    radial-gradient(circle at 50% 60%, rgba(142, 240, 199, 0.08), transparent 28%),
    linear-gradient(180deg, #06101c 0%, #08111d 45%, #04070d 100%);
  overflow-x: hidden;
}

body::before,
body::after,
.page-aura::before,
.page-aura::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 206, 112, 0.08), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(124, 228, 255, 0.07), transparent 16%),
    radial-gradient(circle at 50% 88%, rgba(255, 139, 163, 0.05), transparent 18%);
}

.page-aura::before {
  inset: 8% 58% auto -12%;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 206, 112, 0.12), transparent 72%);
  filter: blur(10px);
}

.page-aura::after {
  inset: auto -10% 10% 58%;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 228, 255, 0.12), transparent 72%);
  filter: blur(8px);
}

a,
button {
  color: inherit;
}

button {
  cursor: pointer;
  font: inherit;
}

button:disabled {
  cursor: not-allowed;
}

.site-header,
.cockpit-card,
.window-card,
.signal-card,
.proof-card,
.browser-frame,
.profile-card,
.post-card,
.step-card,
.cta-band {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header,
.hero-grid,
.proof-strip,
.platform-grid,
.launch-section,
.content-section,
.automation-section,
.cta-band {
  width: min(1240px, calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 24px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), #ffeec6 56%, #ffffff 100%);
}

.brand-mark {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: drop-shadow(0 8px 18px rgba(7, 16, 34, 0.24));
}

.site-nav,
.header-actions,
.hero-actions,
.cta-actions,
.handle-rail {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-actions,
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(172px, 1fr));
  gap: 10px;
  align-items: stretch;
}

.site-nav,
.hero-stat-grid,
.status-stack,
.feature-list,
.post-grid,
.browser-body {
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar,
.hero-stat-grid::-webkit-scrollbar,
.status-stack::-webkit-scrollbar,
.feature-list::-webkit-scrollbar,
.post-grid::-webkit-scrollbar,
.browser-body::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.landing-shell {
  padding: 24px 0 56px;
}

.page-directory-panel {
  width: min(1240px, calc(100% - 28px));
  margin: 18px auto 0;
}

.page-directory-card {
  display: grid;
  gap: 12px;
  max-width: 260px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: rgba(9, 19, 34, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.page-directory-card strong {
  line-height: 1.15;
}

.page-directory-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.page-directory-links {
  display: grid;
  gap: 8px;
}

.page-directory-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.page-directory-links a::after {
  content: "->";
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.page-directory-links a:hover {
  transform: translateX(3px);
  border-color: rgba(255, 206, 112, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.new-inline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 112, 0.24);
  background: rgba(255, 206, 112, 0.12);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-row-highlight {
  border-color: rgba(255, 206, 112, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 206, 112, 0.08), rgba(255, 255, 255, 0.02) 58%),
    rgba(13, 25, 41, 0.82);
}

.page-directory-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-directory-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 112, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.78rem;
}

.page-directory-pill.muted {
  color: var(--muted);
}

.page-directory-actions {
  display: grid;
  gap: 8px;
}

.page-directory-actions > * {
  width: 100%;
  justify-content: center;
}

.system-health-bar {
  width: min(1240px, calc(100% - 28px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(142, 240, 199, 0.16);
  background:
    linear-gradient(90deg, rgba(142, 240, 199, 0.08), rgba(124, 228, 255, 0.04) 45%, rgba(255, 255, 255, 0.03)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.system-health-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.system-health-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.system-health-indicators {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.health-pill {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.health-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 206, 112, 0.12);
}

.health-label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.health-value {
  font-size: 0.92rem;
}

.health-pill.is-healthy .health-dot {
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(142, 240, 199, 0.12);
}

.health-pill.is-degraded .health-dot {
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(255, 139, 163, 0.12);
}

.health-pill.is-checking .health-dot {
  animation: healthPulse 1.3s ease-in-out infinite;
}

@keyframes healthPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.78);
    opacity: 0.66;
  }
}

@media (min-width: 1460px) {
  .site-header,
  .system-health-bar,
  .hero-grid,
  .proof-strip,
  .platform-grid,
  .launch-section,
  .content-section,
  .automation-section,
  .cta-band {
    width: min(1240px, calc(100% - 330px));
    margin-left: 282px;
    margin-right: 24px;
  }

  .page-directory-panel {
    position: fixed;
    top: 12px;
    left: 18px;
    width: 240px;
    margin: 0;
    z-index: 9;
  }

  .page-directory-card {
    max-width: none;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.hero-copy,
.hero-rail {
  display: grid;
  gap: 18px;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.cta-band h2,
.cockpit-card h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.section-heading h2,
.section-copy h2,
.cta-band h2,
.cockpit-card h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

.hero-summary,
.section-copy p,
.proof-card p,
.signal-card p,
.browser-panel p,
.section-note,
.rail-note,
.profile-body,
.post-body,
.step-body,
.cta-band p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow,
.signal-label,
.panel-label,
.status-chip,
.handle-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.signal-label,
.panel-label,
.handle-pill {
  color: var(--gold);
  border: 1px solid rgba(255, 206, 112, 0.18);
  background: rgba(255, 206, 112, 0.08);
}

.primary-button,
.ghost-button,
.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 112, 0.18);
  white-space: nowrap;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.header-actions > .primary-button,
.header-actions > .ghost-button,
.hero-actions > .primary-button,
.hero-actions > .ghost-button {
  width: 100%;
}

.primary-button {
  color: var(--ink);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), #ffd98b 50%, #fff3d0 100%);
}

.ghost-button,
.mini-button {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.mini-button {
  min-height: 38px;
  padding: 0 14px;
}

.primary-button:hover,
.ghost-button:hover,
.mini-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 206, 112, 0.3);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(124, 228, 255, 0.92);
  outline-offset: 3px;
}

.hero-stat-grid,
.proof-strip,
.window-grid,
.feature-list,
.profile-grid,
.post-grid,
.checklist-grid {
  display: grid;
  gap: 14px;
}

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

.signal-card,
.proof-card,
.cockpit-card,
.window-card,
.browser-frame,
.launch-section,
.content-section,
.automation-section,
.cta-band {
  border-radius: 32px;
}

.signal-card,
.proof-card,
.profile-card,
.post-card,
.step-card {
  padding: 18px;
  animation: rise 0.7s ease both;
}

.signal-card strong,
.proof-card strong,
.browser-panel strong,
.profile-card strong,
.post-card strong,
.step-card strong {
  display: block;
  font-size: 1.1rem;
}

.cockpit-card,
.window-card,
.launch-section,
.content-section,
.automation-section,
.cta-band {
  padding: 22px;
}

.cockpit-card {
  background:
    radial-gradient(circle at top right, rgba(255, 206, 112, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--surface-strong);
}

.status-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.status-copy {
  display: grid;
  gap: 4px;
}

.status-title {
  font-weight: 700;
  color: var(--text);
}

.status-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.status-target {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.status-link {
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.status-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(124, 228, 255, 0.08), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}

.status-link .status-target::after {
  content: "↗";
  font-size: 0.92rem;
  opacity: 0.68;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.status-link:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 228, 255, 0.24);
  background:
    radial-gradient(circle at left center, rgba(124, 228, 255, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(2, 8, 18, 0.22);
}

.status-link:hover::before {
  transform: translateX(100%);
}

.status-link:hover .status-target::after {
  opacity: 1;
  transform: translate(2px, -1px);
}

.status-row-locked {
  position: relative;
  overflow: hidden;
}

.status-lock-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.status-lock {
  position: relative;
  width: 18px;
  height: 14px;
  border: 2px solid rgba(255, 206, 112, 0.88);
  border-radius: 5px;
  background: rgba(255, 206, 112, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.status-lock::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% - 1px);
  width: 10px;
  height: 9px;
  border: 2px solid rgba(255, 206, 112, 0.88);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  transform-origin: center bottom;
}

.status-lock::after {
  content: "";
  position: absolute;
  inset: 4px 6px 3px;
  border-radius: 999px;
  background: rgba(255, 206, 112, 0.88);
}

.status-row-locked:hover {
  border-color: rgba(255, 206, 112, 0.24);
  background:
    radial-gradient(circle at right center, rgba(255, 206, 112, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.05);
}

.status-row-locked:hover .status-lock {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 16px rgba(255, 206, 112, 0.16);
}

.status-row-locked:hover .status-lock::before {
  animation: lock-wiggle 0.48s ease;
}

.launch-lock-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 206, 112, 0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 206, 112, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    var(--surface-strong);
}

.launch-lock-card h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.05;
}

.launch-lock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.launch-lock-row {
  min-height: 98px;
}

.window-card {
  background:
    radial-gradient(circle at top left, rgba(124, 228, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
}

.window-bar,
.browser-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.window-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.window-grid article,
.browser-panel {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.window-grid span,
.browser-chip.muted,
.feature-list span,
.meta-row span {
  color: var(--muted);
}

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

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  margin-top: 22px;
}

#about .section-heading h2 {
  max-width: 11ch;
}

#about .section-copy {
  max-width: 34rem;
}

.section-copy,
.section-heading {
  display: grid;
  gap: 14px;
}

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

.feature-list div {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.feature-list strong,
.meta-row strong {
  display: block;
  margin-bottom: 6px;
}

.browser-frame {
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(124, 228, 255, 0.1), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 206, 112, 0.1), transparent 20%),
    var(--surface-strong);
}

.snapshot-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.snapshot-brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 112, 0.12), transparent 38%),
    rgba(9, 19, 34, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  flex: 0 0 62px;
}

.snapshot-brand-mark img {
  width: 34px;
  height: 34px;
  display: block;
}

.snapshot-brand-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.snapshot-brand-copy strong {
  display: block;
  font-size: 1.08rem;
}

.snapshot-brand-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 28ch;
}

.browser-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.browser-panel-large {
  grid-column: 1 / -1;
}

.launch-section,
.content-section,
.automation-section,
.cta-band {
  margin-top: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    var(--surface);
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.profile-grid,
.post-grid,
.checklist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.profile-card,
.post-card,
.step-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
}

.profile-head,
.post-head,
.meta-row,
.card-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile-head,
.post-head,
.card-actions {
  flex-wrap: wrap;
}

.post-card {
  display: grid;
  gap: 14px;
}

.post-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(4, 10, 19, 0.46);
}

.post-media-landscape {
  aspect-ratio: 16 / 9;
}

.post-media-square {
  aspect-ratio: 1 / 1;
}

.post-media-portrait {
  aspect-ratio: 4 / 5;
}

.post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-media figcaption {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.profile-handle {
  margin: 8px 0 0;
  color: var(--cyan);
  font-weight: 700;
}

.meta-row {
  margin-top: 14px;
}

.card-actions {
  margin-top: 18px;
}

.status-chip {
  border: 1px solid transparent;
}

.status-automated {
  color: var(--mint);
  background: rgba(142, 240, 199, 0.08);
  border-color: rgba(142, 240, 199, 0.16);
}

.status-manual,
.status-manual_verification {
  color: var(--gold);
  background: rgba(255, 206, 112, 0.08);
  border-color: rgba(255, 206, 112, 0.16);
}

.status-needs_credentials {
  color: var(--rose);
  background: rgba(255, 139, 163, 0.08);
  border-color: rgba(255, 139, 163, 0.16);
}

.launch-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.launch-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  margin-top: 18px;
}

.launch-summary-frame,
.launch-ops-card {
  height: 100%;
}

.difference-window {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.launch-summary-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.launch-summary-stack .handle-rail {
  margin-top: 12px;
}

.launch-summary-copy,
.launch-status-bar p {
  margin: 0;
  color: var(--text);
  line-height: 1.8;
}

.launch-goal-card {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 19, 34, 0.86);
}

.launch-goal-card h3,
.launch-ops-card h3,
.subsection-heading h3 {
  margin: 10px 0 0;
  font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.launch-goal-card h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.launch-ops-card h3,
.subsection-heading h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.launch-ops-card {
  background:
    radial-gradient(circle at top left, rgba(255, 206, 112, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    var(--surface-strong);
}

.launch-status-stack {
  margin-top: 16px;
}

.launch-status-bar {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(124, 228, 255, 0.16);
  background:
    radial-gradient(circle at right center, rgba(124, 228, 255, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.03);
}

.subsection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.subsection-heading .section-note {
  margin: 8px 0 0;
}

.launch-actions > button[disabled] {
  opacity: 0.56;
  transform: none;
}

.comparison-board {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.comparison-row-head .comparison-cell {
  min-height: 56px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-color: rgba(255, 206, 112, 0.16);
  background: rgba(255, 206, 112, 0.06);
}

.comparison-cell {
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
  color: var(--muted);
  line-height: 1.7;
}

.comparison-cell-label {
  color: var(--text);
  font-weight: 700;
}

.comparison-cell-simdex {
  color: var(--text);
  border-color: rgba(124, 228, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(124, 228, 255, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 206, 112, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface-strong);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at right center, rgba(255, 206, 112, 0.14), transparent 24%),
    radial-gradient(circle at left center, rgba(124, 228, 255, 0.12), transparent 20%),
    var(--surface-warm);
}

.cta-actions-contact {
  display: grid;
  gap: 12px;
  width: min(100%, 430px);
  justify-items: stretch;
}

.contact-primary {
  width: 100%;
}

.contact-apply-button {
  width: 100%;
}

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

.contact-social-link {
  width: 100%;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lock-wiggle {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) rotate(-11deg);
  }
  50% {
    transform: translateX(-50%) rotate(8deg);
  }
  75% {
    transform: translateX(-50%) rotate(-5deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .platform-grid,
  .launch-overview-grid,
  .section-heading,
  .cta-band {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-stat-grid,
  .proof-strip,
  .feature-list,
  .profile-grid,
  .post-grid,
  .checklist-grid,
  .comparison-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .card-actions,
  .profile-head,
  .post-head,
  .meta-row,
  .status-row,
  .launch-actions,
  .subsection-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header,
  .hero-grid,
  .launch-section,
  .content-section,
  .automation-section,
  .cta-band {
    width: min(1240px, calc(100% - 18px));
  }

  .landing-shell {
    padding: 18px 0 44px;
  }

  .page-directory-panel {
    width: min(1240px, calc(100% - 18px));
  }

  .page-directory-card {
    max-width: none;
  }

  .system-health-bar {
    width: min(1240px, calc(100% - 18px));
    grid-template-columns: 1fr;
  }

  .system-health-indicators {
    justify-content: flex-start;
  }

  .site-header {
    top: 8px;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .brand-pill {
    min-height: 46px;
    padding: 0 16px;
  }

  .site-nav {
    width: calc(100% + 4px);
    margin-inline: -2px;
    overflow-x: auto;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
  }

  .site-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.035);
  }

  .header-actions,
  .hero-actions,
  .cta-actions,
  .launch-actions,
  .launch-lock-actions {
    width: 100%;
  }

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

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

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-social-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .launch-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .launch-lock-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-actions > *,
  .hero-actions > *,
  .cta-actions > *,
  .launch-actions > *,
  .launch-lock-actions > * {
    width: 100%;
    justify-content: center;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy,
  .hero-rail {
    gap: 14px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-band h2,
  .cockpit-card h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .site-header,
  .launch-section,
  .content-section,
  .automation-section,
  .cta-band,
  .cockpit-card,
  .window-card,
  .browser-frame,
  .signal-card,
  .post-card,
  .step-card {
    border-radius: 22px;
  }

  .cockpit-card,
  .window-card,
  .launch-section,
  .content-section,
  .automation-section,
  .cta-band,
  .browser-frame {
    padding: 18px;
  }

  .hero-stat-grid,
  .feature-list,
  .post-grid,
  .browser-body,
  .profile-grid,
  .checklist-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-inline: 2px;
    padding-bottom: 6px;
    margin-inline: -2px;
  }

  .hero-stat-grid > *,
  .feature-list > *,
  .post-grid > *,
  .browser-body > * {
    scroll-snap-align: start;
  }

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

  .comparison-board {
    gap: 14px;
  }

  .comparison-row {
    gap: 8px;
  }

  .comparison-row-head {
    display: none;
  }

  .comparison-cell {
    min-height: 0;
    padding: 16px;
  }

  .comparison-cell-label {
    min-height: 0;
    padding-bottom: 10px;
    color: var(--gold);
    background: rgba(255, 206, 112, 0.06);
  }

  .browser-body {
    gap: 12px;
    margin-top: 14px;
  }

  .browser-panel-large {
    grid-column: auto;
  }

  .status-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .status-row {
    justify-content: flex-start;
    min-height: 88px;
    padding: 12px 14px;
  }

  .status-target,
  .status-lock-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .status-row strong {
    word-break: break-word;
  }
}
