/* Hero, shared buttons, chips, and first-screen styles. */

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-rows: auto minmax(620px, 1fr) auto;
  background: var(--asphalt);
  color: var(--white);
}

.hero-stage {
  position: relative;
  width: 100%;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.08) 74%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
  padding: 54px 0 46px;
}

.hero-copy {
  display: grid;
  align-content: end;
}

.drop-chip {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--royal-blue);
  border: var(--line);
  border-radius: var(--radius-pill);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  font: 900 15px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
}

.drop-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--taxi);
  border: var(--line);
  border-radius: 50%;
}

.hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font: 900 112px/0.95 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 4px 4px 0 var(--ink);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lede {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  color: var(--ink);
  text-decoration: none;
  font: 900 15px/1 "Barlow Condensed", Arial, sans-serif;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-red {
  background: var(--signal-red);
  color: var(--white);
  transform: rotate(-1deg);
}

.btn-yellow {
  background: var(--taxi);
}

.btn-white {
  background: var(--white);
}

.hero-float-cta {
  position: absolute;
  right: clamp(28px, 7vw, 104px);
  bottom: clamp(38px, 6vw, 76px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: clamp(74px, 8vw, 96px);
  max-width: calc(100% - 48px);
  padding: 0 clamp(24px, 3.2vw, 36px);
  background: var(--signal-red);
  color: var(--white);
  border: var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 8px 8px 0 var(--ink);
  font: 900 clamp(28px, 4.1vw, 50px)/0.9 "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-1.5deg);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-float-cta:hover,
.hero-float-cta:focus-visible {
  transform: translate(4px, 4px) rotate(-1.5deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 20px;
}

.proof-chip {
  display: inline-block;
  color: var(--white);
  font: 500 20px/1 "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0;
  text-shadow:
    1px 1px 0 var(--ink),
    0 0 10px rgba(0, 0, 0, 0.68);
  white-space: nowrap;
}

.sticker-note {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: var(--line);
  border-radius: var(--radius-md);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font: 400 19px/1 "Permanent Marker", cursive;
  white-space: nowrap;
}

.sticker-note.two {
  top: 22%;
  right: 8%;
  background: var(--pop-pink);
  transform: rotate(4deg);
}
