/* ============================================
   The Electrical Academy — Site styles
   Brand tokens from TEA Brand Style Guide
   ============================================ */

:root {
  /* Brand colors */
  --tea-green:    #183028;   /* Pantone 5535C — primary background */
  --tea-green-2:  #1f3d33;   /* slightly lifted card surface */
  --tea-pink:     #E31C79;   /* Pantone 213C — accent / CTA */
  --tea-pink-hot: #ff2a8c;   /* hover state */
  --tea-lime:     #C5E86C;   /* Pantone 374C — accent / heading pop */
  --tea-lime-2:   #d8f08a;
  --tea-cream:    #f5f1e6;   /* warm off-white for light sections */
  --tea-bone:     #ecebe4;
  --tea-ink:      #0d1d17;   /* deepest green for text on lime */

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.08), 0 4px 14px rgba(0,0,0,.06);
  --shadow:    0 6px 24px rgba(0,0,0,.16);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.28);

  --max:  1240px;
  --maxr: 1080px; /* reading width */

  --font-sans: "Archivo", "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Archivo", "Barlow Condensed", "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--tea-green);
  color: var(--tea-cream);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
h1 { font-size: clamp(48px, 7vw, 104px); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 4.6vw, 68px); font-weight: 900; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 700; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--tea-lime);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px; background: var(--tea-lime);
  display: inline-block;
}

.lime { color: var(--tea-lime); }
.pink { color: var(--tea-pink); }
.cream { color: var(--tea-cream); }

.italic-display {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.wrap-r { max-width: var(--maxr); margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 72px 0; }
.center { text-align: center; }

@media (max-width: 720px) {
  .wrap, .wrap-r { padding: 0 22px; }
  .section { padding: 72px 0; }
  .section-tight { padding: 48px 0; }
  body { font-size: 16px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-pink { background: var(--tea-pink); color: white; box-shadow: 0 6px 20px rgba(227,28,121,.35); }
.btn-pink:hover { background: var(--tea-pink-hot); box-shadow: 0 10px 30px rgba(227,28,121,.5); }
.btn-lime { background: var(--tea-lime); color: var(--tea-ink); }
.btn-lime:hover { background: var(--tea-lime-2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--tea-cream);
  border: 1.5px solid rgba(245,241,230,.35);
}
.btn-ghost:hover { border-color: var(--tea-lime); color: var(--tea-lime); }
.btn-dark {
  background: var(--tea-green); color: var(--tea-cream);
}
.btn-dark:hover { background: var(--tea-ink); }

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(24,48,40,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197,232,108,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: var(--max); margin: 0 auto;
}
.nav-links a.nav-lead {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(197,232,108,.35);
  border-radius: 999px;
  color: var(--tea-lime);
  background: rgba(197,232,108,.04);
  transition: background .15s, border-color .15s;
}
.nav-links a.nav-lead:hover {
  background: rgba(197,232,108,.12);
  border-color: var(--tea-lime);
}
.nav-links a.nav-lead::after { display: none; }
.nav-lead-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--tea-lime);
  box-shadow: 0 0 0 4px rgba(197,232,108,.15);
  display: inline-block;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 92px; width: auto; transition: transform .15s ease; }
.nav-logo:hover img { transform: translateY(-1px); }
@media (max-width: 720px) {
  .nav-logo img { height: 64px; }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: rgba(245,241,230,.78);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--tea-lime); }
.nav-links a.active { color: var(--tea-lime); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--tea-lime);
}
.nav-cta {
  margin-left: 8px;
  padding: 11px 18px !important;
  font-size: 13px !important;
}

.nav-burger {
  display: none;
  background: transparent; border: 1.5px solid rgba(197,232,108,.35);
  color: var(--tea-lime);
  padding: 8px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; font-size: 12px; letter-spacing: 0.1em;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; align-items: center; gap: 6px; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--tea-green); padding: 28px 32px; gap: 20px;
    border-bottom: 1px solid rgba(197,232,108,.12);
  }
  .nav-mobile-open .nav-cta { width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-thickness: 6px;
  text-decoration-color: var(--tea-pink);
  color: rgba(245,241,230,.45);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .9fr;
  gap: 64px;
  align-items: center;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 22px 36px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(197,232,108,.18);
}
.meta-stat .num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 34px; line-height: 1; color: var(--tea-lime);
  letter-spacing: -0.02em;
}
.meta-stat .lbl {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(245,241,230,.6); margin-top: 6px;
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(140deg, #1f3d33 0%, #0d1d17 100%);
  border: 1px solid rgba(197,232,108,.18);
  box-shadow: var(--shadow-lg);
}
.hero-photo .badge-stamp {
  position: absolute; right: -34px; bottom: -34px;
  width: 200px; opacity: .9;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(197,232,108,.55);
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px;
  text-align: center; padding: 24px;
  gap: 12px;
}
.photo-placeholder svg { opacity: .5; }
.photo-placeholder .ph-label {
  border: 1.5px dashed rgba(197,232,108,.35);
  padding: 10px 16px; border-radius: 999px;
}

.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic; font-weight: 700;
  color: var(--tea-pink);
  font-size: clamp(20px, 1.6vw, 24px);
  margin: 22px 0 0; letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .hero { padding: 60px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { aspect-ratio: 4/5; max-height: 60vh; }
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--tea-lime);
  color: var(--tea-ink);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.marquee-track {
  display: flex; gap: 64px; align-items: center;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800; font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 24px; }
.marquee-track svg { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Cards / blocks ---------- */
.card {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(197,232,108,.3); }
.card.lime { background: var(--tea-lime); color: var(--tea-ink); border-color: transparent; }
.card.pink { background: var(--tea-pink); color: white; border-color: transparent; }
.card.cream { background: var(--tea-cream); color: var(--tea-ink); border-color: transparent; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 56px;
}
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.price-card.tier-apprentice {
  background: var(--tea-cream); color: var(--tea-ink);
}
.price-card.tier-career {
  background: var(--tea-ink); color: var(--tea-cream);
  border: 1px solid var(--tea-lime);
}
.price-card.tier-career::before {
  content: "MOST RESULTS";
  position: absolute; top: 24px; right: 24px;
  background: var(--tea-pink); color: white;
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.16em;
  padding: 6px 12px; border-radius: 999px;
}
.price-card .name {
  font-family: var(--font-display); font-weight: 900;
  font-size: 38px; letter-spacing: -0.02em; line-height: 1;
  text-transform: uppercase;
}
.price-card .price {
  margin-top: 14px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 64px; letter-spacing: -0.04em; line-height: 1;
}
.price-card .price small {
  font-size: 16px; font-weight: 600;
  opacity: .55;
  letter-spacing: 0;
}
.price-card .pitch {
  margin-top: 6px; opacity: .7;
  font-size: 15px; max-width: 28ch;
}
.price-card .features {
  list-style: none; padding: 0; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 15px;
}
.price-card .features li {
  display: flex; gap: 12px; align-items: flex-start; line-height: 1.45;
}
.price-card .features li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background: var(--tea-lime);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.price-card.tier-career .features li::before { background: var(--tea-lime); }
.price-card .features li strong { font-weight: 700; }
.price-card .plus-tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tea-lime);
  background: rgba(197,232,108,.12);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 14px; align-self: flex-start;
}

/* ---------- Compare callout ---------- */
.compare {
  margin: 64px auto 0;
  max-width: 920px;
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.18);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; padding: 28px; }
}
.compare h3 {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; line-height: 1.05; font-weight: 800;
}

/* ---------- Curriculum ---------- */
.curriculum-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 48px;
}
@media (max-width: 980px) { .curriculum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .curriculum-grid { grid-template-columns: 1fr; } }
.lesson {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.10);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 8px;
  min-height: 150px;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.lesson:hover {
  border-color: var(--tea-lime);
  transform: translateY(-2px);
}
.lesson .num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 13px;
  color: var(--tea-pink);
  letter-spacing: 0.16em;
}
.lesson h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.15;
  margin: 0;
}
.lesson .blurb {
  font-size: 13px; color: rgba(245,241,230,.65);
  line-height: 1.45;
}

/* ---------- Sitecount feature block ---------- */
.sitecount {
  background: linear-gradient(135deg, var(--tea-lime) 0%, #aedc4f 100%);
  color: var(--tea-ink);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sitecount::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(24,48,40,.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 880px) {
  .sitecount { grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
}
.sitecount h2 { color: var(--tea-ink); }
.sitecount-mock {
  background: var(--tea-ink);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--tea-cream);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  line-height: 1.7;
  position: relative;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.sitecount-mock .dots { display: flex; gap: 6px; margin-bottom: 14px; }
.sitecount-mock .dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(245,241,230,.18); }
.sitecount-mock .dots span:nth-child(1) { background: #ff5f57; }
.sitecount-mock .dots span:nth-child(2) { background: #febc2e; }
.sitecount-mock .dots span:nth-child(3) { background: #28c840; }
.sitecount-mock .row {
  display: flex; justify-content: space-between;
  padding: 6px 8px; border-radius: 4px;
}
.sitecount-mock .row.hl { background: rgba(197,232,108,.12); color: var(--tea-lime); }
.sitecount-mock .total {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(197,232,108,.2);
  display: flex; justify-content: space-between;
  font-weight: 700; color: var(--tea-lime);
}

/* ---------- About / proof ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-photo {
  aspect-ratio: 4/5;
  background: var(--tea-green-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197,232,108,.18);
  position: relative;
  overflow: hidden;
}
.about-card-stack {
  display: flex; flex-direction: column; gap: 18px; margin-top: 28px;
}
.proof-card {
  background: var(--tea-green-2);
  border-left: 3px solid var(--tea-lime);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.proof-card .role {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--tea-lime);
  margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 56px auto 0; }
.faq details {
  border-top: 1px solid rgba(197,232,108,.16);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(197,232,108,.16); }
.faq summary {
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--tea-lime);
  font-size: 28px; line-height: 1; flex-shrink: 0;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 14px 0 0; color: rgba(245,241,230,.78); max-width: 65ch; }

/* ---------- Final CTA banner ---------- */
.cta-banner {
  background: var(--tea-pink);
  color: white;
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner h2 { font-style: italic; max-width: 18ch; margin: 0 auto 16px; color: white; }
.cta-banner p { max-width: 56ch; margin: 0 auto 28px; opacity: .9; font-size: 18px; }

/* ---------- Footer ---------- */
footer.foot {
  background: var(--tea-ink);
  color: rgba(245,241,230,.7);
  padding: 64px 0 36px;
  margin-top: 0;
  font-size: 14px;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-grid h5 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--tea-lime); margin: 0 0 16px;
}
.foot-grid a {
  display: block; text-decoration: none; color: rgba(245,241,230,.7);
  padding: 4px 0;
  transition: color .15s;
}
.foot-grid a:hover { color: var(--tea-lime); }
.foot-logo img { height: 44px; margin-bottom: 18px; }
.foot-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(245,241,230,.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: rgba(245,241,230,.45);
}

/* ---------- Forms ---------- */
.form-shell {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.16);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(245,241,230,.78);
}
.field input, .field textarea, .field select {
  background: rgba(13,29,23,.6);
  border: 1px solid rgba(197,232,108,.14);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--tea-cream);
  font-family: inherit;
  font-size: 16px;
  transition: border-color .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--tea-lime);
  background: rgba(13,29,23,.85);
}
.field .hint {
  font-size: 12px; color: rgba(245,241,230,.55); margin-top: 4px;
}
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(245,241,230,.78); }
.field-check input { margin-top: 4px; accent-color: var(--tea-lime); }

.form-success {
  text-align: center; padding: 40px 24px;
}
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--tea-lime); color: var(--tea-ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px; font-weight: 900;
}
.form-success h3 { font-size: 32px; margin-bottom: 10px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero {
  padding: 110px 0 60px;
  border-bottom: 1px solid rgba(197,232,108,.1);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 84px); }
.page-hero .lede { max-width: 60ch; font-size: clamp(17px, 1.4vw, 20px); color: rgba(245,241,230,.82); margin-top: 18px; }

/* ---------- Two-col text ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }
.two-col p { font-size: 17px; color: rgba(245,241,230,.82); }

/* ---------- Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: 48px;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.14);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.step .step-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 64px; line-height: 1;
  color: var(--tea-lime); opacity: .95;
  letter-spacing: -0.04em;
}
.step h3 { margin: 14px 0 10px; }
.step p { margin: 0; color: rgba(245,241,230,.75); }

/* ---------- Light section ---------- */
.section-light {
  background: var(--tea-cream);
  color: var(--tea-ink);
}
.section-light .eyebrow { color: var(--tea-pink); }
.section-light .eyebrow::before { background: var(--tea-pink); }
.section-light p { color: rgba(13,29,23,.75); }
.section-light .card { background: white; color: var(--tea-ink); border-color: rgba(13,29,23,.08); }
.section-light .lesson { background: white; border-color: rgba(13,29,23,.08); }
.section-light .lesson h4 { color: var(--tea-ink); }
.section-light .lesson .blurb { color: rgba(13,29,23,.65); }

/* ---------- Pill list (employer offer) ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  padding: 8px 14px;
  background: rgba(197,232,108,.12);
  color: var(--tea-lime);
  border: 1px solid rgba(197,232,108,.2);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Offer grid (employers) ---------- */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px;
}
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }
.offer {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.16);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.offer .icon {
  width: 38px; height: 38px;
  background: var(--tea-lime); color: var(--tea-ink);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
}
.offer h3 { font-size: 19px; }
.offer p { font-size: 14px; color: rgba(245,241,230,.7); margin: 0; }

/* ---------- Handbook page ---------- */
.handbook-hero {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .handbook-hero { grid-template-columns: 1fr; } }
.handbook-cover {
  aspect-ratio: 3/4;
  background: var(--tea-ink);
  border: 1px solid rgba(197,232,108,.2);
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow: hidden;
  transform: rotate(-2.5deg);
  transition: transform .3s ease;
  padding: 36px 28px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  background:
    radial-gradient(ellipse at top right, rgba(197,232,108,.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(227,28,121,.14), transparent 55%),
    var(--tea-ink);
}
.handbook-cover:hover { transform: rotate(0deg); }
.handbook-cover .cover-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 11px; color: var(--tea-lime);
}
.handbook-cover .cover-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 4vw, 52px); line-height: .92;
  letter-spacing: -0.03em; margin: 18px 0 0;
}
.handbook-cover .cover-title em {
  font-style: italic; color: var(--tea-lime);
}
.handbook-cover .cover-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: auto;
  font-size: 12px; color: rgba(245,241,230,.55);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em;
}
.handbook-cover .cover-foot img { height: 28px; }
.handbook-toc {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  margin-top: 32px;
}
@media (max-width: 540px) { .handbook-toc { grid-template-columns: 1fr; } }
.handbook-toc li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(197,232,108,.16);
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15px; color: rgba(245,241,230,.85);
}
.handbook-toc li::before {
  content: counter(toc, decimal-leading-zero);
  counter-increment: toc;
  color: var(--tea-pink); font-family: var(--font-display); font-weight: 800;
  font-size: 13px; min-width: 24px;
}
.handbook-toc { counter-reset: toc; padding: 0; }

/* ============================================
   HOME v2 — Cinematic / Industrial / Premium trades
   ============================================ */

.home-v2 {
  --hv-line: rgba(197,232,108,.18);
  --hv-line-strong: rgba(197,232,108,.35);
  --hv-muted: rgba(245,241,230,.72);
}

/* ---------- Shared bits ---------- */
.hv-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tea-lime);
}
.hv-tick {
  width: 26px; height: 2px; background: var(--tea-lime);
  display: inline-block;
}
.hv-section-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--tea-pink);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hv-btn-lg {
  padding: 18px 30px !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  border-radius: 4px !important;
}
.home-v2 .btn-ghost {
  border-color: rgba(245,241,230,.4);
}

.hv-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 22px 0 24px;
  text-transform: none;
  max-width: 18ch;
}
.hv-h1-accent {
  display: inline-block;
  color: var(--tea-lime);
  font-style: italic;
}
.hv-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: none;
  margin: 0;
  max-width: 22ch;
}
.hv-h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
}

.hv-section {
  position: relative;
  padding: 130px 0;
  border-top: 1px solid var(--hv-line);
}
@media (max-width: 880px) {
  .hv-section { padding: 80px 0; }
}
.hv-section-head {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .hv-section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}
.hv-section-lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--hv-muted);
  max-width: 60ch;
}
.hv-section-dark { background: var(--tea-ink); }

/* ============================================
   1) HERO
   ============================================ */
.hv-hero {
  position: relative;
  min-height: min(560px, 72vh);
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--hv-line);
  padding: 36px 0 56px;
}
.hv-hero-bg {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  filter: contrast(1.05) saturate(0.85) brightness(0.55);
}
.hv-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(24,48,40,0.65) 0%,
    rgba(24,48,40,0.85) 60%,
    rgba(24,48,40,0.95) 100%);
}
.hv-hero-grain {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(197,232,108,.10), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(227,28,121,.08), transparent 40%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hv-hero-grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.hv-hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.hv-hero-mark { margin-bottom: -22px; margin-left: 0; }
.hv-hero-mark img {
  height: clamp(320px, 38vw, 520px);
  width: auto;
  filter:
    drop-shadow(0 14px 36px rgba(0,0,0,.55))
    brightness(1.08)
    contrast(1.08);
}
@media (max-width: 720px) {
  .hv-hero-mark img { height: 260px; margin-bottom: -16px; }
}
/* Pull the eyebrow tight under the mark, and headline tight under eyebrow */
.hv-hero-inner .hv-hero-mark + .hv-eyebrow { margin-top: 0; }
.hv-hero-inner .hv-h1 { margin-top: 10px; margin-bottom: 16px; }
.hv-hero-inner .hv-sub { margin-bottom: 22px; }
.hv-hero-inner .hv-h1 { max-width: 22ch; }
.hv-hero-inner .hv-sub { margin-left: auto; margin-right: auto; }
.hv-hero-cta { justify-content: center; }
.hv-scroll-hint { left: 50%; transform: translateX(-50%); }
.hv-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(245,241,230,.85);
  max-width: 58ch;
  line-height: 1.5;
  margin: 0 0 32px;
}
.hv-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hv-scroll-hint {
  position: absolute;
  left: 32px; bottom: 28px;
  background: transparent; border: 0;
  color: rgba(245,241,230,.6);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
@media (max-width: 720px) { .hv-scroll-hint { display: none; } }

/* Trust line under hero CTAs */
.hv-trust {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,230,.62);
}
.hv-trust-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--tea-lime);
  box-shadow: 0 0 0 4px rgba(197,232,108,.15);
}

/* Marquee */
.hv-marquee {
  background: var(--tea-lime);
  color: var(--tea-ink);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.hv-marquee .marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.hv-marquee .marquee-track span { display: inline-flex; align-items: center; gap: 22px; }

/* ============================================
   2) PROBLEM
   ============================================ */
.hv-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hv-line);
  border-left: 1px solid var(--hv-line);
}
@media (max-width: 720px) { .hv-problem-grid { grid-template-columns: 1fr; } }
.hv-problem {
  padding: 36px 36px 40px;
  border-right: 1px solid var(--hv-line);
  border-bottom: 1px solid var(--hv-line);
  position: relative;
  transition: background .2s;
}
.hv-problem:hover { background: rgba(197,232,108,.04); }
.hv-problem-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--tea-pink);
  margin-bottom: 16px;
}
.hv-problem-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--tea-cream);
  margin: 0 0 14px;
}
.hv-problem-body {
  color: var(--hv-muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  max-width: 42ch;
}

.hv-pull {
  margin: 80px auto 0;
  max-width: 880px;
  text-align: center;
  position: relative;
  padding: 32px 24px 0;
}
.hv-pull p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--tea-cream);
  margin: 0 0 16px;
}
.hv-pull em { font-style: italic; color: var(--tea-lime); }
.hv-pull cite {
  display: block;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tea-pink);
}
.hv-pull-mark {
  position: absolute; left: 50%; top: -10px;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 120px; line-height: 1;
  color: var(--tea-lime);
  opacity: 0.25;
}

/* ============================================
   3) SOLUTION — photo-bg section
   ============================================ */
.hv-section-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hv-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: contrast(1.05) saturate(0.7) brightness(0.42);
  z-index: 0;
}
.hv-photo-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,29,23,.82) 0%, rgba(13,29,23,.7) 100%),
    radial-gradient(800px 400px at 80% 20%, rgba(197,232,108,.08), transparent);
  z-index: 1;
}

.hv-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 56px;
}
@media (max-width: 880px) { .hv-solution-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 540px) { .hv-solution-grid { grid-template-columns: 1fr; } }
.hv-pillar { position: relative; }
.hv-pillar-rule {
  width: 36px; height: 3px;
  background: var(--tea-lime);
  margin-bottom: 18px;
}
.hv-pillar-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--tea-cream);
  margin: 0 0 8px;
}
.hv-pillar p { color: var(--hv-muted); margin: 0; font-size: 15px; line-height: 1.55; }

/* ============================================
   4) WHO THIS IS FOR
   ============================================ */
.hv-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .hv-audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .hv-audience-grid { grid-template-columns: 1fr; } }
.hv-audience {
  background: var(--tea-green-2);
  border: 1px solid var(--hv-line);
  padding: 32px 28px 36px;
  position: relative;
  transition: border-color .2s, transform .2s;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.hv-audience:hover {
  border-color: var(--tea-lime);
  transform: translateY(-3px);
}
.hv-audience-no {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--tea-lime);
  margin-bottom: 16px;
}
.hv-audience h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--tea-cream);
}
.hv-audience p {
  color: var(--hv-muted);
  margin: 0; font-size: 14px; line-height: 1.55;
}

/* ============================================
   5) WHAT STUDENTS LEARN
   ============================================ */
.hv-learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hv-line);
}
@media (max-width: 720px) { .hv-learn-grid { grid-template-columns: 1fr; } }
.hv-learn {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--hv-line);
  align-items: start;
}
.hv-learn:nth-child(odd) { border-right: 1px solid var(--hv-line); padding-right: 40px; }
@media (max-width: 720px) {
  .hv-learn:nth-child(odd) { border-right: 0; padding-right: 28px; }
  .hv-learn { padding-right: 0; }
}
.hv-learn-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--tea-lime);
  letter-spacing: -0.03em;
}
.hv-learn-body h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  color: var(--tea-cream);
}
.hv-learn-body p { color: var(--hv-muted); margin: 0; font-size: 14px; line-height: 1.55; }

/* ============================================
   TRUST BAR
   ============================================ */
.hv-trustbar {
  background: var(--tea-ink);
  padding: 36px 0;
  border-bottom: 1px solid var(--hv-line);
}
.hv-trustbar-head { text-align: center; margin-bottom: 22px; }
.hv-trustbar-head .hv-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--tea-cream);
}
.hv-trustbar-head .hv-tick { background: var(--tea-lime); }
.hv-trustbar-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 28px 40px;
}
.hv-trustbar-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,241,230,.7);
}
.hv-trustbar-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--tea-lime);
  box-shadow: 0 0 0 3px rgba(197,232,108,.12);
}

/* ============================================
   FREE HANDBOOK LEAD MAGNET
   ============================================ */
.hv-handbook-section { background: var(--tea-green); }
.hv-handbook {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .hv-handbook { grid-template-columns: 1fr; gap: 36px; }
}
.hv-handbook-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(197,232,108,.22), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(227,28,121,.16), transparent 55%),
    linear-gradient(155deg, #1e3a30 0%, #0d1d17 100%);
  border: 1px solid var(--hv-line-strong);
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  padding: 40px 36px 32px;
  display: flex; flex-direction: column;
  transform: rotate(-2deg);
  transition: transform .25s ease;
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.hv-handbook-cover:hover { transform: rotate(0deg); }
@media (max-width: 880px) { .hv-handbook-cover { justify-self: center; max-width: 360px; } }

.hv-hb-eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--tea-lime);
}
.hv-hb-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--tea-cream);
  margin-top: 22px;
}
.hv-hb-title em { font-style: italic; color: var(--tea-lime); }
.hv-hb-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(197,232,108,.25);
}
.hv-hb-foot img { height: 28px; width: auto; }
.hv-hb-foot span {
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245,241,230,.6);
}
.hv-hb-stamp {
  position: absolute; top: 18px; right: -14px;
  background: var(--tea-pink); color: white;
  font-family: var(--font-display);
  font-weight: 900; font-size: 14px;
  letter-spacing: 0.16em;
  padding: 8px 14px;
  transform: rotate(8deg);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}

.hv-handbook-copy { display: flex; flex-direction: column; }
.hv-hb-bullets {
  list-style: none; padding: 0;
  margin: 24px 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.hv-hb-bullets li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  color: var(--tea-cream);
  padding-left: 28px;
  position: relative;
  line-height: 1.25;
}
.hv-hb-bullets li::before {
  content: ""; position: absolute;
  left: 0; top: 0.55em;
  width: 14px; height: 2px;
  background: var(--tea-lime);
}
.hv-hb-fineprint {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,241,230,.5);
}

/* ============================================
   SITECOUNT SECTION
   ============================================ */
.hv-sitecount { background: var(--tea-green); }
.hv-sitecount-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) {
  .hv-sitecount-grid { grid-template-columns: 1fr; gap: 36px; }
}
.hv-sitecount-copy { display: flex; flex-direction: column; }

.hv-sitecount-card {
  position: relative;
  background: linear-gradient(140deg, #1a2620 0%, #0d1d17 100%);
  border: 1px solid var(--hv-line-strong);
  padding: 0;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--tea-cream);
  overflow: hidden;
}
.hv-sitecount-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hv-line);
  background: rgba(13,29,23,.6);
}
.hv-sitecount-chrome span {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(245,241,230,.18);
}
.hv-sitecount-chrome span:nth-child(1) { background: #ff5f57; }
.hv-sitecount-chrome span:nth-child(2) { background: #febc2e; }
.hv-sitecount-chrome span:nth-child(3) { background: #28c840; }
.hv-sitecount-url {
  margin-left: 12px;
  font-size: 11px; color: rgba(245,241,230,.5);
  letter-spacing: 0.04em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hv-sitecount-rows {
  padding: 18px 20px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.hv-sc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 10px;
  border-radius: 3px;
  font-size: 13px;
}
.hv-sc-row.hl {
  background: rgba(197,232,108,.10);
  color: var(--tea-lime);
}
.hv-sc-row .qty {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(245,241,230,.78);
}
.hv-sc-row.hl .qty { color: var(--tea-lime); }
.hv-sc-total {
  margin: 0 20px 18px;
  padding-top: 12px;
  border-top: 1px dashed var(--hv-line);
  display: flex; justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--tea-lime);
}
.hv-sc-badge {
  position: absolute; top: -14px; right: 20px;
  background: var(--tea-lime); color: var(--tea-ink);
  font-family: var(--font-display);
  font-weight: 900; font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 3px;
}

/* ============================================
   6) EMPLOYER
   ============================================ */
.hv-section-employer { background: var(--tea-green); }
.hv-employer {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .hv-employer { grid-template-columns: 1fr; gap: 32px; }
}
.hv-employer-copy { display: flex; flex-direction: column; }
.hv-employer-photo {
  background-size: cover; background-position: center;
  min-height: 460px;
  border: 1px solid var(--hv-line);
  position: relative;
  filter: contrast(1.02);
}
.hv-employer-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,29,23,0) 40%, rgba(13,29,23,.7) 100%);
}
.hv-employer-stamp {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--tea-pink); color: white;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  z-index: 2;
}

.hv-bullets {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 16px;
  color: var(--tea-cream);
  line-height: 1.5;
}
.hv-bullets li {
  display: flex; gap: 14px; align-items: flex-start;
  padding-left: 0;
}
.hv-bullets li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 3px;
  background: var(--tea-lime);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13 2 4 14h7l-1 8 9-12h-7l1-8z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13 2 4 14h7l-1 8 9-12h-7l1-8z'/></svg>") center/contain no-repeat;
}

/* ============================================
   7) FOUNDER
   ============================================ */
.hv-founder {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .hv-founder { grid-template-columns: 1fr; gap: 32px; }
}
.hv-founder-photo {
  background-size: cover; background-position: center;
  min-height: 560px;
  border: 1px solid var(--hv-line);
  position: relative;
  filter: contrast(1.04) saturate(.85);
}
.hv-founder-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,29,23,0) 45%, rgba(13,29,23,.85) 100%);
}
.hv-founder-name {
  position: absolute; left: 24px; bottom: 24px;
  z-index: 2;
  color: var(--tea-cream);
}
.hv-founder-name span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--tea-lime);
}
.hv-founder-name small {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,230,.7);
  margin-top: 8px;
}
.hv-founder-copy p { color: var(--hv-muted); margin: 0 0 16px; font-size: 17px; line-height: 1.55; }
.hv-founder-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  color: var(--tea-cream) !important;
  border-left: 3px solid var(--tea-lime);
  padding: 4px 0 4px 22px;
  margin: 24px 0 28px !important;
}
.hv-founder-quote em { font-style: italic; color: var(--tea-lime); }

.hv-credits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--hv-line);
}
.hv-credit {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hv-line);
}
@media (max-width: 540px) {
  .hv-credit { grid-template-columns: 1fr; gap: 4px; }
}
.hv-credit-k {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tea-lime);
}
.hv-credit-v { color: var(--hv-muted); font-size: 15px; }

/* ============================================
   8) WAITLIST
   ============================================ */
.hv-waitlist {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--tea-green-2) 0%, var(--tea-ink) 100%);
  border: 1px solid var(--hv-line-strong);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .hv-waitlist { padding: 36px 24px; } }
.hv-waitlist::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(197,232,108,.12), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(227,28,121,.10), transparent 50%);
  pointer-events: none;
}
.hv-waitlist > * { position: relative; }
.hv-waitlist-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 720px) { .hv-waitlist-form { grid-template-columns: 1fr; } }
.hv-waitlist-form select,
.hv-waitlist-form input {
  background: rgba(13,29,23,.7);
  border: 1px solid var(--hv-line);
  border-radius: 4px;
  padding: 16px 18px;
  color: var(--tea-cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s;
}
.hv-waitlist-form select:focus, .hv-waitlist-form input:focus {
  border-color: var(--tea-lime);
}
.hv-waitlist-ok {
  grid-column: 1 / -1;
  display: none;
  color: var(--tea-lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 14px;
  background: rgba(197,232,108,.08);
  border: 1px solid var(--hv-line-strong);
  border-radius: 4px;
}
.hv-waitlist-ok.on { display: block; }
.hv-waitlist-foot {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,241,230,.55);
}

/* ============================================
   9) FINAL CTA
   ============================================ */
.hv-final {
  position: relative;
  isolation: isolate;
  padding: 140px 0 150px;
  overflow: hidden;
  border-top: 1px solid var(--hv-line);
}
.hv-final-bg {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center;
  filter: contrast(1.1) saturate(0.7) brightness(0.4);
}
.hv-final-tint {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(13,29,23,.8) 0%, rgba(13,29,23,.92) 100%);
}
.hv-final-inner { text-align: center; position: relative; z-index: 1; }
.hv-final-mark {
  width: 110px; margin: 0 auto 24px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
}
.hv-final-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: none;
  text-align: center;
}
.hv-final-sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(245,241,230,.85);
  max-width: 54ch;
  margin: 0 auto 36px;
}

/* Outcomes list — wider two-column on apprentices page */
.hv-outcomes-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}
@media (max-width: 720px) { .hv-outcomes-list { grid-template-columns: 1fr; } }

/* Real-phone preview wrapper for SiteCount */
.hv-sitecount-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}
.hv-sitecount-preview img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  border-radius: 36px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.55),
    0 0 0 1px rgba(197,232,108,.18);
}
.hv-sitecount-preview .hv-sc-badge {
  position: absolute;
  top: -8px;
  right: max(8%, 18px);
  background: var(--tea-lime);
  color: var(--tea-ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 3px;
  z-index: 2;
}

/* Hide the legacy chrome/mock card styles when not used */
.hv-sitecount-card { display: none; }

/* Bigger navbar logo */
.nav-logo img { height: 84px !important; }
@media (max-width: 720px) {
  .nav-logo img { height: 64px !important; }
}

/* Home hero — smaller supporting logo, headline dominant */
.hv-hero-home { min-height: min(540px, 70vh); padding: 8px 0 56px; }
.hv-hero-home .hv-hero-inner { max-width: 980px; margin: 0 auto; }
.hv-hero-home .hv-h1 {
  max-width: 16ch;
  margin-top: 6px;
  margin-bottom: 14px;
}
.hv-hero-home .hv-sub { max-width: 56ch; margin-bottom: 12px; }

/* Extra readability vignette behind hero text */
.hv-hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(13, 29, 23, .55) 0%, rgba(13, 29, 23, .15) 50%, transparent 75%);
  pointer-events: none;
}
.hv-hero-home .hv-hero-inner { position: relative; z-index: 2; }

.hv-hero-mark-sm { margin-bottom: 4px; }
.hv-hero-mark-sm img {
  height: clamp(180px, 22vw, 300px) !important;
}
@media (max-width: 720px) {
  .hv-hero-mark-sm img { height: 150px !important; }
}

/* Trust line under hero subheadline */
.hv-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.hv-trust-line span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,230,.7);
}
.hv-trust-sep { color: var(--tea-lime) !important; font-size: 14px !important; }

/* Sub-page hero (no big logo, shorter) */
.hv-hero-sub { min-height: min(420px, 60vh); padding: 80px 0 60px; }
.hv-hero-sub .hv-h1 { margin-top: 18px; }

.hv-section-cta {
  margin-top: 56px;
  text-align: center;
}

/* ============================================

/* SECTION 2 — Reality */
/* Restore section header label */
/* ============================================
   v3 — Reality / Program / Who / Disclaimers
   ============================================ */
.hv-reality {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hv-reality-lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--tea-cream);
  margin: 0 0 10px;
}
.hv-reality-strike {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tea-lime);
  margin: 0 0 32px;
}
.hv-reality-body {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--hv-muted);
  max-width: 62ch;
  margin: 0 auto 16px;
}

/* SECTION 3 — Foot tagline under Learn */
.hv-learn-foot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,230,.6);
}

/* SECTION 4 — Program list */
.hv-program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--hv-line);
}
@media (max-width: 720px) { .hv-program-list { grid-template-columns: 1fr; } }
.hv-program-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--hv-line);
}
.hv-program-list li:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid var(--hv-line);
}
@media (max-width: 720px) {
  .hv-program-list li:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
}
.hv-program-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  color: var(--tea-lime);
  letter-spacing: -0.03em;
  text-align: right;
  padding-left: 8px;
}
.hv-program-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: -0.01em;
  color: var(--tea-cream);
  line-height: 1.3;
}

.hv-disclaimer {
  margin-top: 56px;
  padding: 28px 32px;
  background: rgba(13, 29, 23, .55);
  border: 1px solid var(--hv-line);
  border-left: 4px solid var(--tea-lime);
}
.hv-disclaimer p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--hv-muted);
}
.hv-disclaimer p:last-child { margin-bottom: 0; }

/* SECTIONS 5 & 6 — Who is / is not */
.hv-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .hv-who-grid { grid-template-columns: 1fr; } }
.hv-who {
  padding: 40px 36px 44px;
  border: 1px solid var(--hv-line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hv-who-for { background: var(--tea-green-2); }
.hv-who-not {
  background: rgba(227, 28, 121, .04);
  border-color: rgba(227, 28, 121, .25);
}
.hv-section-num-pink { color: var(--tea-pink); }
.hv-eyebrow-pink { color: var(--tea-pink); }
.hv-eyebrow-pink .hv-tick { background: var(--tea-pink); }
.hv-who-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--tea-cream);
  margin: 6px 0 8px;
}
.hv-who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hv-who-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.45;
  color: var(--tea-cream);
  padding: 10px 0;
  border-bottom: 1px dashed var(--hv-line);
}
.hv-who-list li:last-child { border-bottom: 0; }
.hv-who-list-yes li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--tea-lime);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12l5 5L20 7' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.hv-who-list-no li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--tea-pink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 6l12 12M18 6L6 18' stroke='black' stroke-width='3' stroke-linecap='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M6 6l12 12M18 6L6 18' stroke='black' stroke-width='3' stroke-linecap='round'/></svg>") center/contain no-repeat;
}

/* ---------- Home (company front door) — legacy, kept for fallback ---------- */
.home-hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(197,232,108,.08), transparent 60%),
    radial-gradient(1000px 500px at -10% 110%, rgba(227,28,121,.10), transparent 60%);
  pointer-events: none;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .home-hero { padding: 60px 0; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}
.home-hero-mark {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero-mark-symbol {
  width: min(420px, 100%);
  filter: drop-shadow(0 18px 48px rgba(0,0,0,.45));
}
.hero-mark-flag {
  margin-top: 20px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.02em;
  color: var(--tea-pink);
  background: var(--tea-cream);
  padding: 8px 22px;
  border-radius: 6px;
  transform: rotate(-2deg);
  display: inline-block;
}

.jump-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(197,232,108,.18);
}
.jump-nav a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  text-decoration: none;
  color: rgba(245,241,230,.78);
  padding: 8px 14px;
  border: 1px solid rgba(197,232,108,.2);
  border-radius: 999px;
  transition: color .15s, border-color .15s, background .15s;
}
.jump-nav a:hover {
  color: var(--tea-ink);
  background: var(--tea-lime);
  border-color: var(--tea-lime);
}

/* --- stats --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
@media (max-width: 980px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--tea-green-2);
  border: 1px solid rgba(197,232,108,.18);
  border-left: 4px solid var(--tea-pink);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(38px, 3.8vw, 54px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--tea-lime);
}
.stat-lbl {
  font-size: 14px; line-height: 1.45;
  color: rgba(245,241,230,.85);
}
.stat-src {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(245,241,230,.5);
  padding-top: 8px;
}

.problem-foot {
  margin-top: 56px;
  display: flex; gap: 22px; align-items: flex-start;
  padding: 28px 32px;
  background: rgba(197,232,108,.06);
  border: 1px solid rgba(197,232,108,.16);
  border-radius: var(--radius);
}
.problem-foot p { margin: 0; font-size: 17px; }

/* --- two paths --- */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.path-card .eyebrow { margin-bottom: 4px; }
.path-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -0.02em; line-height: 1.05;
}
.path-card .path-mark {
  position: absolute; right: -40px; bottom: -40px;
  width: 220px; opacity: .12; pointer-events: none;
}
.path-card .path-mark img { width: 100%; }
.path-card .path-list {
  list-style: none; padding: 0; margin: 6px 0 14px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 15px;
}
.path-card .path-list li {
  display: flex; gap: 10px; align-items: flex-start;
}
.path-card .path-list li::before {
  content: ""; flex-shrink: 0;
  width: 16px; height: 16px; margin-top: 3px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13 2 4 14h7l-1 8 9-12h-7l1-8z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13 2 4 14h7l-1 8 9-12h-7l1-8z'/></svg>") center/contain no-repeat;
  opacity: .9;
}
.path-card .btn { align-self: flex-start; margin-top: 8px; }
.path-apprentice {
  background: var(--tea-cream); color: var(--tea-ink);
}
.path-apprentice .eyebrow { color: var(--tea-pink); }
.path-apprentice .eyebrow::before { background: var(--tea-pink); }
.path-employer {
  background: var(--tea-ink); color: var(--tea-cream);
  border: 1px solid rgba(197,232,108,.2);
}
.path-employer p { color: rgba(245,241,230,.78); }

/* --- About home variant --- */
.section-tone { background: var(--tea-green-2); }
.about-mark { height: 80px; width: auto; margin-bottom: 8px; opacity: .95; }
.proof-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 720px) { .proof-card-row { grid-template-columns: 1fr; } }

/* --- Final CTA banner with mark --- */
.cta-banner-split { padding: 80px 32px; }
.cta-banner-split .cta-mark {
  width: 90px; margin: 0 auto 20px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.cta-banner-split .eyebrow { color: white; }
.cta-banner-split .eyebrow::before { background: white; }

.home-hero-centered { padding: 0 0 40px; text-align: center; }
.home-hero-stack {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
}
.hero-logo {
  width: min(800px, 70vw);
  max-width: none;
  height: auto;
  display: block;
  margin: -150px auto -180px;   /* crop heavy transparent padding on all sides */
}
.hero-tagline-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 110px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}
.hero-lede {
  font-size: 20px;
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(245,241,230,.85);
}
.jump-nav-center { justify-content: center; border-top: 0; padding-top: 0; margin-top: 12px; }

.hero-tagline-line {
  display: block;
  font-size: 0.55em;
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
/* ---------- Misc ---------- */
.scribble {
  position: absolute;
  pointer-events: none;
  opacity: .14;
  z-index: 0;
}
.section > .wrap { position: relative; z-index: 1; }

::selection { background: var(--tea-lime); color: var(--tea-ink); }
