/* ===========================================================================
   Recognition as a Service — styles.css
   Design tokens ported from fonts/colors.css, typography.css, spacing.css
   =========================================================================== */

@font-face {
  font-family: 'Staff XX Condensed';
  src: url('fonts/StaffXXCondensed-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Staff Condensed';
  src: url('fonts/StaffCondensed-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Intl';
  src: url('fonts/SuisseIntl-Light.otf') format('opentype');
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core colors */
  --crimson: #EC133B;
  --racing-green: #0A0F0D;
  --white: #FFFFFF;
  --white-pointer: #FCF7FF;
  --mercury: #EAEAEA;

  /* Accent spectrum */
  --texas-rose: #FFBC4C;
  --malibu: #66C7F4;
  --green-haze: #01AA4F;
  --ecstasy: #F76814;
  --brilliant-rose: #EF3BB9;
  --conifer: #9BE564;
  --dodger-blue: #2088FF;
  --turquoise: #3AD4C8;
  --electric-violet: #784AFF;

  /* Crimson scale */
  --crimson-700: #B00A2A;
  --crimson-600: #CE0E32;
  --crimson-300: #F5728A;
  --crimson-050: #FDE7EB;

  /* Ink / neutral scale */
  --ink: #0A0F0D;
  --ink-800: #1A201D;
  --ink-700: #2C322F;
  --neutral-700: #3E4541;
  --neutral-500: #6E756F;
  --neutral-400: #969C97;
  --neutral-300: #C6C9C5;
  --neutral-200: var(--mercury);
  --neutral-100: #F2F2F0;

  /* Fonts */
  --font-display: 'Staff XX Condensed', 'Bebas Neue', 'Staff Condensed', sans-serif;
  --font-heading: 'Staff Condensed', 'Bebas Neue', sans-serif;
  --font-body: 'Suisse Intl', 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10,15,13,0.08);
  --shadow-md: 0 10px 28px rgba(10,15,13,0.10);
  --shadow-lg: 0 22px 56px rgba(10,15,13,0.14);

  --container-max: 1200px;
}

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

html { scroll-behavior: auto; } /* JS handles smooth scroll with header offset */

body {
  margin: 0;
  background: var(--white-pointer);
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--neutral-700);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
input, textarea, button { font-family: inherit; }
img { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  color: var(--racing-green);
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
}

.eyebrow--on-dark { color: var(--crimson-300); }

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

/* ---- Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--crimson); color: #fff; }
.btn--primary:hover { background: var(--crimson-600); }

.btn--dark { background: var(--racing-green); color: #fff; }
.btn--dark:hover { background: var(--ink-700); }

.btn--outline { background: transparent; color: var(--racing-green); border: 1.5px solid var(--racing-green); }
.btn--outline:hover { background: var(--racing-green); color: #fff; }

.btn--ghost { background: transparent; color: var(--racing-green); border: 1.5px solid rgba(10,15,13,.2); }
.btn--ghost:hover { border-color: var(--racing-green); }

.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost-light:hover { border-color: #fff; }

.btn--sm { padding: 9px 20px; font-size: 12px; }
.btn--lg { padding: 16px 32px; font-size: 14px; }

/* ---- Header ----------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--mercury);
}
.site-header .logo img { height: 28px; width: auto; display: block; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .01em;
  transition: color .15s;
}
.site-nav a.nav-link:hover { color: var(--crimson); }

@media (max-width: 780px) {
  .site-nav .nav-link { display: none; }
  .site-header { padding: 0 20px; }
}

/* ---- Hero --------------------------------------------------------------- */
#hero {
  position: relative;
  background: var(--racing-green);
  color: #fff;
  padding: 100px 40px 96px;
  overflow: hidden;
  min-height: 600px;
}
.hero-mark {
  position: absolute;
  right: -60px;
  top: -40px;
  height: 520px;
  width: auto;
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 360px; min-width: 280px; }
.hero-copy h1 {
  font-size: clamp(64px, 9.5vw, 136px);
  color: #fff;
  margin: 0 0 28px;
}
.hero-copy h1 span { color: var(--crimson); }
.hero-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero-definition {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 48ch;
  margin: -20px 0 28px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cta-row .link-arrow {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.hero-cta-row .link-arrow:hover { color: #fff; }

.hero-capture {
  flex: 0 0 300px;
  min-width: 260px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 5;
}
.hero-capture .eyebrow { margin-bottom: 10px; }
.hero-capture p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.5; margin: 0 0 22px; }
.hero-form { display: flex; flex-direction: column; gap: 12px; }
.hero-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  width: 100%;
}
.hero-form input::placeholder { color: rgba(255,255,255,0.55); }
.hero-form input:invalid.touched { border-color: var(--crimson-300); }
.hero-form button {
  padding: 14px 24px;
  background: var(--crimson);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.hero-form button:hover { background: var(--crimson-600); }
.hero-success { text-align: center; padding: 12px 0; }
.hero-success img { height: 48px; width: auto; margin-bottom: 14px; }
.hero-success p.title { font-size: 16px; font-weight: 600; color: #fff; margin: 0 0 6px; }
.hero-success p.sub { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; }
.hero-form-error {
  font-size: 12px;
  color: var(--crimson-300);
  margin: -4px 0 0;
  min-height: 14px;
}

/* Confetti */
.confetti {
  position: absolute;
  pointer-events: none;
  --r: 0deg;
}
.confetti-round { border-radius: 50%; }

/* ---- Problem section ---------------------------------------------------- */
.section-problem { background: var(--white-pointer); padding: 96px 40px; }
.problem-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.problem-visual { flex: 1 1 380px; min-width: 280px; }

/* ---- Tug of war: sales and marketing pull, the story stays stuck ---------- */
.tug-stage {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 400 / 240;
}

.tug-figure {
  position: absolute;
  top: 50%;
  width: 28%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tug-figure--sales { left: 0; animation: tug-pull-right 1.2s ease-in-out infinite; }
.tug-figure--marketing { right: 0; animation: tug-pull-left 1.2s ease-in-out infinite; animation-delay: .6s; }
.tug-figure-emoji { font-size: 52px; line-height: 1; }
.tug-figure-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.tug-rope { position: absolute; inset: 0; width: 100%; height: 100%; }
.tug-rope-line { stroke: var(--racing-green); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 11 7; }

.tug-knot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: tug-knot-jitter 1.2s ease-in-out infinite;
}
.tug-knot-doc { font-size: 32px; line-height: 1; filter: drop-shadow(0 3px 6px rgba(10,15,13,.2)); }
.tug-static {
  font-size: 20px;
  line-height: 1;
  color: var(--crimson);
  margin-bottom: -4px;
  animation: tug-static-flicker .6s steps(2) infinite;
}

.tug-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--neutral-500);
  font-style: italic;
}

@keyframes tug-pull-right {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(8px); }
}
@keyframes tug-pull-left {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}
@keyframes tug-knot-jitter {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  25% { transform: translate(-50%, -50%) translateX(3px); }
  75% { transform: translate(-50%, -50%) translateX(-3px); }
}
@keyframes tug-static-flicker {
  0%, 100% { opacity: 1; transform: rotate(0deg); }
  50% { opacity: .35; transform: rotate(-10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tug-figure--sales,
  .tug-figure--marketing,
  .tug-knot,
  .tug-static {
    animation: none;
  }
}

.problem-copy { flex: 1 1 460px; min-width: 280px; text-align: left; }
.section-problem h2 { font-size: clamp(38px, 4.5vw, 64px); margin: 0 0 32px; }
.problem-paras { display: flex; flex-direction: column; gap: 20px; max-width: 62ch; }
.problem-paras p { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.65; color: var(--neutral-700); margin: 0; }
.problem-callout {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--racing-green);
  line-height: 1.4;
  margin: 8px 0 0;
  border-left: 4px solid var(--crimson);
  padding-left: 20px;
  text-align: left;
}

/* ---- Solution bridge ------------------------------------------------- */
.section-solution { background: var(--racing-green); padding: 80px 40px; }
.solution-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}
.solution-copy { flex: 1 1 460px; min-width: 280px; }
.solution-copy h2 { font-size: clamp(52px, 6vw, 92px); color: #fff; margin: 0 0 26px; }
.solution-copy p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; color: rgba(255,255,255,0.75); max-width: 48ch; margin: 0 0 32px; }
.solution-photo {
  flex: 0 1 520px;
  min-width: 280px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ink-800);
}
.solution-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .85; display: block; }

/* ---- How it works --------------------------------------------------- */
.section-how { background: var(--white); padding: 100px 40px; }
.section-how .container { max-width: var(--container-max); }
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading h2 { font-size: clamp(44px, 5vw, 76px); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.step-photo img { width: 100%; height: 280px; object-fit: cover; border-radius: 20px; display: block; }
@media (min-width: 781px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid > *:nth-child(1) { grid-column: 1; grid-row: 1; }
  .steps-grid > *:nth-child(2) { grid-column: 1; grid-row: 2; }
  .steps-grid > *:nth-child(3) { grid-column: 2; grid-row: 1; }
  .steps-grid > *:nth-child(4) { grid-column: 2; grid-row: 2; }
  .steps-grid > *:nth-child(5) { grid-column: 3; grid-row: 1; }
  .steps-grid > *:nth-child(6) { grid-column: 3; grid-row: 2; }
}
.step-card {
  min-width: 0;
  padding: 36px 32px;
  background: var(--white-pointer);
  border-radius: 20px;
  border: 1px solid var(--mercury);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover { box-shadow: 0 8px 32px rgba(10,15,13,.1); transform: translateY(-2px); }
.step-card .step-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--crimson);
  margin-bottom: 4px;
}
.step-card h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.1; }
.step-card p { font-size: 16px; line-height: 1.65; color: var(--neutral-700); margin: 0; flex: 1; }

.photo-strip-caption { text-align: center; font-size: 15px; color: var(--neutral-500); margin: 24px 0 0; }

/* ---- Benefits ------------------------------------------------------- */
.section-benefits { background: var(--neutral-100); padding: 100px 40px; }
.section-benefits .container { max-width: var(--container-max); }
.benefits-head {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.benefits-head-left { flex: 1 1 400px; }
.benefits-head-left h2 { font-size: clamp(44px, 5vw, 76px); }
.benefits-head-right { flex: 0 1 380px; padding-top: 8px; }
.benefits-head-right p { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; color: var(--neutral-700); margin: 0 0 24px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--mercury);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: 0 6px 24px rgba(10,15,13,.08); transform: translateY(-2px); }
.benefit-card .tag { font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--crimson); display: flex; align-items: center; gap: 10px; }
.tag-emoji { display: inline-block; font-size: 32px; animation: tag-emoji-bounce 2.6s ease-in-out infinite; }
.benefit-card:nth-child(2) .tag-emoji { animation-delay: 0.15s; }
.benefit-card:nth-child(3) .tag-emoji { animation-delay: 0.3s; }
.benefit-card:nth-child(4) .tag-emoji { animation-delay: 0.45s; }
.benefit-card:nth-child(5) .tag-emoji { animation-delay: 0.6s; }
.benefit-card:nth-child(6) .tag-emoji { animation-delay: 0.75s; }
@keyframes tag-emoji-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tag-emoji { animation: none; }
}
.benefit-card h3 { font-family: var(--font-body); text-transform: none; font-size: 17px; font-weight: 700; color: var(--racing-green); margin: 0; line-height: 1.3; }
.benefit-card p { font-size: 15px; line-height: 1.6; color: var(--neutral-700); margin: 0; }

/* ---- What's included -------------------------------------------------- */
.section-included { background: var(--racing-green); padding: 100px 40px; position: relative; overflow: hidden; }
.included-mark { position: absolute; left: -80px; bottom: -60px; height: 420px; width: auto; opacity: .04; pointer-events: none; }
.section-included .container { max-width: var(--container-max); position: relative; }
.included-head { text-align: center; margin-bottom: 56px; }
.included-head h2 { font-size: clamp(44px, 5vw, 76px); color: #fff; margin: 0 0 18px; }
.included-head p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 52ch; margin: 0 auto; }

.included-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.included-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .2s;
}
.included-card:hover { background: rgba(255,255,255,0.1); }
.included-card .tag { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--crimson); }
.included-card h3 { font-family: var(--font-body); text-transform: none; font-size: 17px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.included-card h3 a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); }
.included-card h3 a:hover { border-bottom-color: #fff; }
.included-card p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.65); margin: 0; }

/* ---- Content assets from every nomination -------------------------------- */
.section-assets { background: var(--white); padding: 100px 40px; }
.section-assets .section-heading { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.assets-intro { font-size: 17px; line-height: 1.65; color: var(--neutral-700); margin: 20px 0 0; }
.assets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.asset-card {
  background: var(--white-pointer);
  border-radius: 16px;
  border: 1px solid var(--mercury);
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.asset-card:hover { box-shadow: 0 6px 24px rgba(10,15,13,.08); transform: translateY(-2px); }
.asset-card .tag { font-size: 30px; line-height: 1; }
.asset-card h3 { font-family: var(--font-body); text-transform: none; font-size: 16px; font-weight: 700; color: var(--racing-green); margin: 0; line-height: 1.3; }
.asset-card p { font-size: 14px; line-height: 1.6; color: var(--neutral-700); margin: 0; }

/* ---- Content machine: sales + marketing walk a customer in, assets fly out */
.content-machine {
  position: relative;
  max-width: 720px;
  margin: 0 auto 64px;
  aspect-ratio: 400 / 240;
}

.content-figure {
  position: absolute;
  top: 50%;
  width: 30%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: content-figure-bob 3s ease-in-out infinite;
}
.content-figure--marketing { left: 0; }
.content-figure--sales { right: 0; animation-delay: .4s; }
.content-figure-emoji { font-size: 60px; line-height: 1; }
.content-figure-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.content-feeds { position: absolute; inset: 0; width: 100%; height: 100%; }
.content-feed-line {
  fill: none;
  stroke: var(--mercury);
  stroke-width: 3;
  stroke-dasharray: 7 7;
  animation: content-feed-flow 1s linear infinite;
}

.content-housing {
  position: absolute;
  left: 33%;
  top: 12%;
  width: 34%;
  height: 76%;
  background: linear-gradient(180deg, #171d1a 0%, var(--racing-green) 100%);
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(10, 15, 13, 0.28);
}
.content-light {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 10px var(--crimson);
  animation: content-light-blink 1.6s ease-in-out infinite;
}
.content-vent {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}
.content-vent:nth-child(2) { top: 24px; }
.content-vent:nth-child(3) { top: 36px; }
.content-vent:nth-child(4) { top: 48px; }

.content-window {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 64px;
  bottom: 40px;
  border-radius: 10px;
  background: rgba(5, 8, 6, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.content-gear {
  position: absolute;
  border-radius: 50%;
  background: var(--mercury);
  opacity: .55;
}
.content-gear::before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--racing-green);
}
.content-gear--a { width: 46%; height: 46%; left: 6%; top: 30%; animation: content-gear-spin 2.6s linear infinite; }
.content-gear--b { width: 30%; height: 30%; left: 46%; top: 8%; animation: content-gear-spin 1.8s linear infinite reverse; }
.content-gear--c { width: 32%; height: 32%; left: 54%; top: 54%; animation: content-gear-spin 2s linear infinite; }

.content-customer-inside {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 1;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  animation: content-customer-pulse 2.4s ease-in-out infinite;
}

.content-output {
  position: absolute;
  left: 38%;
  top: 6%;
  width: 24%;
  height: 30%;
  pointer-events: none;
}
.output-chip {
  position: absolute;
  left: 50%;
  bottom: 0;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, 0) scale(.7);
  animation: content-output-fly 3s ease-in infinite;
}
.output-chip--1 { animation-delay: 0s; margin-left: -26px; }
.output-chip--2 { animation-delay: .5s; margin-left: -14px; }
.output-chip--3 { animation-delay: 1s; margin-left: -2px; }
.output-chip--4 { animation-delay: 1.5s; margin-left: 10px; }
.output-chip--5 { animation-delay: 2s; margin-left: 22px; }
.output-chip--6 { animation-delay: 2.5s; margin-left: -8px; }

.content-machine-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--neutral-500);
  font-style: italic;
}

@keyframes content-figure-bob {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 4px)); }
}
@keyframes content-feed-flow { to { stroke-dashoffset: -28; } }
@keyframes content-light-blink { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes content-gear-spin { to { transform: rotate(360deg); } }
@keyframes content-output-fly {
  0% { opacity: 0; transform: translate(-50%, 0) scale(.7); }
  15% { opacity: 1; transform: translate(-50%, -20%) scale(1); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -260%) scale(.9); }
}
@keyframes content-customer-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .content-figure,
  .content-feed-line,
  .content-light,
  .content-gear,
  .content-customer-inside,
  .output-chip {
    animation: none;
  }
}

/* ---- Award Programs / validation ---------------------------------------- */
.section-programs { background: var(--white-pointer); padding: 100px 40px; }
.section-programs .container { max-width: var(--container-max); }
.section-programs .section-heading { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.programs-intro { font-size: 17px; line-height: 1.65; color: var(--neutral-700); margin: 20px 0 0; }

.programs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-bottom: 56px; }
.program-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--mercury);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.program-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.program-card img { max-width: 100%; height: 64px; width: auto; object-fit: contain; }
.program-card h3 { font-family: var(--font-body); text-transform: none; font-size: 15px; font-weight: 700; color: var(--racing-green); margin: 0; line-height: 1.3; }
.program-card p { font-size: 13px; line-height: 1.5; color: var(--neutral-500); margin: 0; }

/* ---- Proof ------------------------------------------------------------ */
.section-proof { background: var(--white); padding: 100px 40px; }
.section-proof .container { max-width: var(--container-max); }
.proof-inner { display: flex; gap: 64px; align-items: flex-start; flex-wrap: wrap; }
.proof-left { flex: 1 1 460px; min-width: 300px; }
.wlta-logo { height: 64px; width: auto; display: block; margin-bottom: 22px; }
.proof-left h2 { font-size: clamp(44px, 5vw, 72px); margin: 0 0 24px; }
.proof-left p { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; color: var(--neutral-700); margin: 0 0 14px; }
.proof-left p:last-of-type { margin-bottom: 26px; }

.quote-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white-pointer);
  border: 1px solid var(--mercury);
  border-radius: 20px;
  padding: 26px 28px;
  margin-bottom: 30px;
}
.quote-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; }
.quote-card blockquote { font-size: 16px; line-height: 1.6; color: var(--neutral-700); margin: 0 0 10px; font-style: italic; }
.quote-card .quote-name { font-size: 14px; font-weight: 700; color: var(--racing-green); }
.quote-card .quote-title { font-size: 13px; color: var(--neutral-500); }

.proof-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.winners-carousel {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--mercury);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.winners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 56px;
  animation: winners-scroll 28s linear infinite;
}
.winners-carousel:hover .winners-track { animation-play-state: paused; }
.winners-track--slow { animation-duration: 110s; }
.winner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  flex: none;
}
@keyframes winners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .winners-track { animation: none; }
}

.proof-right { flex: 1 1 420px; min-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.video-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--racing-green);
  box-shadow: 0 16px 48px rgba(10,15,13,0.16);
  position: relative;
  cursor: pointer;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
}
.video-wrap:hover .yt-play-btn { transform: translate(-50%, -50%) scale(1.1); }
.video-caption { font-size: 13px; color: var(--neutral-500); margin: -6px 0 6px; text-align: center; }

.stat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-tile { background: var(--white-pointer); border: 1px solid var(--mercury); border-radius: 16px; padding: 22px 18px; text-align: center; }
.stat-tile .num { font-family: var(--font-display); font-size: clamp(32px, 3vw, 44px); line-height: 1; color: var(--crimson); }
.stat-tile .label { font-size: 13px; font-weight: 600; color: var(--racing-green); margin-top: 6px; line-height: 1.35; }

.package-card {
  background: var(--racing-green);
  border-radius: 20px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}
.package-card img { height: 130px; width: auto; flex: none; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45)); }
.package-card .title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.package-card .body { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ---- Ebook -------------------------------------------------------------- */
.section-ebook { background: var(--white-pointer); padding: 96px 40px; }
.ebook-inner { max-width: var(--container-max); margin: 0 auto; display: flex; gap: 64px; align-items: center; flex-wrap: wrap; }
.ebook-photo {
  flex: 0 1 340px;
  min-width: 260px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--neutral-100);
  position: relative;
}
.ebook-photo img { width: 100%; height: 100%; object-fit: cover; }
.ebook-photo .gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,13,.6) 0%, transparent 50%); }
.ebook-photo .caption { position: absolute; bottom: 24px; left: 24px; right: 24px; }
.ebook-photo .caption .eyebrow { font-size: 10px; color: var(--crimson-300); margin-bottom: 6px; }
.ebook-photo .caption .title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}
.ebook-copy { flex: 1 1 420px; min-width: 280px; }
.ebook-copy h2 { font-size: clamp(40px, 4.5vw, 68px); margin: 0 0 24px; }
.ebook-copy p { font-size: clamp(16px, 1.3vw, 18px); line-height: 1.65; color: var(--neutral-700); margin: 0 0 14px; }
.ebook-copy p:nth-of-type(2) { margin-bottom: 28px; }
.ebook-highlights { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 10px; }
.ebook-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--neutral-700); }
.ebook-highlights .check {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.ebook-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---- Contact ------------------------------------------------------------ */
#contact { background: var(--crimson); padding: 100px 40px; position: relative; overflow: hidden; }
.contact-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.contact-mark { height: 52px; width: auto; margin-bottom: 18px; opacity: .85; }
.contact-inner h2 { font-size: clamp(48px, 6vw, 88px); color: #fff; margin: 0 0 20px; }
.contact-inner .sub { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 46ch; margin: 0 auto 44px; }
.jotform-wrap {
  max-width: 580px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.jotform-wrap iframe { min-width: 100%; max-width: 100%; height: 580px; border: none; display: block; }
.jotform-helper {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 20px;
  display: inline-block;
}
.jotform-helper[hidden] { display: none; }

/* ---- Footer -------------------------------------------------------------- */
footer { background: var(--ink); color: #fff; padding: 64px 40px 36px; }
footer .container { max-width: var(--container-max); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer-brand { max-width: 300px; }
.footer-brand img { height: 32px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 0 0 16px; }
.footer-brand a { font-size: 13px; color: var(--crimson-300); font-weight: 600; }

.footer-col .footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson-300);
  margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color .15s; }
.footer-col-links a:hover { color: #fff; }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 640px) {
  #hero { padding: 72px 20px 64px; }
  .section-problem, .section-solution, .section-how, .section-benefits,
  .section-included, .section-proof, .section-ebook, #contact {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container { padding: 0 20px; }
  footer { padding: 48px 20px 28px; }
  .quote-card { flex-direction: column; }
  .package-card { flex-direction: column; text-align: center; }
  .stat-tiles { grid-template-columns: 1fr; }
}

/* ---- Blog / News hero ------------------------------------------------- */
.blog-hero { background: var(--racing-green); color: #fff; padding: 100px 40px 80px; position: relative; overflow: hidden; }
.blog-hero .container { max-width: var(--container-max); margin: 0 auto; position: relative; text-align: center; }
.blog-hero .eyebrow { justify-content: center; }
.blog-hero h1 { font-size: clamp(48px, 7vw, 88px); color: #fff; margin: 0; }
.blog-hero-mark { position: absolute; right: -60px; top: -40px; height: 420px; width: auto; opacity: 0.045; pointer-events: none; user-select: none; }

/* ---- Blog cards / grid -------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: var(--container-max); margin: 0 auto; padding: 72px 40px 100px; }
.blog-empty { grid-column: 1 / -1; text-align: center; color: var(--neutral-500); font-size: 16px; padding: 40px 0; }

.blog-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--mercury);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-cover { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--neutral-100); display: block; }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-card .date { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--crimson); }
.blog-card h2 { font-family: var(--font-body); text-transform: none; font-size: 20px; font-weight: 700; color: var(--racing-green); margin: 0; line-height: 1.3; }
.blog-card p { font-size: 15px; line-height: 1.6; color: var(--neutral-700); margin: 0; }

/* ---- Blog post page ------------------------------------------------------ */
.blog-post-wrap { max-width: 760px; margin: 0 auto; padding: 56px 40px 40px; }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 28px;
  transition: color .15s;
}
.blog-back-link:hover { color: var(--crimson-700); }

.blog-post-cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin: 0 0 32px;
  box-shadow: var(--shadow-md);
}

.blog-post-wrap h1.blog-post-title {
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  color: var(--racing-green);
  margin: 0 0 14px;
}
.blog-post-wrap .date { display: block; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; }

.blog-post-body { max-width: 720px; margin: 0 auto; padding: 0 40px 80px; font-size: 17px; line-height: 1.7; color: var(--neutral-700); }
.blog-post-body h1, .blog-post-body h2, .blog-post-body h3 { font-family: var(--font-body); text-transform: none; font-weight: 700; color: var(--racing-green); margin: 32px 0 12px; }
.blog-post-body p { margin: 0 0 20px; }
.blog-post-body a { color: var(--crimson); text-decoration: underline; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 20px; padding-left: 24px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body blockquote {
  margin: 28px 0;
  padding: 4px 24px;
  border-left: 4px solid var(--crimson);
  color: var(--neutral-700);
  font-style: italic;
}
.blog-post-body img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
  margin: 28px auto;
}
.blog-post-body svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 32px auto;
}
.blog-post-body svg,
.blog-post-body p > svg:only-child {
  background: var(--white);
  border: 1px solid var(--mercury);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

/* ---- About page -------------------------------------------------------- */
.about-hero { background: var(--racing-green); color: #fff; padding: 100px 40px 80px; }
.about-hero .container { max-width: var(--container-max); margin: 0 auto; }
.about-hero h1 { font-size: clamp(48px, 7vw, 88px); color: #fff; margin: 16px 0 24px; }
.about-lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 64ch; margin: 0; }

.about-section { padding: 80px 40px; }
.about-section .container { max-width: var(--container-max); margin: 0 auto; }
.about-two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; }
.about-two-col h2 { font-size: clamp(28px, 3vw, 40px); margin: 12px 0 16px; }
.about-two-col p { font-size: 16px; line-height: 1.65; color: var(--neutral-700); margin: 0 0 16px; }
.about-two-col a { color: var(--crimson); text-decoration: underline; }

.about-programs { background: var(--white-pointer); padding: 80px 40px; }
.about-programs .section-heading { max-width: 680px; margin: 0 auto 40px; text-align: center; }

.about-team { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.team-card { background: var(--white-pointer); border: 1px solid var(--mercury); border-radius: 16px; padding: 28px; }
.team-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; }
.team-card h3 { font-family: var(--font-body); text-transform: none; font-size: 20px; font-weight: 700; color: var(--racing-green); margin: 0 0 4px; }
.team-title { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--crimson); margin: 0 0 14px; }
.team-card p:not(.team-title) { font-size: 15px; line-height: 1.6; color: var(--neutral-700); margin: 0 0 14px; }
.team-card p:not(.team-title):last-child { margin-bottom: 0; }

.about-cta { background: var(--crimson); color: #fff; padding: 80px 40px; text-align: center; }
.about-cta .container { max-width: 640px; margin: 0 auto; }
.about-cta h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); margin: 0 0 16px; }
.about-cta p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 0 28px; }
.about-cta .btn--primary { background: #fff; color: var(--crimson); }
.about-cta .btn--primary:hover { background: rgba(255,255,255,0.9); }

/* ---- Homepage "From the blog" strip -------------------------------------- */
.section-blog-home { padding: 100px 0; background: var(--white-pointer); }
.section-blog-home-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-blog-home-head h2 { font-size: clamp(30px, 3.4vw, 44px); margin: 8px 0 0; }
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.section-blog-home-cta { text-align: center; margin-top: 40px; }
@media (max-width: 900px) {
  .home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-blog-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ ------------------------------------------------------------ */
.section-faq { padding: 100px 40px; background: var(--white); }
.section-faq .section-heading { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--mercury);
  border-radius: 12px;
  background: var(--white-pointer);
  padding: 4px 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--racing-green);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--crimson);
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 15px; line-height: 1.65; color: var(--neutral-700); margin: 0 0 22px; }

/* ===========================================================================
   Three-audience redesign: homepage doors, spoke pages, cross-proof band
   =========================================================================== */

/* ---- Hero segment select (homepage quick-capture) ------------------------ */
.hero-form select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 15px;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.hero-form select option { color: var(--ink); background: #fff; }

/* ---- Hero door chips (homepage self-selection) ---------------------------- */
.hero-doors { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 8px; }
.hero-door-chip {
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  transition: border-color .15s, background .15s, transform .1s;
}
.hero-door-chip:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-1px); }
.hero-definition--below { margin: 26px 0 0; }

/* ---- Problem visual: photo variant (spoke pages) ------------------------- */
.problem-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-md);
}

/* ---- Audience doors (homepage) -------------------------------------------- */
.section-doors { background: var(--white); padding: 100px 40px; }
.section-doors .section-heading { max-width: 720px; margin: 0 auto 56px; }
.doors-intro { font-size: 17px; line-height: 1.65; color: var(--neutral-700); margin: 20px 0 0; }
.doors-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.door-card {
  background: var(--white-pointer);
  border: 1px solid var(--mercury);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.door-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--crimson); }
.door-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--neutral-100);
}
.door-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.door-card:hover .door-cover img { transform: scale(1.04); }
.door-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.door-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
}
.door-card h3 { font-size: clamp(30px, 2.6vw, 40px); line-height: .95; }
.door-body p { font-size: 16px; line-height: 1.65; color: var(--neutral-700); margin: 0; flex: 1; }
.door-proof {
  font-size: 13px;
  line-height: 1.55;
  color: var(--neutral-500);
  border-top: 1px solid var(--mercury);
  padding-top: 16px;
  margin-top: 4px;
}
.door-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--crimson);
}
.door-card:hover .door-cta { color: var(--crimson-700); }

/* ---- Track record band ----------------------------------------------------- */
.section-track { background: var(--racing-green); padding: 72px 40px; }
.track-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: center;
}
.track-stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
.track-stat .label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ---- Cross-proof band (corporations page) --------------------------------- */
.section-crossproof { background: var(--neutral-100); padding: 100px 40px; }
.section-crossproof .section-heading { max-width: 720px; margin: 0 auto 56px; }
.crossproof-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.crossproof-card {
  background: var(--white);
  border: 1px solid var(--mercury);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.crossproof-card .cp-logo { height: 56px; width: auto; align-self: flex-start; object-fit: contain; }
.crossproof-card h3 { font-family: var(--font-body); text-transform: none; font-size: 20px; font-weight: 700; color: var(--racing-green); margin: 0; }
.crossproof-card p { font-size: 15px; line-height: 1.65; color: var(--neutral-700); margin: 0; flex: 1; }
.cp-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.cp-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: color .15s;
}
.cp-link:hover { color: var(--crimson-700); }

@media (max-width: 640px) {
  .section-doors, .section-track, .section-crossproof {
    padding-left: 20px;
    padding-right: 20px;
  }
}

