:root {
  color-scheme: dark;
  --bg: #030506;
  --bg-2: #07100f;
  --surface: rgba(13, 20, 22, 0.78);
  --surface-2: rgba(20, 30, 33, 0.88);
  --surface-3: rgba(255, 255, 255, 0.055);
  --text: #f6fbf9;
  --muted: #9db0ac;
  --soft: #c6d4d1;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --green: #00c896;
  --green-soft: rgba(0, 200, 150, 0.14);
  --purple: #8e6cff;
  --purple-soft: rgba(142, 108, 255, 0.15);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(0, 200, 150, 0.07), transparent 28rem),
    radial-gradient(circle at 50% -12rem, rgba(142, 108, 255, 0.18), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0, rgba(0, 0, 0, 0.28) 26rem, transparent 52rem);
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(0, 200, 150, 0.88);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 6, 0.78);
  backdrop-filter: blur(22px) saturate(150%);
}

.nav,
.section,
.hero,
.page-hero,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), transparent 35%),
    linear-gradient(135deg, var(--green), var(--purple));
  color: #02100c;
  box-shadow: 0 14px 42px rgba(0, 200, 150, 0.22);
}

.brand-word {
  font-size: 1.1rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  display: block;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(0) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  opacity: 0;
}

.nav-links {
  position: absolute;
  inset: 72px 16px auto 16px;
  display: none;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7, 12, 13, 0.97);
  box-shadow: var(--shadow);
}

.nav-links[data-open="true"] {
  display: grid;
}

.nav-links a {
  padding: 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: 54px 0 44px;
}

.hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 830px;
  font-size: clamp(2.55rem, 10vw, 6.05rem);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 8vw, 4.75rem);
}

h2 {
  font-size: clamp(1.95rem, 5.5vw, 3.4rem);
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.lede {
  max-width: 720px;
  margin-top: 20px;
  color: var(--soft);
  font-size: clamp(1.04rem, 2.6vw, 1.28rem);
}

.muted {
  color: var(--muted);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid rgba(0, 200, 150, 0.62);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 52%),
    var(--green);
  color: #02100c;
  box-shadow: 0 16px 36px rgba(0, 200, 150, 0.2);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0, 200, 150, 0.28);
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(0, 200, 150, 0.52);
  background: rgba(0, 200, 150, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 760;
}

.app-stage {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 18px 0;
}

.app-stage::before {
  position: absolute;
  inset: 9% 0 8%;
  z-index: -1;
  content: "";
  border-radius: 42px;
  background:
    radial-gradient(circle at 28% 20%, rgba(0, 200, 150, 0.22), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(142, 108, 255, 0.2), transparent 38%);
  filter: blur(6px);
}

.phone-frame {
  width: min(100%, 356px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.025) 32%),
    #050708;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen {
  min-height: 610px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(160deg, rgba(0, 200, 150, 0.12), transparent 38%),
    #071010;
}

.phone-island {
  width: 94px;
  height: 27px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #020303;
}

.screen-top,
.screen-row,
.screen-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.screen-top {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.balance-card,
.insight-card,
.screen-list-item,
.screenshot-slot,
.card,
.policy-card,
.form-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.balance-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
}

.balance-card span,
.insight-card span,
.screen-list-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.balance-card strong {
  display: block;
  margin-top: 8px;
  font-size: 2.45rem;
  line-height: 1;
}

.screen-bars {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar::after {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--purple));
  content: "";
}

.screen-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.screen-list-item {
  padding: 13px;
  border-radius: 16px;
}

.screen-list-item strong {
  color: var(--text);
  font-size: 0.96rem;
}

.insight-card {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.14), rgba(142, 108, 255, 0.1)),
    rgba(255, 255, 255, 0.055);
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-heading p:last-child {
  margin-top: 14px;
}

.feature-grid,
.screenshot-grid,
.roadmap-grid,
.contact-grid,
.beta-grid {
  display: grid;
  gap: 14px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(17, 26, 28, 0.86);
  transform: translateY(-2px);
}

.card h2 {
  font-size: 1.35rem;
}

.card h3 + p,
.card h2 + p {
  margin-top: 10px;
}

.card p,
.policy-card p,
.roadmap-list li {
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 200, 150, 0.18);
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
}

.screenshot-slot {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 24%),
    radial-gradient(circle at 50% 0, rgba(0, 200, 150, 0.13), transparent 42%),
    rgba(10, 17, 19, 0.82);
}

.slot-screen {
  margin: 14px;
  min-height: 285px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%),
    #06100f;
}

.slot-pill,
.slot-line,
.slot-tile {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.slot-pill {
  width: 88px;
  height: 12px;
}

.slot-line {
  height: 10px;
  margin-top: 12px;
}

.slot-line.short {
  width: 58%;
}

.slot-tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.slot-tile {
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(142, 108, 255, 0.14));
}

.slot-label {
  padding: 0 18px 18px;
}

.slot-label h3 + p {
  margin-top: 6px;
}

.private-band {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(0, 200, 150, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(142, 108, 255, 0.13), transparent 44%),
    rgba(9, 16, 17, 0.92);
  box-shadow: var(--shadow);
}

.founder-note {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(315deg, rgba(0, 200, 150, 0.12), rgba(142, 108, 255, 0.08)),
    rgba(9, 15, 17, 0.92);
  box-shadow: var(--shadow);
}

.founder-note::after {
  position: absolute;
  inset: auto 24px 24px auto;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.2), rgba(142, 108, 255, 0.16));
  content: "";
  opacity: 0.42;
  transform: rotate(8deg);
}

.founder-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.founder-copy p {
  color: var(--soft);
  font-size: clamp(1.08rem, 2.7vw, 1.38rem);
  line-height: 1.68;
}

.founder-signature {
  color: var(--text);
  font-weight: 850;
}

.comparison-grid {
  display: grid;
  gap: 14px;
}

.comparison-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(13, 20, 22, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.comparison-card.quid {
  border-color: rgba(0, 200, 150, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 200, 150, 0.1), transparent 44%),
    rgba(13, 20, 22, 0.86);
}

.comparison-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-list li,
.faq-item {
  color: var(--muted);
}

.comparison-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.comparison-list li::before {
  flex: 0 0 18px;
  color: var(--muted);
  content: "x";
  font-weight: 900;
}

.comparison-card.quid .comparison-list li::before {
  color: var(--green);
  content: "+";
}

.check-list,
.roadmap-list,
.contact-list,
.toc-list,
.status-list,
.faq-list {
  padding: 0;
  margin: 18px 0 0;
}

.check-list,
.contact-list,
.toc-list,
.status-list,
.faq-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li,
.contact-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 200, 150, 0.11);
  content: "";
}

.page-hero {
  padding: 72px 0 28px;
}

.hero-note {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.content {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
  padding: 30px 0 74px;
}

.policy-layout {
  display: grid;
  gap: 18px;
}

.toc {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.toc h2 {
  font-size: 1rem;
}

.toc-list a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.toc-list a:hover {
  color: var(--green);
}

.policy-card {
  padding: clamp(24px, 5vw, 48px);
  border-radius: 18px;
}

.policy-card h2 {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
}

.policy-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.policy-card p {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.78;
}

.form-card {
  padding: clamp(20px, 4vw, 34px);
  border-radius: 20px;
}

.form-card.preview {
  position: relative;
}

.preview-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 200, 150, 0.22);
  border-radius: 999px;
  background: rgba(0, 200, 150, 0.09);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.form-note {
  font-size: 0.88rem;
  line-height: 1.55;
}

label {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

select option {
  color: #071010;
}

.checkbox {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

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

.form-message {
  display: none;
  padding: 15px;
  border: 1px solid rgba(0, 200, 150, 0.34);
  border-radius: 14px;
  background: rgba(0, 200, 150, 0.1);
  color: var(--text);
}

.form-message[data-visible="true"] {
  display: block;
}

.form-message[data-error="true"] {
  border-color: rgba(255, 80, 60, 0.5);
  background: rgba(255, 80, 60, 0.1);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(255, 80, 60, 0.7);
}

.checkbox input[aria-invalid="true"] {
  outline: 2px solid rgba(255, 80, 60, 0.6);
  outline-offset: 2px;
}

.status-list {
  gap: 12px;
}

.status-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.status-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.roadmap-note {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 200, 150, 0.22);
  border-radius: 16px;
  background: rgba(0, 200, 150, 0.08);
  color: var(--soft);
}

.faq-list {
  gap: 14px;
}

.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 20, 22, 0.68);
}

.faq-item h3 + p {
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030506;
}

.footer-inner {
  padding: 38px 0;
  display: grid;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

@media (max-width: 520px) {
  .nav,
  .section,
  .hero,
  .page-hero,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .page-hero h1 {
    font-size: clamp(2.12rem, 12vw, 3rem);
  }

  .section {
    padding: 54px 0;
  }

  .hero-actions .button,
  .actions .button,
  button.button {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 320px);
  }

  .phone-screen {
    min-height: 535px;
  }

  .balance-card strong {
    font-size: 2rem;
  }

  .founder-note,
  .private-band {
    border-radius: 22px;
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 8px 10px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.76fr);
  }

  .feature-grid,
  .screenshot-grid,
  .beta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid,
  .contact-grid,
  .comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .screenshot-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .screenshot-slot {
    min-height: 420px;
  }

  .policy-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
  }

  .toc {
    position: sticky;
    top: 96px;
  }
}

/* ── Waitlist form ── */
.waitlist-form {
  margin-top: 28px;
  max-width: 520px;
}

.waitlist-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-input {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  width: 100%;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--green);
}

.waitlist-input::placeholder {
  color: var(--muted);
}

.waitlist-form .button {
  align-self: flex-start;
}

.waitlist-form .cf-turnstile {
  margin-top: 14px;
}

.waitlist-form .form-message {
  margin-top: 10px;
}
