:root {
  --bg: #0d1b31;
  --bg-2: #122641;
  --panel: rgba(18, 38, 65, 0.9);
  --panel-2: rgba(14, 28, 49, 0.98);
  --glass: rgba(255, 253, 248, 0.08);
  --line: rgba(227, 213, 186, 0.18);
  --line-strong: rgba(232, 188, 85, 0.35);
  --text: #f8f1e7;
  --muted: #c6ceda;
  --accent: #e8bc55;
  --accent-2: #f3d79a;
  --tint: #79a6de;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --wrap: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(232, 188, 85, 0.15), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(121, 166, 222, 0.12), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 243, 211, 0.08), transparent 18%),
    radial-gradient(circle at 78% 24%, rgba(121, 166, 222, 0.08), transparent 16%);
}

body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 80%, rgba(255, 255, 255, 0.015));
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  padding-bottom: 96px;
}

.motion-fade {
  will-change: opacity, transform;
}

body.motion-ready .motion-fade {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.motion-ready .motion-fade.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.motion-ready .motion-delay-1 { transition-delay: 70ms; }
body.motion-ready .motion-delay-2 { transition-delay: 140ms; }
body.motion-ready .motion-delay-3 { transition-delay: 210ms; }
body.motion-ready .motion-delay-4 { transition-delay: 280ms; }

.section-gap {
  margin-top: 28px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(10, 20, 36, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.brand-text,
.brand-subtext {
  display: block;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-subtext {
  color: var(--muted);
  font-size: 0.88rem;
}

.topnav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

.topnav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.header-cta,
.primary-btn,
.ghost-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-btn,
.header-cta {
  color: #0d1b31;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 18px 34px rgba(232, 188, 85, 0.22);
}

.ghost-btn {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.primary-btn:hover,
.ghost-btn:hover,
.header-cta:hover,
button:hover {
  transform: translateY(-1px);
}

.panel-glass,
.panel-dark,
.info-card,
.feature-card,
.journey-card,
.faq-item,
.stack-form {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-glass::before,
.panel-dark::before,
.info-card::before,
.feature-card::before,
.journey-card::before,
.faq-item::before,
.stack-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%);
}

.panel-glass {
  background: linear-gradient(180deg, rgba(28, 52, 84, 0.96), rgba(13, 27, 49, 0.98));
}

.panel-dark,
.info-card,
.feature-card,
.journey-card,
.faq-item,
.stack-form {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
}

.hero,
.info-grid,
.feature-stack,
.journey-grid,
.launch-grid,
.founder-grid,
.faq-stack,
.preview-grid,
.status-grid,
.screenshot-grid {
  display: grid;
  gap: 20px;
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: stretch;
  margin-top: 18px;
}

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

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

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

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

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

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

.launch-grid,
.founder-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.hero-copy,
.hero-visual,
.launch-copy,
.founder-copy,
.founder-side,
.stack-form,
.preview-card,
.status-card,
.screenshot-card,
.feature-card,
.info-card,
.journey-card,
.faq-item {
  padding: 24px;
}

.hero-copy,
.hero-visual,
.launch-copy,
.founder-copy,
.founder-side,
.stack-form,
.preview-card,
.status-card,
.screenshot-card {
  display: grid;
  gap: 18px;
}

.hero-announcement {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-announcement strong,
.hero-announcement a {
  color: var(--text);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(232, 188, 85, 0.14);
}

.eyebrow,
.preview-kicker,
.board-stat-label,
.card-head .eyebrow {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-emphasis {
  color: var(--accent-2);
}

.lead,
.section-heading p,
.hero-visual-copy p,
.feature-copy p,
.feature-side p,
.launch-copy p,
.founder-copy p,
.founder-side p,
.faq-item p,
.journey-card p,
.info-card p,
.footer-copy {
  color: var(--muted);
  line-height: 1.7;
}

.hero-chip-row,
.feature-points,
.launch-tags,
.founder-badges,
.inline-link-row,
.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip-row span,
.feature-points span,
.launch-tags span,
.founder-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.92rem;
}

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

.hero-proof-grid div,
.stat-rail div,
.rollout-steps div {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof-grid strong,
.stat-rail strong,
.rollout-steps strong {
  display: block;
  margin-bottom: 6px;
}

.hero-proof-grid span,
.stat-rail span,
.rollout-steps span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-rail {
  display: grid;
  gap: 12px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(232, 188, 85, 0.14);
  color: var(--accent-2);
  font-weight: 800;
}

.feature-stack,
.faq-stack {
  gap: 16px;
}

.feature-card {
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  display: grid;
  gap: 18px;
}

.preview-card {
  align-content: start;
}

.preview-copy {
  display: grid;
  gap: 12px;
}

.mock-phone {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(5, 12, 22, 0.92), rgba(18, 38, 65, 0.92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.mock-phone-top {
  width: 34%;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mock-screen {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(232, 188, 85, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(28, 52, 84, 0.98), rgba(11, 22, 39, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mock-label {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mock-screen p {
  color: var(--muted);
  line-height: 1.6;
}

.mock-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mock-chip-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
}

.mock-map-lines,
.mock-journal-lines {
  position: relative;
  min-height: 72px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mock-map-lines::before,
.mock-map-lines::after,
.mock-journal-lines::before,
.mock-journal-lines::after {
  content: "";
  position: absolute;
}

.mock-map-lines::before {
  inset: 12px 18px auto 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent-2) 50%, transparent 100%);
  transform: rotate(-12deg);
}

.mock-map-lines::after {
  width: 14px;
  height: 14px;
  right: 26px;
  bottom: 16px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(232, 188, 85, 0.14);
}

.mock-journal-lines::before {
  inset: 16px 16px auto 16px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 12px 0 rgba(255, 255, 255, 0.14),
    0 24px 0 rgba(255, 255, 255, 0.12),
    0 36px 0 rgba(255, 255, 255, 0.1);
}

.status-card {
  align-content: start;
}

.section-subhead {
  margin-top: 28px;
  margin-bottom: 0;
}

.screenshot-card {
  align-content: start;
}

.screenshot-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.screenshot-card figcaption {
  display: grid;
  gap: 8px;
}

.screenshot-card figcaption span {
  color: var(--muted);
  line-height: 1.6;
}

.status-list {
  min-height: 100%;
}

.status-cta {
  width: fit-content;
}

.feature-copy,
.feature-side {
  display: grid;
  gap: 12px;
}

.feature-side {
  align-content: start;
  border-radius: 18px;
  padding: 18px;
}

.journey-card,
.faq-item,
.info-card {
  display: grid;
  gap: 10px;
}

.card-head {
  display: grid;
  gap: 10px;
}

.stack-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 16, 28, 0.45);
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: rgba(198, 206, 218, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(243, 215, 154, 0.34);
  border-color: var(--line-strong);
}

.optional {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.success {
  color: #9de6bc;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.rollout-steps {
  display: grid;
  gap: 12px;
}

.card-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin-top: 8px;
  max-width: 40ch;
}

@media (max-width: 1080px) {
  .hero,
  .launch-grid,
  .founder-grid,
  .feature-card,
  .preview-grid,
  .status-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .four-up,
  .three-up,
  .journey-grid,
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .topbar,
  .topbar-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .topnav {
    gap: 12px;
  }

  .three-up,
  .four-up,
  .journey-grid,
  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    height: 220px;
  }

  .hero-copy,
  .hero-visual,
  .launch-copy,
  .founder-copy,
  .founder-side,
  .stack-form,
  .feature-card,
  .info-card,
  .journey-card,
  .faq-item {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
  }
}
