/* Revolution Resources — shared styles */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:wght@600;700;800;900&family=IBM+Plex+Mono:wght@500;600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0a0a0a;
  --near-black: #141414;
  --carbon: #16171a;
  --charcoal: #1f1f1f;
  --red: #d81f26;
  --red-dark: #a8161c;
  --red-glow: #ff4d4d;
  --gold: #e8a33d;
  --gold-dark: #c07f1f;
  --green: #3fae64;
  --green-dark: #2c8a4a;
  --white: #ffffff;
  --off-white: #f5f3ee;
  --gray-100: #eceef0;
  --gray-300: #c7cbd1;
  --gray-500: #8a909a;
  --gray-700: #4d525a;
  --gray-900: #23262b;
  --border: #e2e4e8;
  --max-width: 1160px;
  --max-width-wide: 1320px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.28);

  --font-display: 'Big Shoulders', 'Arial Narrow', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.005em; margin: 0; }
h3, h4 { font-family: var(--font-body); font-weight: 700; margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }

.brand small {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--gray-300);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-300);
  transition: color .15s ease, background .15s ease;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); background: rgba(216,31,38,0.18); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-crm {
  font-family: var(--font-mono) !important;
  font-size: 0.78rem !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.nav-crm:hover { border-color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  padding: 8px 10px;
  font-size: 1rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--black) 0%, var(--near-black) 100%);
  color: var(--white);
  padding: 84px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 15%, rgba(216,31,38,0.22) 0%, rgba(216,31,38,0) 55%);
  pointer-events: none;
}

.hero .container { max-width: var(--max-width); position: relative; z-index: 1; }

/* ---------- Split hero (homepage) ---------- */
.hero-split {
  padding: 96px 0 0;
}

.hero-split .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-photo-frame img:not(.hero-photo-badge) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.hero-visual:hover .hero-photo-frame img:not(.hero-photo-badge) { transform: scale(1.08); }

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0) 40%);
  pointer-events: none;
}

.hero-photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.hero-float-card {
  position: absolute;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}

.hero-float-card.card-1 { top: 30px; left: -10px; animation-delay: .3s; }
.hero-float-card.card-2 { bottom: 40px; right: -20px; animation-delay: 1s; }

.hero-float-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  flex-shrink: 0;
}

.hero-float-card strong { display: block; font-size: 0.92rem; color: var(--white); }
.hero-float-card span { font-size: 0.76rem; color: var(--gray-500); }

/* ---------- Section divider (diagonal wave) ---------- */
.divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -1px;
}
.divider path { fill: currentColor; }

/* ---------- Glass / trust bar ---------- */
/* ---------- Ops ticker (signature element) ---------- */
.ops-ticker {
  background: var(--carbon);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}
.ops-ticker-track {
  display: inline-flex;
  align-items: center;
  animation: tickerScroll 34s linear infinite;
}
.ops-ticker:hover .ops-ticker-track { animation-play-state: paused; }
.ops-ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-300);
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.ops-ticker-track span strong { color: var(--red); font-weight: 600; }
.ops-ticker-track span.status-live::before {
  content: "●";
  color: var(--red);
  margin-right: 8px;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (prefers-reduced-motion: reduce) {
  .ops-ticker-track { animation: none; }
}

.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.trust-bar-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  white-space: nowrap;
}
.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.trust-bar-items span {
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-bar-items span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tilt-3d { transition: transform .12s ease-out, box-shadow .15s ease; transform-style: preserve-3d; will-change: transform; }
.testimonial-card .quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 800;
  margin-bottom: 4px;
  display: block;
}
.testimonial-card p {
  font-size: 0.96rem;
  color: var(--gray-700);
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial-attrib strong { display: block; font-size: 0.9rem; }
.testimonial-attrib span { font-size: 0.8rem; color: var(--gray-500); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}
.faq-question h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-question .plus {
  background: var(--red);
  color: var(--white);
  transform: rotate(135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  margin: 0 0 20px;
  padding: 0 4px;
  color: var(--gray-700);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ---------- Photo band ---------- */
.photo-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.photo-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 6s ease;
}
.photo-band:hover img { transform: scale(1.09); }

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}

.photo-band-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  width: 100%;
}
.photo-band-content .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.photo-band-text { max-width: 520px; }
.photo-band-text .eyebrow { margin-bottom: 12px; }
.photo-band-text h2 { font-size: 1.9rem; margin: 0 0 12px; font-weight: 800; }
.photo-band-text p { color: var(--gray-300); margin: 0; font-size: 1rem; }

.photo-band-stat {
  background: rgba(20,20,20,0.75);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  min-width: 200px;
}
.photo-band-stat strong { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.photo-band-stat span { font-size: 0.85rem; color: var(--gray-300); }

/* ---------- Section eyebrow (light bg) ---------- */
.eyebrow-dark {
  display: inline-block;
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before { content: "▸"; font-size: 0.8em; }

.hero h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.03;
  margin: 0 0 18px;
  max-width: 820px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .1s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--white); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--near-black); }

.btn-block { width: 100%; text-align: center; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }

.section-tight { padding: 44px 0; }

.section-alt { background: var(--off-white); }

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

h2.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

p.section-sub {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 0 40px;
}

.section-dark p.section-sub { color: var(--gray-300); }

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat { text-align: left; border-left: 3px solid var(--red); padding-left: 16px; }
.stat .num { font-family: var(--font-mono); font-size: 2rem; font-weight: 600; color: var(--white); display: block; }
.stat .label { font-size: 0.82rem; color: var(--gray-300); font-family: var(--font-mono); }

/* ---------- Audience Cards (home) ---------- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.path-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 28px 26px 32px;
  box-shadow: var(--shadow);
  transition: box-shadow .15s ease, transform .15s ease, border-top-color .15s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.path-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-top-color: var(--red); }

.path-card .card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.path-card .channel-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  padding-top: 4px;
}

.path-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--black);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}

.path-card .icon svg { width: 26px; height: 26px; }

.path-card:hover .icon { background: var(--red); color: var(--white); transform: scale(1.08) rotate(-4deg); }

.path-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.path-card p { color: var(--gray-700); font-size: 0.95rem; margin: 0 0 22px; flex-grow: 1; }

.path-card .btn { align-self: flex-start; }

/* ---------- Feature grid (generic 3-col) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}

.feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--gray-700); font-size: 0.93rem; }

.feature {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.num-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  transition: transform .2s ease, background .2s ease;
}
.num-badge svg { width: 20px; height: 20px; }
.num-badge--dark { background: var(--black); }

.feature .num-badge { margin-bottom: 14px; }
.feature:hover .num-badge { transform: scale(1.1) rotate(-4deg); }

/* ---------- Verticals / tags ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag {
  background: var(--gray-100);
  border: 1px solid var(--border);
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}
.section-dark .tag { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: var(--white); }

/* ---------- Process steps ---------- */
.process-list { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.process-list li {
  counter-increment: step;
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.process-list li:last-child { border-bottom: none; }
.process-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: var(--red);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.process-list h3 { margin: 0 0 4px; font-size: 1.02rem; }
.process-list p { margin: 0; color: var(--gray-700); font-size: 0.92rem; }

/* ---------- Forms ---------- */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 720px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
}

.field .req { color: var(--red); }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 13px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  background: var(--white);
  color: var(--gray-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216,31,38,0.15);
}

.field textarea { resize: vertical; min-height: 100px; }

.field .error-msg {
  font-size: 0.8rem;
  color: var(--red-dark);
  display: none;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--red-dark);
}

.field.invalid .error-msg { display: block; }

.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; }
.checkbox-row input { width: auto; }

fieldset { border: none; padding: 0; margin: 0 0 18px; }
fieldset legend {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0;
}

.form-note { font-size: 0.82rem; color: var(--gray-500); margin-top: 8px; }

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success .check {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px; font-weight: 800;
}
.form-success h3 { margin: 0 0 10px; font-size: 1.4rem; }
.form-success p { color: var(--gray-700); margin: 0 0 6px; }

/* ---------- Two column layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.info-card:hover {
  transform: translateX(4px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.info-card h3 { margin: 0 0 8px; font-size: 1rem; }
.info-card p { margin: 0; color: var(--gray-700); font-size: 0.9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: 1.9rem; margin: 0 0 12px; }
.cta-band p { color: var(--gray-300); margin: 0 0 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Audience banner (used on sub-pages) ---------- */
.audience-banner {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}
.audience-banner a { text-decoration: underline; }

.legal-notice {
  background: #fdf3e0;
  border: 1px solid var(--gold);
  color: #6b4c12;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 32px;
}
.legal-notice strong { color: var(--gold-dark); }

.policy-notice {
  background: #fdecec;
  border: 1px solid var(--red);
  border-left: 4px solid var(--red);
  color: var(--red-dark);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 32px;
}
.policy-notice strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.legal-content h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--gray-700); font-size: 0.95rem; line-height: 1.65; }
.legal-content ul { padding-left: 20px; }
.legal-content .updated { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 50px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand { margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-500); max-width: 280px; }

.footer-contact-line {
  font-size: 0.88rem;
  color: var(--gray-300);
  margin: 14px 0 0;
}
.footer-contact-line a { color: var(--gray-300); }
.footer-contact-line a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--gray-300); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 0.8rem;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Utilities & component variants ---------- */
.visually-hidden {
  position: absolute;
  left: -9999px;
}

.mt-0 { margin-top: 0; }

.hero-split--tight { padding-top: 64px; }
.hero-split--tighter { padding-top: 56px; }
.hero-visual--compact { height: 340px; }

.section-title--sm { font-size: 1.5rem; }

.form-wrap--flush { max-width: none; }

.testimonial-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.info-card--row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-on-dark {
  background: transparent;
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.feature-on-dark p { color: var(--gray-300); }

.verticals-block { margin-top: 36px; }
.verticals-label {
  color: var(--gray-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-split .container { grid-template-columns: 1fr; }
  .hero-visual { height: 320px; order: -1; margin-bottom: 12px; }
  .hero-float-card { padding: 10px 14px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .photo-band { min-height: 340px; }
  .photo-band-content .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 880px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .path-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .trust-bar .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; }
  .nav-toggle { display: block; }
  .form-wrap { padding: 24px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 46px; }
  .hero-split { padding-top: 56px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-float-card.card-1 { left: 0; }
  .hero-float-card.card-2 { right: 0; }
}

/* ---------- Motion: entrance + scroll reveal ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes crestFadeIn {
  from { opacity: 0; }
  to { opacity: 0.06; }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 100%; }
}

.hero .eyebrow { animation: fadeUp .6s ease both; }
.hero h1 { animation: fadeUp .7s ease .08s both; }
.hero p.lead { animation: fadeUp .7s ease .16s both; }
.hero-actions { animation: fadeUp .7s ease .24s both; }
.hero .stats-row { animation: fadeUp .7s ease .32s both; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  transition: opacity .5s cubic-bezier(.2,.9,.3,1.3), transform .5s cubic-bezier(.2,.9,.3,1.3);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .18s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .34s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .42s; }

.stat .num { display: block; }
.stat.reveal-count .num::after { content: ""; }

@media (prefers-reduced-motion: reduce) {
  .hero .eyebrow, .hero h1, .hero p.lead, .hero-actions, .hero .stats-row,
  .reveal, .reveal-stagger > * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-float-card { animation: none !important; }
}
