:root {
  --bg: #07111f;
  --bg-soft: rgba(10, 22, 39, 0.72);
  --surface: rgba(12, 24, 42, 0.74);
  --surface-strong: rgba(16, 30, 52, 0.95);
  --border: rgba(192, 227, 255, 0.14);
  --text: #f7f3e8;
  --muted: rgba(240, 236, 228, 0.72);
  --cyan: #73e9ff;
  --gold: #e3c983;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(104, 233, 255, 0.14), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(237, 203, 118, 0.12), transparent 22%),
    linear-gradient(180deg, #06101c 0%, #07111f 48%, #081522 100%);
  color: var(--text);
  font-family: "Instrument Sans", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.aurora {
  position: fixed;
  inset: auto;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.aurora-one {
  top: -12rem;
  left: -8rem;
  background: #0bbfe4;
}

.aurora-two {
  right: -14rem;
  top: 18rem;
  background: #d7a650;
}

.noise {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 92%);
  pointer-events: none;
  opacity: 0.25;
}

.topbar,
.section,
.footer,
.trust-strip {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(115, 233, 255, 0.9), rgba(227, 201, 131, 0.75));
  color: #03101c;
  font-weight: 800;
}

.brand-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.topnav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.topnav a,
.footer-links a {
  position: relative;
}

.topnav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.topnav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.ghost-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.primary-button {
  background: linear-gradient(135deg, rgba(115, 233, 255, 0.96), rgba(227, 201, 131, 0.95));
  color: #041220;
  font-weight: 700;
  box-shadow: 0 16px 48px rgba(115, 233, 255, 0.18);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.ghost-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section {
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.editorial-copy h2,
.waitlist-copy h2,
.countdown-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(4rem, 8vw, 7.8rem);
}

.hero h1 span {
  color: var(--cyan);
}

.hero-text,
.editorial-copy p,
.countdown-panel p,
.waitlist-copy p,
.showcase-copy p,
.problem-card p,
.pillar p,
.timeline p,
.footer p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat-card,
.problem-card,
.pillar,
.timeline article,
.showcase-card,
.countdown-panel,
.waitlist-form,
.trust-strip,
.floating-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 20px;
  border-radius: 20px;
}

.stat-card strong,
.problem-card h3,
.pillar h3,
.showcase-copy h3,
.timeline h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.hero-visual {
  position: relative;
}

.launch-badge {
  position: absolute;
  right: 0;
  top: -8px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(8, 21, 35, 0.72);
  backdrop-filter: blur(14px);
}

.launch-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.launch-badge strong {
  display: block;
  margin-top: 6px;
  font-size: 1.3rem;
}

.device-stack {
  position: relative;
  display: grid;
  place-items: center;
  padding: 40px 28px;
}

.phone-frame {
  position: relative;
  width: min(100%, 430px);
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.phone-frame img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 34px;
}

.app-screen {
  aspect-ratio: 9 / 16;
  border-radius: 34px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(115, 233, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #0b1524 0%, #0f2034 100%);
  display: grid;
  gap: 16px;
  color: #f4efe4;
}

.screen-status,
.screen-row,
.mini-row,
.showcase-topline,
.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.screen-status,
.mini-row,
.showcase-topline,
.board-tag,
.showcase-chip,
.board-summary span,
.screen-kicker {
  color: rgba(244, 239, 228, 0.72);
}

.screen-status,
.showcase-topline,
.screen-kicker,
.panel-label,
.board-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-hero-card,
.screen-progress-card,
.screen-mini-list article,
.mini-card,
.showcase-card-grid article,
.ecosystem-course,
.ecosystem-side article,
.ecosystem-footer > div,
.editorial-board {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.screen-hero-card,
.screen-progress-card,
.mini-card {
  padding: 18px;
  border-radius: 24px;
}

.screen-hero-card h3,
.ecosystem-course h3,
.editorial-board h3,
.mini-card h4 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.screen-hero-card p,
.screen-progress-card p,
.screen-mini-list p,
.mini-card p,
.showcase-card-grid p,
.ecosystem-course p,
.ecosystem-side p,
.ecosystem-footer p,
.editorial-board p {
  margin: 0;
  color: rgba(244, 239, 228, 0.7);
  line-height: 1.55;
}

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

.screen-metrics article {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.screen-metrics strong,
.board-summary strong,
.ecosystem-side strong {
  display: block;
  font-size: 1.4rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.wide-track {
  height: 12px;
  margin-top: 18px;
}

.muted-row {
  color: rgba(244, 239, 228, 0.66);
  font-size: 0.9rem;
}

.screen-mini-list {
  display: grid;
  gap: 12px;
}

.screen-mini-list article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.dot.cyan {
  background: var(--cyan);
}

.dot.gold {
  background: var(--gold);
}

.floating-panel {
  position: absolute;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 22px;
}

.panel-top {
  top: 80px;
  left: 0;
}

.panel-bottom {
  right: 12px;
  bottom: 32px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 6px;
  padding: 22px 28px;
  border-radius: 28px;
  text-align: center;
  color: var(--muted);
}

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

.section-heading h2,
.editorial-copy h2,
.countdown-panel h2,
.waitlist-copy h2 {
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.problem-grid,
.pillars,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.problem-card,
.pillar,
.timeline article,
.waitlist-form {
  padding: 28px;
  border-radius: 28px;
}

.problem-card span,
.timeline-step,
.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 24px;
  background: rgba(115, 233, 255, 0.1);
  color: var(--cyan);
  font-weight: 700;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.editorial-composition {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
  padding: 26px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(115, 233, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.editorial-board {
  position: absolute;
  border-radius: 28px;
  padding: 22px;
  backdrop-filter: blur(14px);
}

.board-large {
  inset: 28px 140px 90px 28px;
}

.board-phone {
  width: 240px;
  right: 24px;
  top: 90px;
}

.board-note {
  width: 260px;
  right: 36px;
  bottom: 28px;
}

.board-graph {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
  margin: 28px 0;
}

.board-graph span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(115, 233, 255, 0.9), rgba(115, 233, 255, 0.24));
}

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

.mini-screen {
  display: grid;
  gap: 14px;
}

.mini-card {
  border-radius: 20px;
}

.mini-pill-row,
.showcase-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-pill-row span,
.showcase-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.showcase-chip.active,
.mini-pill-row span:first-child {
  color: #041220;
  background: linear-gradient(135deg, rgba(115, 233, 255, 0.96), rgba(227, 201, 131, 0.95));
 }

.showcase-mockup {
  padding: 24px;
  min-height: 360px;
  background:
    radial-gradient(circle at top right, rgba(115, 233, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #0a1727, #0d1d31);
}

.planning-mockup,
.ecosystem-mockup {
  display: grid;
  gap: 18px;
}

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

.showcase-card-grid article {
  padding: 18px;
  border-radius: 20px;
}

.showcase-card-grid strong,
.ecosystem-footer strong {
  display: block;
  margin-bottom: 8px;
}

.ecosystem-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.ecosystem-course,
.ecosystem-side article,
.ecosystem-footer > div {
  padding: 20px;
  border-radius: 24px;
}

.ecosystem-side {
  display: grid;
  gap: 14px;
}

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

.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.showcase-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.showcase-card img {
  min-height: 360px;
  object-fit: cover;
}

.showcase-copy {
  padding: 24px;
}

.showcase-card.wide {
  grid-row: span 2;
}

.showcase-card.wide img {
  min-height: 560px;
}

.showcase-card .text-only {
  min-height: 100%;
  display: grid;
  align-content: end;
  background: radial-gradient(circle at top right, rgba(115, 233, 255, 0.15), transparent 45%);
}

.countdown-panel {
  border-radius: 36px;
  padding: 40px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.count-item {
  padding: 24px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.count-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.count-item span {
  color: var(--muted);
}

.waitlist-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 16px;
}

.waitlist-form label {
  display: grid;
  gap: 10px;
}

.waitlist-form span {
  color: var(--muted);
  font-size: 0.95rem;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: rgba(115, 233, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(115, 233, 255, 0.12);
}

.form-note {
  min-height: 24px;
  color: var(--cyan);
}

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

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: flex-start;
  color: var(--muted);
}

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

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

@media (max-width: 1080px) {
  .hero,
  .editorial-section,
  .waitlist-section,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .pillars,
  .timeline,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .showcase-card.wide {
    grid-row: auto;
  }

  .board-large,
  .board-phone,
  .board-note {
    position: static;
    width: auto;
    inset: auto;
  }

  .editorial-composition {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .ecosystem-main,
  .ecosystem-footer {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }

  .hero {
    padding-top: 32px;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-highlights,
  .countdown-grid {
    grid-template-columns: 1fr 1fr;
  }

  .screen-metrics,
  .board-summary {
    grid-template-columns: 1fr;
  }

  .launch-badge,
  .panel-top,
  .panel-bottom {
    position: static;
    margin-bottom: 16px;
  }

  .device-stack {
    padding: 0;
  }

  .section {
    padding: 72px 0;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-highlights,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .section,
  .footer,
  .trust-strip {
    width: min(calc(100% - 24px), var(--content-width));
  }

  .ghost-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
