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

:root {
  --bg: #0b0f1a;
  --bg-2: #111827;
  --bg-card: #141c2e;
  --accent: #e8a317;
  --accent-dim: rgba(232,163,23,0.15);
  --accent-glow: rgba(232,163,23,0.08);
  --green: #4ade80;
  --text: #f0f4ff;
  --text-2: #8a95b8;
  --border: #1e2d4d;
  --border-2: #2a3a5c;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(11,15,26,0.85);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 0;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,45,77,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,45,77,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
  padding-bottom: 3rem;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
  50% { opacity: 0.7; box-shadow: 0 0 20px var(--green); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.3;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === RADAR === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.radar-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(232,163,23,0.25) 30deg,
    transparent 60deg
  );
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-rings {
  position: absolute;
  inset: 0;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,163,23,0.15);
}

.ring-1 { inset: 20%; }
.ring-2 { inset: 40%; }
.ring-3 { inset: 60%; }

.radar-blips { position: absolute; inset: 0; }

.blip {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.blip::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.4;
  animation: blip-ring 2s ease-out infinite;
}

@keyframes blip-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(3); opacity: 0; }
}

.blip-1 { top: 15%; left: 65%; animation-delay: 0s; }
.blip-2 { top: 40%; left: 80%; animation-delay: 0.5s; }
.blip-3 { top: 65%; left: 72%; animation-delay: 1s; }
.blip-4 { top: 25%; left: 88%; animation-delay: 1.5s; }
.blip-5 { top: 50%; left: 90%; animation-delay: 2s; }
.blip-6 { top: 78%; left: 78%; animation-delay: 2.5s; }

.blip-label {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

.blip-label-1 { top: 14%; left: 67%; }
.blip-label-2 { top: 38%; left: 82%; }
.blip-label-3 { top: 62%; left: 74%; }
.blip-label-4 { top: 22%; left: 90%; }
.blip-label-5 { top: 47%; left: 92%; }
.blip-label-6 { top: 78%; left: 80%; }

.radar-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* === HERO BOTTOM BAR === */
.hero-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.deal-flash {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.flash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: flash 1.5s ease-in-out infinite;
}

@keyframes flash {
  0%, 100% { background: var(--accent); }
  50% { background: #fff; box-shadow: 0 0 12px #fff; }
}

.flash-text {
  font-size: 0.85rem;
  color: var(--text-2);
}

.flash-text strong { color: var(--text); }

.hero-bottom-note {
  font-size: 0.8rem;
  color: var(--text-2);
  white-space: nowrap;
}

/* === SECTION SHARED === */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 560px;
}

/* === DEALS SECTION === */
.deals {
  padding: 5rem 2rem;
  background: var(--bg-2);
}

.deals-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.deal-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}

.deal-card:hover { border-color: var(--border-2); }

.deal-card-main {
  border-color: rgba(232,163,23,0.3);
}

.deal-card-main:hover { border-color: var(--accent); }

.deal-type-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.tag-sale { color: #f59e0b; background: rgba(245,158,11,0.12); }
.tag-urbg { color: var(--green); background: rgba(74,222,128,0.12); }

.deal-route {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.route-arrow {
  color: var(--text-2);
  margin: 0 0.3em;
}

.deal-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.deal-saved {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
}

.deal-expires {
  font-size: 0.75rem;
  color: var(--text-2);
}

.deal-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.deal-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #f59e0b);
  border-radius: 2px;
}

.deal-book-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.deal-cards-sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* === HOW SECTION === */
.how {
  padding: 5rem 2rem;
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 0 3rem 0 0;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--bg-2);
  -webkit-text-stroke: 1px var(--border-2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.step-connector {
  display: none;
}

.globemap {
  max-width: 1200px;
  margin: 4rem auto 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(20,28,46,0.5);
}

.globe-svg { width: 100%; display: block; }

/* === WHY SECTION === */
.why {
  padding: 5rem 2rem;
  background: var(--bg-2);
}

.why .section-title { margin-bottom: 1.5rem; }

.why-left {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.why-body {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 640px;
}

.why-body em { color: var(--text); font-style: normal; }
.why-body strong { color: var(--text); }

.why-right {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-block {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.compare-header {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-2);
  font-weight: 500;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.compare-row:last-child { border-bottom: none; }

.compare-header-row {
  background: rgba(30,45,77,0.4);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-feature {
  font-size: 0.85rem;
  color: var(--text);
}

.compare-fh {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.compare-other {
  font-size: 0.8rem;
  color: var(--text-2);
  text-align: center;
}

.check { color: var(--green); }
.cross { color: #ef4444; opacity: 0.6; }
.dash { color: var(--text-2); }

.why-note {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--text-2);
  opacity: 0.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0b0f1a 0%, #0f1520 50%, #0b0f1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.manifesto-attribution {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 2.5rem;
}

.manifesto-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-2);
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-2);
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual { display: none; }

  .hero-headline br { display: none; }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-right .compare-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    font-size: 0.75rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 0; }
  .deals, .how, .why, .manifesto, .footer { padding: 3rem 1.25rem; }

  .hero-stats { gap: 1rem; }

  .stat-divider { display: none; }

  .hero-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .why-right .compare-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0.7rem 1rem;
  }

  .compare-feature { font-size: 0.72rem; }
}

/* === ANALYTICS === */
.analytics-placeholder { display: none; }

/* === HERO SIGNUP FORM === */
.hero-signup { margin-top: 2rem; }

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
}

.signup-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(20,28,46,0.8);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.signup-input:focus { border-color: var(--accent); }
.signup-input::placeholder { color: var(--text-2); }

.signup-btn {
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #0b0f1a;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

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

.signup-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-2);
}

.signup-success { color: var(--green); }
.signup-error { color: #ef4444; }

/* === SOCIAL PROOF CTA === */
.social-cta {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.social-cta-inner { max-width: 600px; margin: 0 auto; }

.social-cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.social-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.social-cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.social-cta-form {
  margin: 0 auto 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-cta-note {
  font-size: 0.8rem;
  color: var(--text-2);
  opacity: 0.7;
}

.compare-note-check { color: var(--green); }

/* === PRICING TEASER === */
.pricing {
  padding: 5rem 2rem;
}

.pricing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.pricing-inner .section-title { margin-bottom: 3rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.pricing-card-featured {
  border-color: rgba(232,163,23,0.4);
  position: relative;
}

.pricing-popular {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.pricing-plan {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-2);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-2);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-2);
}

/* === RESPONSIVE UPDATES === */
@media (max-width: 600px) {
  .signup-form { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .social-cta { padding: 3rem 1.25rem; }
  .pricing { padding: 3rem 1.25rem; }
}
