/* home.css — landing-page-specific styles (hero + fade product sections).
 * Shared primitives (.btn, .shot, nav, footer, .fade-section) live in site.css. */

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 70px) 0 90px;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(139,92,246,.16), transparent 70%),
    radial-gradient(720px 420px at 12% 8%, rgba(99,102,241,.14), transparent 70%);
}
.hero-inner { display: grid; grid-template-columns: 1.04fr 1.1fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 650; color: var(--ink-2); margin-bottom: 22px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }
.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 900; line-height: 1.06; letter-spacing: -.02em; }
.hero-sub { margin: 22px 0 30px; font-size: 1.16rem; color: var(--muted); max-width: 540px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 26px; margin-top: 38px; }
.hero-stat .n { font-size: 1.55rem; font-weight: 850; }
.hero-stat .l { font-size: .82rem; color: var(--muted); }
.hero-stat-div { width: 1px; background: var(--line); }
.hero-visual { position: relative; }
.hero-visual .shot-browser { transform: perspective(1400px) rotateY(-8deg) rotateX(2.5deg); }
.hero-float {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; box-shadow: var(--shadow-lg); padding: 12px 15px;
  display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 650;
}
.hero-float .ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: #fff; }
.hero-float-1 { bottom: 36px; left: -34px; }
.hero-float-2 { top: 44px; right: -26px; }
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual .shot-browser { transform: none; }
  .hero-float { display: none; }
}

/* ── Hostel-type strip ──────────────────────────────────────────────────── */
.types { padding: 30px 0; border-bottom: 1px solid var(--line); }
.types-label { text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.types-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.type-pill { padding: 7px 15px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line); font-size: .85rem; font-weight: 600; color: var(--ink-2); }

/* ── Fade product sections ──────────────────────────────────────────────── */
.fade-section:nth-child(even) { background: var(--bg-soft); }
.prod {
  display: grid; grid-template-columns: 1fr 1.12fr; gap: 60px; align-items: center;
}
.fade-section:nth-child(even) .prod { grid-template-columns: 1.12fr 1fr; }
.fade-section:nth-child(even) .prod .prod-text { order: 2; }
.prod-eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.prod-eyebrow .ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; color: #fff; }
.prod-eyebrow .ico svg { width: 19px; height: 19px; }
.prod-eyebrow .kicker { font-size: .8rem; font-weight: 750; text-transform: uppercase; letter-spacing: .09em; color: var(--indigo); }
.prod h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 850; line-height: 1.12; letter-spacing: -.015em; }
.prod-lead { margin: 16px 0 22px; font-size: 1.08rem; color: var(--muted); }
.prod-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 28px; }
.prod-feat { display: flex; gap: 9px; align-items: flex-start; font-size: .92rem; font-weight: 550; color: var(--ink-2); }
.prod-feat svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--indigo); }
.prod-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-visual { position: relative; }
@media (max-width: 920px) {
  .prod, .fade-section:nth-child(even) .prod { grid-template-columns: 1fr; gap: 32px; }
  .fade-section:nth-child(even) .prod .prod-text { order: 0; }
  .prod-feats { grid-template-columns: 1fr; }
}

/* ── Community highlight banner ─────────────────────────────────────────── */
.edge-banner {
  margin-top: 26px; padding: 16px 18px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(139,92,246,.1));
  border: 1px solid rgba(236,72,153,.2); font-size: .9rem; color: var(--ink-2);
}
.edge-banner b { color: var(--ink); }

/* ── Closing CTA ────────────────────────────────────────────────────────── */
.cta-final {
  text-align: center; padding: 100px 0;
  background: var(--bg-dark); color: #fff;
}
.cta-final h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; }
.cta-final p { margin: 16px auto 32px; font-size: 1.15rem; color: #94a3b8; max-width: 540px; }
.cta-final .hero-cta { justify-content: center; }
.cta-final-note { margin-top: 20px; font-size: .85rem; color: #6b7a90; }
