:root {
  --background: #0f172a;
  --background-deep: #08111f;
  --surface: #1e293b;
  --surface-2: #142237;
  --foreground: #f1f5f9;
  --muted: #94a3b8;
  --border: #334155;
  --primary: #3b82f6;
  --success: #34d399;
  --gold: #f59e0b;
  --error: #f87171;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at 80% 0%, rgba(52, 211, 153, 0.12), transparent 28rem),
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.16), transparent 28rem),
    var(--background);
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(15, 23, 42, 0.82);
  border-bottom: 1px solid rgba(51, 65, 85, 0.7);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.site-footer nav,
.button-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-nav {
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--foreground);
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.24);
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  min-height: calc(100vh - 74px);
}

.launch-badge,
.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--success);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-sub {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(19px, 2.3vw, 25px);
  line-height: 1.42;
}

.button-row {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(59, 130, 246, 0.24);
}

.button-secondary {
  color: var(--foreground);
  background: rgba(30, 41, 59, 0.72);
  border-color: var(--border);
}

.plain-note,
.section-heading p,
.waitlist-copy p,
.price-card p,
.feature-list p,
.proof-grid p,
.form-note,
.copyright {
  color: var(--muted);
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  min-height: 670px;
}

.phone-shot {
  position: absolute;
  width: min(55vw, 330px);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.shot-main {
  z-index: 3;
  right: 18%;
  top: 0;
}

.shot-left {
  z-index: 1;
  left: 0;
  top: 145px;
  width: min(48vw, 300px);
  opacity: 0.82;
}

.shot-right {
  z-index: 2;
  right: 0;
  top: 210px;
  width: min(48vw, 300px);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 760px;
}

.problem-grid,
.proof-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.problem-card,
.proof-grid article,
.price-card,
.feature-list article,
.waitlist-form,
.legal-card,
.faq-card {
  background: rgba(30, 41, 59, 0.76);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.problem-card {
  padding: 20px;
  color: var(--foreground);
  font-size: 18px;
  font-weight: 800;
}

.section-callout {
  margin: 28px 0 0;
  color: var(--success);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px;
}

.feature-list span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--success);
  font-weight: 950;
}

.feature-screens {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 16px;
  align-items: center;
}

.feature-screens img {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-screens img:last-child {
  transform: translateY(52px);
}

.proof-grid article,
.price-card {
  padding: 24px;
}

.proof-grid h3 {
  color: var(--success);
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

blockquote {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  background: rgba(20, 34, 55, 0.78);
  border: 1px dashed rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  line-height: 1.6;
}

.price-card .tier {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-card .collector {
  color: var(--primary);
}

.price-card .dealer {
  color: var(--success);
}

.price-card h3 {
  font-size: 42px;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 18px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--foreground);
}

.price-card li::marker {
  color: var(--success);
}

.price-card.highlighted {
  border-color: rgba(52, 211, 153, 0.62);
  box-shadow: 0 20px 50px rgba(52, 211, 153, 0.1);
}

.pricing-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.pricing-preview img {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.waitlist-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.waitlist-copy img {
  width: min(100%, 430px);
  margin-top: 24px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--foreground);
  font-weight: 800;
}

label span,
.form-note {
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--foreground);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.45);
  outline-offset: 2px;
}

.platform-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 6px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.platform-toggle button {
  padding: 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.platform-toggle button.active {
  color: #fff;
  background: var(--primary);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--border);
  background: rgba(8, 17, 31, 0.58);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

.page-main {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.page-main h1 {
  font-size: clamp(42px, 6vw, 66px);
}

.legal-card,
.faq-card {
  padding: clamp(22px, 4vw, 34px);
}

.legal-card h2,
.faq-card h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal-card h2:first-child,
.faq-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li,
.faq-card p {
  color: var(--muted);
  line-height: 1.7;
}

.faq-card {
  display: grid;
  gap: 18px;
}

.faq-card article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.72);
}

.faq-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

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

  .hero {
    min-height: 0;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .problem-grid,
  .proof-grid,
  .pricing-grid,
  .pricing-preview,
  .testimonial-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .site-header {
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
    padding: 62px 0;
  }

  h1 {
    font-size: 48px;
  }

  .hero-visual {
    min-height: 520px;
    overflow: hidden;
  }

  .phone-shot {
    width: 245px;
    border-radius: 26px;
  }

  .shot-main {
    right: 9%;
  }

  .shot-left {
    left: -34px;
    top: 128px;
    width: 220px;
  }

  .shot-right {
    right: -38px;
    top: 200px;
    width: 220px;
  }

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

  .feature-screens img:last-child {
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
