:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fb;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --text: #111827;
  --muted: #667085;
  --muted-2: #98a2b3;
  --line: rgba(17, 24, 39, 0.10);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.07);
  --red: #ff2855;
  --red-dark: #d7284c;
  --pink: #ff7a90;
  --blue: #2563eb;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 40, 85, 0.10), transparent 24rem),
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.10), transparent 24rem),
    var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--text);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}
.section-pad { padding: 112px 0; }
.section-pad.tight { padding-top: 72px; }
.section-pad.no-top { padding-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}
.nav-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  padding: 0 10px 0 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; letter-spacing: -0.03em; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b0b0f;
  box-shadow: 0 10px 24px rgba(255, 40, 85, 0.18);
  overflow: hidden;
}
.brand-mark img { width: 30px; height: 30px; object-fit: contain; }
.brand-text { font-size: 1.02rem; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #344054;
  font-size: .94rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-links a:hover { background: rgba(17, 24, 39, 0.06); color: var(--text); }
.nav-links .nav-cta { background: #111827; color: #fff; padding-inline: 18px; }
.nav-links .nav-cta:hover { background: #000; color: #fff; transform: translateY(-1px); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 12px; border-radius: 999px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 999px; margin: 4px 0; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: 56px;
  align-items: center;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  opacity: .62;
}
.orb-one { width: 260px; height: 260px; background: rgba(255, 40, 85, .11); left: -80px; top: 120px; }
.orb-two { width: 380px; height: 380px; background: rgba(37, 99, 235, .10); right: -150px; bottom: 70px; }
.eyebrow {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 0 0 6px rgba(255, 40, 85, .10);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 8vw, 6.45rem);
  line-height: .94;
  letter-spacing: -0.085em;
  margin-bottom: 28px;
  max-width: 880px;
}
h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}
h3 {
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}
p { color: var(--muted); line-height: 1.75; }
.hero-lead { font-size: clamp(1.06rem, 2vw, 1.28rem); max-width: 690px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 780;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff2855, #d9274d 55%, #111827 145%);
  box-shadow: 0 16px 34px rgba(255, 40, 85, 0.26);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(17, 24, 39, 0.10);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof span {
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #475467;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 700;
}

.hero-card { display: grid; place-items: center; }
.phone-shell {
  width: min(100%, 388px);
  min-height: 680px;
  padding: 18px;
  border-radius: 54px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.54)),
    radial-gradient(circle at 50% 0%, rgba(255, 40, 85, .18), transparent 44%),
    #f6f7fb;
  border: 1px solid rgba(17, 24, 39, 0.11);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.phone-top {
  width: 112px;
  height: 32px;
  border-radius: 0 0 20px 20px;
  background: #111827;
  margin: -18px auto 24px;
}
.app-card, .app-search, .app-grid div, .app-list {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.app-card-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
}
.app-card-main img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 18px;
  background: #0b0b0f;
  padding: 8px;
}
.app-card-main strong, .app-list strong { display: block; font-size: 1rem; }
.app-card-main span, .app-list span { display: block; color: var(--muted); font-size: .88rem; margin-top: 3px; line-height: 1.5; }
.app-search {
  margin: 14px 0;
  padding: 15px 16px;
  border-radius: 999px;
  color: #98a2b3;
  font-weight: 650;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.app-grid div {
  min-height: 94px;
  border-radius: 24px;
  padding: 15px;
  display: grid;
  align-content: center;
  gap: 9px;
  font-weight: 760;
}
.app-grid span { font-size: 1.3rem; }
.app-list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  margin-bottom: 12px;
}
.app-list.muted { opacity: .86; }
.pulse-dot {
  width: 11px;
  height: 11px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(255, 40, 85, .12);
  flex: 0 0 auto;
}
.pulse-dot.soft { background: var(--blue); box-shadow: 0 0 0 8px rgba(37, 99, 235, .10); }

.section-heading { max-width: 790px; margin: 0 auto 44px; text-align: center; }
.section-heading.align-left { text-align: left; margin: 0; }
.section-heading p { font-size: 1.06rem; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.city-card {
  min-height: 238px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.city-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255,40,85,.16), transparent 68%);
}
.city-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(15, 23, 42, .11); border-color: rgba(255, 40, 85, .18); }
.city-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
.city-card h3 { font-size: 1.34rem; margin-top: auto; }
.city-card p { margin-bottom: 0; font-size: .96rem; }
.city-card-wide { grid-column: span 3; min-height: 180px; }

.surface {
  background:
    linear-gradient(180deg, rgba(247, 248, 251, .84), rgba(255,255,255,0)),
    var(--bg-soft);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.discover-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 42px;
  align-items: start;
}
.feature-list { display: grid; gap: 14px; }
.feature-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .80);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 16px 46px rgba(15, 23, 42, .06);
}
.icon-bubble {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 40, 85, .09);
  font-size: 1.25rem;
}
.feature-card h3 { margin-bottom: 4px; }
.feature-card p { margin-bottom: 0; }

.business-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,40,85,.13), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(37,99,235,.12), transparent 30%),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
}
.business-copy p { max-width: 560px; }
.business-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mini-card {
  min-height: 168px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}
.mini-card strong { display: block; font-size: 1.08rem; letter-spacing: -.03em; margin-bottom: 8px; }
.mini-card span { color: var(--muted); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(17, 24, 39, .08);
  box-shadow: var(--shadow-soft);
}
.value-card span { color: var(--red-dark); font-weight: 850; }
.value-card h3 { margin-top: 18px; font-size: 1.26rem; }
.value-card p { margin-bottom: 0; }

.contact-section { padding-top: 48px; }
.contact-card {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #111827;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 40, 85, .28);
  filter: blur(8px);
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card p { color: rgba(255,255,255,.74); }
.contact-card .eyebrow { color: #ffb4c1; }
.contact-form {
  display: grid;
  gap: 13px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: .9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.10);
  color: #fff;
  border-radius: 16px;
  outline: none;
  padding: 14px 15px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.42); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255, 122, 144, .72); box-shadow: 0 0 0 4px rgba(255, 40, 85, .12); }
.form-note { font-size: .82rem; margin: 0; }

.site-footer { padding: 54px 0 28px; background: #fff; border-top: 1px solid rgba(17,24,39,.08); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; }
.footer-brand { margin-bottom: 14px; }
.footer-grid p { max-width: 520px; margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.footer-links a, .footer-bottom a {
  padding: 9px 12px;
  border-radius: 999px;
  color: #475467;
  font-weight: 700;
}
.footer-links a:hover, .footer-bottom a:hover { background: rgba(17,24,39,.06); color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(17,24,39,.08);
  color: #667085;
  font-size: .92rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .section-pad { padding: 86px 0; }
  .hero-grid, .discover-grid, .business-shell, .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { order: -1; }
  .phone-shell { min-height: auto; max-width: 380px; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card-wide { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr; }
  .section-heading.align-left { text-align: center; margin: 0 auto 36px; }
}

@media (max-width: 760px) {
  body { background: radial-gradient(circle at 50% 0%, rgba(255,40,85,.10), transparent 18rem), #fff; }
  .container, .nav-shell { width: min(100% - 24px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .section-pad.tight { padding-top: 46px; }
  .site-header { padding: 8px 0; }
  .nav-shell { height: 58px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 27px; height: 27px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { display: block; padding: 14px 16px; }
  h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); letter-spacing: -0.08em; }
  h2 { font-size: clamp(2.05rem, 10vw, 3.2rem); }
  .hero-grid { gap: 34px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof span { font-size: .82rem; }
  .phone-shell { border-radius: 40px; padding: 14px; }
  .phone-top { height: 24px; width: 92px; margin-top: -14px; margin-bottom: 18px; }
  .app-grid { gap: 10px; }
  .app-grid div { min-height: 82px; border-radius: 20px; }
  .city-grid, .business-cards { grid-template-columns: 1fr; }
  .city-card, .city-card-wide { grid-column: auto; min-height: 208px; }
  .feature-card { align-items: flex-start; padding: 18px; }
  .business-shell, .contact-card { padding: 22px; border-radius: 28px; }
  .mini-card { min-height: 132px; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; justify-content: stretch; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
