:root {
  --coral: #ff6b4a;
  --coral-dark: #ef4f2f;
  --sand: #fff5eb;
  --ocean: #0e7490;
  --dark: #1f2937;
  --muted: #64748b;
  --white: #ffffff;
  --line: #f1e6dc;
  --shadow: 0 24px 70px rgba(31, 41, 55, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: #fffaf5;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 107, 74, 0.1);
}
.navbar { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 24px; }
.brand span span { color: var(--coral); }
.brand-logo, .footer-brand img { width: 38px; height: 38px; }
.nav-menu { display: flex; align-items: center; gap: 28px; font-weight: 700; color: #334155; }
.nav-cta { background: var(--dark); color: white; padding: 12px 18px; border-radius: 999px; }
.nav-toggle { display: none; background: transparent; border: 0; font-size: 28px; }

.hero { padding: 82px 0 70px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--ocean); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(46px, 7vw, 76px); line-height: .98; letter-spacing: -0.06em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 18px; }
.hero-desc, .section p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 15px 22px; font-weight: 800; cursor: pointer; transition: .2s ease; }
.btn-primary { background: var(--coral); color: white; box-shadow: 0 12px 26px rgba(255, 107, 74, .32); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }
.btn-secondary { background: white; border: 1px solid var(--line); color: var(--dark); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero-stats div { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; }
.hero-stats strong { display: block; margin-bottom: 6px; }
.hero-stats span { color: var(--muted); font-size: 13px; }

.phone-card { width: min(410px, 100%); margin: 0 auto; background: #101827; border-radius: 42px; padding: 16px; box-shadow: var(--shadow); transform: rotate(2deg); }
.phone-top { width: 100px; height: 20px; background: #050b14; border-radius: 0 0 16px 16px; margin: 0 auto 8px; }
.app-screen { min-height: 650px; border-radius: 30px; padding: 26px; background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }
.app-header { display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), #ffad5c); }
.search-box { margin: 26px 0 18px; padding: 16px 18px; border-radius: 18px; color: #94a3b8; background: white; border: 1px solid var(--line); }
.category-row { display: flex; gap: 10px; margin-bottom: 18px; }
.category-row button { flex: 1; border: 0; background: var(--sand); padding: 12px 8px; border-radius: 16px; font-weight: 800; color: var(--dark); }
.place-card { min-height: 240px; border-radius: 28px; padding: 22px; display: flex; align-items: end; color: white; background: linear-gradient(rgba(14,116,144,.1), rgba(14,116,144,.92)), url('https://images.unsplash.com/photo-1518509562904-e7ef99cdcc86?auto=format&fit=crop&w=900&q=80') center/cover; }
.place-card small { color: #b6f3ff; font-weight: 800; }
.place-card h3 { margin: 8px 0; font-size: 24px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.mini-grid div { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 18px; display: grid; gap: 8px; }

.section { padding: 86px 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card { background: white; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 14px 40px rgba(31, 41, 55, .05); }
.feature-card span { font-size: 38px; }
.feature-card h3 { margin: 18px 0 10px; }
.feature-card p { font-size: 15px; line-height: 1.65; }

.city-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; background: var(--dark); color: white; padding: 54px; border-radius: 38px; }
.city-panel p { color: #cbd5e1; }
.city-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.city-tags span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); padding: 12px 16px; border-radius: 999px; font-weight: 800; }

.community-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.image-block { min-height: 420px; border-radius: 38px; background: linear-gradient(rgba(255,107,74,.2), rgba(14,116,144,.35)), url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?auto=format&fit=crop&w=900&q=80') center/cover; box-shadow: var(--shadow); }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.check-list li { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; font-weight: 700; }
.check-list li::before { content: '✓'; color: var(--coral); font-weight: 900; margin-right: 10px; }

.waitlist-box { text-align: center; background: linear-gradient(135deg, var(--sand), #fff); padding: 54px; border-radius: 38px; border: 1px solid var(--line); }
.waitlist-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; margin-top: 28px; }
.waitlist-form input, .waitlist-form select { border: 1px solid var(--line); background: white; border-radius: 16px; padding: 15px 16px; font: inherit; min-width: 0; }
.form-message { margin: 16px 0 0; font-weight: 800; color: var(--ocean); }

.footer { padding: 42px 0; background: #111827; color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer p { color: #cbd5e1; }
.footer-links { display: flex; gap: 22px; color: #e5e7eb; font-weight: 700; }

@media (max-width: 900px) {
  .hero-grid, .city-panel, .community-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .waitlist-form { grid-template-columns: 1fr; }
  .phone-card { transform: none; }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 76px; left: 20px; right: 20px; display: none; flex-direction: column; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .nav-menu.is-open { display: flex; }
  .hero { padding-top: 50px; }
  .hero-stats, .feature-grid { grid-template-columns: 1fr; }
  .app-screen { min-height: 560px; }
  .city-panel, .waitlist-box { padding: 34px 24px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
