:root {
  --ink: #0a0a0a;
  --soft-ink: #2a2a2a;
  --muted: #666;
  --line: #e7e3dc;
  --paper: #fbfaf7;
  --white: #fff;
  --signal: #c8ff4d;
  --coral: #ff6b57;
  --cyan: #55d7ff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Figtree, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.announcement {
  background: var(--signal);
  color: var(--ink);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-item { display: none; }
.announcement-item.is-active { display: inline; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 850;
}

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

.nav {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 2;
}

.nav-inner {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img { width: 240px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(0, 0, 0, .14);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 700px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .38) 54%, rgba(0, 0, 0, .7));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 44px));
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding-top: 112px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(35px, 5.25vw, 65px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.5;
}

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

section {
  padding: clamp(62px, 8vw, 104px) 22px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.section-head p,
.copy p,
.faq-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.proof-grid,
.faq-grid,
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.card b,
.faq-item h3 {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.dark {
  background: var(--ink);
  color: var(--white);
}

.dark .section-head p,
.dark .copy p {
  color: rgba(255, 255, 255, .76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img,
.image-frame video {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 12px;
  font-weight: 800;
}

.cta {
  background:
    linear-gradient(120deg, rgba(200, 255, 77, .88), rgba(85, 215, 255, .78) 48%, rgba(255, 107, 87, .72)),
    url("https://framerusercontent.com/images/FHHirOIcSBFSCRSt04FaeEc6gM.jpg?scale-down-to=2048&width=2700&height=2160") center/cover;
  background-blend-mode: screen, normal;
}

.cta-panel {
  max-width: 760px;
  border-radius: var(--radius);
  background: rgba(251, 250, 247, .95);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.cta-panel p {
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.52;
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 7vw, 92px) 22px 34px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(4, minmax(140px, .7fr));
  gap: clamp(28px, 5vw, 72px);
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.45;
}

.footer-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.footer-brand img {
  width: min(360px, 100%);
  height: auto;
}

.footer-phone {
  width: fit-content;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  box-shadow: none;
}

.footer-social {
  display: flex;
  gap: 16px;
  color: var(--coral);
  font-weight: 900;
}

.footer-legal {
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.footer-col {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-col h3 {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 22px;
  line-height: 1;
}

.footer-col a {
  color: rgba(255, 255, 255, .78);
  transition: color .2s ease;
}

.footer-col a:hover,
.footer-legal a {
  color: var(--signal);
}

@media (max-width: 860px) {
  .nav-inner {
    display: grid;
    justify-items: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav .button {
    width: 100%;
  }

  .hero-inner {
    padding-top: 132px;
  }

  .section-head,
  .split,
  .proof-grid,
  .faq-grid,
  .city-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .cta-panel .button {
    width: 100%;
  }
}
