/* ===== Design Tokens ===== */
:root {
  --primary: #005B8C;
  --primary-hover: #004A73;
  --accent-light: #4DA6D9;
  --accent-green: #5C9C42;
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-dark-muted: #475569;
  --text-dark-soft: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  --text-light-soft: #cbd5e1;
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --green: #15803d;
  --green-bg: #dcfce7;
  --blue-bg: #dbeafe;
  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 20px -5px rgba(15, 23, 42, 0.1), 0 4px 8px -4px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 40px -10px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.08);
  --shadow-2xl: 0 30px 60px -15px rgba(2, 6, 23, 0.35);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h: 4rem;
  --font-stack: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-stack);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.015em; }

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--primary); color: #fff;
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  z-index: 1000; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ===== Layout ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; position: relative; }
@media (min-width: 768px) { section { padding: 5rem 0; } }
@media (min-width: 1024px) { section { padding: 6rem 0; } }

.light { background: var(--bg-light); color: var(--text-dark); }
.light-alt { background: #f1f5f9; color: var(--text-dark); }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.site-header.scrolled .nav-logo img { filter: none; }
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-light-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-light); }
.site-header.scrolled .nav-links a:not(.btn-nav-cta) { color: var(--text-dark-muted); }
.site-header.scrolled .nav-links a:not(.btn-nav-cta):hover { color: var(--primary); }
.btn-nav-cta, .btn-nav-cta:hover, .site-header.scrolled .btn-nav-cta { color: #fff; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background-color 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--text-dark); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
}
.mobile-nav a {
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-nav a.btn { border-bottom: 0; margin-top: 1rem; }
.mobile-nav[hidden] { display: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--text-light);
  color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}
.btn-primary:hover { background: #fff; box-shadow: var(--shadow-xl); }
.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.25); }
.btn-light {
  background: var(--text-light);
  color: var(--bg-dark);
  box-shadow: var(--shadow-xl);
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-light:hover { background: #fff; }
.btn-nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px -6px rgba(0, 91, 140, 0.45);
}
.btn-nav-cta:hover { background: var(--primary-hover); }

/* ===== Badge & Labels ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.card-label {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.card-label.green { background: var(--green-bg); color: var(--green); }
.card-label.blue { background: var(--blue-bg); color: var(--primary); }

.section-headline {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
@media (min-width: 768px) { .section-headline { font-size: 2.25rem; } }

.section-sub {
  color: var(--text-dark-muted);
  font-size: 1.0625rem;
  max-width: 48rem;
  line-height: 1.6;
}
.section-head { margin-bottom: 2.5rem; }
@media (min-width: 768px) { .section-head { margin-bottom: 3.5rem; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}
.glow-a {
  top: -15%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(0, 91, 140, 0.5);
}
.glow-b {
  bottom: -10%; right: -5%;
  width: 600px; height: 600px;
  background: rgba(92, 156, 66, 0.25);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; max-width: 40rem; }
.hero-headline {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text-light);
}
.accent-gradient {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-light) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-subline {
  font-size: 1.125rem;
  color: var(--text-light-soft);
  max-width: 32rem;
  line-height: 1.6;
}
.hero-subline strong { color: var(--text-light); font-weight: 600; }
@media (min-width: 768px) { .hero-subline { font-size: 1.25rem; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

.hero-portrait {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) { .hero-portrait { max-width: none; } }
.hero-portrait-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(0, 91, 140, 0.4), rgba(92, 156, 66, 0.2));
  border-radius: var(--radius-xl);
  filter: blur(40px);
  z-index: -1;
}
.hero-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-portrait-caption {
  position: relative;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.caption-accent {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  height: 1px; width: 4rem;
  background: linear-gradient(90deg, transparent, rgba(77, 166, 217, 0.6), transparent);
}
.caption-name {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.015em;
}
@media (min-width: 640px) { .caption-name { font-size: 1.125rem; } }
.caption-role {
  color: var(--accent-light);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.375rem;
}
@media (min-width: 640px) { .caption-role { font-size: 1.125rem; } }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bob 2.4s var(--ease) infinite;
}
.hero-scroll svg { opacity: 0.7; }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 1023px) { .hero-scroll { display: none; } }

/* ===== Trust ===== */
.trust { background: var(--bg-dark); color: var(--text-light); padding: 3rem 0; border-top: 1px solid var(--border-dark); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.trust-item { display: flex; flex-direction: column; gap: 0.5rem; }
.trust-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(77, 166, 217, 0.1);
  border: 1px solid rgba(77, 166, 217, 0.25);
  color: var(--accent-light);
  border-radius: var(--radius-sm);
  margin-bottom: 0.25rem;
}
.trust-item h3 { font-size: 1.125rem; font-weight: 600; color: var(--text-light); }
.trust-item p { color: var(--text-light-muted); font-size: 0.9375rem; line-height: 1.55; }

/* ===== Competencies ===== */
.competencies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .competencies-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
}
.lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .lead { font-size: 1.125rem; } }
.checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}
.checklist li svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

/* ===== Card Grid ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #cbd5e1;
}
.card-icon {
  width: 3.25rem; height: 3.25rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0, 91, 140, 0.08), rgba(92, 156, 66, 0.08));
  color: var(--primary);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.card p {
  color: var(--text-dark-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== Audience ===== */
.audience .section-head { margin-bottom: 1.25rem; }
.audience .section-head .section-label { margin-bottom: 0; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.audience-card .card-title { font-size: 1.375rem; margin-bottom: 0.75rem; }
.audience-card p { color: var(--text-dark-muted); font-size: 1rem; line-height: 1.6; }

/* ===== Award Image ===== */
.award-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-top: 2rem;
}
.award-image img {
  width: 100%;
  height: auto;
  display: block;
}
.award-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.25) 60%, transparent 100%);
  color: var(--text-light);
}
@media (min-width: 640px) { .award-overlay { padding: 2rem; } }
.award-title { font-size: 1rem; font-weight: 600; }
@media (min-width: 640px) { .award-title { font-size: 1.125rem; } }
.award-sub { color: var(--text-light-soft); font-size: 0.875rem; margin-top: 0.125rem; }

/* ===== Profile ===== */
.profile { background: var(--bg-light); color: var(--text-dark); }
.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .profile-grid { grid-template-columns: 1fr 1.5fr; gap: 4rem; }
}
.profile-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) { .profile-image { max-width: none; } }
.profile-image img { display: block; width: 100%; height: auto; }
.profile-text .section-headline {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
}
.profile-body { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.profile-body p {
  color: var(--text-dark-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .profile-body p { font-size: 1.125rem; } }
.profile-body strong { color: var(--text-dark); font-weight: 600; }
.profile-body a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.profile-body a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.profile-badges { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.profile-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ===== CTA ===== */
.cta {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 91, 140, 0.35) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 52rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta .section-label { color: var(--accent-light); }
.cta-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.cta-text {
  font-size: 1.125rem;
  color: var(--text-light-soft);
  line-height: 1.6;
  max-width: 42rem;
}
@media (min-width: 768px) { .cta-text { font-size: 1.25rem; } }
.cta-subtext { color: var(--text-light-muted); font-size: 1rem; max-width: 42rem; }
.cta-inner .btn-light { margin-top: 1rem; }
.cta-fallback { color: var(--text-light-muted); font-size: 0.875rem; margin-top: 0.25rem; }
.cta-fallback a { color: var(--accent-light); font-weight: 500; }
.cta-fallback a:hover { color: #fff; }

/* ===== Footer ===== */
.site-footer {
  background: #020617;
  color: var(--text-light-muted);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; gap: 3rem; } }
.footer-brand img { height: 2.5rem; width: auto; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-light-muted); }
.footer-legal { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0; }
@media (min-width: 768px) { .footer-legal { max-width: 32rem; width: 100%; } }

/* ===== Accordion ===== */
.accordion {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.accordion summary {
  list-style: none;
  padding: 0.875rem 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-light-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s, background-color 0.2s;
  font-size: 0.9375rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "";
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-left: 1rem;
  flex-shrink: 0;
}
.accordion[open] summary::after { transform: rotate(-135deg); }
.accordion summary:hover { color: var(--text-light); background: rgba(255, 255, 255, 0.02); }
.accordion-body {
  padding: 0.5rem 1rem 1.25rem;
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.accordion-body h4 {
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}
.accordion-body h4:first-child { margin-top: 0; }
.accordion-body p { margin-bottom: 0.75rem; }
.accordion-body ul { margin: 0.25rem 0 0.75rem 1.25rem; padding: 0; }
.accordion-body li { margin-bottom: 0.25rem; }
.accordion-body a { color: var(--accent-light); }
.accordion-body a:hover { color: #fff; text-decoration: underline; }

/* ===== Focus States ===== */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ===== Utilities ===== */
@media (max-width: 640px) {
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
}
