:root {
  --bg: #050505;
  --surface: #0d0e10;
  --surface-2: #131519;
  --text: #f7f8fa;
  --muted: #a5aab3;
  --line: rgba(255,255,255,.11);
  --accent: #05cbe4;
  --accent-2: #087ec8;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 8%, rgba(5,203,228,.10), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 20px 0;
  backdrop-filter: blur(16px);
}
.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 78px;
  z-index: -1;
  background: rgba(5,5,5,.76);
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .86rem;
}
.brand-icon {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}
nav { display: flex; gap: 28px; }
nav a {
  color: var(--muted);
  font-size: .92rem;
  transition: color .2s ease;
}
nav a:hover { color: var(--text); }

main, footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 60px;
  position: relative;
  padding: 78px 0 90px;
}
.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 2%;
  top: 18%;
  background: rgba(5,203,228,.12);
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow, .section-label {
  margin: 0 0 18px;
  color: var(--accent);
  letter-spacing: .17em;
  font-size: .76rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.6vw, 6.8rem);
  line-height: .94;
  letter-spacing: -.065em;
}
h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.68);
}
.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 34px 0 16px;
}
.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #001217;
  background: linear-gradient(135deg, var(--accent), #6eeeff);
}
.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}
.microcopy, .form-note {
  color: #737983;
  font-size: .86rem;
}
.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
}
.logo-card {
  width: min(100%, 520px);
  aspect-ratio: 1;
  padding: 8%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0a0b0d, #020202);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 36px;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  transform: rotate(2deg);
}
.logo-card img { border-radius: 24px; }

.section { padding: 110px 0; }
.intro {
  max-width: 850px;
  border-top: 1px solid var(--line);
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.intro > p:last-child, .launch-card p, .split-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 0;
}
.feature-card {
  min-height: 300px;
  padding: 30px;
  background: linear-gradient(145deg, var(--surface-2), #090a0c);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.feature-number {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.feature-card h3 {
  margin: 90px 0 14px;
  font-size: 1.42rem;
}
.feature-card p { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  border-top: 1px solid var(--line);
}
.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.step strong { color: var(--accent); }
.step span { color: #d4d7dc; }

.launch-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
  padding: 64px;
  background:
    linear-gradient(125deg, rgba(5,203,228,.08), transparent 42%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 32px;
}
.launch-wordmark {
  width: 100%;
  border-radius: 20px;
}
.launch-card .button { margin-top: 18px; }

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.footer-brand img {
  width: 28px;
  border-radius: 7px;
}
.copyright { margin: 0; }

@media (max-width: 840px) {
  nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 74px;
  }
  .hero-visual { order: -1; }
  .logo-card { width: min(82vw, 420px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .feature-card h3 { margin-top: 55px; }
  .split-section, .launch-card { grid-template-columns: 1fr; }
  .launch-card { padding: 30px; gap: 35px; }
  footer { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  main, footer, .site-header { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { text-align: center; }
}


.interest-form {
  margin-top: 28px;
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.interest-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #d9dce1;
  font-size: .88rem;
  font-weight: 700;
}
.interest-form input[type="text"],
.interest-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--text);
  background: #07080a;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.interest-form input::placeholder { color: #686e78; }
.interest-form input:focus {
  border-color: rgba(5,203,228,.72);
  box-shadow: 0 0 0 3px rgba(5,203,228,.10);
}
.interest-form input[aria-invalid="true"] {
  border-color: #ff6b78;
}
.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 17px 0 20px;
  color: var(--muted);
  cursor: pointer;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--accent);
}
.consent-row span {
  margin: 0 !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  line-height: 1.45;
}
.form-note {
  min-height: 24px;
  margin-top: 12px;
}
.form-note.success { color: #6ee7a8; }
.form-note.error { color: #ff8993; }

@media (max-width: 620px) {
  .form-row { grid-template-columns: 1fr; }
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-links a,
.consent-row a,
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-main {
  width: min(calc(100% - 40px), 900px);
  margin-inline: auto;
  padding: 110px 0 90px;
}
.legal-heading {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}
.legal-heading h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.4rem);
}
.legal-heading > p:last-child { color: var(--muted); }
.legal-content {
  padding-top: 24px;
}
.legal-content section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -.025em;
}
.legal-content p,
.legal-content li {
  color: #bec2c9;
}
.legal-content ul {
  padding-left: 22px;
}
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--text);
  background: #07080a;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  font: inherit;
}
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(5,203,228,.72);
  box-shadow: 0 0 0 3px rgba(5,203,228,.10);
}
.privacy-form > label {
  display: block;
  margin-top: 15px;
}
.privacy-form .button { margin-top: 20px; }
.button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

@media (max-width: 840px) {
  footer { grid-template-columns: 1fr; }
}


.hero-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 34px;
}

.wide-brand-logo {
  display: block;
  width: min(100%, 1024px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .hero-logo-wrap {
    margin-bottom: 22px;
  }

  .wide-brand-logo {
    width: 100%;
  }
}

.wide-brand-logo,
.brand-icon,
.footer-brand img {
  background: transparent !important;
}
