/* JobsFlix — BCG-inspired light theme + subtle sci-fi motion */
/*
  Design system (Stripe-style tokens)
  -- Colors: --brand-blue, --accent, --bg, --bg-alt, --fg, --fg-muted, --line
  -- Layout: --wide (max content width), .wrap-wide, .full-bleed
  -- Type: .display (serif), .eyebrow, .section-lead, .muted-small
  -- Components: .btn .btn-primary|secondary, .panel, .section-head, .proof-grid
  -- Spacing: .section { 96px vertical }, use 24/32/48px gaps inside grids
*/
:root {
  --bg: #fafaf8;
  --bg-alt: #f0f3f8;
  --bg-dark: #071a33;
  --fg: #1a1a1a;
  --fg-muted: #5c5c5c;
  --line: #d8dde6;
  --accent: #ff5722;
  --accent-dark: #e64a19;
  --brand-blue: #0c2d5c;
  --brand-blue-soft: #1a4d8f;
  --brand-blue-light: #3d6fa8;
  --panel: #ffffff;
  --shadow: 0 12px 48px rgba(12, 45, 92, 0.1);
  --radius: 4px;
  --wide: min(1440px, 100% - 48px);
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.full-bleed {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.wrap-wide {
  width: var(--wide);
  margin-inline: auto;
}

.display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.section {
  padding: 96px 0;
  position: relative;
}

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

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

.section--dark .eyebrow,
.section--dark .section-lead,
.section--dark .phase-label {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark .display,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section--dark a {
  color: #9ec5eb;
}

.section-inner {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 18ch;
}

.section-lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: 1.65;
}

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.page-title {
  font-size: clamp(36px, 5vw, 56px);
}

.body-lg {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 65ch;
}

.muted {
  color: var(--fg-muted);
}

.muted-small {
  font-size: 13px;
  color: var(--fg-muted);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: none;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  color: var(--fg);
}

.nav-links a.nav-active {
  color: var(--brand-blue);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 26, 51, 0.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 100px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer a {
  color: #fff;
  font-size: 20px;
  font-family: var(--font-serif);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--brand-blue-soft);
  color: #fff !important;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue) !important;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 12px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

.text-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  border-bottom: 1px solid var(--accent);
  display: inline-block;
  margin-top: 16px;
}

/* Hero */
.hero {
  min-height: 92vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fafaf8 0%, #eef2f8 50%, #fafaf8 100%);
}

.hero--compact {
  min-height: auto;
  padding: 140px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 3;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-top: 16px;
  color: var(--brand-blue);
}

.hero-lead {
  font-size: clamp(17px, 2vw, 20px);
  margin-top: 24px;
  max-width: 52ch;
  color: var(--fg-muted);
}

.hero-sub {
  font-size: 14px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(12, 45, 92, 0.06);
  border-left: 3px solid var(--accent);
  max-width: 52ch;
}

/* Sci-fi layers */
.scifi-band {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scifi-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.scifi-aurora {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 50% at 70% 30%, rgba(255, 87, 34, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(26, 77, 143, 0.18), transparent 55%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.scifi-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 45, 92, 0.04) 50%, transparent 100%);
  background-size: 100% 8px;
  animation: scan-lines 8s linear infinite;
  opacity: 0.4;
}

.scifi-band--dark .scifi-canvas {
  opacity: 0.35;
}

.scifi-band--dark .scifi-aurora {
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 87, 34, 0.15), transparent 60%);
}

@keyframes aurora-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(3%, -2%) scale(1.05);
  }
}

@keyframes scan-lines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 100%;
  }
}

/* Hero moving imagery */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  border-radius: 2px;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  filter: saturate(0.6) contrast(1.1);
  animation: float-img 24s ease-in-out infinite;
}

.hero-img--1 {
  width: 42%;
  height: 55%;
  top: 10%;
  right: -5%;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1200&q=80");
  animation-delay: 0s;
}

.hero-img--2 {
  width: 35%;
  height: 45%;
  bottom: 5%;
  left: 5%;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1000&q=80");
  animation-delay: -8s;
}

.hero-img--3 {
  width: 28%;
  height: 38%;
  top: 40%;
  left: 40%;
  background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=800&q=80");
  animation-delay: -14s;
  opacity: 0.12;
}

@keyframes float-img {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-12px, 16px) scale(1.03);
  }
}

/* Form */
.employer-form {
  padding: 32px;
}

.form-head h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--brand-blue);
}

.form-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

.form-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.form-tab {
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--fg-muted);
  transition: all 0.2s;
}

.form-tab.is-active,
.form-tab:hover {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  color: #fff;
}

.form-row {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--fg-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--brand-blue);
  outline-offset: 1px;
}

#request {
  scroll-margin-top: 96px;
}

/* Proof strip */
.proof-strip {
  background: var(--brand-blue);
  color: #fff;
  padding: 40px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
}

.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 8px;
}

/* Audience */
.audience-banner {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.audience-inner {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .audience-inner {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
}

.audience-primary strong {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--brand-blue);
}

.audience-primary p {
  margin: 8px 0 16px;
  color: var(--fg-muted);
}

/* Pillars */
.pillar-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  padding: 36px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(12, 45, 92, 0.14);
}

.pillar-id {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 12px 0;
  color: var(--brand-blue);
}

.card-desc {
  color: var(--fg-muted);
  font-size: 15px;
}

.card-bullets {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}

.card-bullets li {
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.card-bullets li::before {
  content: "→ ";
  color: var(--accent);
}

/* Impact */
.impact-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.impact-card {
  padding: 32px;
}

.impact-sector {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.impact-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 12px 0 20px;
}

.impact-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.impact-val {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-blue);
  display: block;
}

.impact-lbl {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Quotes */
.quote-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote-card {
  padding: 32px;
  margin: 0;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--brand-blue);
}

.quote-card footer {
  margin-top: 20px;
  font-size: 13px;
}

.quote-card cite {
  font-style: normal;
  font-weight: 600;
}

.quote-industry {
  display: block;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* Phases */
.promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 40px;
  list-style: none;
}

.promise-row li {
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}

.promise-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.phase-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 900px) {
  .phase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.phase-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.phase-n {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.phase-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 8px 0 16px;
}

.phase-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.phase-label--accent {
  color: #ffb199;
}

.phase-cols p {
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.9;
}

/* Industries */
.industry-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  background: var(--panel);
  padding: 32px;
}

.industry-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--brand-blue);
}

.ind-roles {
  font-size: 14px;
  margin-top: 12px;
  color: var(--fg-muted);
}

/* Insights */
.insight-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.insight-cat {
  padding: 10px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
}

.insight-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insight-card {
  padding: 28px;
}

.insight-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.insight-tag {
  color: var(--brand-blue);
  font-weight: 600;
}

.insight-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 12px;
}

.report-card {
  margin-top: 40px;
  padding: 40px;
  background: var(--brand-blue);
  color: #fff;
}

.report-card .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.report-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 12px 0;
}

.report-card p {
  opacity: 0.9;
  max-width: 56ch;
}

.report-card .btn-secondary {
  margin-top: 24px;
  border-color: #fff;
  color: #fff !important;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  color: var(--brand-blue);
}

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

.faq-item p {
  padding: 0 24px 24px;
  color: var(--fg-muted);
  font-size: 15px;
}

.faq-more {
  margin-top: 24px;
  font-size: 14px;
}

/* Method */
.method-split {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .method-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.method-list {
  list-style: none;
  counter-reset: method;
}

.method-list li {
  counter-increment: method;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  padding-left: 48px;
  position: relative;
}

.method-list li::before {
  content: counter(method, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent);
}

/* Coverage */
.coverage-split {
  display: grid;
  gap: 32px;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tag {
  padding: 12px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
}

/* Cases */
.case-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-card {
  padding: 32px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.case-card--1::before {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=800&q=80");
}

.case-card--2::before {
  background-image: url("https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=800&q=80");
}

.case-card--3::before {
  background-image: url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80");
}

.case-card h3,
.case-card p,
.case-card a {
  position: relative;
  z-index: 1;
}

.case-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--brand-blue);
}

/* CTA band */
.cta-band {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #061428 100%);
  color: #fff;
  text-align: center;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-inner .display {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  max-width: 20ch;
  margin-inline: auto;
}

.cta-inner p {
  margin: 20px auto 32px;
  max-width: 48ch;
  opacity: 0.9;
}

.cta-band .btn-primary {
  background: var(--accent);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-panel {
  padding: 40px;
}

.contact-email {
  font-family: var(--font-serif);
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
  color: var(--brand-blue) !important;
}

/* Footer */
.site-footer {
  background: var(--fg);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 48px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  opacity: 0.6;
}

.footer-note {
  font-size: 12px;
  margin-top: 16px;
  opacity: 0.5;
  max-width: 40ch;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.7;
}

/* Subpages */
.workforce-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .workforce-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.workforce-card {
  padding: 32px;
}

.workforce-card ul {
  margin-top: 16px;
  padding-left: 20px;
  font-size: 14px;
  color: var(--fg-muted);
}

.blend-box {
  margin-top: 32px;
  padding: 32px;
}

.program-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .program-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  padding: 28px;
}

.skills-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skill-card {
  padding: 24px;
}

.services-list {
  list-style: none;
  margin-top: 24px;
}

.services-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.services-list li::before {
  content: "→ ";
  color: var(--accent);
}

.why-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-page-grid {
  display: grid;
  gap: 48px;
  padding: 64px 0;
}

@media (min-width: 900px) {
  .form-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

/* Trust alert (Forbes firms: scam warnings) */
.trust-alert {
  background: #fff8e6;
  border-bottom: 1px solid #f0d78c;
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  z-index: 101;
}

.trust-alert-inner {
  display: block;
}

.trust-alert-message {
  margin: 0;
  line-height: 1.5;
  color: var(--text);
}

.trust-alert-link {
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-alert-link:hover {
  color: var(--brand-blue-dark, #0a2449);
}

/* Delivery metrics strip */
.delivery-metrics {
  padding: 32px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}

.delivery-eyebrow {
  display: block;
  margin-bottom: 16px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .delivery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.delivery-val {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--brand-blue);
}

.delivery-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* Engagement models */
.engagement-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .engagement-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .engagement-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.engagement-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.engagement-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.engagement-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 10px 0;
  color: var(--brand-blue);
}

/* Placement marquee */
.placement-marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.placement-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.placement-pill {
  padding: 10px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* Service matrix */
.matrix-wrap {
  padding: 0;
  overflow-x: auto;
}

.service-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.service-matrix th,
.service-matrix td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.service-matrix th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.matrix-yes {
  color: var(--brand-blue);
  font-weight: 700;
  text-align: center;
}

.matrix-no {
  color: var(--muted);
  text-align: center;
}

/* Vetting */
.vetting-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .vetting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vetting-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vetting-card {
  padding: 24px;
}

.vetting-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 8px 0;
}

/* Why compare */
.why-compare-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .why-compare-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.compare-cards {
  display: grid;
  gap: 16px;
}

.compare-card {
  padding: 24px;
}

.compare-card h3 {
  font-size: 16px;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

/* Trust signals */
.trust-signals {
  padding: 48px 0;
}

.trust-signals-inner {
  padding: 40px;
}

.trust-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.trust-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Guide promo */
.guide-promo {
  padding: 48px;
  background: linear-gradient(135deg, rgba(12, 45, 92, 0.06), rgba(255, 87, 34, 0.06));
}

.guide-promo-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .guide-promo-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

.guide-promo-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .guide-promo-cta {
    text-align: right;
  }
}

.guide-section {
  padding: 32px;
  margin-bottom: 20px;
}

.guide-cta {
  padding: 32px;
  margin-top: 24px;
  text-align: center;
}

.insights-page-list {
  display: grid;
  gap: 32px;
}

.insight-article {
  padding: 36px;
  scroll-margin-top: 100px;
}

@media (prefers-reduced-motion: reduce) {
  .placement-track {
    animation: none !important;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Grain overlay — subtle on light */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .scifi-aurora,
  .scifi-scan,
  .hero-img {
    animation: none !important;
  }
  .hero-img {
    opacity: 0.06;
  }
}

/* Phase 1–3: logos, hero paths, model picker, map, sticky CTA, platform */
.logo-strip {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.logo-strip-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.logo-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}

.proof-footnote {
  margin-top: 16px;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.hero-paths {
  padding: 48px 0 32px;
  background: var(--bg);
}

.hero-path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-path-card {
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.hero-path-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand-blue-light);
}

.hero-path-sub {
  font-weight: 600;
  color: var(--brand-blue);
  margin: 8px 0;
}

.model-picker {
  padding: 28px;
}

.model-picker-q {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.model-picker-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-picker-opt {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.model-picker-opt:hover {
  border-color: var(--brand-blue);
  background: var(--bg-alt);
}

.approach-grid {
  display: grid;
  gap: 40px;
}

.approach-cols {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .approach-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
  .approach-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.approach-method h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.role-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.role-hub-card {
  display: block;
  color: inherit;
  transition: box-shadow 0.2s;
}

.role-hub-card:hover {
  box-shadow: var(--shadow);
  color: inherit;
}

.role-hub-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.coverage-split--map {
  align-items: center;
}

.coverage-map-inner {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-alt), #e8eef6);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--brand-blue);
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(12, 45, 92, 0.25);
}

.map-pin--remote {
  background: var(--accent);
  font-size: 9px;
}

.video-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .video-split {
    grid-template-columns: 1fr 1fr;
  }
}

.video-embed {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-alt);
  text-align: center;
  padding: 24px;
}

.video-poster-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.trends-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.trend-stat {
  font-weight: 600;
  color: var(--brand-blue);
  margin: 8px 0;
}

.report-gate,
.guide-gate {
  padding: 32px;
  margin-bottom: 24px;
}

.gate-form {
  margin-top: 20px;
}

.landing-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.landing-body-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 960px) {
  .landing-body-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.landing-stat {
  text-align: center;
  padding: 24px;
}

.guarantee-panel {
  padding: 36px;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  backdrop-filter: blur(8px);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  font-weight: 600;
  font-size: 14px;
}

.footer-verify .verify-list {
  list-style: none;
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-verify .verify-list li {
  margin-bottom: 6px;
}

.footer-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.thank-you-panel {
  padding: 48px 32px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.legal-section {
  margin-top: 32px;
}

.legal-h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.legal-list {
  margin: 12px 0 0 20px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-updated {
  margin-top: 8px;
}

.footer-address {
  margin-top: 12px;
  line-height: 1.5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 720px) {
  .hero-path-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}
