:root {
  color-scheme: dark;
  --ink: #f2f7ff;
  --muted: #9cb0c8;
  --paper: #050b16;
  --panel: #0b1728;
  --line: #203650;
  --blue: #118cff;
  --green: #00d2a6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

button,
input {
  font: inherit;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.consent-row a {
  color: #72ead4;
}

.cf-turnstile {
  min-height: 65px;
  margin-top: 14px;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: white;
  color: #050b16;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(32, 54, 80, 0.72);
  background: rgba(5, 11, 22, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-x {
  color: var(--green);
}

.nav-status {
  color: #b8c8da;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-status span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 72px 0 0;
  text-align: center;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.ambient-one {
  width: 500px;
  height: 500px;
  left: 5%;
  top: 120px;
  background: radial-gradient(circle, rgba(17, 140, 255, 0.2), transparent 68%);
}

.ambient-two {
  width: 420px;
  height: 420px;
  right: 6%;
  top: 260px;
  background: radial-gradient(circle, rgba(0, 210, 166, 0.14), transparent 68%);
}

.lockup {
  display: block;
  width: min(420px, 82vw);
  height: auto;
  margin: 0 auto 36px;
  border: 1px solid #18304a;
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0, 117, 255, 0.15);
}

.eyebrow,
.kicker {
  margin: 0;
  color: #4ae5ca;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(17, 140, 255, 0.12);
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  max-width: 920px;
  margin: 18px auto 22px;
  font-size: clamp(54px, 8vw, 106px);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #b8c8da;
  font-size: clamp(18px, 2vw, 22px);
}

.launch-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  max-width: 980px;
  margin: 64px auto -80px;
  padding: 36px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(13, 29, 48, 0.98), rgba(7, 19, 34, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.launch-card h2 {
  margin: 7px 0 12px;
  font-size: clamp(34px, 4vw, 52px);
}

.launch-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.notify-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 750;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
}

input {
  min-width: 0;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid #3b5876;
  border-radius: 9px;
  background: #071321;
}

input::placeholder {
  color: #7f94ad;
}

button {
  padding: 14px 20px;
  color: #03101d;
  font-weight: 800;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(120deg, var(--blue), var(--green));
  cursor: pointer;
}

.form-note,
.form-status {
  min-height: 1.5em;
  margin: 8px 0 0;
  font-size: 12px;
}

.form-status {
  color: #72ead4;
  font-weight: 700;
}

.form-status.error {
  color: #ff9f9f;
}

.trust-strip {
  padding: 132px 0 42px;
  background: #081322;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.trust-grid span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: start;
  padding-top: 120px;
  padding-bottom: 110px;
}

.about h2,
.progress h2 {
  margin-top: 9px;
  font-size: clamp(42px, 5vw, 68px);
}

.about-copy {
  padding-top: 30px;
  color: #afc0d4;
  font-size: 18px;
}

.limitation {
  padding: 20px;
  border-left: 3px solid var(--blue);
  background: rgba(17, 140, 255, 0.07);
}

.progress {
  padding-bottom: 120px;
}

.progress h2 {
  max-width: 780px;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.progress-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.progress-grid span {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.progress-grid h3 {
  margin: 48px 0 8px;
  font-size: 25px;
}

.progress-grid p {
  margin: 0;
  color: var(--muted);
}

footer {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  background: #030812;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: center;
}

.footer-inner img {
  width: 260px;
  height: auto;
  border: 1px solid #18304a;
  border-radius: 15px;
}

.footer-inner p {
  margin: 0 0 5px;
  font-weight: 700;
}

.footer-inner small {
  color: var(--muted);
}

:focus-visible {
  outline: 3px solid #50d9ff;
  outline-offset: 3px;
}

@media (max-width: 780px) {
  .launch-card,
  .about,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .launch-card,
  .about {
    gap: 28px;
  }

  .trust-grid,
  .progress-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .about {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .about-copy {
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav-status {
    font-size: 11px;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 53px;
  }

  .launch-card {
    padding: 24px;
  }

  .field-row,
  .trust-grid,
  .progress-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
