/* ============================================
   RENTLI — Waitlist Landing Page Styles
   ============================================ */

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

:root {
  --bg: #F8F4EF;
  --bg-white: #ffffff;
  --text: #1a1a1a;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --green: #22C55E;
  --green-light: #DCFCE7;
  --blue: #3B82F6;
  --blue-light: #DBEAFE;
  --purple: #7C3AED;
  --purple-light: #EDE9FE;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --red: #EF4444;
  --red-light: #FEE2E2;
  --teal: #14B8A6;
  --teal-light: #CCFBF1;
  --rose: #E11D48;
  --rose-light: #FFE4E6;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 12px 30px rgba(0,0,0,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 244, 239, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.nav--scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.nav__container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.08em; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: color var(--transition); }
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--text); color: white !important;
  padding: 8px 20px; border-radius: 99px; font-weight: 600 !important; font-size: 0.85rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 99px; font-weight: 600; font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition); cursor: pointer; border: none; font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--text); color: white; }
.btn--primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn--purple { background: var(--purple); color: white; }
.btn--purple:hover { box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--white { background: white; color: var(--text); }
.btn--white:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.3); }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,0.6); }
.section-header h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }
.section-header--light h2 { color: white; }
.section-header--light p { color: rgba(255,255,255,0.6); }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; padding: 140px 24px 100px; background: var(--bg); overflow: hidden; }
.hero__container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: #166534;
  padding: 8px 16px; border-radius: 99px; font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.spots-count { color: #166534; }

/* Spots counter in waitlist card */
.spots-counter {
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.spots-counter__text {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; margin-bottom: 8px;
}
.spots-counter__text .spots-count { color: var(--green); font-size: 1.1rem; }
.spots-counter__label { color: var(--muted); font-size: 0.75rem; }
.spots-counter__bar {
  width: 100%; height: 6px; border-radius: 3px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
}
.spots-counter__fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #22C55E, #16A34A);
  transition: width 0.5s ease;
}
.hero__title { font-size: 3.5rem; font-weight: 900; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.03em; }
.hero__subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero__form-inline { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero__form-note { font-size: 0.8rem; color: var(--text-lighter); }

.doodle { position: absolute; pointer-events: none; }
.doodle--1 { top: 100px; right: 5%; animation: float 8s ease-in-out infinite; }
.doodle--2 { bottom: 140px; left: 3%; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

/* Phone mockup */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone { position: relative; }
.phone__frame {
  width: 280px; height: 580px; background: #1a1a1a; border-radius: 44px; padding: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2), inset 0 0 0 2px rgba(255,255,255,0.1);
  position: relative;
}
.phone__notch {
  width: 120px; height: 28px; background: #1a1a1a; border-radius: 0 0 18px 18px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; background: var(--bg); border-radius: 34px;
  overflow: hidden; padding: 44px 16px 16px;
}
.phone__label {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 6px 16px; border-radius: 99px; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
}

/* Mock app screen */
.mock-app__greeting { font-size: 0.65rem; color: var(--text-light); margin-bottom: 2px; }
.mock-app__name { font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.mock-app__card { background: white; border-radius: 14px; padding: 14px; margin-bottom: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.mock-app__card-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.6rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.mock-app__badge { background: var(--blue-light); color: var(--blue); font-size: 0.5rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.mock-app__amount { font-size: 1.4rem; font-weight: 800; color: var(--green); margin-bottom: 2px; }
.mock-app__expected { font-size: 0.55rem; color: var(--text-lighter); margin-bottom: 8px; }
.mock-app__bar { height: 6px; background: #E5E7EB; border-radius: 99px; margin-bottom: 10px; overflow: hidden; }
.mock-app__bar-fill { height: 100%; background: var(--blue); border-radius: 99px; }
.mock-app__stats { display: flex; justify-content: space-between; font-size: 0.5rem; color: var(--text-light); }
.mock-app__stats strong { display: block; font-size: 0.6rem; color: var(--text); }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 3px; vertical-align: middle; }
.dot--green { background: var(--green); } .dot--orange { background: var(--amber); } .dot--red { background: var(--red); }
.mock-app__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-app__tile { background: white; border-radius: 12px; padding: 10px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.mock-app__tile-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.mock-app__tile-icon--blue { background: var(--blue-light); }
.mock-app__tile-icon--green { background: var(--green-light); }
.mock-app__tile-icon--red { background: var(--red-light); }
.mock-app__tile strong { display: block; font-size: 0.85rem; font-weight: 800; }
.mock-app__tile span { font-size: 0.5rem; color: var(--text-light); }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: white; padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow-lg);
  font-size: 0.75rem; font-weight: 500; white-space: nowrap; animation: floatCard 6s ease-in-out infinite;
}
.float-card--1 { top: 120px; right: -30px; }
.float-card--2 { bottom: 100px; left: -20px; animation-delay: -3s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
  background-image: linear-gradient(135deg, var(--green) 0%, var(--blue) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

/* ============================================
   ANIMATED GRADIENT BLOBS
   ============================================ */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35;
  pointer-events: none; will-change: transform;
}
.blob--1 {
  width: 400px; height: 400px; top: -100px; right: -50px;
  background: linear-gradient(135deg, rgba(34,197,94,0.4), rgba(59,130,246,0.3));
  animation: blobMove1 12s ease-in-out infinite;
}
.blob--2 {
  width: 300px; height: 300px; bottom: -50px; left: -100px;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(225,29,72,0.2));
  animation: blobMove2 15s ease-in-out infinite;
}
.blob--3 {
  width: 250px; height: 250px; top: 40%; left: 40%;
  background: linear-gradient(135deg, rgba(245,158,11,0.25), rgba(34,197,94,0.2));
  animation: blobMove3 10s ease-in-out infinite;
}
@keyframes blobMove1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes blobMove2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 30px) scale(1.05); }
  66% { transform: translate(40px, -20px) scale(1.1); }
}
@keyframes blobMove3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.15); }
}

/* ============================================
   SCROLLING NOTIFICATION TICKER
   ============================================ */
.ticker {
  background: var(--bg); border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 14px 0; overflow: hidden; position: relative;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg)); }
.ticker__track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-light); flex-shrink: 0;
}
.ticker__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.ticker__dot--green { background: var(--green); }
.ticker__dot--blue { background: var(--blue); }
.ticker__dot--purple { background: var(--purple); }
.ticker__dot--amber { background: var(--amber); }
.ticker__dot--rose { background: var(--rose); }
.ticker__item--ai { color: var(--purple); font-weight: 600; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WAVE SECTION DIVIDERS
   ============================================ */
.wave-divider {
  margin-top: -1px; line-height: 0;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-divider--hero { margin-top: -40px; position: relative; z-index: 1; }
.wave-divider--hero svg { height: 50px; }

/* ============================================
   BENTO FEATURE GRID
   ============================================ */
.bento .feature-card--hero {
  padding: 40px 36px;
}
.feature-card__visual {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06);
}
.feature-card__mini-bar {
  height: 8px; background: #E5E7EB; border-radius: 99px; overflow: hidden; margin-bottom: 10px;
}
.feature-card__mini-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 99px; transition: width 1.5s ease;
}
.feature-card__mini-stats {
  display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-light);
}
.feature-card__mini-stats strong { color: var(--text); }
.feature-card__doc-stack { display: flex; flex-direction: column; gap: 6px; }
.feature-card__doc {
  padding: 8px 12px; background: rgba(0,0,0,0.03); border-radius: 8px;
  font-size: 0.75rem; font-weight: 500; color: var(--text-light);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card__doc--active {
  background: var(--blue-light); color: var(--blue); border-color: rgba(59,130,246,0.15);
}

/* Bento hero cards padding on desktop */
@media (min-width: 769px) {
  .bento .feature-card--hero { padding: 40px 36px; }
}

/* ============================================
   PAYMENT METHOD BADGES
   ============================================ */
.payment-methods { margin-bottom: 16px; }
.payment-methods__label {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-lighter); margin-bottom: 10px;
}
.payment-methods__grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.payment-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 10px;
  background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.72rem; font-weight: 600; color: var(--text);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.payment-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  background: white;
}

/* ============================================
   STRIPE TRUST BADGE
   ============================================ */
.stripe-badge {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; padding: 10px 14px;
  background: rgba(99,91,255,0.04);
  border: 1px solid rgba(99,91,255,0.1);
  border-radius: 10px;
  font-size: 0.75rem; font-weight: 500; color: var(--text-light);
}
.stripe-badge svg:first-child { flex-shrink: 0; }
.stripe-wordmark {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em;
  color: #635BFF;
}
.stripe-trust {
  font-size: 0.72rem; color: var(--muted); margin-top: 12px;
  padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.06);
  line-height: 1.5;
}
.stripe-trust svg { vertical-align: -2px; margin-right: 4px; }
.stripe-trust .stripe-wordmark { font-size: 0.8rem; vertical-align: baseline; }

/* ============================================
   AI FEATURE CARD — SUBTLE SPARKLE
   ============================================ */
.feature-card--ai {
  position: relative;
}
.feature-card--ai::after {
  content: '✦'; position: absolute; top: 12px; right: 16px;
  font-size: 0.7rem; color: var(--rose);
  animation: sparkle 2s ease-in-out infinite;
}
@keyframes sparkle {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ============================================
   PHONE MOCKUP BAR ANIMATION
   ============================================ */
.mock-app__bar-fill--animated {
  animation: barGrow 2s ease 0.5s both;
}
@keyframes barGrow {
  0% { width: 0%; }
  100% { width: 50%; }
}

/* ============================================
   PAIN POINTS
   ============================================ */
.pain { padding: 100px 0; background: var(--bg-white); }
.pain__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pain__card {
  background: var(--bg); border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.pain__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,0,0,0.04); }
.pain__emoji { margin-bottom: 16px; }
.pain__card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.pain__card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   PAIN BRIDGE
   ============================================ */
.pain-bridge {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* ============================================
   SOLUTION / FEATURES
   ============================================ */
.solution { padding: 100px 0; background: var(--bg); }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.features__grid.bento { grid-template-columns: repeat(4, 1fr); }
.features__grid.bento .feature-card--hero { grid-column: span 2; }
.feature-card {
  background: var(--bg-white); border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-card__icon--green { background: var(--green-light); }
.feature-card__icon--blue { background: var(--blue-light); }
.feature-card__icon--amber { background: var(--amber-light); }
.feature-card__icon--purple { background: var(--purple-light); }
.feature-card__icon--teal { background: var(--teal-light); }
.feature-card__icon--rose { background: var(--rose-light); }
.feature-card__icon--ai-gradient {
  background: linear-gradient(135deg, var(--rose) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
}
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   PRICING
   ============================================ */
.pricing { padding: 100px 0; background: var(--bg-white); }
.pricing__content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pricing__text .section-label { text-align: left; }
.pricing__text h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.pricing__highlight { color: var(--green); }
.pricing__text > p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; }
.pricing__details { display: flex; flex-direction: column; gap: 16px; }
.pricing__detail { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; font-weight: 500; }
.pricing__card {
  position: relative; background: var(--bg); border-radius: var(--radius-lg); padding: 40px;
  text-align: center; border: 1px solid rgba(0,0,0,0.06);
}
.pricing__card-label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); margin-bottom: 8px; }
.pricing__card-price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 4px; }
.pricing__card-number { font-size: 5rem; font-weight: 800; line-height: 1; letter-spacing: -0.04em; }
.pricing__card-percent { font-size: 2rem; font-weight: 700; margin-top: 12px; }
.pricing__card-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.pricing__card-divider { width: 60px; height: 2px; background: #E5E7EB; margin: 0 auto 24px; border-radius: 1px; }
.pricing__card-example {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.8; text-align: left;
  background: white; padding: 16px; border-radius: var(--radius-sm);
}
.pricing__card-example span { font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.pricing__card-receive { color: var(--green) !important; }
.pricing__card-note {
  display: flex; align-items: flex-start; gap: 8px; font-size: 0.75rem;
  color: var(--text-lighter); margin-top: 16px; text-align: left;
}
.pricing__card-note svg { flex-shrink: 0; margin-top: 1px; }

/* Early bird banner */
.early-bird {
  margin-top: 48px; display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, #FEF9E7 0%, #FEF3C7 100%);
  border: 1.5px solid rgba(245,158,11,0.2); border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.early-bird__icon { flex-shrink: 0; }
.early-bird__text { flex: 1; }
.early-bird__text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.early-bird__text p { font-size: 0.9rem; color: var(--text-light); }
.early-bird .btn { flex-shrink: 0; white-space: nowrap; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip { padding: 40px 0; background: var(--bg); }
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-light);
}
.trust-strip__item {
  display: flex; align-items: center; gap: 8px;
}
.trust-strip__item strong { color: var(--text); font-weight: 600; }
.trust-strip__stripe { color: #635BFF; font-weight: 700; }
.trust-strip__brands {
  display: inline-flex; align-items: center; gap: 12px; margin-left: 6px;
}
.trust-strip__brand-logo {
  height: 20px; width: auto; transition: opacity var(--transition);
}
.trust-strip__brand-logo:hover { opacity: 0.8; }
.trust-strip__brand-logo--snap { height: 22px; }
.trust-strip__brand-logo--meta { height: 20px; }
.trust-strip__brand-logo--toshiba { height: 16px; }
.trust-strip__divider {
  width: 1px; height: 20px; background: rgba(0,0,0,0.12);
}

/* ============================================
   WAITLIST
   ============================================ */
.waitlist {
  padding: 100px 0;
  padding-top: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2D2D2D 100%);
  position: relative;
}
.waitlist__wave { display: block; width: 100%; height: 60px; }
.waitlist__grid { display: grid; grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 48px; }
.waitlist__card {
  border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
}
.waitlist__card--landlord {
  background: linear-gradient(135deg, #FDF8F0 0%, #F5F0E8 100%);
  border: 1px solid rgba(0,0,0,0.06);
}
.waitlist__card--tenant {
  background: linear-gradient(135deg, #F8F4FF 0%, #EDE5FF 100%);
  border: 1px solid rgba(124,58,237,0.08);
}
.waitlist__card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.waitlist__card-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.8);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.waitlist__card-icon--tenant { background: rgba(124,58,237,0.1); }
.waitlist__card-header h3 { font-size: 1.2rem; font-weight: 700; }
.waitlist__card-header p { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

.waitlist__perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.waitlist__perk { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; }

/* Form styles */
.waitlist__form { display: flex; flex-direction: column; gap: 12px; }
.waitlist__input {
  width: 100%; padding: 14px 18px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px; font-size: 0.9rem; font-family: var(--font);
  background: white; transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.waitlist__input:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.waitlist__card--tenant .waitlist__input:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.waitlist__input::placeholder { color: var(--text-lighter); }

/* Success state */
.waitlist__success {
  display: none; text-align: center; padding: 32px 16px;
}
.waitlist__success.show { display: block; }
.waitlist__success svg { margin: 0 auto 16px; }
.waitlist__success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.waitlist__success p { font-size: 0.9rem; color: var(--text-light); }

/* Counter */
.waitlist__counter {
  text-align: center; padding: 24px; background: rgba(255,255,255,0.06);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.08);
}
.waitlist__counter-dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.waitlist__counter-dots span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}
.waitlist__counter-dots span:nth-child(1) { background: linear-gradient(135deg,#22C55E,#16A34A); border-color: #22C55E; }
.waitlist__counter-dots span:nth-child(2) { background: linear-gradient(135deg,#3B82F6,#2563EB); border-color: #3B82F6; }
.waitlist__counter-dots span:nth-child(3) { background: linear-gradient(135deg,#7C3AED,#6D28D9); border-color: #7C3AED; }
.waitlist__counter p { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 60px 0 32px; background: var(--bg); border-top: 1px solid rgba(0,0,0,0.06); }
.footer__content { display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 12px; }
.footer__brand p { font-size: 0.9rem; color: var(--text-light); max-width: 280px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer__links a { display: block; font-size: 0.85rem; color: var(--text-light); padding: 4px 0; transition: color var(--transition); }
.footer__links a:hover { color: var(--text); }
.footer__bottom { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 24px; text-align: center; }
.footer__bottom p { font-size: 0.8rem; color: var(--text-lighter); }

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  width: 0%; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ============================================
   HERO SECONDARY CTA
   ============================================ */
.hero__secondary-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-light);
  transition: color var(--transition), gap var(--transition);
  margin-top: 4px;
}
.hero__secondary-cta:hover { color: var(--text); gap: 10px; }
.hero__secondary-cta svg { animation: bounceDown 2s ease-in-out infinite; }
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ============================================
   GLOW BUTTON EFFECT
   ============================================ */
.btn--glow {
  position: relative; overflow: hidden;
}
.btn--glow::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s ease;
}
.btn--glow:hover::after { opacity: 1; }

/* Subtle shimmer on primary CTAs */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.btn--primary {
  background: linear-gradient(110deg, #1a1a1a 35%, #333 50%, #1a1a1a 65%);
  background-size: 200% 100%;
}
.btn--primary:hover {
  animation: shimmer 2s ease-in-out;
}

/* ============================================
   GLASSMORPHISM CARDS (matching app aesthetic)
   ============================================ */
.pain__card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
}
.pain__card:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.06);
}

.feature-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: background var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}
.feature-card:hover::before { background: linear-gradient(90deg, var(--green), var(--blue)); }

/* Icon micro-animation on card hover */
.feature-card__icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition);
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ============================================
   PRICING CARD GLOW
   ============================================ */
.pricing__card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(248,244,239,0.9) 0%, rgba(255,255,255,0.9) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.pricing__card::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: conic-gradient(from 0deg, var(--green), var(--blue), var(--purple), var(--green));
  border-radius: inherit; z-index: -1; opacity: 0;
  transition: opacity 0.5s ease;
}
.pricing__card:hover::before { opacity: 0.15; }

/* Animated number counter style */
.pricing__card-number {
  background: linear-gradient(135deg, var(--text) 0%, #444 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   WAITLIST CARD GLASSMORPHISM
   ============================================ */
.waitlist__card--landlord {
  background: linear-gradient(135deg, rgba(253,248,240,0.95) 0%, rgba(245,240,232,0.9) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.waitlist__card--landlord:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.waitlist__card--tenant {
  background: linear-gradient(135deg, rgba(248,244,255,0.95) 0%, rgba(237,229,255,0.9) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(124,58,237,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.waitlist__card--tenant:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(124,58,237,0.15);
}

/* Focus ring styling (matching app) */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.waitlist__card--tenant :focus-visible {
  outline-color: var(--purple);
}

/* ============================================
   SUCCESS STATE — ANIMATED
   ============================================ */
.waitlist__success.show {
  display: block;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.waitlist__success.show svg {
  animation: successCheck 0.6s ease 0.2s both;
}
@keyframes successPop {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes successCheck {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* Confetti particles on success */
.waitlist__success.show::before,
.waitlist__success.show::after {
  content: ''; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  animation: confetti 1s ease forwards;
}
.waitlist__success.show::before {
  background: var(--green); top: 30%; left: 20%;
  animation: confettiLeft 0.8s ease forwards;
}
.waitlist__success.show::after {
  background: var(--blue); top: 30%; right: 20%;
  animation: confettiRight 0.8s ease forwards;
}
@keyframes confettiLeft {
  0% { transform: translate(0,0) scale(0); opacity: 1; }
  100% { transform: translate(-40px, -60px) scale(1.5); opacity: 0; }
}
@keyframes confettiRight {
  0% { transform: translate(0,0) scale(0); opacity: 1; }
  100% { transform: translate(40px, -50px) scale(1.5); opacity: 0; }
}

/* ============================================
   HERO GRADIENT BACKGROUND
   ============================================ */
.hero {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(124,58,237,0.04) 0%, transparent 50%),
    var(--bg);
}

/* ============================================
   PAIN SECTION SUBTLE GRADIENT
   ============================================ */
.pain {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(59,130,246,0.03) 0%, transparent 60%),
    var(--bg-white);
}

/* ============================================
   WAITLIST SECTION MESH GRADIENT
   ============================================ */
.waitlist {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(34,197,94,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(124,58,237,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1a1a1a 0%, #2D2D2D 100%);
}

/* ============================================
   CURSOR GLOW ON INTERACTIVE CARDS
   ============================================ */
.card-glow {
  position: relative;
}
.card-glow::after {
  content: ''; position: absolute; border-radius: inherit;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255,255,255,0.1), transparent 40%);
  pointer-events: none; opacity: 0; transition: opacity 0.3s ease;
}
.card-glow:hover::after { opacity: 1; }

/* ============================================
   PARALLAX DOODLES
   ============================================ */
.doodle { transition: transform 0.1s ease-out; will-change: transform; }

/* ============================================
   EARLY BIRD BANNER — ANIMATED BORDER
   ============================================ */
.early-bird {
  position: relative; overflow: hidden;
}
.early-bird::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(245,158,11,0.05), rgba(245,158,11,0.3));
  border-radius: inherit; z-index: -1;
  animation: earlyBirdPulse 3s ease-in-out infinite;
}
@keyframes earlyBirdPulse {
  0%,100% { opacity: 0.5; } 50% { opacity: 1; }
}

/* ============================================
   NAV LOGO — HOVER EFFECT
   ============================================ */
.nav__logo svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav__logo:hover svg {
  transform: rotate(-5deg) scale(1.05);
}

/* ============================================
   FLOAT CARDS — IMPROVED ANIMATIONS
   ============================================ */
.float-card {
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.5);
}
.float-card--1 { animation: floatCard 6s ease-in-out infinite, fadeInRight 0.8s ease 0.5s both; }
.float-card--2 { animation: floatCard 6s ease-in-out infinite reverse, fadeInLeft 0.8s ease 0.8s both; }
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ============================================
   PHONE MOCKUP — SUBTLE SHINE
   ============================================ */
.phone__frame::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

/* ============================================
   COUNTER DOTS — PULSE ANIMATION
   ============================================ */
.waitlist__counter-dots span {
  animation: dotPulse 2s ease-in-out infinite;
}
.waitlist__counter-dots span:nth-child(1) { animation-delay: 0s; }
.waitlist__counter-dots span:nth-child(2) { animation-delay: 0.2s; }
.waitlist__counter-dots span:nth-child(3) { animation-delay: 0.4s; }
.waitlist__counter-dots span:nth-child(4) { animation-delay: 0.6s; }
.waitlist__counter-dots span:nth-child(5) { animation-delay: 0.8s; }
@keyframes dotPulse {
  0%,100% { transform: scale(1); } 50% { transform: scale(1.15); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav__links {
    display: none; position: fixed; top: 64px; left: 0; right: 0; background: white;
    flex-direction: column; padding: 24px; gap: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1); border-radius: 0 0 16px 16px;
  }
  .nav__links.active { display: flex; }
  .nav__toggle { display: flex; }

  .hero { padding: 120px 24px 80px; }
  .hero__container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__title { font-size: clamp(2.2rem, 5vw, 3.5rem); }
  .hero__subtitle { margin: 0 auto 32px; }
  .hero__form-inline { align-items: center; }
  .hero__secondary-cta { justify-content: center; }
  .hero__visual { order: -1; }
  .phone__frame { width: 220px; height: 460px; border-radius: 36px; }
  .phone__screen { border-radius: 28px; padding: 36px 12px 12px; }
  .float-card { display: none; }

  .pain__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .features__grid.bento { grid-template-columns: 1fr; }
  .bento .feature-card--hero { grid-column: span 1; padding: 28px 24px; }
  .blob { display: none; }
  .wave-divider svg { height: 24px; }
  .pricing__content { grid-template-columns: 1fr; gap: 40px; }
  .pricing__text { text-align: center; }
  .pricing__text h2 { font-size: 1.8rem; }
  .pricing__details { align-items: center; }

  .early-bird { flex-direction: column; text-align: center; gap: 16px; padding: 24px; }

  .trust-strip__inner { flex-direction: column; text-align: center; }
  .trust-strip__item { flex-wrap: wrap; justify-content: center; }
  .trust-strip__divider { width: 40px; height: 1px; }

  .waitlist__grid { grid-template-columns: 1fr; gap: 24px; }

  .section-header h2 { font-size: 1.8rem; }
  .footer__content { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .doodle { display: none; }
}

/* Tablet breakpoint */
@media (min-width: 481px) and (max-width: 768px) {
  .pain__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features__grid.bento { grid-template-columns: repeat(2, 1fr); }
  .bento .feature-card--hero { grid-column: span 1; }
}

/* Spinner for loading state */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 0.8s linear infinite; }

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .btn--lg { padding: 16px 28px; font-size: 0.95rem; width: 100%; justify-content: center; }
  .feature-card { padding: 24px 20px; }
  .footer__links { grid-template-columns: 1fr; gap: 24px; }
  .waitlist__card { padding: 28px 20px; }
}
