
:root {
    --bg: #07101c;
    --text: #f7f9fc;
    --muted: #a9b5c6;
    --accent: #ff6b35;
    --line: rgba(255,255,255,.10);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
    radial-gradient(circle at 20% 20%, rgba(255,107,53,.14), transparent 30%),
    linear-gradient(145deg, #07101c, #0b1524);
    color: var(--text);
}

.shell {
    width: min(1180px, calc(100% - 40px));
    min-height: 100vh;
    margin: auto;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
}

.brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.status {
    color: var(--muted);
    font-size: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(255,107,53,.8);
}

main {
    flex: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    padding: 50px 0 90px;
}

.eyebrow {
    color: #ffc09f;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

h1 {
    margin: 0;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .98;
    letter-spacing: -.06em;
}

p {
    max-width: 650px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
    margin-top: 28px;
}

.coming {
    margin-top: 34px;
    display: inline-block;
    border: 1px solid var(--line);
    padding: 12px 17px;
    border-radius: 999px;
    font-weight: 700;
}

.card {
    min-height: 390px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.045);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 28px 80px rgba(0,0,0,.30);
}

.radar {
    position: relative;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(255,107,53,.08);
}

.radar:before,
.radar:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.10);
}

.radar:before {
    inset: 20%;
}

.radar:after {
    inset: 38%;
}

.ping {
    position: absolute;
    left: 64%;
    top: 34%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 24px rgba(255,107,53,.9);
}

footer {
    padding: 22px 0 28px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: #7e8b9d;
    font-size: 13px;
}

footer a {
    color: #b6c0ce;
    text-decoration: none;
}

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

    .status {
    display: none;
    }
.early-access-intro {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.early-access-intro h2 {
  margin-bottom: 12px;
}

.early-access-intro p {
  margin: 6px 0;
  line-height: 1.6;
}

.early-form {
  max-width: 720px;
  margin: 0 auto;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
}

.early-form input,
.early-form textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.early-form input {
  height: 50px;
}

.early-form textarea {
  min-height: 120px;
  resize: vertical;
}

.early-form input::placeholder,
.early-form textarea::placeholder {
  opacity: 0.6;
}

.early-form button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

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

  .form-field.full-width {
    grid-column: auto;
  }
}

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