* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --ink: #161616;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --line-strong: #d5d5d5;
  --topbar: #111111;
  --footer: #111111;
  --footer-alt: #1f1f1f;
  --hero: #ff313b;
  --hero-dark: #5f1d1f;
  --accent: #ffb606;
  --accent-deep: #e6a303;
  --soft: #eef5fb;
  --soft-2: #f7f7f7;
  --charcoal: #555555;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max: 1220px;
  --nav-height: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: "Roboto", sans-serif;
  line-height: 1.72;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--topbar);
  color: #cccccc;
  font-size: 13px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: #cccccc;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #ffffff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 118px;
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__links a {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav__links a[aria-current="page"]::after,
.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent);
  color: #111111;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-deep);
}

.button--secondary {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 182, 6, 0.16);
  color: #7b5300;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow--small {
  min-height: 30px;
  padding: 0 12px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 4.7vw, 4.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

p {
  margin: 0;
}

.hero {
  background: var(--hero);
  color: #111111;
  padding: 54px 0 40px;
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.page-hero {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.page-hero__grid--single {
  grid-template-columns: 1fr;
}

.hero__copy,
.page-hero__copy {
  display: grid;
  gap: 22px;
}

.hero__copy h1 {
  max-width: 12ch;
}

.hero__lead,
.page-hero__copy p:not(.eyebrow) {
  max-width: 70ch;
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}

.hero-stat {
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Roboto Slab", serif;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
}

.hero__panel,
.page-hero__panel {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero-seal {
  position: relative;
  width: min(350px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-seal__ring {
  position: absolute;
  inset: 0;
  border: 16px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0) 56%, rgba(255, 182, 6, 0.22) 57%, rgba(255, 182, 6, 0.22) 64%, transparent 65%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.hero-seal__ring span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-seal__ring span:nth-child(1) {
  top: 18px;
}

.hero-seal__ring span:nth-child(2) {
  bottom: 18px;
}

.hero-seal__ring span:nth-child(3) {
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}

.hero-seal__core {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #231f20 0%, #4e2d31 100%);
  display: grid;
  place-items: center;
  text-align: center;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero-seal__core span {
  font-family: "Roboto Slab", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-seal__core small {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.hero-note,
.panel,
.detail-card,
.module-card,
.article-block,
.path-card,
.review-card,
.course-card,
.benefit-card,
.resource-card,
.spotlight-check,
.faq-item {
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-note,
.panel,
.detail-card,
.module-card,
.article-block,
.path-card,
.review-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.hero-note h2,
.panel h2 {
  font-size: 1.25rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
}

.feature-card {
  min-height: 148px;
  padding: 28px 26px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.feature-card--dark {
  background: rgba(82, 21, 24, 0.95);
  color: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card h2 {
  color: inherit;
  font-size: 1.35rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card span {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content-section {
  padding: 72px 0;
}

.content-section--soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading > div {
  display: grid;
  gap: 12px;
}

.section-heading p:not(.eyebrow) {
  max-width: 70ch;
  color: var(--muted);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.course-grid--full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-card {
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-3px);
}

.course-card__media {
  display: block;
}

.course-card__body {
  padding: 20px;
  display: grid;
  gap: 14px;
}

.course-card h3 a:hover,
.course-card h3 a:focus-visible,
.resource-card h3 a:hover,
.resource-card h3 a:focus-visible,
.review-card h2 a:hover,
.review-card h2 a:focus-visible {
  color: #8d4029;
}

.course-card p:not(.eyebrow),
.resource-card p,
.review-card p,
.article-block p,
.module-card p,
.detail-card li,
.panel li,
.hero-note p,
.spotlight-check p,
.path-card p {
  color: var(--muted);
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  background: var(--soft-2);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: #4f4f4f;
}

.course-meta--hero span {
  background: rgba(255, 255, 255, 0.78);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8d4029;
  font-size: 0.95rem;
  font-weight: 700;
}

.card-link::after {
  content: ">";
  font-size: 0.95rem;
}

.course-cover {
  position: relative;
  min-height: 340px;
  padding: 22px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.course-cover--compact {
  min-height: 260px;
}

.course-cover::before,
.course-cover::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.22;
}

.course-cover::before {
  width: 180px;
  height: 180px;
  right: -38px;
  top: -26px;
  background: rgba(255, 255, 255, 0.48);
}

.course-cover::after {
  width: 120px;
  height: 120px;
  right: 22px;
  bottom: 20px;
  border: 10px solid rgba(255, 255, 255, 0.36);
}

.course-cover__stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 76%;
}

.course-cover__stack span {
  display: block;
  color: #ffffff;
  font-family: "Roboto Slab", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.course-cover__tag {
  position: relative;
  z-index: 1;
  justify-self: start;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-coral {
  background: linear-gradient(135deg, #ff5b76 0%, #ff8d6d 100%);
}

.cover-purple {
  background: linear-gradient(135deg, #8665ff 0%, #b34fe1 100%);
}

.cover-orange {
  background: linear-gradient(135deg, #ff6f25 0%, #ffb033 100%);
}

.cover-gold {
  background: linear-gradient(135deg, #efb71b 0%, #f4d452 100%);
}

.cover-teal {
  background: linear-gradient(135deg, #117e81 0%, #3cb5b7 100%);
}

.cover-burgundy {
  background: linear-gradient(135deg, #8e2737 0%, #c84555 100%);
}

.cover-charcoal {
  background: linear-gradient(135deg, #2d2d35 0%, #5e5f6a 100%);
}

.cover-slate {
  background: linear-gradient(135deg, #4a5565 0%, #8ca0ba 100%);
}

.spotlight-band {
  background: linear-gradient(180deg, #666666 0%, #545454 100%);
  color: #ffffff;
  padding: 84px 0;
}

.spotlight-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.spotlight-band h2,
.spotlight-band .eyebrow {
  color: #ffffff;
}

.spotlight-band .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}

.spotlight-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.spotlight-checks {
  display: grid;
  gap: 18px;
}

.spotlight-check {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.spotlight-check strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: "Roboto Slab", serif;
  font-size: 1.1rem;
}

.spotlight-check p {
  color: rgba(255, 255, 255, 0.84);
}

.benefit-section {
  background: var(--soft);
  padding: 86px 0;
}

.benefit-grid,
.module-grid,
.path-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  min-height: 250px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: "Roboto Slab", serif;
  font-weight: 700;
}

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

.resource-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background:
    linear-gradient(rgba(6, 8, 10, 0.74), rgba(6, 8, 10, 0.74)),
    radial-gradient(circle at 15% 35%, rgba(255, 182, 6, 0.18), transparent 22%),
    linear-gradient(130deg, #0c1418 0%, #1f2930 45%, #121618 100%);
  color: #ffffff;
}

.resource-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.18;
}

.resource-section .section {
  position: relative;
  z-index: 1;
}

.resource-section h2,
.resource-section .eyebrow {
  color: #ffffff;
}

.resource-section .eyebrow {
  background: rgba(255, 255, 255, 0.1);
}

.resource-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resource-card {
  min-height: 260px;
  padding: 26px;
  display: grid;
  align-content: end;
  gap: 14px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(9, 15, 18, 0.24) 0%, rgba(9, 15, 18, 0.88) 100%),
    linear-gradient(135deg, rgba(255, 182, 6, 0.12) 0%, rgba(30, 35, 40, 0.12) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 10px;
  background: var(--accent);
  color: #111111;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-section {
  padding: 82px 0;
}

.testimonial-shell {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.theme-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.theme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 86px;
  border-radius: 50%;
  background: #f3e3b5;
  border: 3px solid rgba(230, 163, 3, 0.24);
  font-weight: 700;
}

.testimonial-quote {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-footer {
  background: var(--footer);
  color: #999999;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 40px;
  padding: 58px 0 42px;
}

.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand img {
  width: 112px;
  height: auto;
}

.footer-brand p {
  color: #999999;
}

.footer-disclaimer {
  font-size: 0.92rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-group h3 {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--footer-alt);
}

.footer-bottom__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-bottom__links {
  display: flex;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb__sep {
  color: #9a9a9a;
}

.page-hero__panel--cover {
  align-items: stretch;
}

.detail-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-grid--single {
  grid-template-columns: 1fr;
}

.detail-card h2,
.article-block h2 {
  margin-bottom: 16px;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  display: grid;
  gap: 16px;
}

.review-card__top {
  display: grid;
  gap: 10px;
}

.review-bars {
  display: grid;
  gap: 10px;
}

.review-bars div {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--soft-2);
  border: 1px solid var(--line);
  font-weight: 700;
}

.review-bars strong {
  color: #8d4029;
}

.cta-panel {
  padding: 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #fff5dd 0%, #ffffff 100%);
  border: 1px solid rgba(255, 182, 6, 0.32);
  display: grid;
  gap: 20px;
  align-items: center;
}

.cta-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Roboto Slab", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-family: "Roboto", sans-serif;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item__body {
  padding: 0 24px 22px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 240ms ease, transform 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .course-grid--full,
  .module-grid,
  .path-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    min-height: 84px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav__links a {
    padding: 10px 0;
  }

  .site-nav__links a::after,
  .site-nav__links a[aria-current="page"]::after {
    bottom: 0;
  }

  .site-nav__cta {
    width: 100%;
  }

  .hero__grid,
  .page-hero__grid,
  .spotlight-band__grid,
  .footer-shell,
  .detail-grid,
  .article-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .course-grid,
  .course-grid--full,
  .resource-grid,
  .benefit-grid,
  .module-grid,
  .path-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .section-heading--center {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .section {
    width: min(var(--max), calc(100% - 24px));
  }

  .topbar__inner,
  .footer-bottom__inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .hero,
  .page-hero,
  .content-section,
  .resource-section,
  .benefit-section,
  .spotlight-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-copy h1,
  .hero__copy h1 {
    max-width: none;
  }

  .course-cover {
    min-height: 300px;
  }

  .hero-seal {
    width: 280px;
  }
}
