:root {
  --bg: #f8f9fb;
  --surface: #ffffff;
  --surface-alt: #f1f4f8;
  --surface-dark: #0f1d2f;
  --surface-dark-2: #1a3150;
  --text: #1a1f2b;
  --text-muted: #5a6578;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --border: #e2e6ee;
  --border-strong: #c5cdd9;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #e0e9fb;
  --brand-blue: #29ABE2;
  --brand-blue-soft: rgba(41, 171, 226, 0.12);
  --accent: #6366f1;
  --success: #059669;
  --success-soft: #d1fae5;
  --warning: #d97706;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.09);
  --shadow-glow: 0 0 0 1px rgba(37, 99, 235, 0.08);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --max-width: 1140px;
  --nav-height: 72px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition-fast: 160ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--surface-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  position: absolute;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand img {
  height: 44px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 3px var(--brand-blue-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  transition: all var(--transition-fast);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 3px rgba(37, 99, 235, 0.25), 0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3), 0 8px 24px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--surface-alt);
  border-color: var(--border-strong);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--surface);
  color: var(--text);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--surface-alt);
}

.mobile-menu {
  display: none;
  padding-bottom: 18px;
}

.mobile-menu .mobile-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero {
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-actions-center {
  justify-content: center;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-visual-card {
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.hero-visual-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
}

.tracker-card {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-dark);
  color: var(--text-on-dark);
}

.tracker-card h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.tracker-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.tracker-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 4px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.tracker-step.is-done .tracker-marker {
  background: var(--success);
  border-color: rgba(222, 244, 234, 0.95);
}

.tracker-step.is-active .tracker-marker {
  background: var(--warning);
  border-color: rgba(255, 255, 255, 0.85);
}

.section {
  padding: 56px 0 0;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-intro-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-blue);
}

.section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 700;
}

.grid-3,
.grid-2,
.feature-grid,
.faq-grid,
.metrics-grid,
.metrics-strip {
  display: grid;
  gap: 18px;
}

.grid-3,
.feature-grid,
.metrics-grid,
.metrics-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-card,
.section-card,
.partner-card,
.metric-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.content-card:hover,
.metric-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.content-card h3,
.section-card h3,
.partner-card h3,
.metric-card h3,
.faq-question {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.content-card p,
.section-card p,
.partner-card p,
.metric-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.split-panel.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.image-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 420px;
}

.section-card ul,
.partner-card ul,
.legal-card ul,
.legal-card ol {
  margin: 14px 0 0 18px;
  color: var(--text-muted);
}

.check-list-inline {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.check-list-inline li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.check-icon {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.x-icon {
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 320px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.step-number::before {
  content: 'Step ';
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: var(--border-strong);
  align-self: center;
  margin-top: -20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.price-display {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 12px 0;
}

.price-display span {
  font-size: 0.95rem;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--text-muted);
}

.price-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.925rem;
}

.price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.price-card {
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.price-card.is-featured {
  border-color: rgba(41, 171, 226, 0.25);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(41, 171, 226, 0.1);
  position: relative;
}

.price-card-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card.is-coming-soon {
  border-color: rgba(41, 171, 226, 0.15);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(41, 171, 226, 0.03) 100%);
  position: relative;
}

.price-card-badge.is-soon {
  background: var(--surface-dark);
}

.price-card-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -12px 0 16px;
  line-height: 1.5;
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

.price-card-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.price-card-amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.price-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.price-card-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 18px;
}

.notice-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
}

.metrics-grid .metric-card {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: var(--brand-blue);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--brand-blue-soft);
  border: 1px solid rgba(41, 171, 226, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-blue);
  white-space: nowrap;
}

.waitlist-panel,
.cta-panel,
.page-hero,
.legal-card,
.form-card {
  border-radius: var(--radius-lg);
}

.waitlist-panel,
.cta-panel {
  padding: 40px;
  background: var(--surface-dark);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lg);
}

.waitlist-panel p,
.cta-panel p {
  color: rgba(255, 255, 255, 0.65);
}

.page-hero {
  margin-top: 28px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.page-hero-center {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface-alt);
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-header > div {
  padding: 16px 20px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-row > div {
  padding: 14px 20px;
  font-size: 0.9rem;
}

.comparison-label {
  font-weight: 600;
  color: var(--text);
}

.comparison-col {
  color: var(--text-muted);
}

.comparison-col.is-highlight {
  background: rgba(37, 99, 235, 0.03);
  color: var(--text);
}

.comparison-row:nth-child(even) {
  background: rgba(0, 0, 0, 0.01);
}

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

.comparison-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.comparison-card.is-highlight {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-sm), var(--shadow-glow);
}

.comparison-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.comparison-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.comparison-card li + li {
  margin-top: 10px;
}

.mini-steps,
.timeline-list,
.check-list {
  display: grid;
  gap: 12px;
}

.mini-step,
.timeline-item,
.check-item {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--surface-alt);
}

.mini-step strong,
.timeline-item strong,
.check-item strong {
  display: block;
  color: var(--surface-dark);
  margin-bottom: 4px;
}

.mini-step span,
.timeline-item span,
.check-item span {
  color: var(--text-muted);
}

.benefit-stack {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.benefit-row {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-row strong {
  color: var(--surface-dark);
}

.benefit-row span {
  color: var(--text-muted);
}

.legal-wrap,
.stack {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--surface-alt);
}

.legal-card h2,
.legal-card h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.legal-card p {
  color: var(--text-muted);
  margin: 0 0 12px;
  font-size: 0.925rem;
}

.waitlist-panel .section-intro,
.cta-panel .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-panel .hero-actions,
.cta-panel .hero-actions {
  justify-content: center;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

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

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

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

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

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

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.925rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-note,
.fine-print,
.helper-text {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.status-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  background: var(--success-soft);
  color: #065f46;
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.status-message.is-error {
  background: var(--danger-soft);
  color: #991b1b;
  border: 1px solid rgba(220, 38, 38, 0.12);
}

.status-message.is-info {
  background: var(--primary-soft);
  color: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Button overrides on dark panels */
.waitlist-panel .btn-secondary,
.cta-panel .btn-secondary {
  background: #fff;
  color: var(--surface-dark);
  border-color: #fff;
}

.waitlist-panel .btn-secondary:hover,
.cta-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.waitlist-panel .btn-ghost,
.cta-panel .btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.waitlist-panel .btn-ghost:hover,
.cta-panel .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Field overrides on dark panels */
.waitlist-panel .field label {
  color: rgba(255, 255, 255, 0.8);
}

.waitlist-panel .field input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.waitlist-panel .field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.waitlist-panel .field input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

/* Brand-blue highlight for "ZipWash" text in dark panels */
.brand-highlight {
  color: var(--brand-blue);
}

/* Service promise cards: center icon + text */
.content-card.is-centered {
  text-align: center;
}

.content-card.is-centered .card-icon {
  margin-left: auto;
  margin-right: auto;
}

/* Waitlist form: center the submit button */
.waitlist-form > div:last-child {
  text-align: center;
}

.site-footer {
  margin-top: 72px;
  padding: 48px 0 40px;
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 18px;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.footer-grid a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-actions .nav-location {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-grid,
  .split-panel,
  .split-panel.reverse,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .feature-grid,
  .metrics-grid,
  .metrics-strip,
  .comparison-grid,
  .callout-grid,
  .grid-2,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    flex-wrap: wrap;
  }

  .step-connector {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .comparison-header > div,
  .comparison-row > div {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

@media (max-width: 720px) {

  /* ── Global spacing ── */
  .section {
    padding: 36px 0 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  /* ── Nav ── */
  .nav-inner {
    min-height: 56px;
    gap: 10px;
  }

  .brand img {
    height: 32px;
  }

  .brand-text span {
    font-size: 0.95rem;
  }

  .nav-actions .btn {
    display: none;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-copy {
    padding: 24px 20px;
  }

  .hero-copy h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .hero-copy p {
    font-size: 0.92rem;
  }

  .hero-visual-card {
    padding: 8px;
  }

  .hero-visual-card img {
    border-radius: calc(var(--radius-lg) - 6px);
    min-height: 220px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-list {
    gap: 6px;
    margin-top: 14px;
  }

  .trust-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .tracker-card {
    margin-top: 16px;
    padding: 16px;
  }

  .tracker-card h2 {
    font-size: 0.85rem;
  }

  /* ── Section intros ── */
  .section-intro h2,
  .section-intro-center h2 {
    font-size: 1.5rem;
  }

  .section-kicker {
    font-size: 0.7rem;
  }

  /* ── Cards & panels ── */
  .hero-copy,
  .waitlist-panel,
  .cta-panel,
  .page-hero,
  .content-card,
  .section-card,
  .partner-card,
  .legal-card,
  .form-card {
    padding: 24px 20px;
  }

  /* ── Steps ── */
  .steps-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .step-card {
    max-width: none;
    flex: none;
    width: 100%;
    padding: 24px 20px;
  }

  .step-connector {
    display: none;
  }

  /* ── Split panels ── */
  .split-panel,
  .split-panel.reverse {
    gap: 16px;
  }

  .image-panel {
    min-height: 260px;
  }

  /* ── Metrics strip ── */
  .metrics-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .metric-card {
    padding: 20px;
  }

  .metric-value {
    font-size: 1.8rem;
  }

  /* ── Pricing ── */
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card {
    padding: 24px 20px;
  }

  /* ── Comparison table — keep 3 columns but compact ── */
  .comparison-header,
  .comparison-row {
    grid-template-columns: 0.8fr 1fr 1fr;
  }

  .comparison-header > div,
  .comparison-row > div {
    font-size: 0.72rem;
    padding: 10px 8px;
    line-height: 1.35;
  }

  .comparison-label {
    font-size: 0.72rem;
  }

  .check-icon,
  .x-icon {
    font-size: 0.8rem;
  }

  /* ── Grids to single column ── */
  .waitlist-grid.two,
  .form-grid.two,
  .grid-3,
  .feature-grid,
  .metrics-grid,
  .comparison-grid,
  .callout-grid,
  .grid-2,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* ── FAQ ── */
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 18px 16px;
  }

  /* ── Waitlist ── */
  .waitlist-panel {
    border-radius: var(--radius-md);
  }

  .waitlist-panel h2 {
    font-size: 1.35rem;
  }

  .waitlist-form {
    max-width: 100%;
  }

  /* ── CTA panel ── */
  .cta-panel {
    border-radius: var(--radius-md);
  }

  .cta-panel h2 {
    font-size: 1.35rem;
  }

  /* ── Footer ── */
  .site-footer {
    margin-top: 40px;
  }

  .footer-grid {
    gap: 24px;
  }

  /* ── Service promise cards ── */
  .card-icon {
    width: 40px;
    height: 40px;
  }

  /* ── Benefit stack (Who It's For) ── */
  .benefit-row {
    padding: 14px 16px;
  }
}

/* ─── V3 Scroll-Driven Animation System ─── */

/* Reveal base state — hidden until IntersectionObserver triggers */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children — each child starts hidden */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger] > .is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Nav shrink on scroll */
.site-nav {
  transition: min-height 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.site-nav.is-scrolled .nav-inner {
  min-height: calc(var(--nav-height) - 12px);
}

.site-nav.is-scrolled .brand img {
  height: 36px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* Parallax images */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Enhanced image hover in split panels */
.image-panel {
  transition: transform var(--transition-smooth);
}

.image-panel:hover {
  transform: scale(1.01);
}

.image-panel img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-panel:hover img {
  transform: scale(1.04);
}

/* Gradient section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* Floating label effect on focused fields */
.field input:not(:placeholder-shown) + .field-float-label,
.field input:focus + .field-float-label {
  transform: translateY(-24px) scale(0.85);
  color: var(--primary);
}

/* Card glow on hover */
.content-card:hover,
.metric-card:hover,
.callout-card:hover {
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(37, 99, 235, 0.06);
}

/* Smooth tracker step animation */
.tracker-step {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Pulse animation for active tracker */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(217, 119, 6, 0); }
}

.tracker-step.is-active .tracker-marker {
  animation: pulse 2s ease-in-out infinite;
}

/* Hero text gradient accent (optional class) */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA panel glow effect */
.cta-panel {
  position: relative;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.08), transparent 50%);
  pointer-events: none;
}

/* Waitlist panel glow */
.waitlist-panel {
  position: relative;
  overflow: hidden;
}

.waitlist-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.06), transparent 50%);
  pointer-events: none;
}

/* Comparison card highlight glow */
.comparison-card.is-highlight {
  position: relative;
}

.comparison-card.is-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), transparent);
  pointer-events: none;
}

/* Metric card number color animation */
.metric-value {
  transition: color 0.3s ease;
}

.metric-card:hover .metric-value {
  color: var(--accent);
}

/* ── FAQ ── */
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: box-shadow var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* FAQ smooth open/close */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.3s ease;
  padding: 0 24px;
  display: block !important;
}

.faq-item.is-open .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding: 0 24px 20px;
}

.faq-question span {
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.is-open .faq-question span {
  transform: rotate(45deg);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  [data-parallax] {
    transform: none !important;
  }
  .tracker-step.is-active .tracker-marker {
    animation: none;
  }
  .image-panel:hover img {
    transform: none;
  }
}

/* ── Order Status Page ── */
.order-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 8px 0;
}

.order-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 80px;
}

.order-step::after {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% + 12px);
  right: calc(-50% + 12px);
  height: 2px;
  background: var(--border);
}

.order-step:last-child::after {
  display: none;
}

.order-step.is-done::after {
  background: var(--success);
}

.order-step.is-current::after {
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--border) 100%);
}

.order-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.order-step.is-done .order-step-dot {
  background: var(--success);
  border-color: var(--success);
}

.order-step.is-current .order-step-dot {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px var(--brand-blue-soft);
}

.order-step-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
  line-height: 1.2;
}

.order-step.is-done .order-step-label {
  color: var(--success);
}

.order-step.is-current .order-step-label {
  color: var(--brand-blue);
  font-weight: 700;
}

.order-detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.order-detail-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.order-detail-row > span:last-child {
  font-weight: 600;
  text-align: right;
}

@media (max-width: 600px) {
  .order-timeline {
    flex-wrap: wrap;
    gap: 4px;
  }
  .order-step::after {
    display: none;
  }
  .order-step {
    min-width: 60px;
  }
}

/* Selection styling */
::selection {
  background: rgba(37, 99, 235, 0.12);
  color: var(--text);
}
