/* =============================================================
   Lead Innovation Day 2026 — Style System
   ============================================================= */

/* --- CSS Variables --- */
:root {
  --teal: #2BBEA0;
  --blue: #4A8FD9;
  --logo-blue: #3A7BC8;
  --gradient: linear-gradient(135deg, #4A8FD9, #2BBEA0);
  --dark-bg: #0A0A0A;
  --light-bg: #F2F1EE;
  --card-bg: #F7F6F3;
  --white: #FFFFFF;
  --text-dark: hsl(24, 9%, 10%);
  --text-muted: hsl(24, 5%, 40%);
  --text-on-dark: #FFFFFF;
  --text-muted-dark: rgba(255,255,255,0.7);
  --border: hsl(23, 5%, 82%);
  --radius: 16px;
  --max-width: 1200px;
  --content-width: 900px;
}

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

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section Spacing --- */
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* =============================================================
   Skip Link (Accessibility)
   ============================================================= */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 8px;
}

/* =============================================================
   Navigation
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 241, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--text-dark); }
.nav__link--cta {
  color: var(--teal);
  font-weight: 600;
}
.nav__link--cta:hover { color: #24a88d; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light-bg);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links--open { display: flex; }
}

/* =============================================================
   Hero Section
   ============================================================= */
.hero {
  position: relative;
  background: var(--dark-bg);
  color: var(--text-on-dark);
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  z-index: 2;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 3;
}
.hero__orb--1 { width: 500px; height: 500px; background: var(--teal); top: -15%; left: -10%; animation: heroFloat1 12s ease-in-out infinite; }
.hero__orb--2 { width: 400px; height: 400px; background: var(--blue); bottom: -10%; right: -5%; animation: heroFloat2 14s ease-in-out infinite; }
.hero__orb--3 { width: 350px; height: 350px; background: var(--logo-blue); top: 40%; left: 60%; animation: heroFloat3 10s ease-in-out infinite; }

@keyframes heroFloat1 { 0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(80px,60px) scale(1.1)}66%{transform:translate(-40px,100px) scale(.95)} }
@keyframes heroFloat2 { 0%,100%{transform:translate(0,0) scale(1)}33%{transform:translate(-70px,-50px) scale(1.15)}66%{transform:translate(50px,-80px) scale(.9)} }
@keyframes heroFloat3 { 0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-100px,-60px) scale(1.2)} }

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse { 0%,100%{opacity:.3}50%{opacity:.6} }

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero__desc {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero__date {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__meta {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}
.hero__meta em {
  font-style: normal;
  color: var(--teal);
  cursor: default;
}

/* =============================================================
   Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: #24a88d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(43,190,160,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
}
.btn--outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* =============================================================
   Logo Ticker
   ============================================================= */
.ticker {
  padding: 64px 0 48px;
  overflow: hidden;
}
.ticker__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.ticker__track {
  display: flex;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.ticker__item {
  flex-shrink: 0;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.7;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__audience {
  text-align: center;
  max-width: 700px;
  margin: 32px auto 0;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================================
   Trailer Section
   ============================================================= */
.trailer-section {
  padding: 0 0 64px;
}
.trailer-section__frame {
  width: 100%;
  overflow: hidden;
  height: 50vh;
  max-height: 480px;
  background: var(--dark-bg);
  position: relative;
}
.trailer-section__frame iframe {
  width: 100%;
  height: 177.78%; /* 16:9 ratio relative to width, vertically centered */
  border: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* =============================================================
   Themes Section
   ============================================================= */
.themes { background: var(--light-bg); }
.themes__header {
  text-align: center;
  margin-bottom: 48px;
}
.themes__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}
.themes__sub {
  font-size: 16px;
  color: var(--text-muted);
}
.themes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .themes__grid { grid-template-columns: 1fr; }
}

.theme-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.theme-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.theme-card--blue { border-top-color: var(--blue); }
.theme-card--teal { border-top-color: var(--teal); }
.theme-card--amber { border-top-color: #D97706; }
.theme-card--purple { border-top-color: #8B5CF6; }

.theme-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.theme-card--blue .theme-card__title { color: var(--blue); }
.theme-card--teal .theme-card__title { color: var(--teal); }
.theme-card--amber .theme-card__title { color: #D97706; }
.theme-card--purple .theme-card__title { color: #8B5CF6; }

.theme-card__question {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.theme-card__desc {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* =============================================================
   Case Studies Section
   ============================================================= */
.cases { background: var(--light-bg); }
.cases__header {
  text-align: center;
  margin-bottom: 12px;
}
.cases__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 4px;
}
.cases__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
}
.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.case-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
/* badges removed — no longer used */
.case-card__company {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-card__question {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.case-card--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--border);
  background: transparent;
}
.case-card--cta__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}
.case-card--cta__sub {
  font-size: 14px;
  color: var(--text-muted);
}
.case-card--cta__sub a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}
.case-card--cta__sub a:hover {
  text-decoration: underline;
}

.cases__more {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* =============================================================
   Workshops Section
   ============================================================= */
.workshops {
  background: var(--card-bg);
}
.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.workshop-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.workshop-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.workshop-card__org {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.workshop-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================================
   Testimonial Section
   ============================================================= */
.testimonial {
  background: var(--light-bg);
  text-align: center;
}
.testimonial__quote {
  font-family: 'EB Garamond', 'Georgia', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--text-dark);
}
.testimonial__author {
  font-size: 14px;
  color: var(--text-muted);
}
.testimonial__note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* =============================================================
   Sponsors Section
   ============================================================= */
.sponsors {
  background: var(--card-bg);
  text-align: center;
}
.sponsors__heading {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 56px;
}
.sponsors__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}
.sponsors__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.sponsors__logo-link:hover {
  opacity: 1;
}
.sponsors__logo {
  height: 72px;
  max-width: 220px;
  object-fit: contain;
}
.sponsors__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}
.sponsors__team {
  margin-top: 80px;
  font-size: 17px;
  color: var(--text-muted);
}
.sponsors__team a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}
.sponsors__team a:hover {
  color: var(--teal);
  text-decoration: underline;
}
@media (max-width: 640px) {
  .sponsors__logos {
    gap: 48px;
  }
  .sponsors__logo {
    max-width: 160px;
    height: 56px;
  }
}

/* =============================================================
   Audience Section
   ============================================================= */
.audience {
  background: var(--dark-bg);
  color: var(--text-on-dark);
}
.audience__title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 48px;
}
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.audience__heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.audience__col--yes .audience__heading {
  color: var(--teal);
}
.audience__col--no .audience__heading {
  color: rgba(255,255,255,0.5);
}
.audience__list {
  list-style: none;
}
.audience__list li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.audience__col--yes .audience__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.audience__col--no .audience__list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}
@media (max-width: 600px) {
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =============================================================
   Pricing / CTA Section
   ============================================================= */
.pricing {
  background: var(--light-bg);
}
.pricing__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}
.pricing__badge {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.pricing__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing__subtitle {
  font-size: 16px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 32px;
}
.pricing__list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing__list li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing__list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.pricing__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

/* =============================================================
   Waitlist
   ============================================================= */
.waitlist {
  text-align: center;
  padding: 48px 0 32px;
}
.waitlist__text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.waitlist__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  transition: color 0.2s;
}
.waitlist__link:hover { color: #24a88d; text-decoration: underline; }

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: var(--dark-bg);
  color: var(--text-muted-dark);
  padding: 48px 0 32px;
  text-align: center;
}
.footer__date {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}
.footer__venue {
  font-size: 14px;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}
.footer__links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  list-style: none;
}
.footer__link {
  font-size: 13px;
  color: var(--text-muted-dark);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--teal); }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* =============================================================
   Scroll Animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   Programme Page
   ============================================================= */
.program-header {
  padding: 48px 0 32px;
}
.program-header__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 4px;
}
.program-header__subtitle {
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.program-header__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FEF3C7;
  color: #92400E;
}
.program-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}
.program-header__dot {
  color: var(--border);
}

/* Schedule timeline */
.schedule__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 32px;
}
.timeline { position: relative; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 2px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item__time {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  text-align: right;
  padding-top: 2px;
}
.timeline-item__line {
  background: var(--border);
  position: relative;
  border-radius: 1px;
}
.timeline-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  position: absolute;
  top: 6px;
  left: -3px;
}
.timeline-item__content {
  padding-bottom: 8px;
}
.timeline-item__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-item__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Session cards for parallel sessions */
.session-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.session-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.session-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.session-card__type--keynote { color: #D97706; }
.session-card__type--situation { color: var(--teal); }
.session-card__type--workshop { color: var(--blue); }
.session-card__type--discussion { color: #8B5CF6; }

.session-card__title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.session-card__room {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.session-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.session-card__company {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}
.session-card__company-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* Keynote card (highlighted) */
.keynote-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 4px;
}
.keynote-card__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: #FEF3C7;
  color: #92400E;
  margin-bottom: 10px;
}
.keynote-card__title {
  font-size: 18px;
  font-weight: 600;
}

/* Program bottom CTA */
.program-cta {
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.program-cta__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.program-footer {
  text-align: center;
  padding: 24px 0;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.program-footer__note {
  margin-bottom: 4px;
  font-style: italic;
}

/* =============================================================
   Accessibility & SEO
   ============================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
