* {
  box-sizing: border-box;
}

:root {
  --bg: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #14b8a6;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20,184,166,.07), transparent 35%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  box-shadow: 0 8px 22px rgba(15,118,110,.2);
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.8px;
  font-size: 20px;
}

.header-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
}

.hero {
  text-align: center;
  padding: 94px 0 118px;
  position: relative;
  z-index: 1;
}

.badge,
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(15,118,110,.15);
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(10px);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 28px auto 22px;
  max-width: 860px;
  font-size: clamp(46px, 8vw, 84px);
  line-height: .98;
  letter-spacing: -4.2px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 690px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.search-preview {
  max-width: 740px;
  margin: 38px auto 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 24px 70px rgba(15,23,42,.09);
  text-align: left;
}

.search-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 25px;
  color: var(--muted);
}

.search-preview span {
  flex: 1;
  color: #94a3b8;
  font-size: 15px;
}

.search-preview button {
  border: 0;
  background: var(--text);
  color: white;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 700;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  box-shadow: 0 12px 28px rgba(15,118,110,.22);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--line);
}

.section {
  padding: 80px 0 108px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading span,
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-heading h2,
.merchant h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -2px;
  line-height: 1.08;
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  min-height: 240px;
  box-shadow: 0 14px 40px rgba(15,23,42,.04);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #ecfeff;
  font-size: 24px;
}

.card h3 {
  margin: 26px 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.merchant-wrap {
  padding: 24px 0 86px;
}

.merchant {
  background: #0f172a;
  color: white;
  border-radius: 30px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.merchant > div {
  max-width: 690px;
}

.merchant .eyebrow {
  color: #5eead4;
}

.merchant p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.75;
  margin: 18px 0 0;
}

.btn-light {
  background: white;
  color: var(--text);
  white-space: nowrap;
}

.footer {
  min-height: 120px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--text);
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: .34;
}

.bg-blur-1 {
  width: 300px;
  height: 300px;
  background: #99f6e4;
  top: 8%;
  left: -120px;
}

.bg-blur-2 {
  width: 280px;
  height: 280px;
  background: #bae6fd;
  right: -120px;
  top: 22%;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    letter-spacing: -2.7px;
  }

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

  .merchant {
    padding: 38px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero {
    padding: 48px 0 88px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .search-preview button {
    display: none;
  }

  .search-preview {
    padding: 9px;
  }

  .btn {
    width: 100%;
  }

  .merchant {
    border-radius: 22px;
  }

  .header-link {
    font-size: 13px;
  }
}
