/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime: #c8f135;
  --dark: #131f16;
  --dark2: #1a2a1e;
  --dark3: #0f1a12;
  --white: #ffffff;
  --red: #e63030;
  --orange: #f5a623;
  --gray: #94a3b8;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===================== NAV ===================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: relative;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
}

.badge-outline-lime {
  border: 2px solid var(--lime);
  color: var(--lime);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark3);
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(200,241,53,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,241,53,0.03) 0%, transparent 40%);
  pointer-events: none;
}

/* Subtle pickleball dots pattern */
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,241,53,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.headline-lime {
  color: var(--lime);
  -webkit-text-stroke: 2px var(--lime);
  display: block;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 440px;
}

.text-lime { color: var(--lime); font-weight: 700; }

/* ===================== EMAIL FORM ===================== */
.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.email-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 16px;
}

.email-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; }

.email-input-wrap input {
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}

.email-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }

.btn-lime {
  background: var(--lime);
  color: var(--dark);
  border: none;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.btn-lime:hover { background: #d4f74a; }
.btn-lime:active { transform: scale(0.98); }

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===================== PHONE MOCKUP ===================== */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}

.phone-frame {
  width: 260px;
  background: #0a0a0a;
  border-radius: 40px;
  border: 8px solid #2a2a2a;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.phone-notch {
  width: 100px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.phone-screen {
  background: linear-gradient(160deg, #1a2a1e 0%, #0d1a10 100%);
  min-height: 320px;
  padding: 20px 16px;
}

.notification-card {
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 14px 16px;
  color: #131f16;
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.notif-app-icon {
  width: 22px;
  height: 22px;
  background: var(--lime);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--dark);
}

.notif-app-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #333;
  flex: 1;
}

.notif-time { font-size: 11px; color: #999; }

.notif-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.notif-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #475569;
}

/* ===================== STATUS BADGES ===================== */
.badge-stacked {
  background: var(--lime);
  color: var(--dark);
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.badge-active {
  background: #3b82f6;
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.badge-hot {
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* ===================== FLOATING STICKERS ===================== */
.sticker {
  position: absolute;
  background: var(--dark2);
  border: 2.5px solid var(--lime);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  z-index: 5;
  box-shadow: 4px 4px 0 var(--lime);
}

.sticker-1 {
  top: 10%;
  right: 52%;
  transform: rotate(-3deg);
  font-size: 12px;
}

.sticker-2 {
  bottom: 28%;
  left: 52%;
  transform: rotate(4deg);
  background: var(--lime);
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: 4px 4px 0 var(--dark);
  font-size: 18px;
  font-family: var(--font-display);
}

.sticker-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.7;
  text-transform: none;
  letter-spacing: 0;
}

.sticker-3 {
  bottom: 10%;
  right: 48%;
  transform: rotate(-2deg);
  font-size: 11px;
  border-color: var(--lime);
}

/* ===================== RIP DIVIDERS ===================== */
.rip {
  height: 48px;
  background: var(--dark3);
  position: relative;
  z-index: 2;
}

.rip-down {
  clip-path: polygon(0 0, 100% 0, 100% 40%, 95% 100%, 88% 50%, 80% 90%, 72% 40%, 64% 85%, 56% 30%, 48% 80%, 40% 35%, 32% 90%, 24% 45%, 16% 100%, 8% 50%, 0 95%);
  background: var(--dark3);
  margin-bottom: -2px;
}

.rip-up-white {
  clip-path: polygon(0 100%, 100% 100%, 100% 60%, 95% 0, 88% 50%, 80% 10%, 72% 60%, 64% 15%, 56% 70%, 48% 20%, 40% 65%, 32% 10%, 24% 55%, 16% 0, 8% 50%, 0 5%);
  background: #f8f9fa;
  margin-top: -2px;
}

.rip-down-white {
  clip-path: polygon(0 0, 100% 0, 100% 40%, 95% 100%, 88% 50%, 80% 90%, 72% 40%, 64% 85%, 56% 30%, 48% 80%, 40% 35%, 32% 90%, 24% 45%, 16% 100%, 8% 50%, 0 95%);
  background: #f8f9fa;
  margin-bottom: -2px;
}

/* ===================== FEATURES ===================== */
.features {
  background: var(--dark3);
  padding: 60px 40px 80px;
  position: relative;
}

/* Subtle background pattern */
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,241,53,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.section-label-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.section-label {
  background: var(--lime);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  padding: 10px 36px;
  border-radius: 4px;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--dark2);
  border: 2px solid rgba(200,241,53,0.15);
  border-radius: 16px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s;
}

.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,241,53,0.4);
}

.feature-icon {
  font-size: 36px;
  width: 64px;
  height: 64px;
  background: rgba(200,241,53,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--white);
}

.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  flex: 1;
}

.status-badge {
  display: inline-block;
  margin-top: 8px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: #f8f9fa;
  padding: 80px 40px;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.testi-heading {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.arrow-svg { display: block; margin-top: 8px; }

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s;
}

.quote-card.revealed { opacity: 1; transform: translateY(0); }
.quote-card:nth-child(2) { transition-delay: 0.1s; }
.quote-card:nth-child(3) { transition-delay: 0.2s; }
.quote-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.quote-mark {
  font-family: Georgia, serif;
  font-size: 52px;
  color: var(--lime);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
}

.quote-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.quote-attr {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
}

/* ===================== KNOW BEFORE YOU GO ===================== */
.kbyg {
  background: var(--dark3);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.kbyg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,241,53,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.kbyg-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kbyg-inner.revealed { opacity: 1; transform: translateY(0); }

.phone-frame-sm {
  width: 240px;
  margin: 0 auto;
}

.phone-screen-map {
  padding: 0;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.map-placeholder {
  background: linear-gradient(160deg, #1a3020 0%, #0d1f14 100%);
  flex: 1;
  position: relative;
  min-height: 220px;
}

.map-location-label {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
}

.map-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 11px;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
}
.map-dot-red { background: var(--red); }
.map-dot-orange { background: var(--orange); }
.map-dot-yellow { background: #eab308; }
.map-dot-gray { background: #64748b; }

.map-sheet {
  background: rgba(255,255,255,0.95);
  padding: 14px 16px;
  color: var(--dark);
}

.map-sheet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.map-sheet-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
}

.map-sheet-meta {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 2px;
}

.map-sheet-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.map-tag {
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

.tag-hot { background: var(--red); color: #fff; }
.tag-active { background: #3b82f6; color: #fff; }
.tag-warm { background: #f97316; color: #fff; }
.tag-quiet { background: #475569; color: #fff; }
.tag-stacked { background: var(--lime); color: var(--dark); }

.kbyg-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  margin-bottom: 32px;
  color: var(--white);
}

.kbyg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.kbyg-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.check {
  width: 28px;
  height: 28px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.kbyg-badges-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.vs-badge {
  background: var(--lime);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  border: 3px solid var(--dark);
  box-shadow: 4px 4px 0 var(--white);
}

.vs-text { font-family: var(--font-display); font-size: 20px; }
.vs-arrow { font-size: 20px; font-weight: 900; }
.vs-text2 { font-family: var(--font-display); font-size: 20px; }

.circle-badge {
  width: 110px;
  height: 110px;
  border: 3px solid var(--lime);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lime);
}

.circle-badge-logo {
  width: 36px;
  height: 36px;
  background: var(--lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
}

/* ===================== BOTTOM CTA ===================== */
.bottom-cta {
  background: var(--lime);
  padding: 80px 40px;
}

.bottom-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bottom-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  color: var(--dark);
  line-height: 0.95;
  margin-bottom: 8px;
}

.arrow-right { transform: rotate(0deg); }

.bottom-cta-sub {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

.email-form-dark {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.2);
}

.email-input-dark input::placeholder { color: rgba(0,0,0,0.4); }
.email-input-dark input { color: var(--dark); }
.email-input-dark .email-icon { color: rgba(0,0,0,0.4); }

.btn-dark {
  background: var(--dark);
  color: var(--lime);
  border: none;
  padding: 16px 22px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-dark:hover { background: #0f2a14; }

.form-note-dark { color: rgba(0,0,0,0.5); }

.rollout-note {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 2px solid rgba(0,0,0,0.15);
  padding-top: 16px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark3);
  padding: 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  margin-left: 38px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--lime); }

.footer-email {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--lime); }

.get-stacked-badge {
  border: 3px solid var(--lime);
  border-radius: 12px;
  padding: 10px 20px;
  text-align: center;
  line-height: 1.1;
}

.gs-top {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
}

.gs-bottom {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--lime);
  letter-spacing: 2px;
}

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border: 1.5px solid rgba(200,241,53,0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  white-space: nowrap;
}

.toast-show { transform: translateX(-50%) translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
    text-align: center;
  }

  .hero-left { order: 1; }
  .hero-right { order: 2; display: none; }

  .hero-sub { margin: 0 auto 32px; }
  .email-form { margin: 0 auto; }
  .form-note { text-align: center; }

  .features { padding: 40px 20px 60px; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; }

  .testimonials { padding: 60px 20px; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 24px; }
  .quotes-grid { grid-template-columns: 1fr; }

  .kbyg { padding: 60px 20px; }
  .kbyg-inner { grid-template-columns: 1fr; gap: 40px; }
  .phone-frame-sm { width: 200px; }

  .bottom-cta { padding: 60px 20px; }
  .bottom-cta-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 600px) {
  .sticker { display: none; }
  .badge-outline-lime { font-size: 10px; padding: 4px 10px; }
}
