:root {
  color-scheme: dark;
  --bg: #071016;
  --bg-soft: #0c1a21;
  --surface: #14242d;
  --surface-strong: #1f303a;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f6fbf8;
  --muted: #a8b8ba;
  --accent: #10c7b8;
  --accent-dark: #07867c;
  --warm: #ffc260;
  --ink: #030608;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% 0%, rgba(16, 199, 184, 0.18), transparent 31rem),
    linear-gradient(180deg, #071016 0%, #09161c 46%, #071112 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(7, 16, 22, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  transition: color 160ms ease;
}

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

.nav-action {
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 56px;
  max-width: var(--max);
  min-height: calc(100svh - 69px);
  margin: 0 auto;
  padding: 46px 24px 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 22px;
  font-size: clamp(3.75rem, 7.6vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.25rem, 4.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.waitlist-section p {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-lede {
  max-width: 32rem;
  margin-bottom: 28px;
}

.hero-form,
.waitlist-card {
  max-width: 540px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0 14px;
}

select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 52% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 13px) 52% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.08);
}

input:focus,
select:focus {
  border-color: rgba(16, 199, 184, 0.88);
  box-shadow: 0 0 0 3px rgba(16, 199, 184, 0.18);
}

button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

button:hover {
  background: #1ae1cf;
  transform: translateY(-1px);
}

.form-message {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--warm);
  font-size: 0.95rem;
}

.launch-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
  margin: 28px 0 0;
}

.launch-stats div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
}

dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 660px;
}

.phone {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 42px;
  background: #050b10;
  box-shadow: var(--shadow);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-main {
  right: 60px;
  top: 0;
  width: min(330px, 62vw);
  transform: rotate(2deg);
}

.phone-secondary {
  left: 0;
  bottom: 0;
  width: min(250px, 48vw);
  transform: rotate(-5deg);
  opacity: 0.94;
}

.screens-section,
.domain-section,
.waitlist-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 24px;
}

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

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.screen-card {
  margin: 0;
}

.screen-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.domain-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
}

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

.domain-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(16, 199, 184, 0.08));
  padding: 18px;
}

.domain-list strong {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.domain-list span {
  color: var(--muted);
  text-align: right;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.waitlist-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.waitlist-card input,
.waitlist-card select {
  margin-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.2);
}

.waitlist-card button {
  width: 100%;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 48px;
  color: var(--muted);
}

footer a {
  color: var(--text);
  font-weight: 760;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero,
  .domain-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: 0;
    padding-top: 36px;
    overflow: hidden;
  }

  .hero-media {
    min-height: 620px;
  }

  .phone-main {
    right: 4%;
  }

  .phone-secondary {
    left: 2%;
  }

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

  .screen-card {
    max-width: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .nav-action {
    padding-inline: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .launch-stats {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 520px;
  }

  .phone-main {
    width: 238px;
    right: 0;
  }

  .phone-secondary {
    width: 192px;
  }

  .domain-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-list span {
    text-align: left;
  }
}
