:root {
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --charcoal-2: #24211e;
  --ink: #161412;
  --ink-muted: #66615a;
  --paper: #f4efe7;
  --paper-2: #ebe3d8;
  --white: #ffffff;
  --orange: #f26a21;
  --orange-dark: #c84f11;
  --teal: #2ca6d9;
  --line: rgba(22, 20, 18, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow-sm: 0 10px 30px rgba(18, 12, 7, 0.08);
  --shadow-md: 0 24px 70px rgba(18, 12, 7, 0.14);
  --shadow-dark: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1280px;
  --header-height: 86px;
  --map-background: #0d0d0d;
  --map-panel: #17130f;
  --map-land: #ffffff;
  --map-land-muted: #3a342e;
  --map-border: #71685f;
  --map-active: #f26a21;
  --map-selected: #2ca6d9;
  --map-label: #ffffff;
  --map-label-muted: #b8b0a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

/* Dedicated container for the shared header/footer chrome so its width is
   identical on every page and never inherits a page's own .container width. */
.hc-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.split-copy h2,
.pricing-hero h1,
.pricing-hero h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p,
.split-copy > p,
.faq-intro > p,
.pricing-hero > p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.section-heading--light h2,
.section-heading--light p,
.split-copy--light h2,
.split-copy--light > p {
  color: var(--white);
}

.section-heading--light p,
.split-copy--light > p {
  color: rgba(255, 255, 255, 0.7);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button::after {
  font-size: 1.08em;
  content: "\2192";
  transition: transform 0.2s ease;
}

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

.button:hover::after {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(242, 106, 33, 0.26);
}

.button--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 36px rgba(242, 106, 33, 0.34);
}

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

.button--dark:hover {
  background: #2a2723;
}

.button--light {
  color: var(--black);
  background: var(--white);
}

.button--light:hover {
  background: var(--paper);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--ghost:hover {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(22, 20, 18, 0.26);
}

.button--outline:hover {
  border-color: var(--orange);
  background: rgba(242, 106, 33, 0.06);
}

.button--wide {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 800;
}

.text-link::after {
  content: "\2192";
}

/* --- Persistent chrome: header/footer stay fixed while the page content
   swaps during same-site navigation. Progressive enhancement: unsupported
   browsers just navigate normally. --- */
@view-transition { navigation: auto; }
.site-header { view-transition-name: site-header; }
.site-footer { view-transition-name: site-footer; }
::view-transition-group(site-header),
::view-transition-group(site-footer) { animation-duration: 0s; }

/* Keep header/footer typography identical on every page, independent of any
   page-specific webfont (e.g. the blog loads Inter; the chrome must not). */
.site-header,
.site-footer,
.site-header *,
.site-footer * {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(250, 248, 244, 0.94);
  border-bottom: 1px solid rgba(22, 20, 18, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.98);
  box-shadow: 0 8px 28px rgba(22, 20, 18, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.brand {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 44px 174px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  padding: 0;
  margin: 0;
}

.brand__tiger {
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  object-fit: contain;
}

.brand__wordmark {
  width: 174px;
  height: auto;
}

.brand__tagline {
  margin-top: -2px;
  color: #4c4843;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  margin-left: clamp(26px, 4vw, 74px);
}

.primary-nav a:not(.button) {
  position: relative;
  padding: 11px 0;
  color: #302d29;
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.4;
  white-space: nowrap;
}

.primary-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.primary-nav a:not(.button):hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 46px;
  padding-inline: 17px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.primary-nav .header-cta {
  margin-left: clamp(26px, 4vw, 74px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(22, 20, 18, 0.16);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  padding: clamp(68px, 8vw, 118px) 0 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(242, 106, 33, 0.18), transparent 31%),
    radial-gradient(circle at 71% 76%, rgba(44, 166, 217, 0.08), transparent 24%),
    linear-gradient(135deg, #101010 0%, #17130f 55%, #0b0b0b 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 7.1rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.hero-copy h1 .accent {
  display: block;
  color: var(--orange);
}

.hero-copy > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
}

.hero-copy .button-row {
  margin-top: 34px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-microcopy span::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5px rgba(44, 166, 217, 0.12);
}

.map-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 650px;
  background: var(--map-background);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow-dark);
}

.map-shell::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 106, 33, 0.16);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.map-toolbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  background: rgba(18, 16, 14, 0.93);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.map-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.map-live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(242, 106, 33, 0.12);
  animation: live-pulse 2.1s ease-in-out infinite;
}

@keyframes live-pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(242, 106, 33, 0);
  }
}

.map-title strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.1;
}

.map-title span {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--map-label-muted);
  font-size: 0.69rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.map-filter {
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 780;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.map-filter:hover,
.map-filter.is-active {
  color: var(--white);
  background: rgba(242, 106, 33, 0.16);
  border-color: rgba(242, 106, 33, 0.66);
}

.map-stage {
  position: relative;
  min-height: 512px;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 106, 33, 0.07), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

.map-root {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.map-root.is-ready {
  pointer-events: auto;
}

.map-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
}

.map-fallback[hidden] {
  display: none;
}

.map-fallback__image {
  position: absolute;
  top: 52%;
  left: 42%;
  width: 84%;
  max-width: none;
  opacity: 0.22;
  filter: invert(1) grayscale(1) contrast(1.3);
  transform: translate(-50%, -50%);
  user-select: none;
}

.map-fallback__glow {
  position: absolute;
  top: 47%;
  left: 42%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.11), transparent 68%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-marker {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  background: var(--map-active);
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(242, 106, 33, 0.14), 0 8px 20px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.map-marker::after {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(242, 106, 33, 0.42);
  border-radius: 50%;
  content: "";
  animation: marker-radar 2.4s ease-out infinite;
}

.map-marker:nth-of-type(2)::after {
  animation-delay: 0.4s;
}

.map-marker:nth-of-type(3)::after {
  animation-delay: 0.8s;
}

@keyframes marker-radar {
  0% {
    opacity: 0.7;
    transform: scale(0.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

.map-marker:hover,
.map-marker.is-selected {
  z-index: 5;
  background: var(--map-selected);
  box-shadow: 0 0 0 10px rgba(44, 166, 217, 0.14), 0 10px 24px rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%) scale(1.22);
}

.map-marker.is-hidden {
  opacity: 0.1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.74);
}

.map-sidecard {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 26px;
  width: min(270px, 35%);
  padding: 18px;
  background: rgba(21, 18, 15, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.map-sidecard__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-sidecard__label::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.map-sidecard h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.map-sidecard p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.map-sidecard__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.map-sidecard__meta span {
  padding: 6px 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 700;
}

.map-watermark {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 680;
}

.map-watermark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.map-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #15120f;
  border-top: 1px solid var(--line-dark);
}

.map-stat {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid var(--line-dark);
}

.map-stat:last-child {
  border-right: 0;
}

.map-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.map-stat span {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: var(--map-label-muted);
  font-size: 0.61rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: var(--orange);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: stretch;
}

.proof-strip__intro,
.proof-item {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-strip__intro {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip__intro strong {
  max-width: 280px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.proof-strip__intro span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 680;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-item strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-item span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 720;
  line-height: 1.2;
}

.product-proof {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.product-visual {
  position: relative;
}

.product-frame {
  position: relative;
  overflow: hidden;
  padding: 16px;
  background: var(--black);
  border: 1px solid rgba(22, 20, 18, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.product-frame::before {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 22px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(242, 106, 33, 0.28), transparent 70%);
  content: "";
  pointer-events: none;
}

.product-frame img {
  width: 100%;
  border-radius: 17px;
}

.product-badge {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 28px;
  width: 220px;
  padding: 17px;
  color: var(--white);
  background: var(--orange);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(169, 61, 5, 0.32);
}

.product-badge span {
  display: block;
  font-size: 0.65rem;
  font-weight: 830;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-badge strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.product-copy > p {
  margin: 24px 0 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row__number {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-row h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.feature-row p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.signal-section {
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(242, 106, 33, 0.07), transparent 42%),
    var(--charcoal);
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.signal-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  margin: 0;
}

.signal-layout .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

.signal-cards {
  display: grid;
  gap: 18px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 146px 1fr;
  min-height: 190px;
  background: #11100f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
}

.signal-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0);
  content: "";
  transition: box-shadow 0.2s ease;
  pointer-events: none;
}

.signal-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(242, 106, 33, 0.72);
}

.signal-card__media {
  position: relative;
  overflow: hidden;
  background: #241b14;
}

.signal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transition: transform 0.4s ease;
}

.signal-card:hover .signal-card__media img {
  transform: scale(1.04);
}

.signal-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
}

.signal-card__number {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.signal-card h3 {
  margin: 0;
  font-size: 1.52rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.signal-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
}

.process-section {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: 36px 32px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.process-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--black);
  transform: translateY(-8px);
}

.process-card__number {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.process-card h3 {
  margin: 92px 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.process-card p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-size: 0.93rem;
}

.process-card:hover p {
  color: rgba(255, 255, 255, 0.66);
}

.audience-section {
  padding: 0 0 clamp(90px, 11vw, 150px);
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.audience-card {
  position: relative;
  min-height: 530px;
  padding: clamp(42px, 6vw, 72px);
}

.audience-card--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(44, 166, 217, 0.16), transparent 30%),
    var(--black);
}

.audience-card--orange {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.18), transparent 28%),
    var(--orange);
}

.audience-card__label {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 480px;
  margin: 170px 0 0;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.audience-card p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.audience-card__icon {
  position: absolute;
  top: 62px;
  right: 62px;
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: var(--white);
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.audience-card--orange .audience-card__icon {
  color: var(--white);
  background: var(--black);
}

.difference-section {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--paper-2);
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 8vw, 110px);
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(22, 20, 18, 0.14);
  border-left: 1px solid rgba(22, 20, 18, 0.14);
}

.difference-card {
  min-height: 260px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.38);
  border-right: 1px solid rgba(22, 20, 18, 0.14);
  border-bottom: 1px solid rgba(22, 20, 18, 0.14);
}

.difference-card__icon {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 900;
}

.difference-card h3 {
  margin: 64px 0 0;
  font-size: 1.28rem;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.difference-card p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.pricing-preview {
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(242, 106, 33, 0.17), transparent 30%),
    var(--charcoal);
}

.pricing-preview__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.pricing-preview h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6.2rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.pricing-preview p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.06rem;
}

.pricing-preview__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-preview__actions .button {
  min-width: 210px;
}

.pricing-section,
.pricing-page {
  padding: clamp(88px, 10vw, 140px) 0;
  background: var(--paper);
}

.pricing-page {
  padding-top: clamp(60px, 8vw, 110px);
}

.pricing-hero {
  max-width: 900px;
  margin-bottom: 64px;
}

.pricing-hero h1,
.pricing-hero h2 {
  font-size: clamp(3.3rem, 7vw, 7.4rem);
}

.pricing-hero .pricing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-hero .pricing-kicker::before {
  width: 24px;
  height: 3px;
  background: currentColor;
  content: "";
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid rgba(22, 20, 18, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
  z-index: 2;
  border-color: rgba(242, 106, 33, 0.58);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.plan-card--featured {
  color: var(--white);
  background: var(--black);
  border-color: var(--orange);
}

.plan-card__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.plan-card__audience {
  min-height: 72px;
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.plan-card--featured .plan-card__audience {
  color: rgba(255, 255, 255, 0.6);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 24px;
}

.plan-price strong {
  font-size: clamp(2.2rem, 3vw, 3.25rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.plan-card--featured .plan-price span {
  color: rgba(255, 255, 255, 0.55);
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 30px 0 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card--featured .plan-features {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  color: #45413c;
  font-size: 0.82rem;
}

.plan-card--featured .plan-features li {
  color: rgba(255, 255, 255, 0.72);
}

.plan-features li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 4px rgba(44, 166, 217, 0.1);
}

.plan-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 28px 0 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
  text-align: center;
}

.credit-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 84px;
  background: var(--black);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.credit-explainer__copy {
  padding: clamp(42px, 6vw, 76px);
  color: var(--white);
}

.credit-explainer__copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.credit-explainer__copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.credit-explainer__visual {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 50px;
  background:
    radial-gradient(circle at 50% 50%, rgba(242, 106, 33, 0.3), transparent 48%),
    #17130f;
}

.credit-token {
  display: flex;
  width: min(310px, 80%);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #fa7b36, #c84f11);
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36), inset 0 0 0 7px rgba(0, 0, 0, 0.1);
  transform: rotate(-6deg);
}

.credit-token strong {
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.credit-token span {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-section {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.faq-intro h2 {
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 790;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  content: "+";
  font-size: 1.08rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-item[open] summary::after {
  background: var(--orange);
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 52px 28px 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--white);
  background: var(--orange);
}

.final-cta::before {
  position: absolute;
  top: -180px;
  right: -60px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 64%);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 46px;
}

.final-cta h2 {
  max-width: 890px;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.88;
}

.final-cta p {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.site-footer {
  padding: 56px 0 20px;
  color: var(--white);
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 0.9fr 1.2fr;
  gap: clamp(20px, 3vw, 44px);
}

.footer-brand .brand {
  width: max-content;
  grid-template-columns: 52px 190px;
}

.footer-brand .brand__tiger {
  width: 52px;
  height: 52px;
}

.footer-brand .brand__wordmark {
  width: 190px;
}

.footer-brand .brand__tagline {
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand p {
  max-width: 310px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 16px;
}

.social-links a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-links a svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.footer-column h3,
.footer-contact h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column nav {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-contact address,
.footer-contact a {
  color: #ffffff;
  font-size: 0.9rem;
  font-style: normal;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-contact address {
  display: grid;
  gap: 8px;
  line-height: 1.8;
}

.footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact__item svg,
.footer-contact__phone svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trust-badges img {
  width: 118px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom__links a:hover {
  color: var(--white);
}

.page-banner {
  padding: 18px 0;
  color: var(--white);
  background: var(--orange);
  font-size: 0.76rem;
  font-weight: 760;
  text-align: center;
}

.page-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.launch-note {
  margin-top: 28px;
  padding: 18px 20px;
  color: #514b44;
  background: rgba(242, 106, 33, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-size: 0.8rem;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 78px;
  }

  .header-inner {
    gap: 18px;
  }

  .brand {
    grid-template-columns: 40px 152px;
  }

  .brand__tiger {
    width: 40px;
    height: 40px;
  }

  .brand__wordmark {
    width: 152px;
  }

  .brand__tagline {
    font-size: 0.48rem;
  }

  .primary-nav {
    gap: 13px;
    margin-left: clamp(20px, 3vw, 42px);
  }

  .primary-nav a:not(.button) {
    font-size: 0.85rem;
  }

  .header-cta {
    padding-inline: 14px;
  }

  .primary-nav .header-cta {
    margin-left: clamp(20px, 3vw, 42px);
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
    gap: 44px;
  }

  .map-shell {
    min-height: 600px;
  }

  .map-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-filters {
    justify-content: flex-start;
  }

  .map-sidecard {
    width: 250px;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card {
    min-height: 590px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .site-header .primary-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    align-content: start;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    background: rgba(250, 248, 244, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(22, 20, 18, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-left: 0;
  }

  .nav-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .primary-nav a:not(.button)::after {
    display: none;
  }

  .primary-nav .header-cta {
    margin-left: 0;
    margin-top: 18px;
  }

  .hero {
    padding-top: 70px;
  }

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

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    max-width: 900px;
  }

  .map-shell {
    min-height: 650px;
  }

  .proof-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-strip__intro {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .product-grid,
  .signal-layout,
  .difference-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 64px;
  }

  .signal-layout .section-heading,
  .faq-intro {
    position: static;
  }

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

  .process-card {
    min-height: 250px;
  }

  .process-card h3 {
    margin-top: 58px;
  }

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

  .audience-card {
    min-height: 450px;
  }

  .pricing-preview__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-preview__actions {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .credit-explainer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .container,
  .hc-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand {
    grid-template-columns: 36px 138px;
    column-gap: 8px;
  }

  .brand__tiger {
    width: 36px;
    height: 36px;
  }

  .brand__wordmark {
    width: 138px;
  }

  .brand__tagline {
    display: block;
    font-size: 0.42rem;
    letter-spacing: 0.05em;
  }

  .hero {
    min-height: 0;
    padding: 58px 0 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-copy .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-copy .button {
    width: 100%;
  }

  .map-shell {
    min-height: 610px;
    border-radius: 20px;
  }

  .map-toolbar {
    padding: 16px;
  }

  .map-filter {
    min-height: 32px;
    font-size: 0.6rem;
  }

  .map-stage {
    min-height: 465px;
  }

  .map-fallback__image {
    top: 40%;
    left: 50%;
    width: 112%;
  }

  .map-sidecard {
    top: auto;
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
  }

  .map-watermark {
    display: none;
  }

  .map-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-stat:nth-child(2) {
    border-right: 0;
  }

  .map-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .product-badge {
    right: 12px;
    bottom: -26px;
  }

  .product-copy {
    padding-top: 20px;
  }

  .signal-card {
    grid-template-columns: 110px 1fr;
  }

  .signal-card__content {
    padding: 22px 20px;
  }

  .signal-card h3 {
    font-size: 1.24rem;
  }

  .audience-card {
    min-height: 430px;
    padding: 38px 28px;
  }

  .audience-card__icon {
    top: 34px;
    right: 28px;
    width: 82px;
    height: 82px;
  }

  .audience-card h3 {
    margin-top: 150px;
  }

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

  .difference-card {
    min-height: 230px;
  }

  .pricing-preview__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-preview__actions .button {
    width: 100%;
  }

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

  .plan-card {
    min-height: auto;
  }

  .plan-card__audience {
    min-height: 0;
  }

  .credit-explainer__visual {
    min-height: 380px;
    padding: 34px;
  }

  .faq-item summary {
    padding-right: 46px;
    font-size: 1rem;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .map-filter:nth-child(n + 4) {
    display: none;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .signal-card__media {
    height: 190px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Landing review revision: contractor-first search, sample lead, credit clarity
   -------------------------------------------------------------------------- */

#solutions,
#sample-lead,
#process,
#for-suppliers,
#pricing-plans {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero-copy {
  max-width: 660px;
}

.hero-copy h1 {
  font-size: clamp(3.15rem, 6vw, 6.45rem);
  line-height: 0.91;
}

.lead-search {
  display: grid;
  grid-template-columns: minmax(118px, 0.72fr) minmax(180px, 1.28fr);
  gap: 9px;
  margin-top: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.lead-search__field {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 9px 12px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  box-shadow: inset 0 0 0 1px rgba(22, 20, 18, 0.03);
}

.lead-search__field:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 166, 217, 0.2);
}

.lead-search__field label {
  color: #766f67;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lead-search__field input,
.lead-search__field select {
  width: 100%;
  min-width: 0;
  height: 29px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 0.91rem;
  font-weight: 780;
  line-height: 1.2;
}

.lead-search__field input::placeholder {
  color: #9a9289;
  font-weight: 650;
}

.lead-search__field select {
  padding-right: 20px;
  cursor: pointer;
}

.lead-search__submit {
  width: 100%;
  min-height: 54px;
  grid-column: 1 / -1;
}

.hero-copy > .lead-search__error {
  margin: 9px 2px 0;
  color: #ffd1b7;
  font-size: 0.75rem;
  font-weight: 760;
}

.hero-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px 16px;
  margin-top: 12px;
}

.hero-secondary-actions .button {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.76rem;
}

.hero-audience-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.hero-audience-link:hover {
  color: var(--white);
}

.hero-audience-link span {
  color: var(--orange);
  font-size: 1.1em;
}

.map-sidecard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-sidecard__footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  font-weight: 650;
  line-height: 1.25;
}

.map-sidecard__footer a {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 820;
}

.map-stat--text strong {
  font-size: 0.82rem;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.map-stat--text span {
  overflow: visible;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}

.sample-lead-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: clamp(30px, 4.4vw, 54px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 7%, rgba(242, 106, 33, 0.26), transparent 30%),
    radial-gradient(circle at 14% 96%, rgba(44, 166, 217, 0.09), transparent 28%),
    linear-gradient(145deg, #0c0c0c 0%, #19130f 62%, #0e0e0e 100%);
  border: 1px solid rgba(22, 20, 18, 0.1);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.sample-lead-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom right, transparent 12%, black 70%);
  pointer-events: none;
}

.sample-lead-card > * {
  position: relative;
  z-index: 1;
}

.sample-lead-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sample-lead-card__label {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 880;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-lead-card__credits {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(242, 106, 33, 0.18);
  border: 1px solid rgba(242, 106, 33, 0.55);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.sample-lead-card__location {
  margin: 48px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 720;
}

.sample-lead-card h3 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(2.15rem, 4.5vw, 4.4rem);
  font-weight: 880;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.sample-lead-card__scope {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.sample-lead-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sample-lead-card__facts div {
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.sample-lead-card__facts div:first-child {
  padding-left: 0;
}

.sample-lead-card__facts div:last-child {
  padding-right: 0;
  border-right: 0;
}

.sample-lead-card__facts dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.6rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-lead-card__facts dd {
  margin: 7px 0 0;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.3;
}

.sample-lead-card__locked {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.sample-lead-card__lock {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 11px;
}

.sample-lead-card__lock::before {
  position: absolute;
  top: 8px;
  left: 11px;
  width: 14px;
  height: 11px;
  border: 3px solid var(--white);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.sample-lead-card__lock::after {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 9px;
  height: 15px;
  background: var(--white);
  border-radius: 3px;
  content: "";
}

.sample-lead-card__locked strong {
  display: block;
  font-size: 0.9rem;
}

.sample-lead-card__locked p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  line-height: 1.45;
}

.sample-lead-card__disclaimer {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.63rem;
}

.audience-grid {
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
}

.audience-card--primary {
  min-height: 520px;
}

.pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.credit-clarity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 34px;
  background: var(--white);
  border: 1px solid rgba(22, 20, 18, 0.1);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.credit-clarity article {
  min-width: 0;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.credit-clarity article:last-child {
  border-right: 0;
}

.credit-clarity span {
  display: block;
  color: var(--orange-dark);
  font-size: 0.65rem;
  font-weight: 880;
  letter-spacing: 0.1em;
}

.credit-clarity strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.credit-clarity p {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .hero-copy h1 {
    font-size: clamp(3rem, 5.7vw, 5.6rem);
  }

  .map-stat--text strong {
    font-size: 0.72rem;
  }

  .map-stat--text span {
    font-size: 0.56rem;
  }
}

@media (max-width: 980px) {
  .hero-copy {
    max-width: 800px;
  }

  .hero-copy h1 {
    max-width: 850px;
    font-size: clamp(3.4rem, 9.5vw, 6.2rem);
  }

  .lead-search {
    max-width: 720px;
  }

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

  .audience-card--primary {
    min-height: 450px;
  }
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.5rem);
    line-height: 0.93;
  }

  .lead-search {
    grid-template-columns: 1fr;
    margin-top: 25px;
    padding: 9px;
  }

  .lead-search__submit {
    grid-column: auto;
  }

  .hero-secondary-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-secondary-actions .button {
    width: 100%;
  }

  .hero-audience-link {
    justify-content: center;
    padding: 4px 0;
    text-align: center;
  }

  .map-sidecard__footer {
    align-items: flex-start;
  }

  .map-stat--text strong {
    font-size: 0.74rem;
  }

  .map-stat--text span {
    font-size: 0.57rem;
  }

  .sample-lead-card {
    min-height: 0;
    padding: 28px 24px 74px;
    border-radius: 22px;
  }

  .sample-lead-card__location {
    margin-top: 38px;
  }

  .sample-lead-card h3 {
    font-size: clamp(2.15rem, 11vw, 3.35rem);
  }

  .sample-lead-card__facts {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sample-lead-card__facts div,
  .sample-lead-card__facts div:first-child,
  .sample-lead-card__facts div:last-child {
    padding: 0;
    border-right: 0;
  }

  .sample-lead-card__facts div + div {
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .product-badge {
    right: 12px;
    bottom: -24px;
    width: min(240px, calc(100% - 24px));
  }

  .credit-clarity {
    grid-template-columns: 1fr;
  }

  .credit-clarity article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credit-clarity article:last-child {
    border-bottom: 0;
  }

  .pricing-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .sample-lead-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .sample-lead-card__location {
    margin-top: 30px;
  }

  .sample-lead-card__locked {
    grid-template-columns: 1fr;
  }
}

/* v2.1: show credit mechanics before plan selection without creating excess vertical space. */
.credit-clarity--preplans {
  margin: -28px 0 20px;
}

.pricing-note strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .credit-clarity--preplans {
    margin-top: -22px;
  }
}

/* --------------------------------------------------------------------------
   v2.2 — United States only interactive map
   -------------------------------------------------------------------------- */

.map-shell {
  min-height: 0;
}

.map-title > div {
  min-width: 0;
}

.map-title__line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.map-title__line strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-scope-badge {
  display: inline-flex !important;
  min-height: 23px;
  flex: 0 0 auto;
  align-items: center;
  margin: 0 !important;
  padding: 4px 8px;
  color: var(--white) !important;
  background: rgba(242, 106, 33, 0.18);
  border: 1px solid rgba(242, 106, 33, 0.62);
  border-radius: 999px;
  font-size: 0.56rem !important;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.map-stage {
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(0, 1.75fr) minmax(275px, 0.68fr);
  background:
    radial-gradient(circle at 28% 45%, rgba(242, 106, 33, 0.08), transparent 42%),
    linear-gradient(145deg, #0c0c0c 0%, #15110e 100%);
}

.map-canvas {
  position: relative;
  min-width: 0;
  min-height: 535px;
  overflow: hidden;
  background: #0c0c0c;
  border-right: 1px solid var(--line-dark);
  isolation: isolate;
}

.map-root {
  z-index: 10;
}

.map-fallback {
  z-index: 1;
  display: block;
  background: #0c0c0c;
}

.usa-map {
  width: 100%;
  height: 100%;
  min-height: 535px;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.usa-map.is-dragging {
  cursor: grabbing;
}

.usa-map__backdrop {
  fill: #0c0c0c;
}

.usa-map__grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.035);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.map-state {
  fill: #28231f;
  stroke: rgba(255, 255, 255, 0.58);
  stroke-linejoin: round;
  stroke-width: 1.15;
  cursor: pointer;
  vector-effect: non-scaling-stroke;
  transition: fill 0.18s ease, opacity 0.18s ease, stroke 0.18s ease, filter 0.18s ease;
}

.map-state:hover,
.map-state.is-hovered {
  fill: #3a342e;
  stroke: rgba(255, 255, 255, 0.95);
}

.map-state.is-selected {
  fill: var(--orange);
  stroke: var(--white);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 9px rgba(242, 106, 33, 0.38));
}

.map-state:focus-visible {
  outline: none;
  fill: #3a342e;
  stroke: var(--teal);
  stroke-width: 2.8;
}

.usa-map__insets {
  pointer-events: none;
}

.usa-map__insets rect {
  fill: rgba(255, 255, 255, 0.018);
  stroke: rgba(255, 255, 255, 0.13);
  stroke-dasharray: 5 5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.usa-map__insets text {
  fill: rgba(255, 255, 255, 0.38);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.map-hotspot {
  cursor: pointer;
  outline: none;
  transition: opacity 0.2s ease;
}

.map-hotspot__pulse {
  fill: rgba(242, 106, 33, 0.06);
  stroke: rgba(242, 106, 33, 0.68);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  animation: usa-marker-pulse 2.4s ease-out infinite;
}

.map-hotspot:nth-child(2n) .map-hotspot__pulse {
  animation-delay: 0.55s;
}

.map-hotspot:nth-child(3n) .map-hotspot__pulse {
  animation-delay: 1.05s;
}

.map-hotspot__ring {
  fill: #0c0c0c;
  stroke: var(--white);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.map-hotspot__core {
  fill: var(--orange);
  stroke: none;
}

.map-hotspot:hover .map-hotspot__ring,
.map-hotspot:focus-visible .map-hotspot__ring,
.map-hotspot.is-selected .map-hotspot__ring {
  fill: var(--teal);
  stroke: var(--white);
  stroke-width: 3;
}

.map-hotspot:hover .map-hotspot__core,
.map-hotspot:focus-visible .map-hotspot__core,
.map-hotspot.is-selected .map-hotspot__core {
  fill: var(--white);
}

.map-hotspot:focus-visible .map-hotspot__pulse {
  stroke: var(--teal);
  stroke-width: 2.5;
}

.map-hotspot.is-hidden {
  opacity: 0.08;
  pointer-events: none;
}

@keyframes usa-marker-pulse {
  0% {
    opacity: 0.88;
    transform: scale(0.58);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

.map-canvas__hud {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 18px;
  display: grid;
  gap: 2px;
  max-width: calc(100% - 160px);
  padding: 9px 12px;
  color: var(--white);
  background: rgba(13, 13, 13, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-canvas__scope {
  color: var(--orange);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.map-canvas__hud strong {
  overflow: hidden;
  font-size: 0.73rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-zoom-controls {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  display: grid;
  grid-template-columns: 34px 34px auto;
  overflow: hidden;
  background: rgba(13, 13, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.map-zoom-controls button {
  min-height: 34px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}

.map-zoom-controls button:last-child {
  border-right: 0;
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-zoom-controls button:hover,
.map-zoom-controls button:focus-visible {
  color: var(--white);
  background: rgba(242, 106, 33, 0.22);
}

.map-legend {
  position: absolute;
  z-index: 4;
  bottom: 16px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(13, 13, 13, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  font-size: 0.54rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.map-legend__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.map-legend__swatch {
  width: 14px;
  height: 9px;
  background: #28231f;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
}

.map-sidecard {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  width: auto;
  min-width: 0;
  align-self: stretch;
  flex-direction: column;
  margin: 22px 22px 22px 0;
  padding: 22px;
  background: rgba(25, 21, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.map-sidecard__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-sidecard__label {
  margin: 0;
}

.map-sidecard__status {
  flex: 0 0 auto;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(44, 166, 217, 0.13);
  border: 1px solid rgba(44, 166, 217, 0.42);
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.map-sidecard h3 {
  margin-top: 20px;
  font-size: clamp(1.32rem, 2.05vw, 1.78rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.map-sidecard__location {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.82rem !important;
  font-weight: 700;
}

.map-sidecard__divider {
  height: 1px;
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.1);
}

.map-sidecard__details {
  display: grid;
  gap: 14px;
}

.map-sidecard__details div {
  display: grid;
  gap: 3px;
}

.map-sidecard__details span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-sidecard__details strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.69rem;
  font-weight: 730;
  line-height: 1.35;
}

.map-sidecard__footer {
  align-items: flex-start;
  flex-direction: column;
  margin-top: auto;
  padding-top: 20px;
}

.map-sidecard__footer span {
  font-size: 0.57rem;
  line-height: 1.45;
}

.map-sidecard__footer a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 11px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.61rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-sidecard__footer a:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .map-stage {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  }

  .map-sidecard {
    margin: 18px 18px 18px 0;
    padding: 19px;
  }
}

@media (max-width: 820px) {
  .map-title__line {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .map-title__line strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .map-stage {
    grid-template-columns: 1fr;
  }

  .map-canvas {
    min-height: 485px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .usa-map {
    min-height: 485px;
  }

  .map-sidecard {
    min-height: 0;
    margin: 16px;
  }

  .map-sidecard__footer {
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .map-canvas {
    min-height: 390px;
  }

  .usa-map {
    min-height: 390px;
  }

  .map-canvas__hud {
    top: 11px;
    left: 11px;
    max-width: calc(100% - 136px);
    padding: 7px 9px;
  }

  .map-canvas__hud strong {
    font-size: 0.63rem;
  }

  .map-zoom-controls {
    top: 11px;
    right: 11px;
    grid-template-columns: 31px 31px auto;
  }

  .map-zoom-controls button {
    min-height: 31px;
    padding-inline: 7px;
  }

  .map-legend {
    right: 11px;
    bottom: 10px;
    left: 11px;
    justify-content: center;
  }

  .map-sidecard {
    margin: 12px;
    padding: 18px;
  }

  .map-sidecard h3 {
    font-size: 1.42rem;
  }
}

/* --------------------------------------------------------------------------
   v2.4 widescreen dashboard showcase
   -------------------------------------------------------------------------- */

#dashboard {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.dashboard-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 142px) 0;
  background:
    radial-gradient(circle at 88% 6%, rgba(242, 106, 33, 0.09), transparent 28%),
    radial-gradient(circle at 6% 94%, rgba(44, 166, 217, 0.06), transparent 26%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.dashboard-showcase::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 20, 18, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 20, 18, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  pointer-events: none;
}

.dashboard-showcase .container {
  position: relative;
  z-index: 1;
}

.dashboard-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  align-items: end;
  gap: clamp(36px, 7vw, 92px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.dashboard-showcase__heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.45rem, 5.5vw, 5.35rem);
  font-weight: 880;
  letter-spacing: -0.066em;
  line-height: 0.94;
}

.dashboard-showcase__heading > p {
  max-width: 560px;
  margin: 0 0 4px;
  color: var(--ink-muted);
  font-size: clamp(1rem, 1.8vw, 1.17rem);
  line-height: 1.6;
}

.dashboard-monitor {
  position: relative;
  width: min(calc(100vw - 48px), 1360px);
  max-width: none;
  margin: 0 0 0 50%;
  padding: 12px;
  transform: translateX(-50%);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #191511 0%, #070605 72%);
  border: 1px solid rgba(13, 13, 13, 0.14);
  border-radius: 30px;
  box-shadow:
    0 34px 90px rgba(24, 14, 8, 0.22),
    0 4px 16px rgba(24, 14, 8, 0.12);
}

.dashboard-monitor::after {
  position: absolute;
  right: 8%;
  bottom: -24px;
  left: 8%;
  height: 28px;
  background: radial-gradient(ellipse, rgba(15, 10, 7, 0.2), transparent 72%);
  content: "";
  pointer-events: none;
}

.dashboard-monitor__chrome {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 8px 0 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.dashboard-monitor__lights {
  display: inline-flex;
  gap: 7px;
}

.dashboard-monitor__lights i {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.dashboard-monitor__lights i:first-child {
  background: var(--orange);
}

.dashboard-monitor__lights i:nth-child(2) {
  background: var(--teal);
}

.dashboard-monitor__address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-monitor__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  white-space: nowrap;
}

.dashboard-monitor__status i {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 166, 217, 0.12);
}

.dashboard-monitor__hint {
  display: none;
}

.dashboard-monitor__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #070503;
  background-image: url("dashboard-wide.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  content-visibility: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 19px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.dashboard-monitor__viewport img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  object-fit: cover;
  object-position: center top;
}

.dashboard-monitor figcaption {
  padding: 12px 10px 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  line-height: 1.4;
}

.dashboard-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  background: rgba(244, 239, 231, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.dashboard-capabilities article {
  min-width: 0;
  padding: 26px 24px 28px;
  border-right: 1px solid var(--line);
}

.dashboard-capabilities article:last-child {
  border-right: 0;
}

.dashboard-capabilities span {
  display: block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.67rem;
  font-weight: 880;
  letter-spacing: 0.11em;
}

.dashboard-capabilities strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.dashboard-capabilities p {
  margin: 9px 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .dashboard-monitor {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .dashboard-showcase__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .dashboard-showcase__heading > p {
    max-width: 760px;
  }

  .dashboard-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-capabilities article:nth-child(2) {
    border-right: 0;
  }

  .dashboard-capabilities article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .dashboard-showcase {
    padding: 78px 0 86px;
  }

  .dashboard-showcase__heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .dashboard-monitor {
    padding: 8px;
    border-radius: 22px;
  }

  .dashboard-monitor__chrome {
    grid-template-columns: auto 1fr;
    min-height: 42px;
    padding-inline: 5px;
  }

  .dashboard-monitor__address,
  .dashboard-monitor__status {
    display: none;
  }

  .dashboard-monitor__hint {
    display: block;
    justify-self: end;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.62rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .dashboard-monitor__viewport {
    display: block;
    overflow: hidden;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    background-image: url("dashboard-wide.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 15px;
  }

  .dashboard-monitor__viewport img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .dashboard-monitor figcaption {
    padding-inline: 6px;
  }

  .dashboard-capabilities {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .dashboard-capabilities article,
  .dashboard-capabilities article:nth-child(2) {
    border-right: 0;
  }

  .dashboard-capabilities article:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
}

/* USA fallback zoom controls. The production component should use mapViewport instead. */
.usa-map {
  --fallback-map-zoom: 1;
  transform: scale(var(--fallback-map-zoom));
  transform-origin: 50% 50%;
  transition: transform 0.28s ease;
  will-change: transform;
}

/* v2.4: keep every project-type control available on mobile. */
@media (max-width: 480px) {
  .map-filters {
    width: 100%;
  }

  .map-filter:nth-child(n + 4) {
    display: inline-flex;
  }
}

.dashboard-monitor figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-monitor figcaption a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(242, 106, 33, 0.72);
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dashboard-monitor figcaption a:hover {
  color: var(--white);
  border-bottom-color: var(--orange);
}

@media (max-width: 640px) {
  .dashboard-monitor figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}


/* v3.0 experience layer */
.sr-only { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.section-rail { display:none !important; }
.map-toolbar__actions { display:flex; align-items:center; justify-content:flex-end; gap:10px; flex-wrap:wrap; }
.map-state-jump select { min-height:38px; padding:7px 32px 7px 11px; color:#fff; background:#211b16; border:1px solid rgba(255,255,255,.16); border-radius:999px; font-size:.76rem; font-weight:800; }
.market-fit-section { padding:110px 0; background:linear-gradient(135deg,#f6f1e9 0%,#eee4d6 100%); border-block:1px solid var(--line); }
.market-fit-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(500px,1.1fr); gap:70px; align-items:center; }
.market-fit-copy h2,.roi-copy h2 { margin:0; font-size:clamp(2.5rem,5vw,5rem); font-weight:880; letter-spacing:-.06em; line-height:.94; }
.market-fit-copy>p:not(.eyebrow),.roi-copy>p:not(.eyebrow) { max-width:650px; color:var(--ink-muted); }
.fit-controls { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:30px 0 22px; }
.fit-controls label { display:grid; gap:7px; font-size:.74rem; font-weight:850; letter-spacing:.06em; text-transform:uppercase; }
.fit-controls select { min-width:0; height:50px; padding:0 12px; color:var(--ink); background:#fff; border:1px solid var(--line); border-radius:10px; font-size:.9rem; font-weight:700; text-transform:none; letter-spacing:0; }
.fit-console { color:#fff; background:radial-gradient(circle at 90% 5%,rgba(242,106,33,.2),transparent 35%),#0d0d0d; border:1px solid rgba(255,255,255,.1); border-radius:24px; box-shadow:var(--shadow-dark); overflow:hidden; }
.fit-console__header { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid rgba(255,255,255,.1); color:rgba(255,255,255,.62); font-size:.69rem; font-weight:900; letter-spacing:.14em; }
.fit-console__header i { width:8px;height:8px;background:var(--orange);border-radius:50%;box-shadow:0 0 0 7px rgba(242,106,33,.13); }
.fit-console__summary { display:grid; gap:7px; padding:26px 24px; border-bottom:1px solid rgba(255,255,255,.1); }
.fit-console__summary span,.fit-console__result span { color:var(--orange); font-size:.7rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.fit-console__summary strong { font-size:clamp(1.35rem,3vw,2.15rem); line-height:1.05; }
.fit-flow { display:grid; grid-template-columns:repeat(4,1fr); padding:22px; }
.fit-flow>div { position:relative; display:grid; gap:5px; padding:16px; border-right:1px solid rgba(255,255,255,.1); }
.fit-flow>div:last-child { border-right:0; }
.fit-flow b { color:var(--orange); font-size:.73rem; }
.fit-flow span { font-weight:850; }
.fit-flow small { color:rgba(255,255,255,.55); line-height:1.35; }
.fit-console__result { display:grid; gap:5px; margin:0 22px 22px; padding:18px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:14px; }
.roi-section { padding:105px 0; color:#fff; background:linear-gradient(130deg,#0d0d0d 0%,#1c1713 65%,#312017 100%); }
.roi-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(440px,1.1fr); gap:80px; align-items:center; }
.roi-copy>p:not(.eyebrow) { color:rgba(255,255,255,.66); }
.roi-disclaimer { font-size:.82rem; }
.roi-calculator { display:grid; gap:22px; padding:30px; color:var(--ink); background:#fff; border-radius:22px; box-shadow:var(--shadow-dark); }
.roi-calculator label { display:grid; grid-template-columns:1fr auto; gap:9px; font-size:.86rem; font-weight:850; }
.roi-calculator input,.roi-calculator select { grid-column:1/-1; width:100%; }
.roi-calculator input { accent-color:var(--orange); }
.roi-calculator select { height:48px; padding:0 12px; border:1px solid var(--line); border-radius:10px; background:#faf8f4; }
.roi-result { display:grid; gap:4px; padding:22px; color:#fff; background:var(--black); border-radius:16px; }
.roi-result span { color:rgba(255,255,255,.62); font-size:.78rem; }
.roi-result strong { color:var(--orange); font-size:clamp(2rem,5vw,4rem); letter-spacing:-.05em; line-height:1; }
.roi-result small { color:rgba(255,255,255,.74); }
.mobile-action-bar { display:none; }
@media (max-width:1360px){ .section-rail{display:none;} }
@media (max-width:900px){
  .market-fit-grid,.roi-grid{grid-template-columns:1fr;gap:40px}.market-fit-section,.roi-section{padding:78px 0}.fit-console{min-width:0}.fit-flow{grid-template-columns:repeat(2,1fr)}.fit-flow>div:nth-child(2){border-right:0}.fit-flow>div{border-bottom:1px solid rgba(255,255,255,.1)}.fit-flow>div:nth-last-child(-n+2){border-bottom:0}.map-toolbar__actions{justify-content:flex-start}
}
@media (max-width:640px){
  body{padding-bottom:78px}.fit-controls{grid-template-columns:1fr}.fit-flow{grid-template-columns:1fr}.fit-flow>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.1)!important}.fit-flow>div:last-child{border-bottom:0!important}.market-fit-copy h2,.roi-copy h2{font-size:clamp(2.35rem,13vw,3.7rem)}.roi-calculator{padding:20px}.mobile-action-bar{position:fixed;z-index:70;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 12px max(10px,env(safe-area-inset-bottom));color:#fff;background:rgba(13,13,13,.96);border-top:1px solid rgba(255,255,255,.14);backdrop-filter:blur(16px)}.mobile-action-bar div{display:grid}.mobile-action-bar strong{font-size:.78rem;line-height:1.1}.mobile-action-bar span{color:rgba(255,255,255,.58);font-size:.67rem}.mobile-action-bar .button{min-height:44px;padding:10px 14px;font-size:.78rem}.map-state-jump{width:100%}.map-state-jump select{width:100%}
}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}
