:root {
  --bg: #050d1f;
  --bg-2: #0b1732;
  --surface: #111f3f;
  --surface-2: #172a52;
  --text: #eef3ff;
  --muted: #aebbd8;
  --lime: #c3f400;
  --teal: #71f8e4;
  --danger: #ff6f7f;
  --border: rgba(255, 255, 255, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 34px rgba(0, 0, 0, 0.32);
  --shadow-lime: 0 0 44px rgba(195, 244, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% -8%, #18356f 0%, transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(113, 248, 228, 0.16) 0%, transparent 40%),
    linear-gradient(160deg, #06112a 0%, #040b18 100%);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.bg-orb.orb-a {
  width: 320px;
  height: 320px;
  right: -120px;
  top: 18%;
  background: rgba(113, 248, 228, 0.28);
}

.bg-orb.orb-b {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: 2%;
  background: rgba(195, 244, 0, 0.18);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(19, 32, 63, 0.94), rgba(10, 19, 42, 0.96));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: var(--shadow-lime);
}

.status-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.header-right {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.pill {
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.pill-android {
  background: var(--lime);
  color: #1a2600;
  border-color: transparent;
  font-weight: 700;
}

.pill-ios {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.lang-link:hover {
  color: var(--teal);
  border-color: rgba(113, 248, 228, 0.46);
}

.lang-link.active {
  color: #1a2600;
  border-color: transparent;
  background: var(--lime);
  font-weight: 700;
}

main {
  display: block;
}

.section {
  margin-top: clamp(34px, 5vw, 62px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  margin-top: 36px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.hero-copy p,
.section-intro,
.card p,
.availability-card p,
.note p,
.footer-note,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.62;
}

.hero-copy p {
  margin: 14px 0 0;
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 160ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: #182500;
  box-shadow: var(--shadow-lime);
}

.btn-secondary {
  background: rgba(113, 248, 228, 0.16);
  color: var(--teal);
  border-color: rgba(113, 248, 228, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn-disabled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: #97a4c4;
  cursor: not-allowed;
}

.hero-media {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.phone-wrap {
  width: min(340px, 100%);
  padding: 12px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(170deg, rgba(21, 35, 71, 0.96), rgba(10, 20, 42, 0.98));
  box-shadow: var(--shadow-soft);
}

.phone-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(113, 248, 228, 0.32);
}

.mode-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.mode-controls button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.mode-controls button.active {
  background: rgba(195, 244, 0, 0.2);
  color: var(--lime);
  border-color: rgba(195, 244, 0, 0.48);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(175deg, rgba(21, 34, 68, 0.9), rgba(12, 23, 47, 0.9));
  padding: 18px;
}

.card p {
  margin: 0;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.shot {
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(113, 248, 228, 0.22);
}

.shot figcaption {
  margin-top: 9px;
  text-align: center;
  color: var(--teal);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}

.panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(175deg, rgba(21, 34, 68, 0.9), rgba(12, 23, 47, 0.9));
  padding: 20px;
}

.panel ol,
.panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.62;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 14px;
}

.availability-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(175deg, rgba(21, 34, 68, 0.9), rgba(12, 23, 47, 0.9));
  padding: 20px;
}

.availability-card.live {
  border-color: rgba(195, 244, 0, 0.42);
}

.availability-card.soon {
  border-color: rgba(113, 248, 228, 0.28);
}

.note {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 18px;
}

.note p {
  margin: 0;
  font-size: 0.93rem;
}

.waitlist-shell {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(195, 244, 0, 0.34);
  background: linear-gradient(175deg, rgba(21, 34, 68, 0.94), rgba(11, 24, 48, 0.94));
  box-shadow: var(--shadow-soft);
  padding: clamp(18px, 3vw, 28px);
  display: grid;
  gap: 18px;
}

.waitlist-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
  max-width: 66ch;
}

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

.waitlist-label {
  font-weight: 700;
  color: var(--text);
}

.waitlist-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 13, 31, 0.78);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.waitlist-input::placeholder {
  color: #8d9bb9;
}

.waitlist-input:focus {
  outline: none;
  border-color: rgba(113, 248, 228, 0.62);
  box-shadow: 0 0 0 2px rgba(113, 248, 228, 0.16);
}

.waitlist-help {
  margin: -2px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--lime);
}

.waitlist-submit {
  justify-self: start;
}

.waitlist-status {
  min-height: 1.2em;
  margin: 2px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist-status.success {
  color: var(--teal);
}

.waitlist-status.error {
  color: var(--danger);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer {
  margin-top: clamp(36px, 5vw, 64px);
  padding: 20px 0 26px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-family: "Sora", sans-serif;
}

.footer-note {
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 480ms ease, transform 480ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */

.legal-shell {
  margin-top: 24px;
  margin-bottom: 26px;
}

.legal-header {
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--teal);
}

.legal-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(175deg, rgba(21, 34, 68, 0.92), rgba(12, 23, 47, 0.94));
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow-soft);
}

.legal-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 12px;
}

.legal-meta {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-card h2 {
  font-size: 1.22rem;
  margin-top: 22px;
  margin-bottom: 10px;
}

.legal-card p,
.legal-card li {
  margin: 0;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-box {
  margin-top: 20px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(195, 244, 0, 0.38);
  background: rgba(195, 244, 0, 0.08);
}

.contact-box a {
  color: var(--lime);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-right {
    width: 100%;
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1140px, 94vw);
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mode-controls {
    width: 100%;
  }

  .mode-controls button {
    flex: 1 1 auto;
  }

  .waitlist-submit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}
