:root {
  --ink: #111318;
  --muted: #687287;
  --soft: #f3f6ff;
  --paper: #ffffff;
  --line: rgba(17, 19, 24, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --orange: #f97316;
  --red: #cf2f22;
  --gold: #ffc247;
  --mint: #68d8a7;
  --lime: #9bd747;
  --blue: #2e8bff;
  --cyan: #49d6ff;
  --violet: #7d5cff;
  --navy: #1a1a2e;
  --plum: #26192f;
  --navy-section-bg:
    radial-gradient(circle at 80% 18%, rgba(249, 115, 22, 0.18), transparent 28%),
    radial-gradient(circle at 12% 72%, rgba(46, 139, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #101322, #171833 52%, #26172b);
  --shadow: 0 24px 80px rgba(21, 27, 38, 0.18);
  --radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(249, 115, 22, 0.14), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(73, 214, 255, 0.14), transparent 26%),
    var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.menu-open {
  overflow: hidden;
}

body.page-transition-ready {
  overflow-x: hidden;
}

body.page-transition-ready main,
body.page-transition-ready .site-header,
body.page-transition-ready .site-footer {
  animation: page-content-in 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-transition-ready.page-exit main,
body.page-transition-ready.page-exit .site-header,
body.page-transition-ready.page-exit .site-footer {
  animation: page-content-out 0.28s cubic-bezier(0.55, 0, 1, 0.45) both;
}

body.page-transition-ready::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background: #111426;
  animation: brand-flash-in 0.46s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.page-transition-ready.page-exit::before {
  animation: brand-flash-out 0.28s cubic-bezier(0.55, 0, 1, 0.45) both;
}

@keyframes page-content-in {
  from {
    opacity: 0.92;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-content-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0.86;
    transform: translateY(-6px);
  }
}

@keyframes brand-flash-in {
  from {
    opacity: 1;
  }
  42% {
    opacity: 0.86;
  }
  to {
    opacity: 0;
  }
}

@keyframes brand-flash-out {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page-transition-ready main,
  body.page-transition-ready .site-header,
  body.page-transition-ready .site-footer {
    animation: none;
  }

  body.page-transition-ready::before {
    display: none;
  }
}

@media (max-width: 980px) {
  body.page-transition-ready main,
  body.page-transition-ready .site-header,
  body.page-transition-ready .site-footer {
    animation: none;
  }

  body.page-transition-ready::before {
    display: none;
  }
}

main {
  background: linear-gradient(180deg, #f7fbff 0%, #f2f6ff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
  transition: top 0.34s ease;
}

.site-header.is-scrolled {
  top: 0;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  padding: 10px 10px 10px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(17, 20, 38, 0.84);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(160%);
  transition: width 0.34s ease, min-height 0.34s ease, padding 0.34s ease, border-radius 0.34s ease, background 0.34s ease, box-shadow 0.34s ease;
}

.site-header.is-scrolled .nav-shell {
  width: 100%;
  min-height: 86px;
  padding: 12px clamp(18px, 5vw, 48px);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: rgba(17, 20, 38, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: transparent;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 76px;
  max-width: 440px;
  object-fit: contain;
}

.nav-links {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(10px, 1.15vw, 20px);
}

.nav-links a,
.phone-link,
.mobile-menu a,
.site-footer a {
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.nav-white-label,
.mobile-menu a.nav-white-label {
  color: var(--orange);
}

.nav-links a.nav-white-label:hover,
.nav-links a.nav-white-label:focus-visible,
.mobile-menu a.nav-white-label:hover,
.mobile-menu a.nav-white-label:focus-visible {
  color: #ffb36b;
}

.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.32);
}

.button-light {
  color: #111426;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.nav-actions .button {
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 12px;
  font-weight: 950;
}

.nav-actions .button-light {
  border-color: rgba(255, 255, 255, 0.95);
  background: #fff;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(17, 20, 38, 0.06);
}

.nav-actions .button-primary {
  box-shadow:
    0 18px 38px rgba(249, 115, 22, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.button-dark {
  color: #fff;
  background: #151820;
}

.button-navy {
  color: #fff;
  background: linear-gradient(135deg, #111426, var(--navy));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(17, 20, 38, 0.24);
}

.button-alert {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, #d82418);
  box-shadow: 0 18px 38px rgba(216, 36, 24, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s ease;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 82px;
  background:
    radial-gradient(circle at 82% 26%, rgba(249, 115, 22, 0.26), transparent 24%),
    radial-gradient(circle at 58% 68%, rgba(46, 139, 255, 0.14), transparent 30%),
    linear-gradient(135deg, var(--navy), #18182c 48%, var(--plum));
}

.hero-media,
.hero-overlay,
.hero-pin-layer {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(249, 115, 22, 0.28), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(46, 139, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(104, 216, 167, 0.08), transparent 28%),
    #111426;
}

.home-hero {
  min-height: calc(100vh - 112px);
  padding-top: 142px;
  padding-bottom: 26px;
  background:
    linear-gradient(180deg, rgba(13, 16, 32, 0.94) 0%, rgba(13, 16, 32, 0.46) 96px, rgba(13, 16, 32, 0) 220px),
    radial-gradient(circle at 82% 28%, rgba(249, 115, 22, 0.2), transparent 26%),
    linear-gradient(135deg, #0d1020, #111426 48%, #231629);
}

.home-hero .hero-media {
  z-index: 0;
  background: #0d1020;
}

.home-hero .hero-media::after {
  content: none;
}

.hero-map-image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
  filter: saturate(1.18) contrast(1.16) brightness(1.06) drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.18) 44px, rgba(0, 0, 0, 0.74) 116px, #000 220px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.18) 44px, rgba(0, 0, 0, 0.74) 116px, #000 220px);
}

.home-hero .hero-map-image {
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(100% + 44px);
  height: 100%;
  min-width: 0;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.06) contrast(1.08) brightness(0.98);
  -webkit-mask-image: none;
  mask-image: none;
  animation: home-hero-image-drift 18s ease-in-out infinite alternate;
  transform-origin: center top;
  will-change: transform, filter;
}

@keyframes home-hero-image-drift {
  0% {
    transform: translate3d(-22px, 0, 0) scale(1.015);
    filter: saturate(1.04) contrast(1.06) brightness(0.96);
  }

  45% {
    filter: saturate(1.1) contrast(1.1) brightness(1);
  }

  100% {
    transform: translate3d(0, -10px, 0) scale(1.055);
    filter: saturate(1.08) contrast(1.08) brightness(0.99);
  }
}

.member-hero {
  --member-hero-grid-bg:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --member-zip-grid-bg:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --member-hero-grid-size: auto;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
  margin-bottom: -82px;
  padding-top: 118px;
  padding-bottom: 132px;
  border-bottom-right-radius: 50% 9%;
  border-bottom-left-radius: 50% 9%;
  color: var(--navy);
  background: var(--member-hero-grid-bg);
  background-size: var(--member-hero-grid-size);
}

.member-hero .hero-media {
  background:
    rgba(255, 255, 255, 0.62);
}

.member-hero .hero-overlay {
  background: none;
}

.member-hero .hero-copy {
  max-width: 860px;
  opacity: 1;
  transform: none;
}

.member-hero .hero-grid {
  padding-top: 72px;
}

.member-hero h1 {
  max-width: 850px;
  color: var(--navy);
  text-shadow: none;
  font-size: clamp(3.5rem, 5.8vw, 5.9rem);
  line-height: 0.95;
}

.member-hero h1 span {
  display: block;
  color: var(--navy);
}

.member-hero .hero-text {
  max-width: 700px;
  color: rgba(17, 20, 38, 0.72);
  text-shadow: none;
  font-size: clamp(1rem, 1.28vw, 1.2rem);
}

.member-title-accent {
  color: var(--orange);
}

.member-hero h1 .member-title-accent {
  color: var(--orange);
}

.member-phone-sequence {
  position: absolute;
  top: 24%;
  right: clamp(40px, 10vw, 180px);
  z-index: 7;
  width: clamp(178px, 18vw, 258px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(28px, 16px, 0) scale(0.94) rotate(1deg);
  animation: member-phone-in 0.34s cubic-bezier(0.18, 0.84, 0.28, 1) 0.16s forwards;
}

.member-phone {
  position: relative;
  aspect-ratio: 470 / 860;
  overflow: visible;
}

.member-phone-frame {
  position: absolute;
  inset: 0;
  z-index: 12;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(17, 20, 38, 0.2));
}

.member-phone-screen {
  position: absolute;
  inset: 5.4% 10.5% 1.4%;
  z-index: 2;
  overflow: hidden;
  border-radius: 33px 33px 28px 28px;
  background: #fff;
}

.member-phone-services {
  position: absolute;
  inset: 48px 14px 16px;
  z-index: 3;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: member-services-away 0.42s cubic-bezier(0.18, 0.84, 0.28, 1) 2.28s forwards;
}

.member-phone-services > p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.92rem, 1.45vw, 1.24rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
  opacity: 0;
  transform: translateY(8px);
  animation: member-service-title-in 0.34s ease 0.42s forwards;
}

.member-phone-services > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 8px;
  min-height: 0;
}

.member-phone-services span {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  min-height: 0;
  padding: 9px 8px;
  border: 1px solid rgba(17, 20, 38, 0.14);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow:
    0 10px 22px rgba(17, 20, 38, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  font-size: clamp(0.56rem, 0.88vw, 0.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  animation: member-service-card-in 0.34s cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
}

.member-phone-services span:nth-child(1) { animation-delay: 0.58s; }
.member-phone-services span:nth-child(2) { animation-delay: 0.62s; }
.member-phone-services span:nth-child(3) { animation-delay: 0.66s; }
.member-phone-services span:nth-child(4) { animation-delay: 0.7s; }
.member-phone-services span:nth-child(5) { animation-delay: 0.74s; }
.member-phone-services span:nth-child(6) { animation-delay: 0.78s; }
.member-phone-services span:nth-child(7) { animation-delay: 0.82s; }
.member-phone-services span:nth-child(8) { animation-delay: 0.86s; }

.member-phone-services span:nth-child(2) {
  font-size: clamp(0.54rem, 0.82vw, 0.74rem);
}

.member-phone-services .is-selected {
  color: var(--orange);
  border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #ffb33a 0%, var(--orange) 46%, #cf351d 100%) border-box;
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.42),
    0 0 18px rgba(249, 115, 22, 0.48),
    0 14px 28px rgba(249, 115, 22, 0.18);
  animation:
    member-service-card-in 0.34s cubic-bezier(0.18, 0.84, 0.28, 1) 0.7s forwards,
    member-service-plumbing-glow 0.72s ease 1.28s 2 alternate;
}

.member-phone-zip {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(100% + 30px, 112%);
  display: grid;
  justify-items: center;
  gap: 18px;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 12px));
  animation:
    member-phone-zip-in 0.28s ease 2.64s forwards,
    member-phone-zip-away 0.28s ease 3.82s forwards;
}

.member-phone-zip p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.7vw, 1.5rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  animation: member-zip-title 0.3s ease 2.9s forwards;
}

.member-phone-zip div {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.member-phone-zip span {
  width: clamp(21px, 2.25vw, 31px);
  aspect-ratio: 0.62;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(17, 20, 38, 0.12);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1;
  opacity: 0;
  transform: perspective(400px) rotateX(-64deg) translateY(-12px);
  transform-origin: top center;
  animation: member-zip-card 0.26s cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
}

.member-phone-zip span:nth-child(1),
.member-phone-zip span:nth-child(2),
.member-phone-zip span:nth-child(3),
.member-phone-zip span:nth-child(4),
.member-phone-zip span:nth-child(5) {
  animation-delay: 2.9s;
}

.member-wifi {
  position: absolute;
  top: 33%;
  left: 50%;
  z-index: 3;
  width: 138px;
  height: 92px;
  transform: translate(-50%, -50%);
}

.member-wifi span,
.member-wifi i {
  position: absolute;
  left: 50%;
  display: block;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: center bottom;
}

.member-wifi span {
  border-top: 13px solid var(--orange);
  border-radius: 999px 999px 0 0;
  animation:
    member-wifi-load 0.28s ease forwards,
    member-wifi-away 0.25s ease 5.95s forwards;
}

.member-wifi span:nth-child(1) {
  top: 0;
  width: 136px;
  height: 68px;
  animation-delay: 4s, 5.95s;
}

.member-wifi span:nth-child(2) {
  top: 34px;
  width: 92px;
  height: 46px;
  animation-delay: 4.14s, 5.95s;
}

.member-wifi span:nth-child(3) {
  top: 64px;
  width: 50px;
  height: 26px;
  animation-delay: 4.28s, 5.95s;
}

.member-wifi i {
  top: 84px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange);
  animation:
    member-wifi-load 0.2s ease 4.42s forwards,
    member-wifi-away 0.25s ease 5.95s forwards;
}

.member-phone-screen > p {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 58px;
  left: 20px;
  margin: 0;
  color: var(--orange);
  font-size: clamp(1rem, 1.45vw, 1.42rem);
  font-style: italic;
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation:
    member-phone-text-in 0.28s ease 4.5s forwards,
    member-phone-screen-away 0.25s ease 5.95s forwards;
}

.member-phone-map {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateY(18px);
  filter: saturate(0.96) contrast(0.98);
  animation: member-phone-map-in 0.58s cubic-bezier(0.18, 0.84, 0.28, 1) 5.92s forwards;
}

.member-phone-results {
  position: absolute;
  inset: 4% 5% 5%;
  z-index: 5;
  width: 90%;
  height: 91%;
  border-radius: 22px 22px 18px 18px;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translateY(18px);
  filter: none;
  animation: member-phone-results-in 0.62s cubic-bezier(0.18, 0.84, 0.28, 1) 6.02s forwards;
}

.member-grid-visual {
  display: none;
}

.member-service-list {
  position: absolute;
  left: 62%;
  top: 28%;
  z-index: 4;
  display: grid;
  gap: 10px;
  width: min(330px, 34vw);
}

.member-service-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid rgba(17, 20, 38, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(17, 20, 38, 0.08);
  color: rgba(17, 20, 38, 0.82);
  opacity: 0;
  transform: translateY(14px);
  backdrop-filter: blur(12px);
  animation: member-card-in 0.55s ease forwards;
}

.member-service-list div:nth-child(1) { animation-delay: 2.08s; }
.member-service-list div:nth-child(2) { animation-delay: 2.2s; }
.member-service-list div:nth-child(3) { animation-delay: 2.32s; }
.member-service-list div:nth-child(4) { animation-delay: 2.44s; }
.member-service-list div:nth-child(5) { animation-delay: 2.56s; }

.member-service-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

.member-service-list span {
  padding: 0 14px 0 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

@keyframes member-zip-title {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-service-title-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-service-card-in {
  70% {
    opacity: 1;
    transform: translateY(-2px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-service-plumbing-glow {
  100% {
    box-shadow:
      0 0 0 2px rgba(249, 115, 22, 0.62),
      0 0 28px rgba(249, 115, 22, 0.78),
      0 18px 34px rgba(249, 115, 22, 0.22);
    transform: translateY(-2px);
  }
}

@keyframes member-services-away {
  100% {
    opacity: 0;
    transform: translateY(-16px);
    visibility: hidden;
  }
}

@keyframes member-phone-zip-in {
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes member-zip-card {
  70% {
    opacity: 1;
    transform: perspective(800px) rotateX(8deg) translateY(0);
  }

  100% {
    opacity: 1;
    transform: perspective(800px) rotateX(0deg) translateY(0);
  }
}

@keyframes member-zip-away {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes member-phone-zip-away {
  100% {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px));
    visibility: hidden;
  }
}

@keyframes member-phone-in {
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

@keyframes member-wifi-load {
  100% {
    opacity: 1;
    transform: translateX(-50%);
  }
}

@keyframes member-phone-text-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-phone-screen-away {
  100% {
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
  }
}

@keyframes member-wifi-away {
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
    visibility: hidden;
  }
}

@keyframes member-phone-map-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-phone-results-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-phone-away {
  100% {
    opacity: 0;
    transform: translate3d(52px, -12px, 0) scale(0.96) rotate(2deg);
    visibility: hidden;
  }
}

@keyframes member-grid-in {
  100% {
    opacity: 1;
  }
}

@keyframes member-hero-copy-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes member-card-in {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-network {
  position: absolute;
  top: 108px;
  right: max(-96px, calc((100vw - 1640px) / 2 - 86px));
  isolation: isolate;
  width: min(57vw, 980px);
  height: 690px;
  opacity: 1;
}

.map-network::after {
  content: "";
  position: absolute;
  inset: -108px -50vw -110px -50vw;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(270deg, rgba(13, 16, 32, 0.7) 0, rgba(13, 16, 32, 0.34) 92px, transparent 220px),
    linear-gradient(180deg, #0d1020 0, rgba(13, 16, 32, 0.88) 92px, rgba(13, 16, 32, 0.44) 176px, transparent 276px),
    linear-gradient(180deg, transparent 68%, rgba(13, 16, 32, 0.68) 88%, #0d1020 100%),
    linear-gradient(90deg, #0d1020 0, rgba(13, 16, 32, 0.96) 560px, rgba(13, 16, 32, 0.7) 920px, rgba(13, 16, 32, 0.34) 1220px, transparent 1560px);
}

.network-grid {
  position: absolute;
  inset: -22% -20% -34% -12%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.044) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(ellipse at 52% 58%, #000 0%, #000 48%, rgba(0, 0, 0, 0.76) 64%, rgba(0, 0, 0, 0.24) 80%, transparent 96%);
  mask-image: radial-gradient(ellipse at 52% 58%, #000 0%, #000 48%, rgba(0, 0, 0, 0.76) 64%, rgba(0, 0, 0, 0.24) 80%, transparent 96%);
  transform: perspective(980px) rotateX(58deg);
  transform-origin: 70% 42%;
}

.network-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 280px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-9deg);
}

.network-route {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
  box-shadow: none;
  opacity: 0.055;
}

.route-one {
  width: 248px;
  transform: rotate(-156deg);
}

.route-two {
  width: 230px;
  transform: rotate(-108deg);
}

.route-three {
  width: 246px;
  transform: rotate(-46deg);
}

.route-four {
  width: 310px;
  transform: rotate(-2deg);
}

.route-five {
  width: 300px;
  transform: rotate(37deg);
}

.route-six {
  width: 212px;
  transform: rotate(100deg);
}

.route-seven {
  width: 280px;
  transform: rotate(165deg);
}

.route-emergency {
  width: 84px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 45, 0.06), rgba(46, 139, 255, 0.04), transparent);
  opacity: 0.075;
  transform: rotate(-10deg);
}

.zip-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 72px;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(22, 28, 52, 0.98), rgba(12, 17, 34, 0.98));
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(249, 115, 22, 0.22),
    0 0 28px rgba(249, 115, 22, 0.12);
  text-align: center;
  transform: translate(-50%, -50%);
}

.zip-scan-origin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 1px;
  height: 1px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.zip-scan-origin span {
  position: absolute;
  pointer-events: none;
}

.zip-scan-origin span:nth-child(1) {
  left: 0;
  top: 0;
  z-index: 1;
  width: 1520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(249, 115, 22, 0.006) 12deg,
    rgba(249, 115, 22, 0.018) 26deg,
    rgba(249, 115, 22, 0.05) 44deg,
    rgba(249, 115, 22, 0.12) 62deg,
    rgba(255, 165, 78, 0.28) 78deg,
    rgba(255, 213, 140, 0.44) 88deg,
    transparent 94deg,
    transparent 360deg
  );
  filter: blur(18px);
  opacity: 0.9;
  -webkit-mask-image: radial-gradient(circle, transparent 0 30px, rgba(0, 0, 0, 0.98) 54px, rgba(0, 0, 0, 0.9) 245px, rgba(0, 0, 0, 0.46) 430px, rgba(0, 0, 0, 0.12) 570px, transparent 720px);
  mask-image: radial-gradient(circle, transparent 0 30px, rgba(0, 0, 0, 0.98) 54px, rgba(0, 0, 0, 0.9) 245px, rgba(0, 0, 0, 0.46) 430px, rgba(0, 0, 0, 0.12) 570px, transparent 720px);
  transform-origin: center;
  animation: zip-radar-sector 5.4s linear -0.35s infinite;
}

.zip-scan-origin span:nth-child(2) {
  left: 0;
  top: 0;
  width: 2600px;
  height: 1px;
  opacity: 1;
  transform-origin: left top;
  animation: zip-radar-line 5.4s linear -0.35s infinite;
}

.zip-scan-origin span:nth-child(2)::before,
.zip-scan-origin span:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2600px;
  pointer-events: none;
}

.zip-scan-origin span:nth-child(2)::before {
  z-index: 2;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 209, 136, 0.96), rgba(249, 115, 22, 0.76) 34%, rgba(249, 115, 22, 0.2) 66%, transparent 100%);
  box-shadow:
    0 0 16px rgba(255, 157, 69, 0.72),
    0 0 72px rgba(249, 115, 22, 0.36);
}

.zip-scan-origin span:nth-child(2)::after {
  display: none;
}

.zip-scan-origin span:nth-child(3) {
  left: 0;
  top: 0;
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 157, 69, 0.36);
  border-radius: 50%;
  box-shadow:
    inset 0 0 16px rgba(249, 115, 22, 0.14),
    0 0 24px rgba(249, 115, 22, 0.2);
  transform: translate(-50%, -50%);
}

.zip-hub strong {
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.zip-hub em {
  display: none;
  color: #ffffff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.network-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(13, 16, 32, 0.72);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.network-card strong {
  font-size: 1.3rem;
  line-height: 1;
}

.network-card em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verified-pros-card {
  right: 214px;
  top: 48px;
  min-width: 138px;
}

.emergency-help-card {
  right: 44px;
  top: 48px;
  min-width: 150px;
}

.emergency-help-card strong {
  font-size: 0.92rem;
}

.network-ping {
  --ping-color: 249, 115, 22;
  position: absolute;
  z-index: 2;
  width: 86px;
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.network-ping span,
.network-ping i {
  position: absolute;
  border-radius: 50%;
}

.network-ping span {
  inset: 0;
  border: 1px solid rgba(var(--ping-color), 0.56);
  box-shadow:
    inset 0 0 22px rgba(var(--ping-color), 0.1),
    0 0 28px rgba(var(--ping-color), 0.18);
  opacity: 0.42;
  animation: network-ping-pop 2.8s ease-out infinite;
}

.network-ping span:nth-child(1) {
  inset: 26px;
}

.network-ping span:nth-child(2) {
  inset: 14px;
  opacity: 0.34;
  animation-delay: 0.24s;
}

.network-ping span:nth-child(3) {
  inset: 0;
  opacity: 0.22;
  animation-delay: 0.48s;
}

.network-ping i {
  left: 50%;
  top: 50%;
  width: 19px;
  aspect-ratio: 1;
  border: 4px solid rgba(255, 255, 255, 0.72);
  background: rgb(var(--ping-color));
  box-shadow:
    0 0 0 8px rgba(var(--ping-color), 0.16),
    0 0 26px rgba(var(--ping-color), 0.48);
  transform: translate(-50%, -50%);
}

.network-ping b {
  position: absolute;
  left: 74%;
  top: 50%;
  min-width: 132px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(13, 16, 32, 0.7);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-50%);
}

.ping-one {
  left: calc(50% - 232px);
  top: calc(50% - 112px);
}

.ping-two {
  left: calc(50% - 82px);
  top: calc(50% - 224px);
}

.ping-two b {
  left: auto;
  right: 74%;
  text-align: right;
}

.ping-three {
  left: calc(50% + 166px);
  top: calc(50% - 182px);
}

.ping-four {
  left: calc(50% + 356px);
  top: calc(50% - 4px);
}

.ping-five {
  left: calc(50% + 338px);
  top: calc(50% + 238px);
}

.ping-six {
  left: calc(50% - 42px);
  top: calc(50% + 210px);
}

.ping-seven {
  left: calc(50% - 272px);
  top: calc(50% + 72px);
}

.ping-emergency {
  --ping-color: 255, 45, 45;
  left: calc(50% + 132px);
  top: calc(50% - 22px);
  z-index: 3;
  width: 98px;
}

.ping-emergency i {
  animation: emergency-network-flash 1.05s steps(2, jump-none) infinite;
}

.ping-emergency span {
  animation-name: network-ping-pop, emergency-ring-flash;
  animation-duration: 2.35s, 1.05s;
  animation-timing-function: ease-out, steps(2, jump-none);
  animation-iteration-count: infinite;
}

.ping-emergency span:nth-child(2) {
  animation-delay: 0.18s, 0s;
}

.ping-emergency span:nth-child(3) {
  animation-delay: 0.36s, 0s;
}

.sonar-beacon {
  position: absolute;
  right: clamp(96px, 18vw, 260px);
  top: clamp(245px, 35vh, 360px);
  z-index: 1;
  width: 116px;
  aspect-ratio: 1;
  pointer-events: none;
}

.sonar-beacon span,
.sonar-beacon i {
  position: absolute;
  border-radius: 50%;
}

.sonar-beacon span {
  border: 1px solid rgba(46, 139, 255, 0.48);
  box-shadow:
    inset 0 0 22px rgba(46, 139, 255, 0.08),
    0 0 28px rgba(46, 139, 255, 0.2);
  opacity: 0.46;
  animation: sonar-beacon-ring 2.2s ease-out infinite;
}

.sonar-beacon span:nth-child(1) {
  inset: 34px;
}

.sonar-beacon span:nth-child(2) {
  inset: 18px;
  opacity: 0.34;
  animation-delay: 0.22s;
}

.sonar-beacon span:nth-child(3) {
  inset: 0;
  opacity: 0.24;
  animation-delay: 0.44s;
}

.sonar-beacon i {
  left: 50%;
  top: 50%;
  width: 34px;
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, 0.76);
  background: #2e8bff;
  box-shadow:
    0 0 0 12px rgba(46, 139, 255, 0.2),
    0 0 34px rgba(46, 139, 255, 0.58);
  transform: translate(-50%, -50%);
}

.sonar-beacon i::after {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px solid rgba(46, 139, 255, 0.25);
}

.dispatch-ambient {
  position: absolute;
  top: -34%;
  right: -20%;
  bottom: -24%;
  left: 24%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 36%, rgba(249, 115, 22, 0.22), transparent 28%),
    radial-gradient(circle at 88% 62%, rgba(46, 139, 255, 0.12), transparent 24%);
  background-size: 58px 58px, 58px 58px, auto, auto;
  transform: perspective(900px) rotateX(58deg) rotateZ(-8deg) translate3d(6%, -6%, 0);
  transform-origin: 78% 38%;
  opacity: 0.92;
}

.dispatch-ambient::before,
.dispatch-ambient::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  opacity: 0.7;
}

.dispatch-ambient::before {
  right: 12%;
  top: 18%;
  width: 520px;
  height: 520px;
}

.dispatch-ambient::after {
  right: 3%;
  top: 2%;
  width: 820px;
  height: 820px;
  border-color: rgba(46, 139, 255, 0.14);
}

.dispatch-ring,
.dispatch-scanline {
  position: absolute;
  pointer-events: none;
}

.dispatch-ring {
  border: 1px solid currentColor;
  border-radius: 999px;
  color: rgba(249, 115, 22, 0.42);
  box-shadow: inset 0 0 34px rgba(249, 115, 22, 0.08), 0 0 36px rgba(249, 115, 22, 0.12);
  animation: dispatch-ring 5.8s ease-in-out infinite;
}

.ring-one {
  right: 2%;
  top: 20%;
  width: 320px;
  height: 140px;
}

.ring-two {
  right: 20%;
  top: 44%;
  width: 300px;
  height: 130px;
  color: rgba(249, 115, 22, 0.24);
  animation-delay: 1.4s;
}

.ring-emergency {
  right: 9%;
  top: 54%;
  width: 300px;
  height: 130px;
  color: rgba(255, 45, 45, 0.48);
  box-shadow: inset 0 0 34px rgba(255, 45, 45, 0.08), 0 0 44px rgba(255, 45, 45, 0.18);
  animation: emergency-ring 1.05s steps(2, jump-none) infinite;
}

.dispatch-scanline {
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 43%, rgba(249, 115, 22, 0.02) 47%, rgba(249, 115, 22, 0.24) 50%, rgba(46, 139, 255, 0.12) 53%, transparent 58%, transparent 100%);
  mix-blend-mode: screen;
  animation: dispatch-scan 3.8s ease-in-out infinite;
}

.hero-map {
  position: absolute;
  top: -34%;
  right: -31%;
  bottom: -34%;
  width: min(126vw, 1580px);
}

.map-linework,
.map-linework-secondary {
  position: absolute;
  inset: -18%;
  background-image: url("images/contractor-map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.06) drop-shadow(0 0 18px rgba(249, 115, 22, 0.2));
  animation: map-tour 34s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
  z-index: 0;
}

.map-linework-secondary {
  display: none;
}

.map-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0%, transparent 39%, rgba(249, 115, 22, 0.04) 44%, rgba(249, 115, 22, 0.23) 50%, rgba(104, 216, 167, 0.11) 54%, transparent 61%, transparent 100%);
  mix-blend-mode: screen;
  animation: map-scan 4.8s ease-in-out infinite;
  z-index: 1;
}

.map-pin {
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 0 8px rgba(249, 115, 22, 0.16),
    0 0 28px rgba(249, 115, 22, 0.9);
  opacity: 0;
  transform: translateY(12px) scale(0.48);
  animation-duration: 34s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.42;
}

.stop-one {
  animation-name: pin-stop-one;
}

.stop-one.pin-a { right: 42%; top: 33%; }
.stop-one.pin-b { right: 34%; top: 42%; animation-delay: 0.18s; }
.stop-one.pin-c { right: 25%; top: 33%; animation-delay: 0.36s; }
.stop-one.pin-d { right: 30%; top: 58%; animation-delay: 0.54s; }
.stop-one.pin-e { right: 45%; top: 51%; animation-delay: 0.72s; }
.stop-one.pin-f { right: 19%; top: 48%; animation-delay: 0.9s; }

.stop-two {
  animation-name: pin-stop-two;
}

.stop-two.pin-a { right: 20%; top: 18%; }
.stop-two.pin-b { right: 9%; top: 28%; animation-delay: 0.16s; }
.stop-two.pin-c { right: 30%; top: 30%; animation-delay: 0.32s; }
.stop-two.pin-d { right: 15%; top: 41%; animation-delay: 0.48s; }
.stop-two.pin-e { right: 25%; top: 48%; animation-delay: 0.64s; }
.stop-two.pin-f { right: 7%; top: 50%; animation-delay: 0.8s; }

.stop-three {
  animation-name: pin-stop-three;
}

.stop-three.pin-a { right: 11%; bottom: 18%; }
.stop-three.pin-b { right: 24%; bottom: 27%; animation-delay: 0.18s; }
.stop-three.pin-c { right: 38%; bottom: 20%; animation-delay: 0.36s; }
.stop-three.pin-d { right: 19%; bottom: 42%; animation-delay: 0.54s; }
.stop-three.pin-e { right: 33%; bottom: 37%; animation-delay: 0.72s; }

.pin-emergency {
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.96);
  animation-name: pin-stop-two-emergency;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 20, 38, 1) 0%, rgba(17, 20, 38, 0.98) 42%, rgba(17, 20, 38, 0.78) 68%, rgba(38, 25, 47, 0.24) 100%),
    radial-gradient(circle at 83% 34%, rgba(249, 115, 22, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 122, 42, 0.04), rgba(46, 139, 255, 0.08));
}

.home-hero .hero-overlay {
  background: none;
}

.hero-pin-layer {
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 380px);
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.contractor-hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    radial-gradient(circle at 18% 74%, rgba(26, 26, 46, 0.24), transparent 34%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange) 44%, #df4b22 100%);
}

.contractor-hero .hero-grid {
  width: min(1440px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
  justify-items: center;
}

.contractor-hero .hero-copy {
  width: min(100%, 1440px);
  margin-inline: auto;
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
}

.contractor-hero h1 {
  width: 100%;
  max-width: min(1400px, calc(100vw - 48px));
  margin-inline: auto;
  text-align: center;
}

.contractor-hero .eyebrow {
  color: #1a1a2e;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.36),
    0 10px 26px rgba(26, 26, 46, 0.26);
}

.contractor-hero .hero-text {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  text-shadow:
    0 2px 0 rgba(26, 26, 46, 0.22),
    0 18px 38px rgba(26, 26, 46, 0.38);
}

.contractor-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 720px);
  align-items: start;
  justify-content: center;
  margin-inline: auto;
}

.contractor-hero .hero-actions .button {
  width: 100%;
  min-height: 74px;
  padding: 0 28px;
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 950;
}

.contractor-hero .button-primary {
  color: #fff;
  background: linear-gradient(135deg, #1a1a2e, #111426);
  box-shadow: 0 18px 44px rgba(26, 26, 46, 0.34);
}

.contractor-hero .button-secondary {
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 36px rgba(26, 26, 46, 0.2);
}

.white-label-hero {
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0.56) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(circle at 84% 24%, rgba(249, 115, 22, 0.08), transparent 30%),
    linear-gradient(135deg, #070a15 0%, #0d1020 58%, #111426 100%);
}

.white-label-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 84%, transparent);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 84%, transparent);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(1.012);
  animation: white-label-grid-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.hero.white-label-hero .hero-grid.white-label-hero-grid {
  width: min(1420px, calc(100% - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(470px, 520px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 76px);
}

.white-label-hero .hero-copy {
  display: grid;
  justify-items: center;
  min-width: 0;
  max-width: 940px;
  text-align: center;
  transform: translate3d(52px, 28px, 0);
}

.white-label-page .site-header .nav-shell {
  animation: white-label-nav-in 0.8s cubic-bezier(0.2, 0.84, 0.28, 1) 0.08s both;
}

.white-label-hero .eyebrow {
  color: var(--orange);
}

.white-label-hero h1 {
  width: min(41vw, 680px);
  max-width: none;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(3.1rem, 4.35vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.white-label-hero .hero-copy > .reveal {
  opacity: 0;
  transition: none;
  transform: translate3d(0, 22px, 0) scale(0.985);
}

.white-label-hero .hero-copy > h1.reveal,
.white-label-hero .hero-copy > h1.reveal.is-visible {
  animation: white-label-title-in 0.92s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

.white-label-hero .hero-copy > .hero-text.reveal,
.white-label-hero .hero-copy > .hero-text.reveal.is-visible {
  animation: white-label-copy-in 0.78s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

.white-label-hero .hero-copy > .hero-actions.reveal,
.white-label-hero .hero-copy > .hero-actions.reveal.is-visible {
  animation: white-label-cta-in 0.76s cubic-bezier(0.16, 1, 0.3, 1) 0.68s forwards;
}

.white-label-hero-title-image {
  display: block;
  width: 100%;
  height: auto;
}

.white-label-hero .hero-text {
  max-width: 660px;
  margin: 2px auto 0;
  padding: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.5;
  text-align: center;
  text-shadow: none;
}

.white-label-hero .hero-actions {
  justify-content: center;
  margin: 16px 0 0;
}

.white-label-hero .button-primary {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #df3f20);
  box-shadow: 0 22px 56px rgba(249, 115, 22, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.white-label-hero .button-primary:hover,
.white-label-hero .button-primary:focus-visible {
  transform: translateY(-2px) scale(1.018);
  filter: brightness(1.04);
  box-shadow:
    0 26px 62px rgba(249, 115, 22, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.white-label-hero .button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
}

.white-label-hero-visual {
  justify-self: end;
  position: relative;
  width: min(100%, 520px);
  min-height: 650px;
  opacity: 0;
  transform: translate3d(24px, 18px, 0) scale(0.985);
  transform-origin: center;
  animation: white-label-visual-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.42s forwards;
  will-change: opacity, transform;
}

.white-label-hero-visual::before {
  content: none;
}


.white-label-app-launcher {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
  animation: none;
}

.white-label-store-badges {
  --white-label-store-x: 0;
  position: absolute;
  left: 26px;
  top: 64px;
  z-index: 7;
  width: min(150px, 34vw);
  max-width: 170px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate3d(var(--white-label-store-x), 14px, 0) scale3d(0.96, 0.96, 1);
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: white-label-store-badges 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.22s both;
}

.white-label-launcher-tile {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  justify-items: center;
  gap: 18px;
  width: min(100%, 430px);
  min-height: 350px;
  align-content: center;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  color: #fff;
  background: rgba(15, 20, 40, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: white-label-launcher-clean 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.white-label-launcher-tile img {
  width: 204px;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 36px;
  background: transparent;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(0, 159, 218, 0.26);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}

.white-label-launcher-tile span {
  max-width: 240px;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.white-label-launcher-caption {
  display: block;
  flex: 0 0 auto;
  width: min(100%, 520px);
  margin-top: 48px;
  color: #fff;
  font-size: clamp(1.26rem, 1.75vw, 1.72rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.025em;
  white-space: nowrap;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: white-label-launcher-clean 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.white-label-branding-chip {
  position: absolute;
  right: -18px;
  top: 402px;
  z-index: 6;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #111426 0%, #171b33 52%, #0a0d1b 100%);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(10px, 6px, 0) scale3d(0.96, 0.96, 1);
  backface-visibility: hidden;
  will-change: transform, opacity;
  animation: white-label-branding-chip 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.22s both;
}

.white-label-app-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(85, 205, 255, 0.36);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 126, 24, 0.18), transparent 28%),
    linear-gradient(180deg, #e8f8ff 0%, #f8fbff 46%, #eaf7ff 100%);
  box-shadow:
    0 34px 96px rgba(0, 93, 142, 0.3),
    0 0 0 10px rgba(0, 180, 255, 0.08);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale3d(0.18, 0.18, 1);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, border-radius, opacity;
  animation: white-label-app-open 0.82s cubic-bezier(0.16, 1, 0.3, 1) 4.4s forwards;
}

.white-label-app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  padding: 26px 30px;
  color: #fff;
  background: #00a7e8;
}

.white-label-app-name {
  max-width: 280px;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: auto;
  animation: none;
}

.white-label-app-logo-mark {
  display: block;
  width: 82px;
  aspect-ratio: 1;
  padding: 4px;
  border-radius: 16px;
  background: url("images/abc-heating-cooling-logo.png?v=20260628-abc-logo") center / cover no-repeat;
  box-shadow: 0 16px 34px rgba(0, 111, 180, 0.28);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: auto;
  animation: none;
}

.white-label-app-body {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.white-label-request-card,
.white-label-status-row {
  border: 1px solid rgba(0, 147, 218, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(0, 105, 160, 0.11);
}

.white-label-request-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.white-label-request-card strong {
  color: #073b64;
  font-size: 1.36rem;
}

.white-label-request-card span {
  color: #355f82;
  font-weight: 700;
}

.white-label-request-card em {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  font-style: normal;
  font-weight: 900;
}

.white-label-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
}

.white-label-status-row span {
  color: #355f82;
  font-weight: 800;
}

.white-label-status-row strong {
  color: #073b64;
  text-align: right;
}

.white-label-status-row.status-complete strong {
  color: #15945d;
}

.white-label-availability-row {
  gap: 18px;
}

.white-label-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 31px;
  border-radius: 999px;
  background: linear-gradient(135deg, #34c759, #20a64d);
  box-shadow:
    0 10px 24px rgba(32, 166, 77, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.white-label-toggle i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.white-label-app-body button {
  min-height: 64px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0078bc 0%, #00a7e8 48%, #05689f 100%);
  box-shadow: 0 18px 38px rgba(0, 167, 232, 0.24);
  font: inherit;
  font-weight: 900;
}

.white-label-orbit-card {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
  margin-top: 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: white-label-orbit-in 0.76s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.white-label-orbit-card span {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 27, 51, 0.96), rgba(10, 13, 27, 0.94)),
    #111426;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.branded-mobile-app-section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 116px) 0 clamp(28px, 3.6vw, 48px);
  color: #fff;
}

.branded-mobile-app-shell {
  position: relative;
  display: grid;
  justify-items: center;
  padding: clamp(24px, 3.2vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 214, 137, 0.4), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 92, 40, 0.46), transparent 34%),
    linear-gradient(135deg, #ff8b2f 0%, #f97316 48%, #df3c20 100%);
  box-shadow: 0 34px 100px rgba(249, 115, 22, 0.24);
}

.branded-mobile-app-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.55;
}

.branded-mobile-app-copy,
.branded-mobile-app-panel {
  position: relative;
  z-index: 1;
}

.branded-mobile-app-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  gap: 18px;
}

.branded-mobile-app-owned {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3.4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.branded-mobile-app-copy .eyebrow {
  color: #16182a;
}

.branded-mobile-app-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branded-mobile-app-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
}

.branded-mobile-app-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.branded-mobile-app-feature {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(22, 24, 42, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.branded-mobile-app-feature strong {
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.22;
}

.branded-mobile-app-feature.feature-brand {
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.18), transparent 38%),
    rgba(22, 24, 42, 0.23);
}

.branded-mobile-app-feature.feature-owned {
  grid-column: 1 / -1;
  min-height: 116px;
  background:
    linear-gradient(135deg, rgba(22, 24, 42, 0.34), rgba(255, 255, 255, 0.12)),
    rgba(22, 24, 42, 0.24);
}

.white-label-pricing-intro-section {
  position: relative;
  z-index: 1;
  padding: clamp(14px, 2vw, 26px) 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(0, 167, 232, 0.04)),
    rgba(17, 20, 38, 0.9);
}

.white-label-pricing-intro-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--orange);
}

.white-label-pricing-intro-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  z-index: 3;
  width: min(96vw, 1520px);
  height: 38px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0, var(--orange) 8%, #ff9a3d 50%, var(--orange) 92%, transparent 100%);
  background-size: 100% 3px;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 18px rgba(249, 115, 22, 0.34));
}

.white-label-pricing-intro {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.white-label-matters-copy {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(560px, 1fr);
  gap: clamp(58px, 6vw, 104px);
  align-items: center;
}

.white-label-matters-copy h2 {
  max-width: 440px;
  margin: 0;
  color: var(--orange);
  font-size: clamp(1.65rem, 2.35vw, 2.58rem);
  font-weight: 330;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.white-label-matters-copy h2 span {
  display: block;
  white-space: nowrap;
}

.white-label-matters-copy p {
  max-width: 720px;
  margin: 0;
  padding-left: clamp(22px, 2.8vw, 34px);
  border-left: 3px solid var(--orange);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.22vw, 1.18rem);
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.3;
}

.white-label-pricing-glance-section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 6.6vw, 96px) 0 clamp(54px, 6vw, 86px);
  color: #fff;
}

.white-label-pricing-glance {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 26px);
  justify-items: center;
  max-width: 980px;
  text-align: center;
}

.white-label-pricing-glance .eyebrow {
  justify-self: center;
  color: transparent;
  background: linear-gradient(90deg, #f97316 0%, #ff9a3d 48%, #d95f1e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.18rem, 1.55vw, 1.72rem);
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-align: center;
  text-shadow: 0 0 14px rgba(249, 115, 22, 0.14);
}

.white-label-pricing-glance h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.white-label-pricing-glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(100%, 920px);
}

.white-label-pricing-glance-grid article {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 150px;
  align-content: center;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(85, 205, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.white-label-pricing-glance-grid strong {
  color: #fff;
  font-size: clamp(1.8rem, 2.9vw, 2.9rem);
  line-height: 1;
}

.white-label-pricing-glance-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  font-weight: 800;
}

.white-label-support-section {
  position: relative;
  z-index: 1;
  padding: clamp(54px, 6vw, 86px) 0 clamp(56px, 6vw, 92px);
  color: #fff;
}

.white-label-support-shell {
  display: grid;
  gap: clamp(22px, 3vw, 32px);
}

.white-label-support-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px clamp(18px, 2.2vw, 34px);
  align-items: center;
  max-width: none;
  text-align: left;
}

.white-label-support-heading .eyebrow {
  margin: 0;
  color: var(--orange);
  flex: 0 0 100%;
}

.white-label-support-heading h2 {
  max-width: max-content;
  margin: 0;
  color: #fff;
  font-size: clamp(1.95rem, 2.7vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.white-label-support-heading::after {
  content: "";
  flex: 1 1 220px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(249, 115, 22, 0));
}

.white-label-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}

.white-label-support-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 186, 94, 0.38), transparent 34%),
    linear-gradient(145deg, #ff8b2f 0%, #f97316 48%, #df3c20 100%);
  box-shadow:
    0 26px 80px rgba(249, 115, 22, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.white-label-support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: rgba(255, 255, 255, 0.38);
}

.white-label-support-card.support-branding {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 213, 144, 0.34), transparent 34%),
    linear-gradient(145deg, #ff8b2f 0%, #f97316 48%, #df3c20 100%);
}

.white-label-support-card span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 20, 38, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.white-label-support-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.white-label-support-card ul {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 156px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.white-label-support-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  font-weight: 750;
  line-height: 1.38;
}

.white-label-support-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46em;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #111426;
  box-shadow: 0 0 0 6px rgba(17, 20, 38, 0.14);
}

.white-label-support-card strong {
  align-self: end;
  margin-top: auto;
  padding-top: 18px;
  color: #fff;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.2;
}

.white-label-podcast-section {
  --orange: #b85b23;
  position: relative;
  z-index: 1;
  height: clamp(560px, 52vw, 680px);
  padding: clamp(34px, 4vw, 58px) 0 clamp(36px, 4.4vw, 64px);
  overflow: hidden;
  color: var(--navy);
  background: #fffaf0;
}

.white-label-podcast-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--orange);
}

.white-label-podcast-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(250px, 24vw, 390px);
  aspect-ratio: 618 / 568;
  pointer-events: none;
  background: url("images/podcast-pad-corner-accent.png") right bottom / contain no-repeat;
  opacity: 1;
}

.white-label-podcast-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1520px, calc(100% - 40px));
  grid-template-columns: minmax(760px, 0.98fr) minmax(500px, 0.72fr);
  gap: clamp(30px, 3.2vw, 54px);
  align-items: start;
  transform: translateY(clamp(-92px, -5vw, -62px));
}

.white-label-podcast-copy {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: clamp(10px, 2vw, 28px);
}

.white-label-podcast-copy .eyebrow {
  color: var(--orange);
}

.white-label-podcast-copy h2 {
  max-width: 820px;
  margin: 0;
  color: #05060a;
  font-size: clamp(2.85rem, 3.35vw, 4.05rem);
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: none;
}

.white-label-podcast-copy h2 span {
  display: block;
  white-space: nowrap;
}

.white-label-podcast-intro {
  max-width: 700px;
  margin: -4px 0 0;
  color: #575d6d;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  font-weight: 750;
  line-height: 1.38;
}

.white-label-podcast-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: clamp(14px, 2.2vw, 30px);
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(17, 20, 38, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 244, 231, 0.92));
  box-shadow:
    0 28px 78px rgba(181, 85, 28, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.white-label-podcast-panel > span {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.white-label-podcast-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.white-label-podcast-panel li {
  position: relative;
  padding-left: 30px;
  color: #555c6d;
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  font-weight: 800;
  line-height: 1.38;
}

.white-label-podcast-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44em;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(184, 91, 35, 0.12);
}

.white-label-podcast-media {
  position: relative;
  display: grid;
  min-height: clamp(430px, 32vw, 520px);
  align-items: center;
  padding-top: clamp(84px, 8vw, 128px);
  margin-left: 0;
}

.white-label-podcast-studio {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3vw, 44px);
  width: min(100%, 720px);
  height: clamp(250px, 20vw, 340px);
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(17, 20, 38, 0.1);
  border-radius: 24px;
  box-shadow:
    0 34px 86px rgba(17, 20, 38, 0.18),
    0 18px 50px rgba(181, 85, 28, 0.16);
}

.white-label-podcast-logo {
  position: absolute;
  left: clamp(36px, 5vw, 90px);
  top: clamp(48px, 5vw, 78px);
  z-index: 2;
  width: clamp(104px, 10vw, 154px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 20px 32px rgba(17, 20, 38, 0.28));
}

.white-label-podcast-reel {
  position: absolute;
  top: clamp(38px, 4.2vw, 64px);
  right: clamp(20px, 2.4vw, 44px);
  z-index: 3;
  width: min(306px, 45%);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 38, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 72px rgba(17, 20, 38, 0.22);
}

.white-label-podcast-embed {
  min-height: 390px;
  height: 100%;
  background: #05060a;
}

.white-label-podcast-embed video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.white-label-portal-section {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 2.4vw, 34px) 0 clamp(88px, 9vw, 142px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(116deg, #111426 0 54%, #1a1a2e 54% 72%, #111426 72% 100%);
}

.white-label-portal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 76% 20%, rgba(249, 115, 22, 0.22), transparent 28%);
  background-size: 46px 46px, 46px 46px, auto;
  opacity: 0.78;
}

.white-label-portal-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(120px, 15vw, 220px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(17, 20, 38, 0) 0%,
    rgba(17, 20, 38, 0.58) 28%,
    rgba(247, 251, 255, 0.48) 72%,
    #fff 100%
  );
  z-index: 0;
}

.white-label-portal-shell {
  position: relative;
  z-index: 1;
}

.white-label-command-center {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(500px, 0.78fr);
  row-gap: clamp(18px, 2vw, 30px);
  column-gap: clamp(32px, 4vw, 72px);
  align-items: center;
  position: relative;
}

.white-label-command-center::before {
  content: none;
  position: absolute;
  left: -8vw;
  bottom: -42px;
  width: min(56vw, 820px);
  height: 155px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(16px);
}

.portal-command-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 680px;
}

.portal-command-copy .eyebrow {
  color: var(--orange);
}

.portal-command-copy h2 {
  display: grid;
  gap: 0.04em;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 3.35vw, 4.05rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-command-copy h2 span {
  display: block;
  white-space: nowrap;
}

.portal-command-copy p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.86rem, 0.95vw, 0.98rem);
  font-weight: 800;
  line-height: 1.42;
}

.portal-command-screen {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 540px);
  height: clamp(390px, 25vw, 430px);
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #111426;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.38),
    0 0 0 10px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.portal-screen-body {
  display: block;
  height: 100%;
}

.portal-screen-nav {
  display: flex;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.portal-screen-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 134px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.portal-screen-nav button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
}

.portal-screen-nav button:not(.is-active):hover {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.82);
  background: rgba(249, 115, 22, 0.08);
}

.portal-screen-nav button span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
  transform: none;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.portal-screen-main {
  display: grid;
  align-content: start;
  gap: clamp(10px, 1.1vw, 14px);
  min-height: 100%;
  height: 100%;
  padding: clamp(10px, 1.25vw, 15px);
  background:
    radial-gradient(circle at 70% 14%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.portal-live-feed div {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.portal-leads-title {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.portal-live-feed {
  display: grid;
  gap: 8px;
}

.portal-tab-panel {
  display: grid;
  gap: clamp(10px, 1.15vw, 14px);
  align-content: start;
  height: 100%;
  min-height: 0;
}

.portal-tab-panel[hidden] {
  display: none;
}

.portal-live-feed div {
  display: grid;
  grid-template-columns: minmax(128px, 0.85fr) minmax(0, 1fr) auto auto;
  gap: 8px 10px;
  align-items: center;
  padding: 9px 12px;
}

.portal-live-feed div:last-child {
  margin-bottom: 0;
}

.portal-live-feed b,
.portal-live-feed span,
.portal-live-feed small,
.portal-live-feed em {
  color: #fff;
  font-weight: 900;
  line-height: 1.12;
}

.portal-live-feed b {
  font-size: 0.9rem;
}

.portal-live-feed span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.portal-live-feed small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  white-space: nowrap;
}

.portal-live-feed em {
  padding: 7px 9px;
  border-radius: 999px;
  color: #061427;
  background: #fff;
  font-size: 0.64rem;
  font-style: normal;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.portal-live-feed .is-paid {
  color: #fff;
  background: #25a565;
}

.portal-live-feed .is-refunded {
  color: #111426;
  background: #ffc247;
}

.portal-live-feed .is-available {
  color: #061427;
  background: #fff;
}

.portal-panel-kicker {
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  border-radius: 999px;
  color: #111426;
  background: #fff;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.portal-tab-panel[data-portal-panel="marketplace"] .portal-leads-title {
  max-width: 510px;
}

.portal-tab-panel[data-portal-panel="marketplace"] {
  grid-template-rows: auto auto auto minmax(0, 1fr);
}

.portal-marketplace-copy {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  font-weight: 850;
  line-height: 1.4;
}

.portal-marketplace-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
  max-width: 520px;
  margin-top: 2px;
}

.portal-marketplace-actions span {
  position: relative;
  min-height: 46px;
  padding: 10px 10px 10px 32px;
  border: 1px solid rgba(249, 115, 22, 0.34);
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(207, 47, 34, 0.14), rgba(255, 255, 255, 0.07));
  font-weight: 950;
  font-size: 0.76rem;
  line-height: 1.16;
}

.portal-marketplace-actions span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.portal-command-strip {
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.portal-command-strip article {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: clamp(14px, 1.45vw, 20px);
}

.portal-command-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.portal-command-strip h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.08rem, 1.45vw, 1.58rem);
  line-height: 1;
}

.portal-command-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.28;
}

.portal-command-footer {
  z-index: 2;
  grid-column: 1 / -1;
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.34);
}

.portal-command-footer span:last-child {
  color: var(--orange);
}

.white-label-program-summary {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vw, 78px) 0;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
}

.white-label-program-summary::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 18%, rgba(46, 139, 255, 0.1), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(73, 214, 255, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(17, 20, 38, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 20, 38, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.72;
}

.program-summary-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 38px);
  justify-items: center;
  align-items: start;
}

.program-summary-heading {
  display: grid;
  gap: 14px;
  max-width: 920px;
  justify-items: center;
  text-align: center;
}

.program-summary-heading .eyebrow {
  color: var(--orange);
}

.program-summary-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.1vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.program-summary-card {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  width: min(100%, 980px);
  padding: clamp(22px, 2.6vw, 36px);
  border: 1px solid rgba(17, 20, 38, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 24px 70px rgba(46, 139, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.program-summary-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.program-summary-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-summary-list li {
  position: relative;
  min-height: 24px;
  padding-left: 25px;
  color: rgba(17, 20, 38, 0.76);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  font-weight: 820;
  line-height: 1.24;
}

.program-summary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.13);
}

.program-summary-price {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(17, 20, 38, 0.12);
  color: rgba(17, 20, 38, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 800;
  line-height: 1.28;
}

.program-summary-price strong {
  color: var(--navy);
  font-size: clamp(1.38rem, 2.1vw, 2.25rem);
  font-weight: 1000;
  line-height: 1;
}

.program-summary-cta {
  justify-self: center;
  min-width: min(100%, 320px);
  min-height: 56px;
  font-size: 1rem;
}

@keyframes white-label-nav-in {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(0.992);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-grid-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(1.012);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-title-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.982);
  }
  72% {
    opacity: 1;
    transform: translate3d(0, -2px, 0) scale(1.002);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-copy-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes white-label-cta-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.97);
  }
  76% {
    opacity: 1;
    transform: translate3d(0, -1px, 0) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-visual-in {
  0% {
    opacity: 0;
    transform: translate3d(24px, 18px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-visual-in-mobile {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes white-label-store-badges {
  0% {
    opacity: 0;
    transform: translate3d(var(--white-label-store-x), 18px, 0) scale3d(0.94, 0.94, 1);
  }
  100% {
    opacity: 1;
    transform: translate3d(var(--white-label-store-x), 0, 0) scale3d(1, 1, 1);
  }
}

@keyframes white-label-branding-chip {
  0% {
    opacity: 0;
    transform: translate3d(10px, 6px, 0) scale3d(0.96, 0.96, 1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

@keyframes white-label-launcher-clean {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale3d(0.84, 0.84, 1);
  }
  12%,
  92% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

@keyframes white-label-app-open {
  0% {
    opacity: 0;
    border-radius: 48px;
    transform: translate3d(0, 0, 0) scale3d(0.18, 0.18, 1);
  }
  4% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    border-radius: 31px;
    transform: translate3d(0, 0, 0) scale3d(0.992, 0.992, 1);
  }
  100% {
    opacity: 1;
    border-radius: 30px;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

@keyframes white-label-app-open-mobile {
  0% {
    opacity: 0;
    border-radius: 38px;
    box-shadow: 0 16px 42px rgba(0, 93, 142, 0.18);
    transform: translate3d(0, -8px, 0) scale3d(0.2, 0.2, 1);
  }
  4% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    border-radius: 25px;
    box-shadow:
      0 34px 96px rgba(0, 93, 142, 0.3),
      0 0 0 10px rgba(0, 180, 255, 0.08);
    transform: translate3d(0, -8px, 0) scale3d(0.992, 0.992, 1);
  }
  100% {
    opacity: 1;
    border-radius: 24px;
    box-shadow:
      0 34px 96px rgba(0, 93, 142, 0.3),
      0 0 0 10px rgba(0, 180, 255, 0.08);
    transform: translate3d(0, -8px, 0) scale3d(1, 1, 1);
  }
}


@keyframes white-label-orbit-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale3d(0.96, 0.96, 1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}

.contractor-hero-title span {
  display: block;
  margin-inline: auto;
}

.contractor-hero h1.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.contractor-title-main {
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.985);
  animation: contractor-title-line-in 0.72s cubic-bezier(0.18, 0.84, 0.28, 1) forwards;
  color: #fff;
  text-shadow:
    0 3px 0 rgba(26, 26, 46, 0.28),
    0 12px 26px rgba(26, 26, 46, 0.34),
    0 26px 70px rgba(91, 29, 16, 0.42);
  white-space: nowrap;
}

.contractor-title-main:nth-child(1) {
  animation-delay: 0.1s;
}

.contractor-title-main:nth-child(2) {
  animation-delay: 0.28s;
}

.contractor-hero .contractor-need-line {
  display: block;
  margin-top: clamp(12px, 1.35vw, 26px);
  font-size: 1.14em;
  font-style: italic;
  line-height: 0.82;
  color: #1a1a2e;
  opacity: 0;
  transform: translateX(-44px);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.34),
    0 8px 0 rgba(255, 255, 255, 0.12),
    0 22px 44px rgba(91, 29, 16, 0.42);
  animation: contractor-need-slide-in 0.72s cubic-bezier(0.18, 0.84, 0.28, 1) 0.72s forwards;
}

@keyframes contractor-title-line-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes contractor-need-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero:not(.contractor-hero) .hero-grid {
  grid-template-columns: minmax(0, 960px);
}

.home-hero .hero-grid {
  width: min(1260px, calc(100% - 104px));
  margin-left: max(104px, calc((100vw - 1700px) / 2 + 104px));
  margin-right: auto;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  max-width: min(900px, calc(100vw - 64px));
  margin-inline: 0;
  font-size: clamp(2.5rem, 4.45vw, 4.65rem);
  line-height: 1.02;
  text-align: left;
}

.home-hero .hero-title-main,
.home-hero .hero-title-accent {
  white-space: nowrap;
}

.home-hero .home-title-kicker {
  font-size: 0.84em;
}

.home-title-art-heading {
  width: min(980px, calc(100vw - 64px));
  max-width: none;
  margin: 0 0 18px;
}

.home-title-art {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: translate3d(-18px, 14px, 0) scale(0.985);
  filter: blur(8px);
  animation: home-title-art-in 0.95s cubic-bezier(0.18, 0.84, 0.28, 1) 0.16s forwards;
}

@keyframes home-title-art-in {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 14px, 0) scale(0.985);
    filter: blur(8px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.home-hero .hero-copy::before {
  content: none;
}

.dispatch-board {
  width: min(100%, 430px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 20, 36, 0.96), rgba(10, 13, 27, 0.94)),
    radial-gradient(circle at 80% 0%, rgba(249, 115, 22, 0.16), transparent 34%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 80px rgba(249, 115, 22, 0.12);
  backdrop-filter: blur(22px) saturate(145%);
  overflow: hidden;
}

.dispatch-board-top,
.dispatch-request,
.dispatch-unlock,
.dispatch-contractor,
.dispatch-emergency {
  position: relative;
  z-index: 1;
}

.dispatch-board-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.dispatch-board-top strong {
  color: #fff;
}

.dispatch-board-top em {
  margin-left: auto;
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot,
.emergency-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(104, 216, 167, 0.16), 0 0 24px rgba(104, 216, 167, 0.62);
}

.dispatch-request {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.1);
  animation: dispatch-card-in 8s ease-in-out infinite;
}

.dispatch-request span,
.dispatch-contractor small,
.dispatch-emergency small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.dispatch-request strong,
.dispatch-request b {
  display: block;
  margin-top: 5px;
}

.dispatch-request b {
  color: #68d8a7;
  text-align: right;
}

.dispatch-unlock {
  display: grid;
  grid-template-columns: 1fr repeat(3, 58px);
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 900;
}

.dispatch-unlock button {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.dispatch-unlock button:nth-child(2) {
  border-color: rgba(249, 115, 22, 0.58);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.84), rgba(216, 36, 24, 0.82));
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.26);
}

.dispatch-list {
  display: grid;
  gap: 10px;
}

.dispatch-contractor {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  animation: dispatch-row 8s ease-in-out infinite;
}

.dispatch-contractor:nth-child(2) {
  animation-delay: 0.18s;
}

.dispatch-contractor:nth-child(3) {
  animation-delay: 0.36s;
}

.dispatch-contractor strong,
.dispatch-contractor small {
  filter: blur(3px);
}

.dispatch-contractor.is-revealed strong,
.dispatch-contractor.is-revealed small {
  filter: none;
}

.verify-mark {
  display: inline-flex;
  margin-bottom: 7px;
  color: #68d8a7;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dispatch-contractor:not(.is-revealed) .verify-mark {
  color: rgba(255, 255, 255, 0.46);
}

.dispatch-emergency {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 45, 45, 0.34);
  border-radius: 14px;
  background: rgba(255, 45, 45, 0.1);
  animation: emergency-alert 8s ease-in-out infinite;
}

.emergency-pulse {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background: #ff2d2d;
  animation: emergency-pulse 1s steps(2, jump-none) infinite;
}

@keyframes map-tour {
  0% {
    transform: translate3d(0, 0, 0) scale(0.68);
  }

  5% {
    transform: translate3d(0, 0, 0) scale(0.68);
  }

  10% {
    transform: translate3d(-15%, 8%, 0) scale(0.84);
  }

  14%,
  28% {
    transform: translate3d(-15%, 8%, 0) scale(1.42);
  }

  30% {
    transform: translate3d(-15%, 8%, 0) scale(1.42);
  }

  35% {
    transform: translate3d(0, 0, 0) scale(0.7);
  }

  41% {
    transform: translate3d(17%, -14%, 0) scale(0.84);
  }

  45%,
  59% {
    transform: translate3d(17%, -14%, 0) scale(1.44);
  }

  61% {
    transform: translate3d(17%, -14%, 0) scale(1.44);
  }

  66% {
    transform: translate3d(0, 0, 0) scale(0.7);
  }

  72% {
    transform: translate3d(-17%, -16%, 0) scale(0.84);
  }

  76%,
  90% {
    transform: translate3d(-17%, -16%, 0) scale(1.42);
  }

  92% {
    transform: translate3d(-17%, -16%, 0) scale(1.42);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(0.68);
  }
}

@keyframes map-scan {
  0% {
    transform: translateX(-65%);
    opacity: 0;
  }

  20%,
  68% {
    opacity: 1;
  }

  100% {
    transform: translateX(65%);
    opacity: 0;
  }
}

@keyframes pin-stop-one {
  0%, 14%, 29%, 100% { transform: translateY(12px) scale(0.36); opacity: 0; }
  16% { transform: translateY(0) scale(1.16); opacity: 1; }
  18%, 26% { transform: translateY(0) scale(1); opacity: 1; }
  29% { transform: translateY(-8px) scale(0.62); opacity: 0; }
}

@keyframes pin-stop-two {
  0%, 44%, 60%, 100% { transform: translateY(12px) scale(0.36); opacity: 0; }
  46% { transform: translateY(0) scale(1.16); opacity: 1; }
  48%, 57% { transform: translateY(0) scale(1); opacity: 1; }
  60% { transform: translateY(-8px) scale(0.62); opacity: 0; }
}

@keyframes pin-stop-two-emergency {
  0%, 44%, 60%, 100% {
    transform: translateY(12px) scale(0.36);
    opacity: 0;
    background: #ff2d2d;
    color: #ff2d2d;
    box-shadow: 0 0 0 8px rgba(255, 45, 45, 0.18), 0 0 32px rgba(255, 45, 45, 0.8);
  }

  46% {
    transform: translateY(0) scale(1.18);
    opacity: 1;
  }

  48%, 52%, 56% {
    transform: translateY(0) scale(1.08);
    opacity: 1;
    background: #ff2d2d;
    color: #ff2d2d;
    box-shadow: 0 0 0 11px rgba(255, 45, 45, 0.22), 0 0 42px rgba(255, 45, 45, 0.9);
  }

  50%, 54%, 58% {
    transform: translateY(0) scale(1);
    opacity: 1;
    background: #2e8bff;
    color: #2e8bff;
    box-shadow: 0 0 0 11px rgba(46, 139, 255, 0.22), 0 0 42px rgba(46, 139, 255, 0.9);
  }

  60% {
    transform: translateY(-8px) scale(0.62);
    opacity: 0;
  }
}

@keyframes pin-stop-three {
  0%, 75%, 91%, 100% { transform: translateY(12px) scale(0.36); opacity: 0; }
  77% { transform: translateY(0) scale(1.16); opacity: 1; }
  79%, 88% { transform: translateY(0) scale(1); opacity: 1; }
  91% { transform: translateY(-8px) scale(0.62); opacity: 0; }
}

@keyframes dispatch-ring {
  0% {
    transform: scale(0.78);
    opacity: 0;
  }

  32% {
    opacity: 0.86;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes dispatch-scan {
  0% {
    transform: translateX(-72%);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateX(72%);
    opacity: 0;
  }
}

@keyframes dispatch-card-in {
  0%,
  18% {
    transform: translateY(0);
    box-shadow: none;
  }

  28%,
  50% {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(249, 115, 22, 0.18);
  }

  62%,
  100% {
    transform: translateY(0);
    box-shadow: none;
  }
}

@keyframes dispatch-row {
  0%,
  20% {
    transform: translateX(0);
    opacity: 1;
  }

  32%,
  82% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-8px);
    opacity: 0.64;
  }
}

@keyframes emergency-alert {
  0%,
  48% {
    transform: translateY(0);
    opacity: 0.38;
  }

  58%,
  86% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-8px);
    opacity: 0;
  }
}

@keyframes emergency-pulse {
  0%,
  49% {
    background: #ff2d2d;
    box-shadow: 0 0 0 8px rgba(255, 45, 45, 0.2), 0 0 34px rgba(255, 45, 45, 0.85);
  }

  50%,
  100% {
    background: #2e8bff;
    box-shadow: 0 0 0 8px rgba(46, 139, 255, 0.2), 0 0 34px rgba(46, 139, 255, 0.85);
  }
}

@keyframes control-emergency-dot {
  0%,
  49% {
    background: #ff2d2d;
    color: #ff2d2d;
    box-shadow: 0 0 0 12px rgba(255, 45, 45, 0.18), 0 0 46px rgba(255, 45, 45, 0.86);
  }

  50%,
  100% {
    background: #2e8bff;
    color: #2e8bff;
    box-shadow: 0 0 0 12px rgba(46, 139, 255, 0.18), 0 0 46px rgba(46, 139, 255, 0.86);
  }
}

@keyframes control-emergency-ripple {
  0% {
    transform: scale(0.64);
    opacity: 0.56;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes network-ping-pop {
  0% {
    transform: scale(0.88);
  }

  16% {
    opacity: 0.68;
  }

  56% {
    opacity: 0.34;
  }

  100% {
    transform: scale(1.12);
    opacity: 0.12;
  }
}

@keyframes zip-radar-sweep {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes zip-radar-sector {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes zip-radar-line {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes emergency-network-flash {
  0%,
  49% {
    background: #ff2d2d;
    box-shadow:
      0 0 0 10px rgba(255, 45, 45, 0.18),
      0 0 34px rgba(255, 45, 45, 0.56);
  }

  50%,
  100% {
    background: #2e8bff;
    box-shadow:
      0 0 0 10px rgba(46, 139, 255, 0.18),
      0 0 34px rgba(46, 139, 255, 0.56);
  }
}

@keyframes emergency-ring-flash {
  0%,
  49% {
    border-color: rgba(255, 45, 45, 0.6);
    box-shadow:
      inset 0 0 22px rgba(255, 45, 45, 0.1),
      0 0 30px rgba(255, 45, 45, 0.22);
  }

  50%,
  100% {
    border-color: rgba(46, 139, 255, 0.58);
    box-shadow:
      inset 0 0 22px rgba(46, 139, 255, 0.1),
      0 0 30px rgba(46, 139, 255, 0.22);
  }
}

@keyframes sonar-beacon-ring {
  0% {
    transform: scale(0.9);
  }

  12% {
    opacity: 0.72;
  }

  54% {
    opacity: 0.34;
  }

  100% {
    transform: scale(1.1);
    opacity: 0.12;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 1060px;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 8.35vw, 8.25rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.52);
}

.accent-text {
  color: var(--orange);
}

.hero-title-accent {
  font-style: italic;
}

.hero-title-main,
.hero-title-accent {
  display: block;
  opacity: 0;
  transform: translate3d(-28px, 18px, 0) scale(0.98);
  transform-origin: left center;
}

.hero h1.is-visible .hero-title-main {
  animation: hero-title-in 1.05s cubic-bezier(0.18, 0.84, 0.28, 1) 0.12s forwards;
}

.hero h1.is-visible .hero-title-accent {
  animation: hero-title-in 1.05s cubic-bezier(0.18, 0.84, 0.28, 1) 0.72s forwards;
}

@keyframes hero-title-in {
  0% {
    opacity: 0;
    transform: translate3d(-28px, 18px, 0) scale(0.98);
    filter: blur(8px);
  }

  58% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes contractor-proof-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contractor-proof-chip-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.hero-text {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 1.9vw, 1.45rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.56);
}

.member-hero h1 {
  text-shadow: none;
}

.member-hero .hero-text {
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-secondary-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-secondary-cta > span {
  color: rgba(26, 26, 46, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.member-hero .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 720px);
  align-items: start;
}

.member-hero .hero-actions > .button,
.member-hero .hero-secondary-cta,
.member-hero .hero-secondary-cta .button {
  width: 100%;
}

.member-hero .hero-actions > .button,
.member-hero .hero-secondary-cta .button {
  min-height: 74px;
  padding: 0 28px;
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  font-weight: 950;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: 999px;
  background: rgba(26, 26, 46, 0.66);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-2px) rotate(45deg);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.contractor-hero .hero-proof {
  justify-content: center;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(12px);
  animation: contractor-proof-in 0.58s ease 0.52s forwards;
}

.contractor-hero .hero-proof span {
  border-color: rgba(26, 26, 46, 0.22);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(26, 26, 46, 0.34);
  box-shadow: 0 10px 28px rgba(26, 26, 46, 0.18);
  opacity: 0;
  transform: translateY(8px);
  animation: contractor-proof-chip-in 0.46s ease forwards;
}

.contractor-hero .hero-proof span:nth-child(1) {
  animation-delay: 0.62s;
}

.contractor-hero .hero-proof span:nth-child(2) {
  animation-delay: 0.74s;
}

.contractor-hero .hero-proof span:nth-child(3) {
  animation-delay: 0.86s;
}

.hero-proof span,
.zip-tags span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.match-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(160%);
}

.dark-panel {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(17, 19, 34, 0.96), rgba(12, 14, 27, 0.95)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 32%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.dark-panel .panel-top,
.dark-panel .request-stack span,
.dark-panel .panel-footer,
.dark-panel .panel-result span,
.dark-panel .contact-form label {
  color: rgba(255, 255, 255, 0.68);
}

.dark-panel .request-stack div {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.dark-panel .contact-form input,
.dark-panel .contact-form select {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.08);
}

.dark-panel .contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.panel-top,
.panel-footer,
.request-stack div,
.vetting-card div {
  display: flex;
  align-items: center;
}

.panel-top {
  gap: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.panel-top p,
.panel-footer,
.request-stack span,
.request-stack strong,
.vetting-card p {
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(104, 216, 167, 0.2);
}

.match-panel h2 {
  margin: 16px 0 18px;
  font-size: 2rem;
}

.request-stack {
  display: grid;
  gap: 10px;
}

.request-stack div {
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.request-stack span {
  color: rgba(17, 19, 24, 0.68);
  font-weight: 700;
}

.request-stack strong {
  text-align: right;
  font-size: 0.88rem;
}

.panel-footer {
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-strip {
  background:
    radial-gradient(circle at 82% -40%, rgba(125, 92, 255, 0.18), transparent 34%),
    linear-gradient(90deg, #0c1020 0%, #15162d 54%, #281729 100%);
  color: #fff;
}

.metrics {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics div {
  opacity: 0;
  transform: translateY(28px);
}

.metrics .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.metrics .reveal.is-visible {
  animation: metric-open-once 1.15s cubic-bezier(0.16, 0.84, 0.22, 1) forwards;
}

.metrics div {
  min-height: 112px;
  padding: 26px clamp(22px, 2.2vw, 36px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics div:nth-child(1) {
  border-top: 3px solid var(--orange);
}

.metrics div:nth-child(2) {
  border-top: 3px solid var(--mint);
}

.metrics div:nth-child(3) {
  border-top: 3px solid var(--blue);
}

.metrics div:nth-child(4) {
  border-top: 3px solid var(--red);
}

.metrics div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 3px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.metrics span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.35;
}

@keyframes metric-open-once {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 108px 0;
}

.section.white-label-pricing-intro-section {
  padding: clamp(14px, 2vw, 26px) 0;
}

#how {
  scroll-margin-top: 276px;
  background: transparent;
}

.section-light {
  background: transparent;
}

.section-heading {
  max-width: 790px;
}

.section-heading.split-heading {
  position: relative;
  width: min(1320px, calc(100% - 40px));
  max-width: 1320px;
  text-align: center;
}

.split-heading h2 {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  justify-items: center;
  color: var(--navy);
  margin-top: 38px;
  font-size: clamp(2.35rem, 3.1vw, 3.55rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  word-spacing: 0.06em;
}

.split-heading h2 span {
  display: block;
  white-space: nowrap;
}

.section-heading.compact {
  max-width: 570px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.contractor-steps-grid {
  width: min(980px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.contractor-centered-heading {
  margin-inline: auto;
  text-align: center;
}

.contractor-centered-heading h2 {
  margin-inline: auto;
}

#leads .contractor-centered-heading h2 span {
  display: block;
}

.contractor-centered-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.member-how-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 230px;
  padding-bottom: 168px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 16% 24%, rgba(249, 115, 22, 0.16), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(46, 139, 255, 0.12), transparent 32%),
    linear-gradient(135deg, #0c1122 0%, #17172e 55%, #28182d 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: #fff;
}

.member-how-section::before {
  display: none;
}

.member-how-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  height: 390px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 34%,
    rgba(255, 255, 255, 0.16) 58%,
    rgba(255, 255, 255, 0.58) 84%,
    #fff 100%
  );
}

.member-how-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.member-how-heading h2 {
  margin-inline: auto;
  color: #fff;
}

.member-how-heading p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.72);
}

.member-how-grid {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.member-how-grid article {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 72px rgba(26, 26, 46, 0.08);
}

.member-how-grid h3 {
  color: var(--navy);
}

.member-how-grid p {
  max-width: 28ch;
}

.member-features-section {
  background: #fff;
  color: var(--navy);
}

.member-features-heading {
  max-width: none;
  margin: 0 auto 48px;
  text-align: center;
}

.member-features-heading h2 {
  margin: 0;
  color: var(--navy);
}

.member-features-section .process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.member-features-section .process-grid article {
  min-height: 245px;
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(26, 26, 46, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), transparent 46%),
    #fff;
  box-shadow: 0 22px 70px rgba(26, 26, 46, 0.09);
}

.member-features-section .process-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(46, 139, 255, 0.12), transparent 46%),
    #fff;
}

.member-features-section .process-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(104, 216, 167, 0.14), transparent 46%),
    #fff;
}

.member-features-section .process-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.98)),
    linear-gradient(135deg, rgba(125, 92, 255, 0.13), transparent 46%),
    #fff;
}

.member-features-section .process-grid article::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.24) 0 5px, transparent 6px),
    rgba(249, 115, 22, 0.08);
}

.member-features-section .process-grid article:nth-child(2)::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 139, 255, 0.26) 0 5px, transparent 6px),
    rgba(46, 139, 255, 0.08);
}

.member-features-section .process-grid article:nth-child(3)::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(68, 173, 116, 0.3) 0 5px, transparent 6px),
    rgba(104, 216, 167, 0.1);
}

.member-features-section .process-grid article:nth-child(4)::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(125, 92, 255, 0.28) 0 5px, transparent 6px),
    rgba(125, 92, 255, 0.09);
}

.member-features-section .process-grid h3 {
  color: var(--navy);
  font-size: 1.28rem;
}

.member-features-section .process-grid p {
  max-width: 25ch;
}

.process-grid article,
.feature-list article,
.zip-card,
.contact-form,
.pricing-grid article,
.emergency-card {
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(20, 28, 42, 0.06);
}

.process-grid article {
  min-height: 270px;
  padding: 27px 26px 30px;
  position: relative;
  color: var(--ink);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0.88) 42%),
    rgba(255, 255, 255, 0.86);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-grid article:hover {
  border-color: rgba(17, 19, 24, 0.14);
  box-shadow: 0 22px 62px rgba(20, 28, 42, 0.11);
  transform: translateY(-5px);
}

.process-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(46, 139, 255, 0.08), rgba(255, 255, 255, 0.88) 42%),
    rgba(255, 255, 255, 0.86);
}

.process-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(104, 216, 167, 0.1), rgba(255, 255, 255, 0.88) 42%),
    rgba(255, 255, 255, 0.86);
}

.process-grid article:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(125, 92, 255, 0.1), rgba(255, 255, 255, 0.88) 42%),
    rgba(255, 255, 255, 0.86);
}

.process-grid article::before,
.feature-list article::before,
.pricing-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.process-grid article:nth-child(2)::before,
.feature-list article:nth-child(2)::before,
.pricing-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.process-grid article:nth-child(3)::before,
.feature-list article:nth-child(3)::before,
.pricing-grid article:nth-child(3)::before {
  background: linear-gradient(90deg, var(--mint), var(--lime));
}

.process-grid article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--violet), #b08cff);
}

.process-grid span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: var(--radius);
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid article:nth-child(2) span {
  border-color: rgba(46, 139, 255, 0.22);
  color: var(--blue);
  background: rgba(46, 139, 255, 0.08);
}

.process-grid article:nth-child(3) span {
  border-color: rgba(104, 216, 167, 0.28);
  color: #44ad74;
  background: rgba(104, 216, 167, 0.1);
}

.process-grid article:nth-child(4) span {
  border-color: rgba(125, 92, 255, 0.28);
  color: var(--violet);
  background: rgba(125, 92, 255, 0.1);
}

.process-grid h3 {
  margin: 0 0 9px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.process-grid p,
.feature-list p,
.zip-card p {
  color: var(--muted);
}

.process-grid p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.48;
}

.member-how-section .member-how-grid {
  position: relative;
  gap: 0;
  margin-top: 52px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, 0.72);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.member-how-section .member-how-grid::before {
  display: none;
}

.member-how-section .member-how-grid article {
  position: relative;
  z-index: 1;
  min-height: 190px;
  padding: 28px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
}

.member-how-section .member-how-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.member-how-section .member-how-grid article::before {
  display: none;
}

.member-how-section .member-how-grid article::after {
  content: "";
  position: absolute;
  top: 49px;
  left: 88px;
  right: -30px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  opacity: 0.58;
}

.member-how-section .member-how-grid article:nth-child(2)::after {
  background: linear-gradient(90deg, var(--blue), var(--mint));
}

.member-how-section .member-how-grid article:nth-child(3)::after {
  right: 50px;
  background: var(--mint);
}

.member-how-section .member-how-grid article:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.member-how-section .member-how-grid span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: #0f1427;
  box-shadow:
    inset 0 0 0 999px rgba(255, 255, 255, 0.06),
    0 0 0 12px #0f1427,
    0 0 24px rgba(0, 0, 0, 0.28);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.member-how-section .member-how-grid article:nth-child(1) span {
  border-color: rgba(249, 115, 22, 0.55);
  color: var(--orange);
}

.member-how-section .member-how-grid article:nth-child(2) span {
  border-color: rgba(46, 139, 255, 0.55);
  color: var(--blue);
}

.member-how-section .member-how-grid article:nth-child(3) span {
  border-color: rgba(104, 216, 167, 0.55);
  color: var(--mint);
}

.member-how-section .member-how-grid h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.35rem;
}

.member-how-section .member-how-grid p {
  max-width: 29ch;
  color: rgba(255, 255, 255, 0.68);
}

.member-features-section {
  position: relative;
  overflow: hidden;
  color: var(--navy);
  background: #fff;
}

.member-features-section .process-grid {
  position: relative;
  overflow: visible;
  width: min(1080px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.member-features-section .process-grid::before {
  display: none;
}

.member-features-section .process-grid::after {
  display: none;
}

.member-features-section .process-grid article {
  min-height: 255px;
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(17, 20, 38, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 58px rgba(17, 20, 38, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.82) inset;
  color: var(--navy);
  backdrop-filter: none;
}

.member-features-section .process-grid article:nth-child(2),
.member-features-section .process-grid article:nth-child(3),
.member-features-section .process-grid article:nth-child(4) {
  background: rgba(255, 255, 255, 0.96);
}

.member-features-section .process-grid article + article {
  border-left: 1px solid rgba(17, 20, 38, 0.08);
}

.member-features-section .process-grid article::before {
  width: 52px;
  height: 2px;
  margin: 0;
  background: var(--orange);
}

.member-features-section .process-grid article::after {
  display: none;
}

.member-features-section .process-grid span {
  display: none;
}

.member-features-section .process-grid .feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.04);
}

.member-features-section .process-grid .feature-mark::before {
  content: "";
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  transform: translateY(-1px) rotate(-45deg);
}

.member-features-section .process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.06;
  min-height: 76px;
  text-align: left;
}

.member-features-section .process-grid p {
  max-width: 26ch;
  margin: 0;
  color: rgba(17, 20, 38, 0.62);
  font-size: 1rem;
  text-align: left;
}

.member-features-heading h2 {
  color: var(--orange);
}

.member-features-heading p:not(.eyebrow) {
  max-width: 690px;
  margin: 14px auto 0;
  color: rgba(17, 20, 38, 0.68);
}

.member-features-cta {
  margin-top: 38px;
  text-align: center;
}

.member-features-cta .button {
  min-width: 320px;
  padding: 20px 30px;
  justify-content: center;
  box-shadow: 0 22px 54px rgba(249, 115, 22, 0.3);
}

.trades-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #0b1020 0%, #14162d 52%, #29172d 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.trades-page-section {
  min-height: 100vh;
  padding-top: 174px;
  padding-bottom: clamp(80px, 9vw, 140px);
}

.trades-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 18%, rgba(249, 115, 22, 0.16) 19%, transparent 28% 100%),
    linear-gradient(165deg, transparent 0 55%, rgba(73, 214, 255, 0.12) 56%, transparent 68% 100%);
  opacity: 0.82;
  animation: trades-ambient-drift 18s ease-in-out infinite alternate;
}

.trades-shell {
  position: relative;
  z-index: 1;
}

.trades-heading {
  max-width: none;
  margin-bottom: 42px;
}

.trades-heading .eyebrow {
  color: var(--orange);
}

.trades-heading h1,
.trades-heading h2 {
  max-width: none;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(3rem, 4.2vw, 4.75rem);
  line-height: 0.92;
}

.trades-page-section .trades-heading h1 {
  white-space: normal;
}

.trades-page-section .trades-heading h1 span {
  display: block;
}

.trades-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.25rem);
  font-weight: 750;
  line-height: 1.38;
}

.trades-page-section .trades-heading > * {
  opacity: 0;
  animation: trades-hero-text-in 1.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform, filter;
}

.trades-page-section .trades-heading .eyebrow {
  animation-delay: 0.18s;
}

.trades-page-section .trades-heading h1 {
  animation-delay: 0.38s;
}

.trades-page-section .trades-heading p:not(.eyebrow) {
  animation-delay: 0.7s;
}

.trade-submit-section {
  min-height: 100vh;
  padding: clamp(150px, 13vw, 210px) 0 clamp(72px, 8vw, 118px);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 214, 137, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 86%, rgba(137, 24, 18, 0.36), transparent 34%),
    linear-gradient(135deg, #ff8b2f 0%, var(--orange) 44%, var(--red) 100%);
}

.trade-submit-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 12% 84%, rgba(17, 20, 38, 0.16), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto;
  opacity: 0.42;
  animation: none;
}

.trade-submit-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.trade-submit-copy {
  max-width: 740px;
  padding-top: 34px;
}

.trade-submit-copy .trade-submit-eyebrow {
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--navy) !important;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  animation: trade-submit-pill-in 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trade-submit-copy h1,
.trade-submit-copy p:not(.eyebrow),
.trade-submit-card {
  opacity: 0;
  animation: trade-submit-rise 0.82s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.trade-submit-copy h1 {
  animation-delay: 0.12s;
}

.trade-submit-copy p:not(.eyebrow) {
  animation-delay: 0.24s;
}

.trade-submit-card {
  animation-delay: 0.34s;
}

.trade-submit-copy h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(3.25rem, 5.2vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.trade-submit-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 750;
  line-height: 1.42;
}

.trade-submit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.93)),
    #fff;
  box-shadow: 0 34px 98px rgba(0, 0, 0, 0.24);
}

.trade-submit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.14), transparent 44%),
    radial-gradient(circle at 90% 12%, rgba(249, 115, 22, 0.18), transparent 30%);
}

.trade-submit-card .contact-form {
  position: relative;
  z-index: 1;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.trade-step-form {
  min-height: clamp(300px, 31vw, 382px);
}

.trade-step-progress {
  display: block;
  padding: 2px 0 8px;
}

.trade-step-progress i {
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(17, 20, 38, 0.1);
}

.trade-step-progress i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--step-progress, 20%);
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.26);
  transition: width 0.28s ease;
}

.trade-step {
  display: none;
  gap: 18px;
}

.trade-step.is-active {
  display: grid;
  animation: trade-step-in 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trade-step-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 12px;
}

.trade-step .button {
  width: 100%;
  justify-content: center;
}

.trade-submit-confirmation {
  min-height: 1.3em;
  margin: -4px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.trade-submit-confirmation.is-visible {
  animation: trade-step-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.trade-step-form.is-submitted {
  justify-content: center;
}

.trade-step-form.is-submitted .trade-step {
  display: none;
}

.trade-step-form.is-submitted .trade-step-progress {
  margin-bottom: 18px;
}

.trade-step-form.is-submitted .trade-submit-confirmation {
  min-height: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(237, 115, 49, 0.24);
  border-radius: 18px;
  background: rgba(237, 115, 49, 0.08);
  text-align: center;
}

.trade-submit-card textarea {
  width: 100%;
  min-height: 124px;
  resize: vertical;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.trade-submit-card textarea:focus {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

@keyframes trade-step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trade-submit-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes trade-submit-pill-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.94);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.trades-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.trades-stat {
  position: relative;
  min-height: 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    #fff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.trades-page-section .trades-stat.reveal {
  transform: translateY(18px) scale(0.98);
  transition-duration: 0.78s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.trades-page-section .trades-stat.reveal.is-visible {
  transform: none;
}

.trades-stat::before,
.trades-stat::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.trades-stat::before {
  inset: 10px;
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius);
}

.trades-stat::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  background:
    linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.08)),
    repeating-linear-gradient(135deg, rgba(249, 115, 22, 0.12) 0 1px, transparent 1px 12px);
}

.trades-stat strong {
  position: relative;
  z-index: 1;
  color: var(--orange);
  font-size: clamp(2.75rem, 4.4vw, 4.5rem);
  line-height: 0.85;
}

.trades-stat span {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-top: 0;
  color: #1a1a2e;
  font-size: clamp(0.98rem, 1.35vw, 1.2rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
}

.trades-stat-button {
  position: relative;
  z-index: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: var(--radius);
  color: var(--orange);
  background: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.16);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.trades-stat-button:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.36);
  box-shadow: 0 16px 36px rgba(249, 115, 22, 0.22);
}

.trade-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(92px, 1fr);
  gap: 10px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(28, 32, 52, 0.98), rgba(12, 15, 30, 0.98)),
    #0c0f1e;
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.22);
}

.trade-cloud::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24%;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(73, 214, 255, 0.16), transparent);
  animation: trade-scan 7.5s ease-in-out infinite;
}

.trade-card {
  position: relative;
  min-height: 92px;
  height: 100%;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.trades-page-section .trade-card.reveal,
.trades-page-section .trade-missing-card.reveal {
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.trades-page-section .trade-card.reveal.is-visible,
.trades-page-section .trade-missing-card.reveal.is-visible {
  transform: none;
}

.trade-card::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.62));
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.trade-card:hover::before,
.trade-card:focus-visible::before {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.24);
}

.trade-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.36);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

.trade-card:focus-visible {
  outline: 3px solid rgba(73, 214, 255, 0.72);
  outline-offset: 3px;
}

.trade-card span {
  font-size: clamp(0.98rem, 1.15vw, 1.18rem);
  font-weight: 900;
  line-height: 1.12;
}

.trade-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.trade-card-featured {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 92px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.34), rgba(46, 139, 255, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.trade-card-featured span {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.trade-card-featured small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.trade-missing-card {
  position: relative;
  grid-column: 3 / -1;
  min-height: 92px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 22, 42, 0.96), rgba(26, 26, 46, 0.88)),
    rgba(10, 14, 28, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 42px rgba(0, 0, 0, 0.16);
}

.trade-missing-card::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.trade-missing-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.12;
}

.trade-missing-card a {
  width: 100%;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--orange);
  background: #fff;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trades-page-cta .button {
  min-width: 170px;
  min-height: 62px;
  padding-inline: 28px;
  font-size: 1.04rem;
}

.trade-missing-card a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
}

.trade-missing-card a:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.72);
  outline-offset: 3px;
}

.trades-page-cta {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(108deg, rgba(249, 115, 22, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(8, 11, 24, 0.52);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.trades-page-cta .eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
}

.trades-page-cta h2 {
  max-width: 780px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.65rem);
  line-height: 0.98;
}

.trades-page-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.03rem;
  font-weight: 750;
}

@keyframes trade-scan {
  0%,
  20% {
    transform: translateX(0);
    opacity: 0;
  }

  36% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateX(760%);
    opacity: 0;
  }
}

@keyframes trades-ambient-drift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1.02);
  }

  to {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.04);
  }
}

@keyframes trades-hero-text-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(26px);
  }

  62% {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.split-section {
  background: transparent;
}

.split-grid,
.contractor-grid,
.coverage-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: 64px;
}

#verified .contractor-grid {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  justify-items: center;
  text-align: center;
}

#verified .section-heading.compact {
  max-width: 780px;
}

#verified .trust-badge {
  width: fit-content;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.9rem, 0.98vw, 1.06rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 34px rgba(0, 0, 0, 0.18);
}

#verified .trust-badge-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--lime), #59c96b);
  font-size: 0.88rem;
  font-weight: 950;
}

#verified .vetting-card {
  width: min(760px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

#verified .verified-cta {
  width: min(760px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

#verified .verified-cta p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 900;
}

#verified .verified-cta .button {
  min-width: 210px;
}

.home-navy-run {
  background: var(--navy-section-bg);
}

.home-navy-run .section-dark,
.home-navy-run #emergency {
  background: transparent;
}

#emergency .split-grid {
  grid-template-columns: minmax(0, 860px);
  justify-content: start;
  gap: 0;
}

#emergency {
  position: relative;
  margin-top: -1px;
  color: #fff;
  background: var(--navy-section-bg);
}

#emergency::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: clamp(120px, 12vw, 180px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 5, 14, 0) 0%, rgba(17, 20, 38, 0.72) 62%, rgba(17, 20, 38, 1) 100%);
}

#emergency > * {
  position: relative;
  z-index: 2;
}

#emergency .section-heading.compact {
  max-width: none;
}

#how .eyebrow,
#emergency .eyebrow {
  text-shadow: none;
}

#emergency .status-label {
  width: fit-content;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(225, 55, 47, 0.32);
  border-radius: 999px;
  background: rgba(225, 55, 47, 0.1);
  color: #ff6a44;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: 0 16px 30px rgba(185, 31, 31, 0.12);
}

#emergency .status-label .eyebrow-pulse {
  order: -1;
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 999px;
  background: #e1372f;
  box-shadow: 0 0 0 7px rgba(225, 55, 47, 0.14), 0 0 20px rgba(225, 55, 47, 0.52);
}

#emergency h2 {
  color: #fff;
  white-space: nowrap;
}

#emergency .section-heading p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.72);
}

#emergency .button-dark {
  color: #fff;
  background: linear-gradient(135deg, #ef3f37, #b91f1f);
  box-shadow:
    0 18px 38px rgba(225, 55, 47, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#emergency .button-dark:hover,
#emergency .button-dark:focus-visible {
  transform: translateY(-2px);
}

.legal-section {
  min-height: auto;
  padding-top: clamp(170px, 16vw, 220px);
  background:
    radial-gradient(circle at 74% 22%, rgba(249, 115, 22, 0.2), transparent 34%),
    var(--navy-section-bg);
}

.legal-shell {
  max-width: 920px;
}

.legal-shell h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.legal-updated {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.legal-content {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.legal-content li + li {
  margin-top: 10px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 24px;
}

.section-dark {
  color: #fff;
  background: var(--navy-section-bg);
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.zip-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

#pricing .cta-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 1fr);
}

.zip-heading img {
  width: clamp(72px, 8vw, 118px);
  flex: 0 0 auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
  transform: translateY(8px);
}

.section-dark .pricing-grid article {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.vetting-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.light-vetting {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.72);
  background: linear-gradient(135deg, var(--orange), var(--orange) 58%, #d94828);
}

.light-vetting div {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.32);
}

.vetting-card div {
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.member-verified-section {
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(249, 115, 22, 0.22), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(125, 92, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--navy), #111426 58%, #26192f);
}

.member-verified-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.member-verified-section .section-heading h2 {
  color: #fff;
}

.member-verified-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.member-trust-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(26, 26, 46, 0.68);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.member-trust-panel article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.member-trust-check {
  grid-row: span 2;
  align-self: start;
  margin-top: 2px;
}

.member-trust-panel h3,
.member-trust-panel p {
  margin: 0;
}

.member-trust-panel h3 {
  color: #fff;
  font-size: 1.14rem;
}

.member-trust-panel p {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.check {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), #59c96b);
}

.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.coverage-grid {
  align-items: start;
}

.zip-card {
  padding: 26px;
}

.zip-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #111426, #191a35 56%, #2a1934);
  color: #fff;
}

.zip-search span {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.zip-search strong {
  font-size: 2rem;
}

.zip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.coverage-section {
  background: #fff;
}

.mini-search {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.panel-result {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: var(--radius);
  background: rgba(249, 115, 22, 0.12);
}

.panel-result strong,
.panel-result span {
  display: block;
}

.contractor-preview-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contractor-preview-list div {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contractor-preview-list strong {
  font-size: 0.92rem;
}

.contractor-preview-list span {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.panel-result strong {
  margin-bottom: 3px;
}

.panel-result span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.emergency-card {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  transform: translate(-24px, 72px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.eyebrow-pulse {
  display: none;
}

.pulse-ring {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #c9242a;
  box-shadow:
    0 0 0 18px rgba(201, 36, 42, 0.14),
    0 0 0 40px rgba(201, 36, 42, 0.07),
    0 0 42px rgba(201, 36, 42, 0.42);
  animation: emergency-flash 1.1s steps(2, jump-none) infinite;
}

@keyframes emergency-flash {
  0%,
  49% {
    background: #c9242a;
    box-shadow:
      0 0 0 18px rgba(201, 36, 42, 0.14),
      0 0 0 40px rgba(201, 36, 42, 0.07),
      0 0 42px rgba(201, 36, 42, 0.42);
  }

  50%,
  100% {
    background: #2e8bff;
    box-shadow:
      0 0 0 18px rgba(46, 139, 255, 0.16),
      0 0 0 40px rgba(46, 139, 255, 0.08),
      0 0 42px rgba(46, 139, 255, 0.42);
  }
}

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

.pricing-grid article {
  min-height: 300px;
  padding: 26px;
}

.pricing-grid h3 {
  min-height: 58px;
}

.pricing-grid strong {
  display: block;
  margin: 8px 0 18px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
}

.pricing-grid p {
  color: var(--muted);
}

.section-dark .pricing-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.card-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-lead {
  outline: 2px solid rgba(249, 115, 22, 0.62);
  box-shadow: 0 22px 70px rgba(249, 115, 22, 0.18);
}

.contractor-navy-run {
  position: relative;
  overflow: hidden;
  background: var(--navy-section-bg);
}

.contractor-navy-run::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 92%, transparent 100%);
}

.contractor-navy-run::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 4%;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(249, 115, 22, 0.24) 0 2px, transparent 3px),
    conic-gradient(from 120deg, rgba(249, 115, 22, 0.24), rgba(46, 139, 255, 0.1), rgba(255, 255, 255, 0.02), rgba(249, 115, 22, 0.24));
  background-size: 34px 34px, auto;
  opacity: 0.38;
}

.contractor-navy-run > section {
  position: relative;
  z-index: 1;
}

.lead-visibility-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0 70px;
}

.lead-visibility-section::before {
  display: none;
}

.lead-visibility-section::after {
  display: none;
}

.lead-visibility-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(58px, 7vw, 120px);
  align-items: center;
}

.lead-visibility-copy {
  max-width: 560px;
}

.lead-visibility-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.3rem, 5.3vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead-visibility-copy h2 span {
  display: block;
}

.lead-visibility-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.55;
}

.lead-visibility-board {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(13, 16, 32, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 34px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.lead-board-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(249, 115, 22, 0.2), transparent 16%),
    radial-gradient(circle at 76% 28%, rgba(46, 139, 255, 0.18), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(104, 216, 167, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(28, 32, 52, 0.96), rgba(17, 20, 38, 0.94));
}

.lead-board-map::before {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 44px rgba(255, 255, 255, 0.025),
    inset 0 0 0 96px rgba(255, 255, 255, 0.018);
}

.lead-board-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 2px;
  transform: translate(-50%, -50%) rotate(-16deg);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.75), transparent);
  box-shadow: 0 0 34px rgba(249, 115, 22, 0.42);
}

.zip-node,
.lead-pro,
.lead-pulse {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.zip-node {
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: var(--orange);
  box-shadow:
    0 0 0 12px rgba(249, 115, 22, 0.18),
    0 0 60px rgba(249, 115, 22, 0.45);
}

.lead-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.34);
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 210px;
  height: 210px;
}

.ring-two {
  width: 330px;
  height: 330px;
  border-color: rgba(73, 214, 255, 0.2);
}

.lead-pro {
  width: 62px;
  height: 62px;
  color: #111426;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.pro-one {
  left: 20%;
  top: 24%;
}

.pro-two {
  right: 17%;
  top: 31%;
}

.pro-three {
  left: 28%;
  bottom: 18%;
}

.lead-pulse {
  right: 10%;
  bottom: 16%;
  min-width: 128px;
  height: 44px;
  padding: 0 18px;
  color: #fff;
  background: #cf2f22;
  box-shadow:
    0 0 0 10px rgba(207, 47, 34, 0.18),
    0 0 46px rgba(207, 47, 34, 0.34);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-mode-grid article {
  min-height: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.lead-mode-grid article::before {
  width: 42px;
  height: 5px;
}

.lead-mode-grid .card-label {
  margin-bottom: 18px;
  border-color: rgba(249, 115, 22, 0.45);
  color: #fff;
  background: rgba(249, 115, 22, 0.12);
}

.lead-mode-grid .featured-lead .card-label {
  border-color: rgba(207, 47, 34, 0.86);
  color: #fff;
  background: #cf2f22;
  box-shadow: 0 0 22px rgba(207, 47, 34, 0.28);
}

.lead-mode-grid h3 {
  min-height: 0;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.1rem;
}

.lead-mode-grid strong {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.lead-mode-grid p {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.46;
}

.lead-mode-grid .featured-lead::before {
  background: linear-gradient(90deg, #e1372f 0 48%, #f7f7ff 48% 52%, #2e8bff 52% 100%);
  box-shadow:
    0 0 18px rgba(225, 55, 47, 0.28),
    18px 0 22px rgba(46, 139, 255, 0.24);
}

.contractor-navy-run .section-dark,
.contractor-navy-run .contractor-app-section,
.contractor-navy-run .contractor-benefits-section {
  background: transparent;
}

.contractor-app-section {
  margin-top: -1px;
  padding: 72px 0 34px;
  background: var(--navy-section-bg);
  box-shadow: none;
}

.contractor-app-hero {
  display: flex;
  justify-content: flex-start;
}

.contractor-app-section .section-heading.compact {
  max-width: 1280px;
  text-align: left;
}

.contractor-app-section .section-heading.compact h2 {
  max-width: 1360px;
  margin-inline: 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.1vw, 4.85rem);
  line-height: 0.94;
}

.contractor-app-section .section-heading.compact h2 > span {
  display: block;
  white-space: nowrap;
}

.profile-heading-accent {
  color: var(--orange);
  white-space: nowrap;
}

.contractor-app-section .section-heading.compact > p:not(.eyebrow) {
  max-width: 980px;
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contractor-benefits-section {
  margin-top: -1px;
  padding: 0 0 52px;
  background: var(--navy-section-bg);
}

.contractor-benefits-grid {
  margin-top: 0;
}

.contractor-portal-grid {
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: 1fr;
}

.contractor-benefits-grid article {
  position: relative;
  overflow: hidden;
  outline: 2px solid transparent;
  border-color: rgba(249, 115, 22, 0.42);
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.3), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 194, 71, 0.3), transparent 32%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange) 48%, #df5421 100%);
  box-shadow: 0 28px 80px rgba(249, 115, 22, 0.26);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    outline-color 0.22s ease,
    transform 0.22s ease;
}

.contractor-portal-grid article {
  min-height: 250px;
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas: "visual content";
  column-gap: clamp(34px, 5vw, 76px);
  row-gap: 22px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border-color: rgba(255, 255, 255, 0.16);
  outline: 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(104, 216, 167, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(46, 139, 255, 0.15), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(13, 16, 32, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 34px 92px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.portal-card-visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.portal-card-content {
  grid-area: content;
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(18px, 2vw, 24px);
}

.portal-card-window {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
  margin: 0 auto;
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 247, 252, 0.96), rgba(235, 240, 248, 0.92)),
    rgba(244, 247, 252, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.portal-alert,
.portal-marketplace-mini,
.portal-company-mini {
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 20, 38, 0.1);
}

.portal-alert {
  padding: 12px 14px;
  border: 1px solid rgba(255, 194, 71, 0.62);
  color: #744118;
  background: #fff8e4;
  font-size: 0.9rem;
  font-weight: 900;
}

.portal-marketplace-mini {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(249, 115, 22, 0.24);
  background:
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.portal-mini-head,
.portal-lead-top,
.portal-pause-row {
  display: flex;
  align-items: center;
}

.portal-mini-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  padding: 13px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, #15172b 0%, #333747 100%);
  border-bottom: 3px solid var(--orange);
}

.portal-mini-head strong {
  color: #fff;
  font-size: 1.08rem;
}

.portal-mini-head .portal-mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.portal-mini-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.portal-lead-card {
  margin: 14px;
  padding: 16px;
  border: 1px solid rgba(249, 115, 22, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 20, 38, 0.08);
}

.portal-lead-top {
  justify-content: space-between;
  gap: 12px;
}

.portal-lead-top strong {
  font-size: 1rem;
}

.portal-lead-top span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #5e6879;
  background: #eef2f8;
  font-size: 0.78rem;
  font-weight: 900;
}

.portal-lead-card em {
  display: inline-flex;
  margin-top: 8px;
  padding: 3px 7px;
  border-radius: 6px;
  color: #315fde;
  background: rgba(49, 95, 222, 0.1);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.portal-lead-card p {
  margin: 7px 0 10px;
  color: #66748d;
  font-size: 0.86rem;
  font-weight: 800;
}

.portal-lead-meta {
  display: flex;
  gap: 8px;
  margin: 8px 0 8px;
}

.portal-lead-meta span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 8px 2px 0;
  border-radius: 999px;
  background: #9aa6ba;
}

.portal-lead-quote {
  color: #66748d;
  font-style: italic;
}

.portal-lead-details {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.portal-lead-card button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #111426, var(--navy));
  box-shadow: 0 12px 24px rgba(17, 20, 38, 0.18);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  pointer-events: none;
}

.portal-company-mini {
  display: grid;
  gap: 10px;
  padding: 13px 14px;
  border-left: 4px solid var(--mint);
}

.portal-company-mini strong {
  font-size: 0.92rem;
}

.portal-availability-row {
  gap: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #7a8597;
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #17823b;
  font-size: 0.9rem;
  font-weight: 900;
}

.portal-status-pill i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #17823b;
}

.portal-availability-row b {
  min-width: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(100, 114, 138, 0.24);
  border-radius: 6px;
  color: #64728a;
  background: #f7f9fc;
  text-align: center;
}

.portal-card-copy {
  max-width: 640px;
}

.portal-card-copy h3 {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: clamp(2.7rem, 4.4vw, 4.35rem);
  line-height: 0.96;
}

.portal-card-copy p {
  max-width: 620px;
  font-size: clamp(1.06rem, 1.3vw, 1.22rem);
  line-height: 1.48;
}

.portal-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.portal-feature-list span {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.94rem;
  font-weight: 800;
}

.contractor-portal-grid .portal-verify-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 560px);
  margin: 0 auto;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.3);
  font-size: 0.96rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contractor-portal-grid .portal-verify-cta:hover,
.contractor-portal-grid .portal-verify-cta:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(249, 115, 22, 0.36);
  filter: brightness(1.04);
}

.contractor-benefits-grid article:nth-child(2) {
  padding-right: clamp(32px, 8vw, 152px);
}

.contractor-portal-grid article:nth-child(2) {
  padding-right: 26px;
}

.contractor-benefits-grid article::before {
  width: 100%;
  height: 7px;
  background: #1a1a2e;
}

.contractor-benefits-grid article:nth-child(1)::before {
  background: var(--blue);
  box-shadow: 0 0 22px rgba(46, 139, 255, 0.34);
}

.contractor-benefits-grid article:nth-child(2)::before {
  background: linear-gradient(90deg, #ffd76a 0%, var(--gold) 45%, #f59e0b 100%);
  box-shadow: 0 0 22px rgba(255, 194, 71, 0.34);
}

.contractor-benefits-grid article:nth-child(3)::before {
  background: var(--mint);
  box-shadow: 0 0 22px rgba(104, 216, 167, 0.34);
}

.contractor-portal-grid article:nth-child(1)::before {
  display: none;
}

.contractor-portal-grid .card-label {
  border-color: rgba(104, 216, 167, 0.36);
  color: #fff;
  background: rgba(104, 216, 167, 0.12);
}

.contractor-portal-grid article:hover {
  border-color: rgba(255, 255, 255, 0.14);
  outline-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 34px 92px rgba(0, 0, 0, 0.28);
  transform: none;
}

.contractor-branded-app-teaser {
  padding: 0 0 88px;
  color: var(--navy);
  background: transparent;
}

.branded-app-teaser-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  padding: 24px 28px;
  border: 1px solid rgba(15, 18, 38, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.branded-app-teaser-shell h2 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.12;
}

.title-orange {
  color: var(--orange);
}

.branded-title-part {
  display: inline;
}

.branded-app-teaser-shell p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(15, 18, 38, 0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.branded-app-teaser-shell .button {
  flex: 0 0 auto;
  min-width: 252px;
  min-height: 54px;
  padding: 16px 24px;
  font-size: 0.98rem;
}

.contractor-branded-app-teaser .eyebrow,
.contractor-branded-app-teaser h2,
.contractor-branded-app-teaser p {
  position: relative;
  z-index: 1;
}

.contractor-branded-app-teaser h2 {
  color: var(--navy);
}

.contractor-branded-app-teaser p:not(.eyebrow) {
  color: rgba(15, 18, 38, 0.68);
}

.contractor-portal-grid .portal-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.contractor-portal-grid .portal-feature-list span {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
}

.contractor-portal-grid .portal-card-window,
.contractor-portal-grid .portal-card-window strong {
  color: var(--navy);
}

.contractor-portal-grid .portal-mini-head strong {
  color: #fff;
}

.contractor-portal-grid .portal-mini-head .portal-mini-chip {
  color: var(--navy);
}

.contractor-portal-grid .portal-card-window p {
  color: #66748d;
}

.contractor-portal-grid .portal-lead-quote {
  color: #66748d;
}

.contractor-portal-grid .portal-lead-details {
  color: #66748d;
}

.contractor-portal-grid .portal-status-pill {
  color: #17823b;
}

.contractor-benefits-grid .portal-card-copy h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.95;
}

.contractor-benefits-grid .portal-card-copy p {
  max-width: 620px;
  font-size: clamp(1.12rem, 1.42vw, 1.34rem);
  line-height: 1.45;
}

.white-label-benefits-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.white-label-run .contractor-centered-heading h2 {
  color: #fff;
}

.white-label-run .contractor-centered-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contractor-benefits-grid article:hover {
  outline-color: rgba(249, 115, 22, 0.62);
  border-color: rgba(249, 115, 22, 0.38);
  box-shadow: 0 22px 70px rgba(249, 115, 22, 0.18);
  transform: translateY(-4px);
}

.contractor-benefits-grid.contractor-portal-grid article,
.contractor-benefits-grid.contractor-portal-grid article:hover {
  border-color: rgba(255, 255, 255, 0.16);
  outline-color: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 34px 92px rgba(0, 0, 0, 0.28);
  transform: none;
}

.contractor-benefits-grid .card-label {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.32);
  color: #1a1a2e;
  background: rgba(255, 255, 255, 0.9);
}

.contractor-benefits-grid article p,
.contractor-benefits-grid article h3,
.contractor-benefits-grid article strong {
  position: relative;
  z-index: 1;
  color: #fff;
}

.contractor-benefits-grid article h3 {
  position: relative;
  z-index: 1;
  min-height: 0;
  font-size: clamp(1.75rem, 2vw, 2.35rem);
  line-height: 1.05;
}

.benefit-card-star {
  position: absolute;
  right: clamp(18px, 2.2vw, 34px);
  top: 70px;
  z-index: 0;
  width: clamp(112px, 10vw, 168px);
  opacity: 0.3;
  filter: drop-shadow(0 18px 26px rgba(26, 26, 46, 0.22));
  pointer-events: none;
}

.cta-section {
  padding: 108px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 194, 71, 0.22), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(73, 214, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #fff5eb, #f2fbff 58%, #f7f2ff);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(17, 19, 24, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 14px;
  color: var(--ink);
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17, 19, 24, 0.7) 50%),
    linear-gradient(135deg, rgba(17, 19, 24, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.tail-light-section {
  position: relative;
  margin-top: -1px;
  min-height: clamp(540px, 58vw, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.tail-light-section::before,
.tail-light-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tail-light-section::before {
  background:
    linear-gradient(180deg, rgba(17, 20, 38, 1) 0%, rgba(17, 20, 38, 0.7) 84px, rgba(0, 0, 0, 0.18) 210px, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.48) 22%, rgba(26, 26, 46, 0.08) 58%, rgba(0, 0, 0, 0.64) 100%);
}

.tail-light-section::after {
  background:
    radial-gradient(circle at 66% 58%, rgba(249, 115, 22, 0.28), transparent 24%),
    radial-gradient(circle at 18% 74%, rgba(249, 115, 22, 0.18), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.tail-light-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tail-light-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.08) brightness(0.74);
}

.tail-light-copy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  padding: clamp(104px, 12vw, 170px) 0 clamp(54px, 7vw, 92px);
  text-align: left;
}

.tail-light-copy .eyebrow {
  margin-bottom: 18px;
  color: var(--orange);
  text-shadow: none;
  animation: tail-light-eyebrow-fade 2.8s ease-in-out infinite;
}

.tail-light-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(3rem, 5.35vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
}

.tail-light-copy h2 span {
  display: block;
  white-space: nowrap;
}

.tail-light-copy h2 span:last-child {
  color: var(--orange);
}

.tail-light-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 78px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.tail-light-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tail-light-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(26, 26, 46, 0.48);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  backdrop-filter: blur(14px);
}

@keyframes tail-light-eyebrow-fade {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 1;
  }
}

.site-footer {
  background: #1a1a2e;
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 4vw, 72px);
}

.footer-brand {
  max-width: 520px;
}

.footer-brand img {
  width: 220px;
  margin-bottom: 16px;
}

.footer-brand p,
.footer-copy,
.footer-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 6px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.84rem, 0.78vw, 0.95rem);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .brand img {
    height: 104px;
    max-width: 330px;
  }

  .nav-links,
  .phone-link,
  .nav-actions > .button {
    display: none;
  }

  .nav-actions {
    justify-content: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    z-index: 19;
    display: grid;
    gap: 10px;
    pointer-events: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    opacity: 0;
    transform: translate3d(0, -22px, 0) scaleY(0.94);
    transform-origin: top center;
    visibility: hidden;
    clip-path: inset(0 0 100% 0 round var(--radius));
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 260ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 260ms;
  }

  body.menu-open .mobile-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
    visibility: visible;
    clip-path: inset(0 0 0 0 round var(--radius));
    transition-delay: 0s;
  }

  .mobile-menu a {
    padding: 15px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 850;
  }

  .mobile-menu a:hover {
    background: rgba(17, 19, 24, 0.05);
  }

  .mobile-menu a[href*="login"],
  .mobile-menu a[href*="submit-a-project"] {
    margin-top: 6px;
    border: 1px solid rgba(249, 115, 22, 0.22);
    font-weight: 950;
  }

  .mobile-menu a[href*="login"] {
    background: rgba(17, 20, 38, 0.04);
  }

  .mobile-menu a[href*="submit-a-project"] {
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.24);
  }

  .mobile-menu a[href*="submit-a-project"]:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  }

  .mobile-menu a.mobile-menu-cta {
    margin-top: 4px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
  }

  .mobile-menu a.mobile-menu-cta:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange) 45%, var(--red));
  }

  .hero {
    min-height: auto;
  }

  .map-network {
    right: -26%;
    width: 980px;
    opacity: 0.56;
  }

  .hero-map-image {
    object-position: 66% 50%;
  }

  .network-card {
    display: none;
  }

  .network-ping {
    width: 76px;
  }

  .sonar-beacon {
    right: 8vw;
    top: 220px;
    width: 70px;
    opacity: 0.72;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17, 20, 38, 0.98) 0%, rgba(17, 20, 38, 0.94) 54%, rgba(17, 20, 38, 0.82) 100%),
      linear-gradient(90deg, rgba(17, 20, 38, 1) 0%, rgba(17, 20, 38, 0.9) 58%, rgba(17, 20, 38, 0.5) 100%),
      radial-gradient(circle at 88% 72%, rgba(249, 115, 22, 0.16), transparent 32%);
  }

  .trades-stage {
    grid-template-columns: 1fr;
  }

  .trades-stat {
    min-height: 0;
  }

  .trades-page-section .trades-heading h1 {
    white-space: normal;
  }

  .trade-cloud {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trade-missing-card {
    grid-column: 3 / -1;
  }

  .hero-grid,
  .split-grid,
  .contractor-grid,
  .member-verified-grid,
  .coverage-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  #verified .contractor-grid {
    grid-template-columns: 1fr;
  }

  #verified .vetting-card {
    grid-template-columns: 1fr;
  }

  #emergency .split-grid {
    grid-template-columns: 1fr;
  }

  #emergency h2 {
    white-space: normal;
  }

  .match-panel {
    max-width: 520px;
  }

  .metrics,
  .process-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .lead-visibility-shell {
    grid-template-columns: 1fr;
  }

  .lead-visibility-copy {
    max-width: 760px;
  }

  .lead-visibility-copy h2 {
    max-width: 760px;
  }

  .split-heading h2 span {
    white-space: normal;
  }

  .pricing-grid article.featured-lead {
    grid-column: span 2;
  }

  .contractor-portal-grid article {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
  }

  .branded-app-teaser-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero.white-label-hero .hero-grid.white-label-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .white-label-hero .hero-copy {
    max-width: 720px;
  }

  .white-label-support-grid {
    grid-template-columns: 1fr;
  }

  .white-label-support-card {
    min-height: 0;
  }

  .white-label-podcast-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    transform: none;
  }

  .white-label-podcast-media {
    min-height: 520px;
    padding-top: 92px;
    margin-left: 0;
  }

  .white-label-podcast-logo {
    left: clamp(20px, 8vw, 70px);
    top: 42px;
    width: clamp(108px, 22vw, 160px);
  }

  .white-label-podcast-studio {
    width: 100%;
    height: 310px;
    bottom: 0;
  }

  .white-label-podcast-reel {
    top: 54px;
    right: clamp(12px, 6vw, 58px);
    width: min(320px, 47%);
    min-height: 390px;
  }

  .white-label-portal-grid {
    grid-template-columns: 1fr;
  }

  .white-label-portal-card {
    min-height: 0;
  }

  .white-label-hero-visual {
    width: min(100%, 620px);
    min-height: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    top: 8px;
  }

  .nav-shell {
    width: calc(100% - 20px);
    min-height: 76px;
    padding: 6px 8px 6px 10px;
  }

  .brand img {
    height: 42px;
    max-width: 180px;
    transform: translateY(3px);
  }

  .branded-title-part {
    display: block;
  }

  .branded-app-teaser-shell h2 {
    white-space: normal;
  }

  .hero {
    padding: 96px 0 42px;
  }

  .home-hero {
    padding-top: 108px;
  }

  .white-label-hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 34px;
  }

  .hero.white-label-hero .hero-grid.white-label-hero-grid {
    width: min(100% - 20px, 1180px);
    gap: 0;
  }

  .white-label-hero .hero-copy {
    align-content: start;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 24px;
    transform: none;
  }

  .white-label-hero .eyebrow {
    font-size: 0.88rem;
  }

  .white-label-support-section {
    padding: 42px 0 38px;
  }

  .white-label-support-shell {
    gap: 16px;
  }

  .white-label-support-heading {
    gap: 8px;
    justify-content: flex-start;
    text-align: left;
  }

  .white-label-support-heading .eyebrow {
    flex-basis: 100%;
  }

  .white-label-support-heading h2 {
    max-width: 360px;
    font-size: clamp(1.65rem, 7.6vw, 2.2rem);
    line-height: 1.02;
    white-space: normal;
  }

  .white-label-support-heading::after {
    flex-basis: min(210px, 56vw);
    flex-grow: 0;
  }

  .white-label-support-grid {
    gap: 12px;
  }

  .white-label-support-card {
    gap: 10px;
    min-height: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .white-label-support-card span {
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .white-label-support-card h3 {
    font-size: clamp(1.15rem, 5.6vw, 1.52rem);
    line-height: 1.06;
  }

  .white-label-support-card ul {
    gap: 8px;
    min-height: 0;
  }

  .white-label-support-card li {
    padding-left: 18px;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .white-label-support-card li::before {
    width: 7px;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
  }

  .white-label-support-card strong {
    padding-top: 4px;
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .white-label-podcast-section {
    height: 790px;
    padding: 12px 0 18px;
  }

  .white-label-podcast-section::after {
    width: 136px;
  }

  .white-label-podcast-shell {
    gap: 10px;
  }

  .white-label-podcast-copy {
    display: contents;
  }

  .white-label-podcast-copy .eyebrow {
    order: 1;
  }

  .white-label-podcast-copy h2 {
    order: 2;
    font-size: clamp(1.58rem, 6.3vw, 2.05rem);
    line-height: 1.06;
    width: 100%;
    margin-bottom: 0;
  }

  .white-label-podcast-copy h2 span {
    white-space: nowrap;
  }

  .white-label-podcast-intro {
    order: 3;
    margin: -2px 0 0;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .white-label-podcast-panel {
    order: 5;
    position: relative;
    gap: 12px;
    z-index: 5;
    width: min(88%, 270px);
  margin: -104px 0 0 0;
    padding: 11px;
    border-radius: 16px;
    box-shadow:
      0 22px 54px rgba(17, 20, 38, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .white-label-podcast-panel ul {
    gap: 6px;
  }

  .white-label-podcast-panel li {
    padding-left: 20px;
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .white-label-podcast-panel li::before {
    width: 8px;
    box-shadow: 0 0 0 5px rgba(184, 91, 35, 0.12);
  }

  .white-label-podcast-media {
    order: 4;
    display: block;
    width: min(100%, 248px);
    margin-inline: auto;
    min-height: 0;
    padding-top: 2px;
  }

  .white-label-podcast-studio {
    display: none;
  }

  .white-label-podcast-logo {
    position: absolute;
    left: auto;
    right: 10px;
    top: 12px;
    z-index: 4;
    width: 54px;
    margin-top: 0;
  }

  .white-label-podcast-reel {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 242px;
    margin: 0;
    border-radius: 16px;
  }

  .white-label-podcast-embed {
    min-height: 242px;
  }

  .white-label-portal-section {
    padding: 24px 0 92px;
    background:
      linear-gradient(154deg, #111426 0 58%, #1a1a2e 58% 78%, #111426 78% 100%);
  }

  .white-label-portal-section::after {
    height: 130px;
  }

  .white-label-portal-shell {
    width: min(100% - 30px, 520px);
  }

  .white-label-command-center {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portal-command-copy {
    gap: 8px;
  }

  .portal-command-copy h2 {
    max-width: 330px;
    font-size: clamp(1.76rem, 8.6vw, 2.55rem);
    line-height: 0.95;
  }

  .portal-command-copy p:last-child {
    max-width: 330px;
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .portal-command-screen {
    width: min(100%, 318px);
    justify-self: center;
    height: clamp(340px, 88vw, 390px);
    min-height: 0;
    border-radius: 16px;
  }

  .portal-screen-body {
    display: block;
    height: 100%;
  }

  .portal-screen-nav {
    width: 100%;
    gap: 4px;
    padding: 4px;
  }

  .portal-screen-nav button {
    flex: 1;
    min-width: 0;
    height: 32px;
    padding: 0 6px;
    border-radius: 999px;
  }

  .portal-screen-nav button span {
    width: auto;
    font-size: 0.62rem;
  }

  .portal-screen-main {
    gap: 8px;
    padding: 10px 8px;
    height: 100%;
    background-size: auto, 28px 28px, 28px 28px;
  }

  .portal-leads-title {
    font-size: clamp(1.22rem, 6.2vw, 1.62rem);
  }

  .portal-tab-panel[data-portal-panel="marketplace"] .portal-leads-title {
    font-size: clamp(1.22rem, 6.2vw, 1.62rem);
  }

  .portal-live-feed {
    gap: 6px;
  }

  .portal-live-feed div {
    grid-template-columns: 1fr auto;
    gap: 4px 8px;
    padding: 7px 9px;
    border-radius: 12px;
  }

  .portal-live-feed b {
    font-size: 0.74rem;
  }

  .portal-live-feed b,
  .portal-live-feed span {
    grid-column: 1 / -1;
  }

  .portal-live-feed span {
    font-size: 0.68rem;
  }

  .portal-live-feed small {
    font-size: 0.66rem;
  }

  .portal-live-feed em {
    padding: 5px 8px;
    font-size: 0.56rem;
  }

  .portal-marketplace-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .portal-marketplace-actions span {
    min-height: 42px;
    padding: 8px 8px 8px 27px;
    border-radius: 11px;
    font-size: 0.62rem;
    line-height: 1.12;
  }

  .portal-marketplace-actions span::before {
    left: 11px;
    top: 14px;
    width: 6px;
  }

  .portal-panel-kicker {
    padding: 5px 8px;
    font-size: 0.5rem;
  }

  .portal-marketplace-copy {
    font-size: 0.68rem;
    line-height: 1.24;
  }

  .portal-command-strip {
    grid-template-columns: 1fr;
  }

  .portal-command-strip article {
    padding: 13px;
  }

  .portal-command-strip article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .portal-command-footer {
    font-size: 1.06rem;
    line-height: 1.18;
  }

  .portal-command-footer span {
    display: block;
  }

  .white-label-program-summary {
    padding: 32px 0 38px;
  }

  .program-summary-shell {
    gap: 20px;
  }

  .program-summary-heading {
    gap: 10px;
  }

  .program-summary-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.28rem);
    line-height: 1;
  }

  .program-summary-card {
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .program-summary-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .program-summary-list li {
    min-height: 20px;
    padding-left: 22px;
    font-size: 0.88rem;
  }

  .program-summary-list li::before {
    width: 9px;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.13);
  }

  .program-summary-price {
    gap: 7px;
    font-size: 0.95rem;
  }

  .program-summary-price strong {
    font-size: 1.28rem;
  }

  .program-summary-cta {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .white-label-hero h1 {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    font-size: clamp(1.46rem, 5.65vw, 2.18rem);
    line-height: 1.04;
  }

  .white-label-hero .hero-text {
    font-size: 1.1rem;
    line-height: 1.42;
    padding: 0;
    background: transparent;
  }

  .white-label-hero .hero-actions {
    width: 100%;
    margin-top: 22px;
    gap: 12px;
  }

  .white-label-hero .hero-actions .button {
    min-height: 64px;
    font-size: 1.04rem;
  }

  .white-label-hero-visual {
    width: min(100%, 270px);
    height: 545px;
    min-height: 0;
    margin-top: 8px;
    overflow: visible;
    transform: translate3d(0, 18px, 0) scale(0.985);
    animation: white-label-visual-in-mobile 0.88s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  }

  .white-label-app-launcher {
    align-items: center;
    justify-content: flex-start;
    padding-top: 14px;
    animation: none;
  }

  .white-label-app-card {
    width: min(100%, 286px);
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale3d(0.2, 0.2, 1);
    transform-origin: center;
    animation-name: white-label-app-open-mobile;
    animation-duration: 0.82s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 4.4s;
    animation-fill-mode: forwards;
  }

  .white-label-app-top {
    min-height: 68px;
    padding: 15px 17px;
  }

  .white-label-app-name {
    max-width: 184px;
    font-size: 0.92rem;
  }

  .white-label-app-logo-mark {
    width: 58px;
    border-radius: 12px;
  }

  .white-label-app-body {
    gap: 10px;
    padding: 14px;
  }

  .white-label-request-card {
    gap: 7px;
    padding: 14px;
  }

  .white-label-request-card strong {
    font-size: 1.02rem;
  }

  .white-label-request-card span,
  .white-label-status-row span,
  .white-label-status-row strong {
    font-size: 0.82rem;
  }

  .white-label-request-card em {
    padding: 6px 10px;
  }

  .white-label-status-row {
    padding: 11px 12px;
  }

  .white-label-app-body button {
    min-height: 46px;
  }

  .white-label-app-launcher {
    gap: 12px;
  }

  .white-label-store-badges {
    --white-label-store-x: 0;
    left: calc(50% - 132px);
    top: 0;
    width: min(118px, 32vw);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }

  .white-label-launcher-tile {
    width: min(100%, 246px);
    min-height: 270px;
    margin-inline: auto;
    padding: 16px;
    border-radius: 22px;
    animation-name: white-label-launcher-clean;
    animation-duration: 0.76s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    animation-delay: 0.38s;
    animation-fill-mode: forwards;
  }

  .white-label-launcher-tile img {
    width: 142px;
    padding: 0;
    border-radius: 22px;
    background: transparent;
    transform-origin: center;
  }

  .white-label-launcher-caption {
    width: min(100vw - 42px, 360px);
    margin-top: 24px;
    font-size: clamp(0.96rem, 4.3vw, 1.18rem);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .white-label-branding-chip {
    left: auto;
    right: -8px;
    top: 244px;
    max-width: 128px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 0.62rem;
  }

  .white-label-orbit-card {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 286px);
    margin: 10px auto 0;
    padding: 0;
    animation-delay: 0.38s;
  }

  .white-label-orbit-card span {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .branded-mobile-app-section {
    padding: 54px 0 34px;
  }

  .branded-mobile-app-shell {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    border-radius: 18px;
  }

  .branded-mobile-app-copy {
    gap: 0;
  }

  .branded-mobile-app-owned {
    font-size: clamp(1.2rem, 7.2vw, 2rem);
    line-height: 1.12;
  }

  .section.white-label-pricing-intro-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .white-label-pricing-intro-section::after {
    bottom: -15px;
    width: min(96vw, 560px);
    height: 30px;
    background: linear-gradient(90deg, transparent 0, var(--orange) 8%, #ff9a3d 50%, var(--orange) 92%, transparent 100%);
    background-size: 100% 3px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .white-label-pricing-intro {
    padding: 0;
  }

  .white-label-matters-copy {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .white-label-matters-copy h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: clamp(1.35rem, 6.7vw, 1.9rem);
    line-height: 1.02;
  }

  .white-label-matters-copy h2 span {
    white-space: normal;
  }

  .white-label-matters-copy p {
    max-width: 350px;
    margin-inline: auto;
    padding-left: 0;
    padding-top: 10px;
    border-left: 0;
    border-top: 2px solid var(--orange);
    font-size: clamp(0.88rem, 3.65vw, 1rem);
    line-height: 1.28;
  }

  .white-label-pricing-glance-section {
    padding-top: 46px;
    padding-bottom: 44px;
  }

  .white-label-pricing-glance {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    text-align: center;
  }

  .white-label-pricing-glance h2 {
    max-width: 360px;
    font-size: clamp(1.45rem, 6.8vw, 2rem);
  }

  .white-label-pricing-glance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .white-label-pricing-glance-grid article {
    min-height: 118px;
    padding: 14px 8px;
    border-radius: 16px;
  }

  .white-label-pricing-glance-grid strong {
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .white-label-pricing-glance-grid span {
    max-width: 13ch;
    font-size: 0.68rem;
    line-height: 1.16;
  }

  .home-hero .hero-map-image {
    left: 0;
    width: 100%;
    object-position: center top;
    opacity: 1;
  }

  .map-network {
    right: -66%;
    top: 46px;
    width: 760px;
    opacity: 0.38;
  }

  .hero-map-image {
    object-position: 66% 50%;
    opacity: 0.9;
  }

  .zip-hub {
    display: none;
  }

  .network-orbit,
  .network-route {
    opacity: 0.06;
  }

  .network-ping {
    width: 58px;
  }

  .network-ping i {
    width: 16px;
    border-width: 3px;
  }

  .ping-emergency {
    width: 62px;
  }

  .sonar-beacon {
    right: -4px;
    top: 152px;
    width: 54px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.05rem);
  }

  .contractor-hero h1 {
    width: auto;
    max-width: 100%;
  }

  .contractor-hero .hero-copy {
    transform: none;
  }

  .contractor-title-main {
    white-space: normal;
  }

  h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.72rem);
  }

  .zip-heading {
    gap: 12px;
    white-space: normal;
  }

  .zip-heading img {
    width: 64px;
    transform: translateY(4px);
  }

  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .metrics,
  .process-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trade-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .trades-page-section {
    padding-top: 292px;
  }

  .trades-page-section .trades-shell {
    padding-top: 46px;
  }

  .trades-page-section .trades-heading .eyebrow {
    display: block;
    margin-top: 0;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .trades-stat,
  .trades-page-cta {
    grid-template-columns: 1fr;
  }

  .trades-stat {
    align-items: flex-start;
  }

  .trades-stat span {
    text-align: left;
  }

  .trades-stat-button {
    width: 100%;
  }

  .trades-page-cta .button {
    width: 100%;
  }

  .trade-card,
  .trade-card-featured {
    min-height: 104px;
    grid-column: auto;
    grid-row: auto;
  }

  .trade-missing-card {
    grid-column: 1 / -1;
    min-height: 124px;
  }

  .trade-missing-card a {
    width: 100%;
  }

  .trade-card-featured span {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .trades-heading {
    margin-bottom: 30px;
  }

  .trade-submit-section {
    min-height: auto;
    padding: 430px 0 72px;
  }

  .trade-submit-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trade-submit-copy {
    padding-top: 48px;
  }

  .trade-submit-copy .trade-submit-eyebrow {
    display: block;
    margin: 0 0 26px;
    font-size: 0.82rem;
  }

  .trade-submit-copy h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .trade-submit-card .contact-form {
    padding: 20px;
  }

  .metrics {
    width: min(100% - 28px, 1180px);
  }

  .lead-visibility-section {
    padding: 54px 0 58px;
  }

  .lead-visibility-shell {
    width: min(100% - 20px, 1180px);
    gap: 18px;
  }

  .lead-visibility-copy h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.55rem);
  }

  .lead-board-map {
    min-height: 260px;
  }

  .lead-mode-grid {
    grid-template-columns: 1fr;
  }

  .contractor-benefits-grid article:nth-child(2) {
    padding-right: 22px;
  }

  .benefit-card-star {
    right: 14px;
    top: 42px;
    width: 118px;
    opacity: 0.22;
  }

  .pricing-grid article.featured-lead {
    grid-column: auto;
  }

  .metrics div {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section,
  .cta-section {
    padding: 54px 0;
  }

  .split-grid,
  .contractor-grid,
  .coverage-grid,
  .cta-grid {
    gap: 24px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .pricing-grid article,
  .process-grid article {
    min-height: auto;
  }

  .pricing-grid h3 {
    min-height: auto;
  }

  .pricing-grid strong {
    font-size: 2.28rem;
  }

  .home-hero {
    min-height: 680px;
    padding-bottom: 46px;
  }

  .home-hero .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 16, 32, 0.2) 0%, rgba(13, 16, 32, 0.58) 38%, rgba(13, 16, 32, 0.96) 100%),
      radial-gradient(circle at 52% 78%, rgba(249, 115, 22, 0.2), transparent 34%);
  }

  .contractor-hero {
    min-height: 680px;
    padding-bottom: 46px;
  }

  .contractor-hero h1 {
    max-width: min(100%, 680px);
    font-size: clamp(3.2rem, 12vw, 4.85rem);
    line-height: 0.88;
  }

  .contractor-hero .contractor-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.28rem, 9vw, 3.72rem);
    line-height: 1.02;
  }

  .contractor-hero .contractor-title-main {
    white-space: nowrap;
  }

  .contractor-hero .contractor-need-line {
    margin-top: 14px;
    font-size: 1.04em;
    white-space: nowrap;
  }

  .hero-actions {
    justify-content: center;
  }

  .home-hero .hero-actions,
  .contractor-hero .hero-actions {
    width: auto;
  }

  .home-hero .hero-actions .button,
  .contractor-hero .hero-actions .button {
    width: auto;
    min-width: min(100%, 188px);
    padding-inline: 18px;
  }

  .contractor-app-section {
    padding: 24px 0 10px;
  }

  .contractor-app-section .section-heading.compact h2 {
    font-size: clamp(2.35rem, 9.8vw, 3.35rem);
  }

  .contractor-app-section .section-heading.compact h2 > span {
    white-space: normal;
  }

  .profile-heading-accent {
    white-space: normal;
  }

  .contractor-benefits-section {
    padding-top: 0;
    padding-bottom: 42px;
  }

  .contractor-portal-grid {
    width: min(100% - 20px, 1180px);
  }

  .contractor-portal-grid article {
    min-height: 0;
    gap: 22px;
  }

  .portal-card-window {
    width: min(100%, 440px);
    min-height: 190px;
    padding: 18px;
  }

  .contractor-portal-grid .portal-verify-cta {
    width: min(100%, 440px);
  }

  .portal-feature-list span {
    min-height: 46px;
  }

  .contractor-branded-app-teaser {
    padding-bottom: 62px;
  }

  .branded-app-teaser-shell {
    width: min(100% - 20px, 1180px);
    padding: 24px 20px;
  }

  .branded-app-teaser-shell .button {
    width: 100%;
  }

  .tail-light-section {
    min-height: auto;
    align-items: flex-start;
  }

  .tail-light-copy {
    padding-top: 50px;
    padding-bottom: 72px;
  }

  .tail-light-copy h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.1vw, 3rem);
    line-height: 0.94;
  }

  .tail-light-copy > p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 92px;
    font-size: clamp(1rem, 4.65vw, 1.22rem);
    line-height: 1.28;
  }

  .member-hero .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contractor-hero .hero-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .member-hero .hero-actions > .button,
  .member-hero .hero-secondary-cta .button,
  .contractor-hero .hero-actions .button {
    min-height: 78px;
    font-size: clamp(1.12rem, 4.3vw, 1.35rem);
  }

  .tail-light-section::before {
    background:
      linear-gradient(180deg, rgba(17, 20, 38, 1) 0%, rgba(17, 20, 38, 0.66) 56px, rgba(0, 0, 0, 0.18) 132px, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.8) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.44) 24%, rgba(26, 26, 46, 0.1) 62%, rgba(0, 0, 0, 0.68) 100%);
  }

  .tail-light-image img {
    object-position: 64% center;
  }

  .home-hero .hero-grid {
    width: min(100% - 28px, 1180px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-hero .hero-copy {
    width: min(100%, 460px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-hero h1 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 46px;
    font-size: clamp(1.58rem, 6.45vw, 2.16rem);
    line-height: 1.03;
    text-align: center;
  }

  .home-title-art-heading {
    width: min(100%, 390px);
    max-width: 100%;
    margin: 0 auto 38px;
  }

  .home-hero .hero-title-main,
  .home-hero .hero-title-accent {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-hero .hero-title-accent {
    width: 100%;
    max-width: 100%;
    font-size: inherit;
    white-space: nowrap;
    overflow-wrap: normal;
    text-align: center;
  }

  .home-hero .home-title-kicker {
    font-size: inherit;
    white-space: nowrap;
  }

  .home-hero .hero-text {
    max-width: 26rem;
    margin-inline: auto;
    font-size: 1.02rem;
    line-height: 1.36;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 390px);
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .home-hero .hero-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .metrics {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics div {
    min-height: 96px;
    padding: 16px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .metrics div:nth-child(2n) {
    border-right: 0;
  }

  .metrics div:nth-child(n+3) {
    border-bottom: 0;
  }

  .metrics strong {
    font-size: 1.04rem;
  }

  .metrics span {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .process-grid,
  .pricing-grid,
  .feature-list,
  .member-features-section .process-grid {
    gap: 12px;
  }

  .process-grid article,
  .member-features-section .process-grid article,
  .feature-list article,
  .zip-card,
  .pricing-grid article,
  .contractor-lead-card,
  .vetting-card {
    padding: 18px 18px 20px;
    min-height: auto;
  }

  .process-grid article,
  .member-features-section .process-grid article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    align-items: center;
  }

  .process-grid article::before,
  .feature-list article::before,
  .pricing-grid article::before {
    grid-column: 1 / -1;
    width: 34px;
    height: 4px;
    margin-bottom: 12px;
  }

  .process-grid span {
    grid-column: 1;
    grid-row: 2;
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    font-size: 0.92rem;
  }

  .process-grid h3,
  .member-features-section .process-grid h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 1.04rem;
  }

  .process-grid p,
  .member-features-section .process-grid p {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .process-grid p,
  .member-features-section .process-grid p,
  .feature-list p,
  .zip-card p,
  .pricing-grid p,
  .contractor-lead-card p {
    font-size: 0.92rem;
    line-height: 1.34;
  }

  .member-hero {
    margin-bottom: -58px;
    padding-bottom: 106px;
    border-bottom-right-radius: 50% 5%;
    border-bottom-left-radius: 50% 5%;
  }

  .member-hero .hero-grid {
    padding-top: 72px;
  }

  .member-hero h1 {
    max-width: min(calc(100% - 150px), 330px);
    margin-bottom: 72px;
    font-size: clamp(2.22rem, 8.55vw, 3.34rem);
    line-height: 1.02;
  }

  .member-hero .hero-text {
    max-width: 100%;
    font-size: clamp(1rem, 4vw, 1.14rem);
    line-height: 1.42;
  }

  .member-hero .hero-copy > .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0s;
  }

  .member-phone-sequence {
    top: 108px;
    right: 28px;
    z-index: 4;
    width: clamp(124px, 33vw, 146px);
  }

  .member-phone-services {
    inset: 38px 10px 12px;
    gap: 8px;
  }

  .member-phone-services > p {
    font-size: 0.72rem;
    text-shadow: none;
  }

  .member-phone-services > div {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
    gap: 6px;
  }

  .member-phone-services span {
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 5px;
    border-radius: 10px;
    font-size: 0.5rem;
    line-height: 0.96;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .member-phone-services span:nth-child(n+5) {
    display: none;
  }

  .member-how-section .member-how-grid {
    gap: 0;
    padding: 10px;
    margin-top: 34px;
  }

  .member-how-section {
    padding-top: 158px;
    padding-bottom: 116px;
  }

  .member-how-section::before {
    display: none;
  }

  .member-how-section::after {
    height: 220px;
  }

  .member-how-section .member-how-grid::before {
    display: none;
  }

  .member-how-section .member-how-grid article {
    display: block;
    padding: 22px 20px 24px;
    min-height: auto;
  }

  .member-how-section .member-how-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .member-how-section .member-how-grid span {
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px rgba(11, 16, 32, 0.9);
  }

  .member-how-section .member-how-grid h3 {
    margin-bottom: 7px;
    font-size: 1.18rem;
  }

  .member-how-section .member-how-grid p {
    max-width: none;
  }

  .member-how-section .member-how-grid article::after {
    left: 88px;
    right: 50px;
  }

  .member-how-section .member-how-grid article:nth-child(3)::after {
    right: 50px;
  }

  .member-features-section .process-grid {
    gap: 0;
    padding: 0;
  }

  .member-features-section .process-grid::after {
    display: none;
  }

  .member-features-section .process-grid article {
    display: block;
    min-height: auto;
    padding: 24px 20px 26px;
  }

  .member-features-section .process-grid article + article {
    border-top: 1px solid rgba(17, 20, 38, 0.08);
    border-left: 0;
  }

  .member-features-section .process-grid article::before {
    width: 42px;
    margin-bottom: 18px;
  }

  .member-features-section .process-grid span {
    display: none;
    margin-bottom: 18px;
  }

  .member-features-section .process-grid .feature-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.04);
  }

  .member-features-section .process-grid .feature-mark::before {
    width: 13px;
    height: 7px;
    border-bottom-width: 2px;
    border-left-width: 2px;
  }

  .member-features-section .process-grid h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
  }

  .member-features-section .process-grid p {
    max-width: none;
  }

  .member-phone-screen > p {
    right: 14px;
    bottom: 34px;
    left: 14px;
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .member-phone-screen {
    inset: 5.4% 10.5% 1.4%;
    border-radius: 22px 22px 18px 18px;
  }

  .member-phone-zip {
    top: 50%;
    left: 50%;
    right: auto;
    width: 100%;
    gap: 12px;
  }

  .member-phone-zip p {
    font-size: 0.86rem;
  }

  .member-phone-zip div {
    gap: 4px;
  }

  .member-phone-zip span {
    width: 17px;
    border-radius: 5px;
    font-size: 0.96rem;
  }

  .member-wifi {
    top: 33%;
    width: 82px;
    height: 56px;
  }

  .member-wifi span {
    border-top-width: 8px;
  }

  .member-wifi span:nth-child(1) {
    width: 82px;
    height: 42px;
  }

  .member-wifi span:nth-child(2) {
    top: 21px;
    width: 56px;
    height: 29px;
  }

  .member-wifi span:nth-child(3) {
    top: 40px;
    width: 31px;
    height: 17px;
  }

  .member-wifi i {
    top: 54px;
    width: 13px;
    height: 13px;
  }

  .pricing-grid strong,
  .contractor-lead-card strong {
    font-size: 1.96rem;
    line-height: 1;
  }

  #emergency .status-label {
    gap: 10px;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
  }

  #emergency .eyebrow-pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    transform: none;
    box-shadow:
      0 0 0 5px rgba(201, 36, 42, 0.13),
      0 0 0 11px rgba(201, 36, 42, 0.06),
      0 0 18px rgba(201, 36, 42, 0.34);
  }

  #emergency .emergency-card {
    display: none;
  }
}

@media (max-width: 420px) {
  .member-phone-sequence {
    top: 110px;
    right: 24px;
    width: clamp(120px, 32vw, 136px);
  }

  .member-hero h1 {
    max-width: calc(100% - 150px);
    font-size: clamp(2.12rem, 8.15vw, 3.1rem);
  }

  .member-phone-services {
    inset: 36px 9px 12px;
    gap: 7px;
  }

  .member-phone-services > p {
    font-size: 0.68rem;
  }

  .member-phone-services > div {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
    gap: 6px;
  }

  .member-phone-services span {
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 4px;
    border-radius: 9px;
    font-size: 0.47rem;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .member-phone-services span:nth-child(n+5) {
    display: none;
  }

  .member-phone-screen > p {
    right: 12px;
    bottom: 32px;
    left: 12px;
    font-size: 0.7rem;
  }

  .member-phone-zip {
    left: 50%;
    right: auto;
    width: 100%;
    gap: 10px;
  }

  .member-phone-zip p {
    font-size: 0.78rem;
  }

  .member-phone-zip span {
    width: 15px;
    font-size: 0.88rem;
  }

  .member-wifi {
    width: 74px;
    height: 50px;
  }

  .member-wifi span {
    border-top-width: 7px;
  }

  .member-wifi span:nth-child(1) {
    width: 74px;
    height: 38px;
  }

  .member-wifi span:nth-child(2) {
    top: 19px;
    width: 50px;
    height: 26px;
  }

  .member-wifi span:nth-child(3) {
    top: 36px;
    width: 28px;
    height: 16px;
  }

  .member-wifi i {
    top: 49px;
    width: 12px;
    height: 12px;
  }

  .member-phone-map {
    border-radius: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  .white-label-app-launcher {
    display: none;
  }

  .white-label-app-card,
  .white-label-page .site-header .nav-shell,
  .white-label-hero::before,
  .white-label-hero .hero-copy > .reveal,
  .white-label-hero .button-primary,
  .white-label-hero-visual,
  .white-label-orbit-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .map-linework,
  .map-linework-secondary,
  .map-scan,
  .map-pin,
  .network-ping span,
  .network-ping i,
  .zip-scan-origin span,
  .sonar-beacon span,
  .trades-section::before,
  .trade-cloud::before {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
  transform: translateX(-34px);
}

.reveal[data-reveal="right"] {
  transform: translateX(34px);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.88);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.trades-page-section .trade-card.reveal.is-visible:hover {
  transform: translateY(-4px);
}

.trades-page-section .trade-missing-card.reveal.is-visible:has(a:hover) {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-title-main,
  .hero-title-accent,
  .hero h1.is-visible .hero-title-main,
  .hero h1.is-visible .hero-title-accent,
  .home-title-art,
  .home-hero .hero-map-image,
  .white-label-page .site-header .nav-shell,
  .white-label-hero::before,
  .white-label-hero .hero-copy > .reveal,
  .white-label-hero-visual,
  .member-phone-sequence,
  .member-phone-services,
  .member-phone-services > p,
  .member-phone-services span,
  .member-phone-zip,
  .member-phone-zip p,
  .member-phone-zip span,
  .member-wifi span,
  .member-wifi i,
  .member-phone > p,
  .member-phone-map,
  .member-phone-results,
  .trades-page-section .trades-heading > * {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}
