/* ============================================
   PRO IMPACT DISTRIBUTORS — Stylesheet
   ============================================ */

:root {
  /* Brand palette (from official kit) */
  --brand-navy: #132A4E;
  --brand-red: #A83034;
  --brand-red-deep: #8A2429;
  --brand-silver: #C1C0BF;
  --brand-blue-mid: #607EAA;
  --brand-blue-light: #A8BCD6;

  /* Page surfaces — tuned to harmonize with brand navy */
  --bg: #08111F;
  --bg-elev: #0E1B30;
  --bg-card: #14253E;
  --line: rgba(168, 188, 214, 0.10);
  --line-strong: rgba(168, 188, 214, 0.20);

  /* Text */
  --text: #F4F5F7;
  --text-dim: #A8BCD6;
  --text-muted: #6B7E96;

  /* Legacy alias kept for compatibility */
  --brand-blue: var(--brand-navy);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --pad: clamp(20px, 4vw, 48px);

  --t-fast: 200ms cubic-bezier(.2,.7,.3,1);
  --t-mid: 480ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 900ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--t-mid), backdrop-filter var(--t-mid), padding var(--t-mid), border-color var(--t-mid);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 17, 31, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 12px 0;
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-shield {
  display: inline-flex;
  color: var(--brand-red);
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.brand-logo-horizontal {
  display: block;
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  transition: height var(--t-mid);
}
.nav.scrolled .brand-logo-horizontal {
  height: 42px;
}
.footer-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px;
  background: var(--brand-red);
  border: 1px solid var(--brand-red);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  box-shadow: 0 4px 18px -6px rgba(168, 48, 52, 0.55);
  transition: all var(--t-fast);
}
.nav-cta:hover {
  background: var(--brand-red-deep);
  border-color: var(--brand-red-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(168, 48, 52, 0.7);
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(10,14,26,0.35) 35%, rgba(10,14,26,0.85) 100%),
    linear-gradient(90deg, rgba(10,14,26,0.75) 0%, rgba(10,14,26,0.25) 50%, rgba(10,14,26,0.55) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad) 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 800ms 200ms cubic-bezier(.2,.7,.3,1) forwards;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--brand-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(168,48,52,0.18);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(168,48,52,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(168,48,52,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 6.8vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 44px;
  max-width: 1100px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 6px;
}
.hero-title .line.subtle {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  margin-top: 18px;
  padding-bottom: 0;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordIn 900ms cubic-bezier(.2,.7,.3,1) forwards;
}
.hero-title .word.accent {
  color: var(--brand-red);
  position: relative;
}
.hero-title .word.accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--brand-red);
  opacity: 0.18;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineIn 800ms 1500ms cubic-bezier(.2,.7,.3,1) forwards;
}
@keyframes wordIn {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes underlineIn {
  to { transform: scaleX(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Word stagger */
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: 400ms; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: 500ms; }
.hero-title .line:nth-child(1) .word:nth-child(3) { animation-delay: 600ms; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: 750ms; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: 830ms; }
.hero-title .line:nth-child(2) .word:nth-child(3) { animation-delay: 910ms; }
.hero-title .line:nth-child(2) .word:nth-child(4) { animation-delay: 1000ms; }
.hero-title .line:nth-child(3) .word:nth-child(1) { animation-delay: 1400ms; }
.hero-title .line:nth-child(3) .word:nth-child(2) { animation-delay: 1480ms; }
.hero-title .line:nth-child(3) .word:nth-child(3) { animation-delay: 1560ms; }
.hero-title .line:nth-child(3) .word:nth-child(4) { animation-delay: 1640ms; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 800ms 1800ms cubic-bezier(.2,.7,.3,1) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all var(--t-fast);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--brand-red);
  color: white;
  box-shadow: 0 8px 30px -8px rgba(168,48,52,0.6);
}
.btn-primary:hover {
  background: var(--brand-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -8px rgba(168,48,52,0.7);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.32);
}
.btn-ghost svg {
  transition: transform var(--t-fast);
}
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-lg {
  padding: 20px 36px;
  font-size: 15px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 800ms 2200ms cubic-bezier(.2,.7,.3,1) forwards;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(168, 188, 214, 0.85) 50%, transparent);
  background-size: 100% 200%;
  animation: scrollLine 2.2s infinite;
}
@keyframes scrollLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}

/* ============================================
   SECTIONS — shared
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 20px;
}
.section-coverage .eyebrow {
  color: var(--brand-blue-mid);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 22ch;
}
.section-head {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 760px;
}
.section-head .h-display { margin-left: auto; margin-right: auto; }
.lead {
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text-dim);
  max-width: 56ch;
  margin-bottom: 16px;
}
.lead-center {
  font-size: clamp(15px, 1.25vw, 18px);
  color: var(--text-dim);
  max-width: 58ch;
  margin: 0 auto;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(.2,.7,.3,1), transform 800ms cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PARTNER SECTION
   ============================================ */
.section-partner {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.partner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat {
  background: var(--bg-elev);
  padding: 32px 28px;
  transition: background var(--t-fast);
}
.stat:hover { background: var(--bg-card); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--brand-red);
  margin-left: 4px;
}
.stat-label {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============================================
   AUDIENCE / WHO WE WORK WITH
   ============================================ */
.section-audience {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.audience-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 44px 38px;
  text-align: center;
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-blue-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
}
.audience-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  background: var(--bg-card);
}
.audience-card:hover::before { transform: scaleX(1); }
.audience-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.audience-icon svg { width: 100%; height: 100%; }
.audience-card:nth-child(2) .audience-icon {
  color: var(--brand-blue-mid);
}
.audience-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.audience-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 36ch;
  margin: 0 auto;
}

/* ============================================
   PRODUCTS
   ============================================ */
.section-products {
  background: var(--bg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Dot pattern base layer — subtle silver dots on dark navy */
.spotlight-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(168, 188, 214, 0.10) 1px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.7;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* Spotlight reveal — brand-red dots that appear under the cursor */
.spotlight-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(168, 48, 52, 0.85) 1px, transparent 1.6px);
  background-size: 18px 18px;
  opacity: 0;
  transition: opacity 280ms ease;
  -webkit-mask-image: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), black 0%, transparent 70%);
  mask-image: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), black 0%, transparent 70%);
}
.section-products:hover .spotlight-glow,
.section-products[data-touched] .spotlight-glow {
  opacity: 1;
}

/* Make sure container content sits above the dot layers */
.section-products .container {
  position: relative;
  z-index: 2;
}

/* Highlight marker animation — fills left-to-right when in view */
.text-highlight {
  display: inline;
  position: relative;
  padding: 0 0.18em;
  margin: 0 -0.05em;
  border-radius: 6px;
  background-image: linear-gradient(
    90deg,
    rgba(168, 48, 52, 0.32) 0%,
    rgba(168, 48, 52, 0.55) 100%
  );
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 0% 100%;
  transition: background-size 1500ms cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text);
}
.text-highlight.in {
  background-size: 100% 100%;
}
@media (prefers-reduced-motion: reduce) {
  .text-highlight {
    background-size: 100% 100%;
    transition: none;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms cubic-bezier(.2,.7,.3,1);
}
.product-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  background: var(--bg-card);
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon svg { width: 100%; height: 100%; }
.product-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================
   WHY US
   ============================================ */
.section-why {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.why-card {
  background: var(--bg-elev);
  padding: 44px 36px;
  transition: background var(--t-fast);
  position: relative;
}
.why-card:hover { background: var(--bg-card); }
.why-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-blue-mid);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 24px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================
   COVERAGE
   ============================================ */
.section-coverage { background: var(--bg); }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coverage-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.state-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--brand-blue-mid);
}
.state-block ul li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.state-block ul li:last-child { border-bottom: 1px solid var(--line); }
.coverage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  color: var(--text-dim);
  position: relative;
  overflow: hidden;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(168,48,52,0.08), transparent 50%);
  pointer-events: none;
}
.map-svg {
  width: 100%;
  height: auto;
  position: relative;
}
.map-svg .map-state path {
  stroke: var(--brand-blue-mid);
}
.map-svg .map-state text {
  fill: var(--brand-blue-light);
  opacity: 0.55;
}
.map-svg > text {
  fill: var(--brand-blue-mid);
}
.map-svg circle {
  animation: cityPulse 3s infinite;
}
.map-svg circle:nth-child(3) { animation-delay: 0.6s; }
.map-svg circle:nth-child(4) { animation-delay: 1.2s; }
.map-svg circle:nth-child(7) { animation-delay: 0.3s; }
.map-svg circle:nth-child(8) { animation-delay: 0.9s; }
.map-svg circle:nth-child(9) { animation-delay: 1.5s; }
.map-svg .city-dot {
  animation: cityPulse 3s infinite;
}
.map-svg .map-texas .city-dot:nth-of-type(2) { animation-delay: 0.5s; }
.map-svg .map-texas .city-dot:nth-of-type(3) { animation-delay: 1.0s; }
.map-svg .map-florida .city-dot:nth-of-type(2) { animation-delay: 0.4s; }
.map-svg .map-florida .city-dot:nth-of-type(3) { animation-delay: 0.8s; }
@keyframes cityPulse {
  0%, 100% { fill: var(--text-dim); }
  50% { fill: var(--brand-red); }
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.section-cta {
  background: linear-gradient(180deg, var(--bg) 0%, #050811 100%);
  text-align: center;
}
.cta-block {
  max-width: 880px;
  margin: 0 auto;
}
.cta-headline {
  margin-left: auto;
  margin-right: auto;
  max-width: 22ch;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.contact-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  transition: all var(--t-fast);
}
a.contact-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-2px);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* ============================================
   DEALER APPLICATION FORM
   ============================================ */
.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px auto 32px;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.form-divider span {
  font-style: italic;
}

.dealer-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full {
  grid-column: 1 / -1;
}
.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field-optional {
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  opacity: 0.7;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23A8BCD6' stroke-width='2' d='M1 1.5 L6 6.5 L11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--line-strong);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(168, 48, 52, 0.15);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: rgba(255, 100, 100, 0.5);
}

.form-submit {
  margin-top: 8px;
  align-self: flex-start;
  position: relative;
}
.form-submit .submit-arrow {
  transition: transform var(--t-fast);
}
.form-submit:hover .submit-arrow {
  transform: translateX(4px);
}
.form-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}

.form-status {
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: rgba(96, 126, 170, 0.12);
  border: 1px solid rgba(96, 126, 170, 0.35);
  color: var(--brand-blue-light);
}
.form-status.error {
  background: rgba(168, 48, 52, 0.12);
  border: 1px solid rgba(168, 48, 52, 0.45);
  color: #FCA5A5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050811;
  border-top: 1px solid var(--line);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-logo-large {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 38ch;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--t-fast), padding-left var(--t-fast);
  position: relative;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--text);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
}
.footer-contact a {
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--text); }
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(168, 48, 52, 0.12);
  color: var(--brand-red);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom .footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 0;
  font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,14,26,0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px var(--pad);
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .partner-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  .product-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .form-submit {
    align-self: stretch;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .footer-brand-col {
    align-items: flex-start;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .why-grid,
  .partner-stats,
  .coverage-states {
    grid-template-columns: 1fr;
  }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(32px, 9vw, 56px); }
  .brand-sub { font-size: 9px; }
  .brand-logo-horizontal { height: 40px; max-width: 180px; }
  .nav.scrolled .brand-logo-horizontal { height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-title .word { transform: none; opacity: 1; }
}
