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

:root {
  --purple:    #7C3AED;
  --purple-lt: #A78BFA;
  --pink:      #EC4899;
  --orange:    #F97316;
  --yellow:    #FBBF24;
  --green:     #34D399;
  --bg:        #0A0A0F;
  --bg-card:   #13131A;
  --bg-card2:  #1A1A24;
  --border:    rgba(255,255,255,0.08);
  --text:      #F1F1F5;
  --muted:     #6B7280;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 25px 60px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; border-radius: 50%; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple-lt), var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-sm   { padding: 8px 18px; font-size: 13px; }
.btn-lg   { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; padding: 14px; font-size: 15px; }

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124,58,237,0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.85);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.logo-ai { color: var(--purple-lt); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-burger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ===== BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.13;
  pointer-events: none;
}
.blob-1 { width: 600px; height: 600px; background: var(--purple); top: -200px; left: -200px; }
.blob-2 { width: 500px; height: 500px; background: var(--pink);   top: 100px;  right: -150px; }
.blob-3 { width: 400px; height: 400px; background: var(--orange); bottom: -100px; left: 50%; transform: translateX(-50%); }
.blob-4 { width: 700px; height: 700px; background: var(--purple); top: -200px; right: -300px; }
.blob-5 { width: 500px; height: 500px; background: var(--pink);   bottom: -200px; left: -200px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 152px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg-blobs { position: absolute; inset: 0; }

.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.city-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}

.hero-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.hero-social-proof strong { color: var(--text); }
.avatars { display: flex; }
.avatars img {
  width: 36px; height: 36px;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatars img:first-child { margin-left: 0; }

/* ===== MOCK PLAN CARD ===== */
.hero-card-wrap {
  position: relative;
  z-index: 2;
  margin-top: 64px;
}
.mock-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(124,58,237,0.1);
  max-width: 740px;
  margin: 0 auto;
  text-align: left;
}
.mock-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}
.mock-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-lt);
  background: rgba(124,58,237,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 6px;
}
.mock-subline { font-size: 12px; color: var(--muted); }
.mock-budget-badge {
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 64px 20px 1fr;
  gap: 0 14px;
  position: relative;
  padding-bottom: 20px;
}
.timeline-item:last-child { padding-bottom: 0; }
.tl-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding-top: 14px;
  text-align: right;
}
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid var(--bg-card);
  margin-top: 17px;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
}
.tl-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 6px);
  background: var(--border);
}
.timeline-item:last-child .tl-dot::after { display: none; }
.tl-dot-event   { background: var(--pink); }
.tl-dot-dessert { background: var(--orange); }
.tl-dot-bonus   { background: var(--green); }

.tl-body {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: border-color 0.2s;
}
.tl-body:hover { border-color: rgba(124,58,237,0.3); }
.tl-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.tl-meta  { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.tl-tags  { display: flex; gap: 6px; flex-wrap: wrap; }
.tl-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(124,58,237,0.1);
  color: var(--purple-lt);
  border: 1px solid rgba(124,58,237,0.2);
}

.mock-card-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-left  { display: flex; gap: 16px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.footer-right { display: flex; gap: 8px; }
.rain-backup { color: #60A5FA; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-dark { background: var(--bg-card); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 20px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===== ZONES ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.zone-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.zone-featured {
  border-color: rgba(124,58,237,0.4);
  background: linear-gradient(160deg, rgba(124,58,237,0.1), var(--bg-card));
}
.zone-emoji { font-size: 32px; margin-bottom: 12px; }
.zone-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.zone-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.zone-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.zone-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-card2);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.2s;
}
.step-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.step-num { font-size: 64px; font-weight: 900; color: rgba(124,58,237,0.1); line-height: 1; margin-bottom: 8px; letter-spacing: -3px; }
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== EVENTS ===== */
.event-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--purple);
  color: var(--purple-lt);
  background: rgba(124,58,237,0.1);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.event-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.event-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
}
.event-body { padding: 16px; }
.event-meta-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.event-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--purple-lt);
  background: rgba(124,58,237,0.12);
  padding: 3px 10px;
  border-radius: 999px;
}
.event-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.event-price.free { color: var(--green); }
.event-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.event-details { display: flex; gap: 14px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }

/* ===== ACCOUNT FEATURES ===== */
.account-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.account-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.account-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.account-icon { font-size: 32px; margin-bottom: 14px; }
.account-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.account-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== AI LOGIC ===== */
.ai-logic-section { overflow: hidden; }
.ai-logic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ai-logic-text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.ai-logic-text p strong { color: var(--text); }
.ai-checks { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.ai-check {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-logic-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ai-prompt {
  background: rgba(124,58,237,0.08);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.ai-prompt-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--purple-lt); margin-bottom: 8px; }
.ai-prompt-text { font-size: 15px; font-weight: 600; line-height: 1.5; font-style: italic; color: var(--text); }

.ai-response { padding: 20px 24px; }
.ai-response-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 14px; }
.ai-checks-list { display: flex; flex-direction: column; gap: 9px; }
.check-row {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-row.done { color: var(--green); }

/* ===== ROADMAP ===== */
.roadmap {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.roadmap-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card2);
  border: 2px solid var(--border);
  margin-top: 4px;
  position: relative;
  flex-shrink: 0;
}
.roadmap-dot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 16px);
  background: var(--border);
}
.roadmap-item:last-child .roadmap-dot::after { display: none; }
.active-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(52,211,153,0.5);
}
.roadmap-body { padding-bottom: 4px; }
.roadmap-status { font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 4px; }
.roadmap-item.active .roadmap-status { color: var(--green); }
.roadmap-body h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.roadmap-body p  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.roadmap-future .roadmap-body h4 { color: var(--muted); }

/* ===== BUSINESS ===== */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.biz-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.biz-featured {
  border-color: rgba(124,58,237,0.5);
  background: linear-gradient(160deg, rgba(124,58,237,0.1), var(--bg-card));
  box-shadow: 0 0 0 1px rgba(124,58,237,0.2), var(--shadow);
}
.biz-icon { font-size: 36px; margin-bottom: 14px; }
.biz-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.biz-price { font-size: 44px; font-weight: 900; letter-spacing: -2px; margin-bottom: 16px; }
.biz-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.biz-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== WAITLIST ===== */
.waitlist-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.waitlist-content { position: relative; z-index: 2; }
.waitlist-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
  margin-top: -8px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 740px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.form-input {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--purple); }
.form-input::placeholder { color: var(--muted); }
.form-select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.form-select option { background: #1A1A24; }
.waitlist-note { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.waitlist-success {
  margin: 20px auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  animation: fadeIn 0.4s ease;
}
.hidden { display: none; }

/* ===== DEMAND METER ===== */
.demand-meter {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
}
.demand-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 20px; }
.demand-bars { display: flex; flex-direction: column; gap: 12px; }
.demand-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.demand-row > span:first-child { color: var(--text); font-weight: 500; }
.demand-bar-wrap {
  background: var(--bg-card2);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}
.demand-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 999px;
  transition: width 1.2s ease;
}
.demand-count { color: var(--muted); font-size: 12px; text-align: right; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.footer-city { font-size: 12px; color: var(--green) !important; margin-top: 4px !important; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { font-size: 13px; color: var(--text); margin-bottom: 4px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ai-logic-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero-title { letter-spacing: -2px; }
  .mock-card-footer { flex-direction: column; align-items: flex-start; }
  .footer-right { width: 100%; }
  .waitlist-form { flex-direction: column; align-items: stretch; }
  .form-input { min-width: unset; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 28px; }
  .demand-row { grid-template-columns: 110px 1fr 36px; }
  .timeline-item { grid-template-columns: 52px 16px 1fr; }
}
