*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

:root {
  --navy: #071A2E;
  --navy-deep: #0D2238;
  --teal: #0D9488;
  --teal-hover: #15d4a5;
  --white: #FFFFFF;
  --gray-bg: #F5F5F5;
  --gray-text: #6B7280;
  --gray-light: #AAB4C0;
  --border: #D9DFD8;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--navy);
  background: var(--white);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

section { padding: 80px 0; }

/* NAV */
nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  min-height: 136px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.beta-pill {
  color: #D8F5F2;
  border: 1px solid rgba(29,233,182,0.45);
  background: rgba(29,233,182,0.18);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.75rem 1.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.btn-teal { background: var(--teal); color: #071A2E; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-hover); border-color: var(--teal-hover); color: #071A2E; }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }

/* HERO */
.hero {
  background: var(--navy);
  color: #fff;
  padding-top: 72px;
  padding-bottom: 36px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero-label {
  display: inline-block;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #D8F5F2;
  background: rgba(29,233,182,0.2);
  border: 1px solid rgba(29,233,182,0.5);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-sub {
  color: var(--gray-light);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  max-width: 680px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.phone-shell {
  max-width: 380px;
  width: 100%;
  margin-left: auto;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--navy-deep);
  padding: 18px;
}
.phone-screen {
  height: 560px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0A1B2C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-screen img { max-width: 72%; height: auto; opacity: 0.92; }

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.24);
  margin: 42px 0 20px;
}
.hero-pills {
  color: rgba(29,233,182,0.95);
  font-size: 0.86rem;
  text-align: center;
}

/* SOCIAL PROOF */
.proof-strip {
  background: #fff;
  color: var(--gray-text);
  text-align: center;
  font-size: 0.95rem;
  border-bottom: 1px solid #ECF0F3;
  padding: 22px 0;
}

/* GLOBAL SECTION CONTENT */
.label {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
h2 {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.lead {
  color: var(--gray-text);
  max-width: 740px;
  line-height: 1.7;
}

/* FEATURE CARDS */
.cards-3 {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(7,26,46,0.05);
  padding: 1.3rem;
}
.icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(29,233,182,0.35);
  background: rgba(29,233,182,0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
}
.card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.card p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* HOW */
.section-gray { background: var(--gray-bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}
.step-num {
  color: var(--teal);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.step h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.step p {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* STORY */
.section-navy { background: var(--navy); }
.section-navy h2 { color: #fff; }
.story-copy p {
  color: #AAB4C0;
  line-height: 1.75;
  margin-bottom: 0.95rem;
}
.comparison-card {
  margin-top: 1.2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
}
.comparison-card h4 {
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}
.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #EDF1F4;
  color: #334155;
  font-size: 0.9rem;
}
.comparison-row:last-child { border-bottom: 0; }
.comparison-total {
  margin-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: var(--navy);
}

/* PRICING */
.pricing-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.plan {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 1.25rem;
}
.plan.pro {
  background: var(--navy);
  border-color: rgba(255,255,255,0.15);
}
.plan-name {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #64748B;
}
.plan.pro .plan-name { color: #AAB4C0; }
.plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: var(--teal);
  color: #071A2E;
  margin-bottom: 0.65rem;
}
.price {
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: var(--navy);
}
.plan.pro .price { color: #fff; }
.plan-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 0.8rem;
}
.plan.pro .plan-desc { color: #AAB4C0; }
.feature-list {
  list-style: none;
  border-top: 1px solid #E8ECEF;
  margin-top: 0.9rem;
}
.feature-list li {
  padding: 0.58rem 0;
  border-bottom: 1px solid #E8ECEF;
  color: #334155;
  font-size: 0.9rem;
}
.feature-list li::before {
  content: "✓";
  color: var(--teal);
  margin-right: 0.45rem;
  font-weight: 700;
}
.plan.pro .feature-list { border-top-color: rgba(255,255,255,0.16); }
.plan.pro .feature-list li { color: #E2E8F0; border-bottom-color: rgba(255,255,255,0.16); }

/* WAITLIST */
.waitlist-section {
  background: var(--white);
  border-top: 1px solid #ECF0F3;
  border-bottom: 1px solid #ECF0F3;
}
.waitlist-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 8px 24px rgba(7, 26, 46, 0.06);
}
.waitlist-card .lead {
  margin-bottom: 1.25rem;
}
.waitlist-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}
.waitlist-form input,
.waitlist-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--navy);
}
.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29, 233, 182, 0.2);
}
.waitlist-form button[type="submit"] {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  background: var(--teal);
  color: #071A2E;
}
.waitlist-form button[type="submit"]:hover {
  background: var(--teal-hover);
}
.waitlist-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.waitlist-status-line {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}
#waitlist-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.25rem;
}

/* Waitlist — footer band (navy + mint accents) */
.waitlist-section--footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 88px 0 96px;
}
.waitlist-section--footer .label--on-dark {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 233, 182, 0.35);
  color: rgba(29, 233, 182, 0.95);
  background: rgba(29, 233, 182, 0.08);
}
.waitlist-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.waitlist-lead {
  text-align: center;
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 1rem;
}
.waitlist-spots {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.waitlist-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}
.waitlist-form--dark label {
  color: #e2e8f0 !important;
}
.waitlist-form--dark input,
.waitlist-form--dark select {
  background: rgba(7, 26, 46, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}
.waitlist-form--dark input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}
.waitlist-form--dark input:focus,
.waitlist-form--dark select:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(29, 233, 182, 0.15);
}
.waitlist-success {
  padding: 2rem 1.5rem;
  text-align: center;
}
.waitlist-success[hidden] {
  display: none !important;
}
.waitlist-success-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.55;
  margin: 0;
}

/* FAQ */
.faq {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.7rem;
}
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after {
  content: "+";
  color: var(--teal);
  font-size: 1.1rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "-"; }
.faq p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-top: 0.65rem;
  padding-right: 1.3rem;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: #fff;
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.3rem;
  padding-bottom: 1.6rem;
}
.footer-title {
  color: #AAB4C0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #E2E8F0;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.2rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #AAB4C0;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-inner,
  .cards-3,
  .steps,
  .pricing-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-shell { margin: 0; }
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links { display: none; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .hero h1 { font-size: 2.1rem; }
  .hero-sub { font-size: 1rem; }
  .hero-inner,
  .cards-3,
  .steps,
  .pricing-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }
}


/* ===== Multi-page shared styles ===== */
#nav, nav {
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-links a.active {
  color: #0D9488;
  font-weight: 700;
}
.nav-cta {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.62rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid #0D9488;
  background: #0D9488;
  color: #071A2E;
}
.nav-cta:hover {
  background: #15d4a5;
  border-color: #15d4a5;
}
.page-hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 84px 0 68px;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 0.85rem;
}
.page-hero .section-sub {
  color: #AAB4C0;
}
.section-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 76px 0;
}
.section-label {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: inline-block;
}
.section-title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.section-sub {
  color: var(--gray-text);
  max-width: 740px;
  line-height: 1.7;
}
.reveal { opacity: 1; transform: none; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #E5EAF0;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 0.75rem;
  border-bottom: 1px solid #EDF1F4;
  color: #334155;
  font-size: 0.9rem;
}
.comparison-table thead th {
  background: #F8FAFC;
  font-weight: 700;
  color: #0F172A;
}
.faq-section {
  background: #F8F9FA;
}
.faq-grid {
  max-width: 860px;
  margin: 2rem auto 0;
  display: grid;
  gap: 0.65rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner {
  padding: 0 1rem 1rem;
  color: var(--gray-text);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 240px;
}
.founder-banner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}
.founder-banner-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal);
}
.founder-banner-sub {
  font-size: 0.7rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.how-section {
  background: #F8F9FA;
}
.steps-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.step-title {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.step-desc {
  color: var(--gray-text);
  font-size: 0.92rem;
  line-height: 1.6;
}
.founder-section {
  background: var(--navy);
  color: #fff;
}
.founder-section .section-title,
.founder-section .section-label {
  color: #fff;
}
.founder-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}
.founder-quote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #E2E8F0;
  border-left: 3px solid #0D9488;
  padding-left: 0.8rem;
  margin-bottom: 1rem;
}
.founder-text {
  color: #AAB4C0;
  line-height: 1.75;
  margin-bottom: 0.95rem;
}
.founder-sig {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.founder-avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(29,233,182,0.18);
  color: #0D9488;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.founder-name { font-weight: 700; color: #fff; }
.founder-title { font-size: 0.8rem; color: #AAB4C0; }
.apps-paid {
  display: grid;
  gap: 0.65rem;
}
.app-pill {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.6rem;
  background: rgba(255,255,255,0.03);
}
.app-pill-name { color: #CBD5E1; font-size: 0.9rem; }
.app-pill-price { color: #FCA5A5; font-weight: 700; font-size: 0.9rem; }
.vs-arrow { color: #64748B; text-align: center; font-size: 0.8rem; }
.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.founder-stat {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.7rem;
}
.founder-stat-num { color: #0D9488; font-weight: 800; }
.founder-stat-label { color: #AAB4C0; font-size: 0.8rem; line-height: 1.45; }
@media (max-width: 980px) {
  .steps-grid,
  .founder-inner { grid-template-columns: 1fr; }
}
