*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #0f0f1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.floating-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,15,26,0.92); backdrop-filter: blur(12px);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(-100%); transition: transform 0.3s ease;
}
.floating-nav.visible { transform: translateY(0); }
.nav-brand {
  text-decoration: none; display: flex; align-items: center;
}
.nav-brand img {
  height: 32px; width: auto;
}
.nav-btn {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: white; border: none; border-radius: 8px;
  padding: 8px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-btn:hover { transform: scale(1.05); box-shadow: 0 4px 20px rgba(168,85,247,0.4); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/landing/BACKGROUND_event_venue_interior2.jpg') center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; padding: 60px 20px 40px; width: 100%; }
@media (max-width: 768px) { .hero-content { padding-top: 24px; } }

.hero-greeting {
  font-size: clamp(1.4rem, 3.5vw, 4rem); font-weight: 700;
  color: white; margin-bottom: 8px;
}
.wave-emoji {
  display: inline-block; font-size: 1em;
  animation: wave 1s ease-in-out infinite alternate;
  transform-origin: 70% 70%;
}
.hero-logo {
  margin-bottom: 12px;
}
.hero-logo img {
  height: clamp(5rem, 14vw, 10rem); width: auto;
}

.hero-tagline {
  font-size: clamp(1.4rem, 3.5vw, 4rem); font-weight: 700;
  color: white; line-height: 1.3; margin: 8px auto 0;
  max-width: 900px;
}
.tagline-badge {
  display: inline-block; padding: 4px 16px; border-radius: 8px;
  background: linear-gradient(135deg, #f472b6, #a855f7, #ec4899);
  color: white; font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  box-shadow: 0 4px 20px rgba(244,114,182,0.4);
  transform: rotate(-1deg);
}
.tagline-sub {
  display: block;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.04em;
  margin: 10px 0 12px;
  font-style: italic;
}
.anim-bounce { display: inline-block; animation: bounce 2s ease-in-out infinite; }
.anim-pulse  { display: inline-block; animation: pulse 2s ease-in-out infinite; }
.anim-glow   { display: inline-block; animation: glow 2s ease-in-out infinite; }

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.6rem); color: #d1d5db;
  max-width: 700px; margin: 24px auto 0; line-height: 1.6; padding: 0 16px;
}

.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 24px; padding: 0 16px; }
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.btn-primary {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: white; border: none; border-radius: 12px;
  padding: 16px 32px; font-size: 18px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(168,85,247,0.5); }
.btn-primary-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: none;
  padding: 14px 30px;
}
.btn-primary-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  box-shadow: none;
}
.btn-secondary {
  background: none; color: rgba(255,255,255,0.7);
  border: none; border-radius: 0;
  padding: 8px 0; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: color 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { color: #fff; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
  margin: 44px 0; color: white;
}
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
.trust-icon { color: #4ade80; font-size: 18px; }

/* ── HIGHLIGHTS (phones with feature labels) ── */
.highlights {
  position: relative;
  padding: 80px 20px 96px;
  background:
    radial-gradient(circle at 18% 28%, rgba(236, 72, 153, 0.14), transparent 50%),
    radial-gradient(circle at 82% 72%, rgba(168, 85, 247, 0.14), transparent 50%),
    #0f0f1a;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.highlights-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
@media (max-width: 900px) {
  .highlights-inner { grid-template-columns: 1fr; gap: 64px; }
}

/* Mobile cross-fade carousel — only active when JS adds .is-carousel
   (i.e. we're on a small viewport AND motion is OK). Default mobile
   behavior above keeps stacking, which is the reduced-motion fallback. */
@media (max-width: 900px) {
  .highlights.is-carousel .highlights-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    position: relative;
  }
  .highlights.is-carousel .highlight-card {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
  }
  .highlights.is-carousel .highlight-card.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .highlights.is-carousel .highlights-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 32px auto 0;
  }
}
/* Dots are mobile-carousel-only; hidden everywhere else. */
.highlights-dots { display: none; }
.highlights-dot {
  appearance: none;
  background: rgba(255,255,255,0.2);
  border: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.highlights-dot.is-active {
  background: linear-gradient(135deg, #f472b6, #a855f7);
  transform: scale(1.4);
}
.highlights-dot:focus-visible {
  outline: 2px solid #a855f7;
  outline-offset: 3px;
}

.highlight-card {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 24px;
}
.highlight-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.highlight-badge svg { color: #4ade80; flex-shrink: 0; }

/* iPhone frame — wraps a real device screenshot (used by highlights + chat) */
.iphone-frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  background: #0a0a10;
  padding: 6px;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    0 0 0 2px #1a1a24,
    0 20px 60px rgba(0,0,0,0.5),
    0 6px 20px rgba(168,85,247,0.12);
}
.iphone-frame .iphone-btn {
  position: absolute;
  background: #1a1a24;
}
.iphone-frame .iphone-btn.power  { top: 120px; right: -3px; width: 3px; height: 60px; border-radius: 0 2px 2px 0; }
.iphone-frame .iphone-btn.vol-up { top: 96px;  left: -3px; width: 3px; height: 40px; border-radius: 2px 0 0 2px; }
.iphone-frame .iphone-btn.vol-dn { top: 142px; left: -3px; width: 3px; height: 40px; border-radius: 2px 0 0 2px; }
.iphone-screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: #0f0f1a;
  aspect-ratio: 9 / 19.5;
}
.iphone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Chat section — center the iPhone in its grid column */
.chat-shot { display: flex; justify-content: center; }

/* ── FOUNDER STORY ── */
.founder-story {
  position: relative;
  background: linear-gradient(135deg, #f472b6 0%, #a855f7 100%);
  color: #fff;
  padding: 96px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.founder-story-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .founder-story { padding: 64px 20px; }
  .founder-story-inner { grid-template-columns: 1fr; gap: 32px; }
}
/* Fanned polaroid pair — front: "our first event", back: "5 AM match sheets".
   Two absolutely-positioned cards sharing a relative container so they overlap.
   Mirrors the polaroid look from /about (white frame, deep bottom padding, drop
   shadow), but adds a fan layout instead of a single rotated card. */
.founder-polaroids {
  position: relative;
  width: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-polaroid {
  position: absolute;
  width: 240px;
  background: #fff;
  padding: 14px 14px 52px;
  border-radius: 2px;
  box-shadow:
    0 18px 40px rgba(15,15,26,0.35),
    0 6px 14px rgba(15,15,26,0.22);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.founder-polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1px;
}
/* Back: 5 AM match-sheets, rotated right, peeking out from behind */
.founder-polaroid.back {
  transform: translateX(56px) rotate(8deg);
  z-index: 1;
}
/* Front: first event photo, rotated left, on top of the stack */
.founder-polaroid.front {
  transform: translateX(-56px) rotate(-4deg);
  z-index: 2;
}
/* Subtle hover lift on the front card only — invites you to peek at the back */
.founder-polaroid.front:hover {
  transform: translateX(-56px) rotate(-4deg) translateY(-6px);
  box-shadow:
    0 26px 60px rgba(15,15,26,0.4),
    0 8px 20px rgba(15,15,26,0.25);
}
@media (max-width: 800px) {
  .founder-polaroids { min-height: 340px; }
  .founder-polaroid { width: 210px; padding: 12px 12px 44px; }
  .founder-polaroid.back  { transform: translateX(44px) rotate(8deg); }
  .founder-polaroid.front { transform: translateX(-44px) rotate(-4deg); }
  .founder-polaroid.front:hover { transform: translateX(-44px) rotate(-4deg) translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .founder-polaroid { transition: none; }
}
.founder-story-eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}
.founder-story-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.founder-story-body p {
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.founder-story-kicker {
  font-style: italic;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.08rem !important;
}
.founder-story-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: gap 0.2s;
}
.founder-story-link:hover { gap: 10px; }

/* ── READ MORE TILES ── */
.read-more {
  background: #0f0f1a;
  color: #e2e8f0;
  padding: 96px 20px;
}
.read-more-inner { max-width: 1180px; margin: 0 auto; }
.read-more-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.read-more-eyebrow {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
}
.read-more-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.read-more-lede {
  font-size: 1.08rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}
.read-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .read-more-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .read-more { padding: 64px 0; }
  .read-more-head { padding: 0 20px; }
  .read-more-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 20px;
    scrollbar-width: none;
  }
  .read-more-grid::-webkit-scrollbar { display: none; }
  .read-more-card {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .read-more-card:last-child { margin-right: 4px; }
}
@media (max-width: 480px) {
  .read-more-card { flex-basis: 85%; }
}
.read-more-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.read-more-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(168,85,247,0.40);
  box-shadow: 0 18px 40px rgba(168,85,247,0.20);
}
.read-more-card-img {
  display: block; aspect-ratio: 16 / 9; overflow: hidden;
  background: linear-gradient(135deg, rgba(244,114,182,0.25), rgba(168,85,247,0.25));
}
.read-more-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.read-more-card-img.no-img img { display: none; }
.read-more-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.read-more-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: rgba(168,85,247,0.18); color: #c084fc;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase;
  align-self: flex-start;
}
.read-more-card h3 {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  line-height: 1.3; margin: 0;
  letter-spacing: -0.01em;
}
.read-more-card p {
  font-size: 0.97rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
}
.read-more-arrow {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #c084fc;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.read-more-card:hover .read-more-arrow { gap: 10px; }

/* ── PROBLEMS ── */
.problems {
  background: #fff; padding: 96px 20px; position: relative;
}
.section-center { max-width: 1100px; margin: 0 auto; text-align: center; }
.section-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; color: #1a1a2e; }
.section-subtitle { font-size: 1.15rem; color: #6b7280; max-width: 700px; margin: 0 auto 48px; line-height: 1.6; }

.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px 56px; margin-top: 48px; }
.problem-card { text-align: center; }
.problem-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.problem-icon > span {
  font-size: 28px;
  line-height: 1;
  display: block;
}
.problem-icon > svg {
  width: 30px; height: 30px;
  color: #fff;
  display: block;
}
.problem-card:nth-child(1) .problem-icon { background: linear-gradient(135deg, #fb923c, #f97316); box-shadow: 0 6px 18px rgba(249,115,22,0.32); }
.problem-card:nth-child(2) .problem-icon { background: linear-gradient(135deg, #a78bfa, #8b5cf6); box-shadow: 0 6px 18px rgba(139,92,246,0.32); }
.problem-card:nth-child(3) .problem-icon { background: linear-gradient(135deg, #f87171, #ef4444); box-shadow: 0 6px 18px rgba(239,68,68,0.32); }
.problem-card:nth-child(4) .problem-icon { background: linear-gradient(135deg, #60a5fa, #3b82f6); box-shadow: 0 6px 18px rgba(59,130,246,0.32); }
.problem-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; color: #1a1a2e; }
.problem-card p { font-size: 0.95rem; color: #6b7280; line-height: 1.5; }

/* ── FEATURES TICKER ── */
.features {
  position: relative; padding: 96px 0; overflow: hidden;
}
.features-bg {
  position: absolute; inset: 0;
  background: url('images/landing/event_interior.jpg') center/cover no-repeat;
}
.features-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.features-header { position: relative; z-index: 2; text-align: center; padding: 0 20px; margin-bottom: 48px; }
.features-header h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 16px; }
.features-header p { font-size: 1.15rem; color: #d1d5db; max-width: 700px; margin: 0 auto; }

.ticker-wrap { position: relative; z-index: 2; overflow: hidden; }
.ticker-row { display: flex; width: max-content; gap: 24px; padding: 8px 0; }
.ticker-row.forward  { animation: tickerForward  60s linear infinite; }
.ticker-row.backward { animation: tickerBackward 60s linear infinite; }
.ticker-row:hover { animation-play-state: paused; }

.feature-card {
  flex-shrink: 0; width: 256px; background: white; border-radius: 16px;
  padding: 24px; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px; font-size: 28px; color: white;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; color: #1a1a2e; }
.feature-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.5; }

/* ── CHAT PREVIEW ── */
.chat-section { background: #fff; padding: 96px 20px; position: relative; }
.chat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; }
@media (max-width: 768px) { .chat-grid { grid-template-columns: 1fr; } }

.chat-preview {
  background: #121218;
  border-radius: 20px; padding: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.08);
}
.chat-appbar {
  background: #1C1C24; padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.chat-appbar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700;
}
.chat-appbar-name { font-size: 1rem; font-weight: 600; color: white; }
.chat-appbar-sub { font-size: 0.75rem; color: #94a3b8; }
.chat-body { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-date-header { text-align: center; font-size: 0.75rem; color: #64748b; margin: 4px 0; }

.chat-bubble {
  max-width: 75%; padding: 12px 16px;
  font-size: 0.9rem; line-height: 1.5;
}
.chat-bubble.received {
  background: #1C1C24; color: #e2e8f0;
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
}
.chat-bubble.sent {
  background: linear-gradient(135deg, #ec4899, #a855f7); color: white;
  border-radius: 12px 4px 12px 12px;
  align-self: flex-end;
}
.chat-bubble .time {
  font-size: 0.7rem; opacity: 0.6; margin-top: 4px;
  text-align: right;
}
.chat-input-bar {
  padding: 12px 16px; display: flex; gap: 10px; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.chat-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 10px 16px; color: #64748b; font-size: 0.9rem;
}
.chat-send-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  display: flex; align-items: center; justify-content: center;
  border: none; flex-shrink: 0;
}

.match-features { display: flex; flex-direction: column; gap: 20px; }
.match-feature {
  background: white; border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); border: 1px solid #f3f4f6;
  display: flex; gap: 16px; align-items: flex-start;
}
.match-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 22px; color: white;
}
.match-feature-icon > svg {
  width: 24px; height: 24px;
  display: block;
}
.match-feature h3 { font-size: 1.1rem; font-weight: 600; color: #1a1a2e; margin-bottom: 4px; }
.match-feature p { font-size: 0.9rem; color: #6b7280; line-height: 1.5; }

/* ── HOW IT WORKS ── */
.how-it-works { position: relative; padding: 96px 20px; }
.how-bg {
  position: absolute; inset: 0;
  background: url('images/landing/event_venue_exterior.jpg') center/cover no-repeat;
}
.how-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.how-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; text-align: center; }
.how-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 12px; }
.how-content > p { font-size: 1.15rem; color: #d1d5db; margin-bottom: 64px; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: white; font-size: 24px; font-weight: 700;
}
.step h3 { font-size: 1.3rem; font-weight: 600; color: white; margin-bottom: 12px; }
.step p { font-size: 1rem; color: #d1d5db; line-height: 1.6; }

/* ── PRICING PREVIEW ── */
.pricing-preview {
  background: #0f0f1a;
  padding: 128px 20px;
  min-height: 560px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  scroll-margin-top: 24px;
  display: flex; align-items: center; justify-content: center;
}
.pricing-preview-inner {
  width: 100%;
  max-width: 760px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  align-items: center;
}
@media (max-width: 820px) {
  .pricing-preview { min-height: 0; padding: 64px 20px; }
  .pricing-preview-inner { grid-template-columns: 1fr; gap: 24px; }
  .pricing-preview-left,
  .pricing-preview-right { text-align: center; }
  .pricing-cta { margin-left: auto; margin-right: auto; }
}
.pricing-preview-left { text-align: center; }
.pricing-preview-left h2 {
  color: white; letter-spacing: -0.02em; line-height: 1.1;
  display: flex; flex-direction: column; gap: 4px;
}
.pricing-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600; color: #cbd5e1;
}
.pricing-amount {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #f472b6, #a855f7, #ec4899);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 4px 0;
  transform-origin: center;
  will-change: transform;
}
.pricing-amount.in-view {
  animation:
    pricingPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s 1 both,
    pricingPulse 1.4s ease-in-out 1.2s 2;
}
@keyframes pricingPop {
  0%   { transform: scale(0.55); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
@keyframes pricingPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-amount.in-view { animation: none; }
}
.pricing-trail {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 600; color: #cbd5e1;
}
.pricing-preview-right p {
  font-size: 1.05rem; color: #cbd5e1; line-height: 1.6; margin-bottom: 14px;
}
.pricing-note {
  font-style: italic;
  color: #e2e8f0;
}
.pricing-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding: 13px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #f472b6, #a855f7);
  color: white !important; font-weight: 600; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.pricing-cta:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  padding: 96px 20px; text-align: center; position: relative;
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: white; margin-bottom: 16px; }
.cta p { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-white {
  background: white; color: #7c3aed; border: none; border-radius: 12px;
  padding: 16px 40px; font-size: 18px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: scale(1.05); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid white; border-radius: 12px;
  padding: 14px 40px; font-size: 18px; font-weight: 600;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── ANIMATIONS ── */
@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60%, 100% { transform: rotate(0deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
@keyframes glow {
  0%, 100% { text-shadow: 0 0 5px rgba(255,255,255,0.5); }
  50% { text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.6); }
}
@keyframes tickerForward {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes tickerBackward {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 640px) {
  .hero-buttons .btn-primary { width: 100%; justify-content: center; }
  .btn-white, .btn-outline-white { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: 8px; }
}
@media (min-width: 1280px) {
  .ticker-row.forward  { animation-duration: 120s; }
  .ticker-row.backward { animation-duration: 120s; }
}

/* ── FEATURES (colored variant — translucent gradient CIRCLES on scrolling ticker) ── */
/* NOTE: use margin-right (not flex gap) so the trailing gap is counted in row width.
   3 copies × 6 unique = 18 cards/row. Animation moves by exactly ONE copy (6 cards =
   1392px on desktop, 1104px on mobile) so the loop is seamless on wide viewports. */
.features-colored { --copy-w: calc(6 * (200px + 32px)); } /* = 1392px */
.features-colored .ticker-row { gap: 0; padding: 12px 0; align-items: center; }
.features-colored .ticker-row.forward  { animation: coloredForward 60s linear infinite; }
.features-colored .ticker-row.backward { animation: coloredBackward 60s linear infinite; }
@keyframes coloredForward {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--copy-w))); }
}
@keyframes coloredBackward {
  from { transform: translateX(calc(-1 * var(--copy-w))); }
  to   { transform: translateX(0); }
}
.features-colored .ticker-row:hover { animation-play-state: paused; }
.features-colored .feature-card {
  width: 200px;
  margin-right: 32px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  padding: 16px;
  animation: featureFloat 4.8s ease-in-out infinite;
  color: #fff;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--c1, #ec4899) 55%, transparent),
    color-mix(in srgb, var(--c2, #a855f7) 55%, transparent)
  );
  border: 1px solid color-mix(in srgb, var(--c1, #ec4899) 35%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.features-colored .feature-card:hover {
  box-shadow: 0 14px 42px rgba(0,0,0,0.38);
}
.features-colored .feature-icon {
  background: none !important;
  border: none;
  width: auto; height: auto;
  margin: 0 0 8px;
  font-size: 32px; line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.features-colored .feature-card h3 {
  color: #fff; font-size: 0.92rem;
  line-height: 1.2; margin-bottom: 6px; padding: 0 6px;
}
.features-colored .feature-card p  {
  color: rgba(255,255,255,0.9); font-size: 0.74rem;
  line-height: 1.3; padding: 0 6px;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}

/* Gentle floating — repeat a 6-card delay cycle so every "copy" bobs the same.
   Modulo 6 so duplicates in the ticker line up with their unique counterparts. */
@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.features-colored .feature-card:nth-child(6n+1) { animation-delay: -0.0s; }
.features-colored .feature-card:nth-child(6n+2) { animation-delay: -0.8s; }
.features-colored .feature-card:nth-child(6n+3) { animation-delay: -1.6s; }
.features-colored .feature-card:nth-child(6n+4) { animation-delay: -2.4s; }
.features-colored .feature-card:nth-child(6n+5) { animation-delay: -3.2s; }
.features-colored .feature-card:nth-child(6n+6) { animation-delay: -4.0s; }

@media (prefers-reduced-motion: reduce) {
  .features-colored .feature-card,
  .features-colored .ticker-row { animation: none; }
}

@media (max-width: 640px) {
  .features-colored { --copy-w: calc(6 * (160px + 24px)); } /* = 1104px */
  .features-colored .feature-card { width: 160px; margin-right: 24px; padding: 12px; }
  .features-colored .feature-icon { font-size: 26px; }
  .features-colored .feature-card h3 { font-size: 0.82rem; }
  .features-colored .feature-card p  { font-size: 0.68rem; -webkit-line-clamp: 2; }
}

