:root {
  --bg: #f7faf7;
  --bg2: #ffffff;
  --ink: #102017;
  --muted: #647067;
  --rule: #dfe8e1;
  --accent: #20a464;
  --accent2: #2563eb;
  --warning: #facc15;
  --shadow: 0 18px 55px rgba(16, 32, 23, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(32, 164, 100, 0.16), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.13), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 247, 0.82);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg2);
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg2);
  border: 1px solid var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 24px rgba(16, 32, 23, 0.16);
}

.button.secondary {
  background: var(--bg2);
  color: var(--ink);
  border-color: var(--rule);
  box-shadow: none;
}

.hero {
  padding: 86px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(32, 164, 100, 0.12);
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 16px;
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.phone-card {
  position: relative;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 42px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-screen {
  min-height: 650px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(32,164,100,0.18), rgba(37,99,235,0.12)),
    #dcebdd;
  position: relative;
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(35deg, transparent 47%, rgba(255,255,255,0.65) 48%, rgba(255,255,255,0.65) 50%, transparent 51%),
    linear-gradient(125deg, transparent 45%, rgba(255,255,255,0.5) 46%, rgba(255,255,255,0.5) 48%, transparent 49%);
  background-size: 160px 120px, 220px 180px;
}

.pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 4px solid var(--bg2);
  display: grid;
  place-items: center;
  color: var(--bg2);
  font-size: 0.78rem;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(16, 32, 23, 0.2);
}

.pin.free { background: var(--accent); left: 20%; top: 32%; }
.pin.paid { background: var(--accent2); right: 24%; top: 44%; }
.pin.free2 { background: var(--accent); left: 48%; bottom: 28%; }

.top-ui, .bottom-ui {
  position: absolute;
  left: 18px;
  right: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 232, 225, 0.9);
  box-shadow: 0 16px 34px rgba(16, 32, 23, 0.13);
}

.top-ui {
  top: 18px;
  padding: 12px;
}

.search-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.search-pill {
  flex: 1;
  border-radius: 18px;
  background: var(--bg);
  color: var(--muted);
  padding: 11px 13px;
  font-weight: 760;
}

.launch-pill {
  border-radius: 18px;
  background: var(--warning);
  color: var(--ink);
  padding: 11px 13px;
  font-weight: 950;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.filter-pill {
  border-radius: 16px;
  background: var(--bg);
  padding: 9px 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.bottom-ui {
  bottom: 18px;
  padding: 12px;
}

.venue-strip {
  display: flex;
  gap: 8px;
  overflow: hidden;
  margin-top: 8px;
}

.venue-tag {
  white-space: nowrap;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg2);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 900;
}

.section {
  padding: 74px 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 950;
}

h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-head p, .legal-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 36px rgba(16, 32, 23, 0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--bg2);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  font-weight: 950;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.card p, .card li, .legal-card p, .legal-card li {
  color: var(--muted);
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  background: var(--ink);
  color: var(--bg2);
  border-radius: 26px;
  padding: 22px;
  min-height: 190px;
}

.step-number {
  color: var(--warning);
  font-size: 0.82rem;
  font-weight: 950;
}

.step p {
  color: rgba(255,255,255,0.75);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.panel-list {
  display: grid;
  gap: 12px;
}

.panel-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.check {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg2);
  font-size: 0.8rem;
  font-weight: 950;
}

.cta {
  text-align: center;
  padding: 84px 0 94px;
}

.cta-box {
  border-radius: 42px;
  background: var(--ink);
  color: var(--bg2);
  padding: clamp(34px, 6vw, 68px);
  box-shadow: var(--shadow);
}

.cta-box p {
  color: rgba(255,255,255,0.72);
  max-width: 700px;
  margin: 0 auto 28px;
}

.footer {
  border-top: 1px solid var(--rule);
  padding: 34px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 750;
}

.legal-hero {
  padding: 72px 0 24px;
  max-width: 840px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  margin: 22px 0;
}

.legal-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.legal-card h3 {
  margin-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .nav-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid, .split, .grid, .flow, .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .phone-screen {
    min-height: 560px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .detailActions, .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .phone-card {
    padding: 10px;
    border-radius: 30px;
  }

  .phone-screen {
    border-radius: 24px;
  }
}
