:root {
  --navy-900: #020a1a;
  --navy-800: #041637;
  --navy-700: #082552;
  --navy-500: #0c336d;
  --ocean: #0f4c81;
  --gold: #ffb703;
  --gold-soft: #ffe7a1;
  --slate: #c6d1eb;
  --white: #fefefe;
  --text: #f4f6fb;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --shadow-xl: 0 30px 80px rgba(4, 14, 35, 0.4);
  --shadow-card: 0 25px 60px rgba(2, 11, 26, 0.35);
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0d4c92 0%, #031129 45%, #010713 90%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  padding: 0 1.5rem 2rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--white);
}

p {
  margin: 0 0 1rem;
  color: var(--slate);
}

a {
  color: inherit;
  text-decoration: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.hero {
  margin: 2.5rem auto;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-600), var(--ocean));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 0.9fr);
  grid-template-areas:
    "portrait content"
    "portrait badge";
  align-items: center;
  gap: 2rem;
  position: relative;
  justify-items: center;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 36rem;
}

.hero__content {
  max-width: 540px;
  grid-area: content;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.hero__actions .btn {
  flex: 0 0 auto;
  min-width: 140px;
}

.hero__portrait {
  justify-self: center;
  text-align: center;
  grid-area: portrait;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__portrait img {
  width: clamp(200px, 35vw, 340px);
  height: clamp(200px, 35vw, 340px);
  border-radius: 50%;
  border: 3px solid rgba(255, 183, 3, 0.8);
  box-shadow: 0 20px 40px rgba(2, 10, 26, 0.6);
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.8), rgba(2, 10, 26, 0.9));
  object-fit: cover;
  display: block;
}

.hero__portrait figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__badge {
  grid-area: badge;
  justify-self: center;
  background: rgba(2, 11, 26, 0.65);
  border: 1px solid rgba(255, 183, 3, 0.5);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: inset 0 0 30px rgba(255, 183, 3, 0.1);
}

.hero__badge p {
  font-size: 2.25rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero__badge span {
  color: var(--slate);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  gap: 0.6rem;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 8px 18px rgba(255, 183, 3, 0.2);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

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

.section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(4, 16, 38, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.tabbed {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  background: rgba(3, 11, 29, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--slate);
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-btn.is-active {
  background: linear-gradient(120deg, var(--gold), #f8c253);
  color: var(--navy-900);
  border-color: transparent;
  box-shadow: 0 15px 30px rgba(255, 183, 3, 0.35);
}

.tab-panels {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.about-card {
  background: rgba(3, 10, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.about-card--story {
  background: linear-gradient(135deg, rgba(12, 51, 109, 0.6), rgba(2, 10, 26, 0.9));
}

.badge-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-list li {
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: var(--text);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline__role {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timeline__meta {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.timeline__copy {
  margin: 0;
  color: var(--slate);
}

.timeline__details {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.timeline__details li {
  line-height: 1.5;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.fact-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.section__intro {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.tab-panel .section__intro {
  max-width: none;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(5, 15, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.faq-meta {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.faq-panel {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-panel {
  padding: 0 1.5rem 1.5rem;
}

.faq-summary {
  color: var(--slate);
  margin: 1rem 0;
}

.faq-item .takeaway-list {
  margin-bottom: 1rem;
}

.faq-item .video-shell {
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item--highlight {
  background: var(--gold);
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item--highlight .faq-trigger {
  color: var(--navy-900);
}

.faq-item--highlight .faq-meta {
  color: var(--navy-900);
}

.faq-item--highlight .faq-panel {
  background: rgba(0, 0, 0, 0.05);
}

.faq-item--highlight .faq-summary {
  color: var(--navy-800);
}

.faq-item--highlight .takeaway-list li {
  color: var(--navy-900);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item--highlight .takeaway-list li {
  color: var(--navy-900);
  border-color: rgba(0, 0, 0, 0.1);
}

.question-card {
  background: rgba(5, 15, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.question-card__eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.question-card h3 {
  font-size: 1.2rem;
}

.question-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.question-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.takeaway-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.takeaway-list li {
  background: rgba(15, 76, 129, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(15, 76, 129, 0.9), rgba(4, 22, 53, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-shell video,
.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
  background: #000;
}

.video-error {
  margin: 0;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.video-download {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.video-download:hover {
  background: rgba(255, 255, 255, 0.25);
}

.video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: radial-gradient(
      circle at top,
      rgba(255, 183, 3, 0.35),
      rgba(15, 76, 129, 0.95)
    ),
    rgba(1, 7, 19, 0.4);
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-trigger span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.video-trigger:hover {
  transform: scale(1.02);
  background: rgba(1, 7, 19, 0.55);
}

.spotlight {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0b2749, #031631);
}

.spotlight__body {
  max-width: 640px;
}

.spotlight__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 2rem 1.5rem;
  color: var(--slate);
}

.footer h3 {
  color: var(--white);
}

.footer__copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(198, 209, 235, 0.75);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "portrait"
      "badge";
    text-align: center;
  }

  .hero__content {
    justify-self: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__actions .btn {
    flex: 0 1 220px;
  }

  .hero__badge {
    justify-self: center;
    margin-top: 1rem;
    width: min(320px, 100%);
  }

  .hero__portrait img {
    width: clamp(180px, 40vw, 240px);
    height: clamp(180px, 40vw, 240px);
  }

  .section {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  body {
    padding: 0 1rem 2rem;
  }

  .hero {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "portrait"
      "badge";
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.5rem;
  }

  .hero__actions .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: unset;
    padding: 0.45rem 0.9rem;
    border-radius: 1rem;
    font-size: 0.85rem;
  }

  .hero__portrait {
    justify-self: center;
  }

  .hero__portrait img {
    width: clamp(180px, 60vw, 220px);
    height: clamp(180px, 60vw, 220px);
  }

  .hero__badge {
    width: min(260px, 100%);
    padding: 1.2rem;
  }

  .tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .section {
    padding: 1.5rem;
  }

  .question-grid {
    grid-template-columns: 1fr;
  }
}
