/* ========================================
   BMS — Landing Page Styles
   ======================================== */

/* Reset & Variables */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6C5CE7;
  --primary-light: #a29bfe;
  --primary-dark: #4834d4;
  --accent: #00b894;
  --eth-green: #009A44;
  --eth-yellow: #FCDD09;
  --eth-red: #DA121A;
  --bg: #0a0a1a;
  --bg-card: #12122a;
  --bg-card-hover: #1a1a3e;
  --surface: #1e1e3f;
  --border: rgba(108, 92, 231, 0.15);
  --text: #e8e8f0;
  --text-muted: #8888aa;
  --text-dim: #555577;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(108, 92, 231, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Sora', 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --font-accent: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--eth-green) 33.3%, var(--eth-yellow) 33.3%, var(--eth-yellow) 66.6%, var(--eth-red) 66.6%);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108, 92, 231, 0.5);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(108, 92, 231, 0.08);
}

.btn-ghost {
  color: var(--text-muted);
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-block { width: 100%; justify-content: center; }

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ Hero ============ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.gradient-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.avatars {
  display: flex;
}


/* Phone Mockup (Hero Visual) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108,92,231,0.12) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.phone-mockup {
  width: 290px;
  background: linear-gradient(145deg, #1e1e3a, #15152a);
  border: 2px solid rgba(108,92,231,0.25);
  border-radius: 42px;
  padding: 14px 10px;
  position: relative;
  box-shadow:
    0 30px 100px rgba(108, 92, 231, 0.3),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.phone-notch {
  width: 130px;
  height: 26px;
  background: #0a0a1a;
  border-radius: 0 0 18px 18px;
  margin: -14px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

.phone-screen {
  background: linear-gradient(180deg, #0f0f23 0%, #0a0a18 100%);
  border-radius: 34px;
  overflow: hidden;
  padding: 0 14px;
  position: relative;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,92,231,0.3), transparent);
  z-index: 1;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 6px;
  position: relative;
  z-index: 2;
}
.phone-time {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
}
.phone-status-icons {
  display: flex;
  gap: 5px;
  opacity: 0.5;
}

/* Greeting / Profile row */
.phone-greeting {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 4px 0;
}
.phone-greeting div { flex: 1; }
.phone-greeting-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.phone-greeting-status {
  display: block;
  font-size: 0.62rem;
  color: var(--accent);
}


/* Chart Card */
.phone-chart-card {
  background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(108,92,231,0.03));
  border: 1px solid rgba(108,92,231,0.12);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
}
.phone-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.phone-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 56px;
  margin-bottom: 8px;
}
.phone-bar {
  flex: 1;
  background: linear-gradient(to top, #6C5CE7, #a29bfe);
  border-radius: 3px 3px 0 0;
  opacity: 0.7;
  height: 0;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 0;
}
.phone-bar.animated {
  opacity: 0.7;
}
.phone-chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.phone-chart-footer strong {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: #fff;
}
.phone-card-change {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,184,148,0.12);
  padding: 2px 8px;
  border-radius: 50px;
}

/* Sales Stats (home) */
.phone-sales-stats {
  display: flex;
  gap: 6px;
}
.phone-stat-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
}
.phone-stat-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.phone-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.phone-stat-change {
  font-size: 0.55rem;
  font-weight: 700;
  background: rgba(0,184,148,0.1);
  padding: 1px 6px;
  border-radius: 50px;
  display: inline-block;
}
.phone-stat-change.up { color: var(--accent); }

.phone-section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Pane header */
/* Bottom Nav */
.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0 2px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.phone-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
  color: #555;
  font-size: 0.5rem;
  font-weight: 600;
}
.phone-nav-btn.active {
  color: #6C5CE7;
}

/* ============ Section Common ============ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============ Features ============ */
.features {
  padding: 120px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============ How It Works ============ */
.how-it-works {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.03), transparent);
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-card {
  text-align: center;
  padding: 40px 32px;
  max-width: 300px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ============ Stats ============ */
.stats {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(108, 92, 231, 0.04), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {
  padding: 32px 16px;
}
.stat-value {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  display: inline;
}
.stat-suffix {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-light);
  display: inline;
}
.stat-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 8px;
}



/* ============ Pricing ============ */
.pricing {
  padding: 120px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(108, 92, 231, 0.08), var(--bg-card));
  box-shadow: 0 0 60px rgba(108, 92, 231, 0.12);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.currency { font-size: 1.5rem; vertical-align: top; color: var(--primary-light); }
.period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.pricing-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(0, 184, 148, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300b894' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============ CTA ============ */
.cta {
  padding: 80px 0 120px;
}
.cta-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  position: relative;
  z-index: 1;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.cta-actions .btn-primary:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.3);
}
.cta-note {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ Footer ============ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 280px;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ============ Waitlist Form ============ */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
  width: 100%;
}
.waitlist-field {
  width: 100%;
}
.waitlist-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.waitlist-input::placeholder {
  color: var(--text-dim);
}
.waitlist-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.15);
}

.waitlist-form--light {
  align-items: center;
}
.waitlist-form--column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.waitlist-input--light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
.waitlist-input--light::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.waitlist-input--light:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.waitlist-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.waitlist-heading--light {
  color: var(--white);
}
.waitlist-checkboxes {
  text-align: left;
  width: 100%;
}
.waitlist-checkbox-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.waitlist-checkbox-label--light {
  color: rgba(255, 255, 255, 0.7);
}
.waitlist-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.waitlist-checkbox {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
  user-select: none;
}
.waitlist-checkbox input[type="checkbox"] {
  display: none;
}
.waitlist-checkbox:has(input:checked) {
  border-color: var(--primary);
  background: rgba(108, 92, 231, 0.15);
  color: var(--primary-light);
}
.waitlist-checkbox:hover {
  border-color: rgba(108, 92, 231, 0.4);
  color: var(--white);
}
.waitlist-checkbox--light {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}
.waitlist-checkbox--light:has(input:checked) {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.waitlist-checkbox--light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 28px;
  background: rgba(0, 184, 148, 0.12);
  border: 1px solid rgba(0, 184, 148, 0.3);
  border-radius: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  animation: fadeInUp 0.4s ease;
  text-align: center;
}
.waitlist-success small {
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .waitlist-form--light {
    align-items: stretch;
  }
}

/* ============ Reveal Animations ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .hero-container { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 20px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-actions.active {
    display: flex;
    position: absolute;
    top: calc(100% + 200px);
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border);
  }

  .hero { padding: 120px 0 60px; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 40px; justify-content: center; }
  .phone-mockup { width: 240px; border-radius: 34px; padding: 12px 8px; }
  .phone-screen { border-radius: 28px; padding: 0 12px; }
  .phone-screens { min-height: 280px; }
  .phone-chart-bars { height: 48px; }
  .phone-chart-footer strong { font-size: 0.82rem; }

  .phone-nav-btn svg { width: 16px; height: 16px; }
  .phone-nav-btn { font-size: 0.45rem; gap: 1px; padding: 2px 6px; }

  .section-header h2 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-card { padding: 48px 28px; }
  .cta-card h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .stat-value { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
