/* Science of Learning aligned ENSSA recommendations site */
:root {
  --sol-white: #ffffff;
  --sol-black: #000000;
  --sol-purple: #322c45;
  --sol-purple-deep: #240936;
  --sol-cream: #fff5e8;
  --sol-teal: #00a08c;
  --sol-magenta: #c40e66;
  --sol-ink: #212327;
  --sol-muted: #5b616f;
  --sol-border: rgba(50, 44, 69, 0.18);
  --sol-shadow: 0 1px 2px rgba(36, 9, 54, 0.08), 0 12px 28px -8px rgba(36, 9, 54, 0.22);
  --sol-shadow-hover: 0 2px 4px rgba(36, 9, 54, 0.1), 0 22px 44px -12px rgba(36, 9, 54, 0.32);
  --sol-card-edge: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --sol-soft-shadow: 0 14px 34px rgba(36, 9, 54, 0.16);
  --content: 1120px;
  --wide: 1440px;
  --radius: 10px;
  --font-body: "Poppins", Arial, sans-serif;
  --font-display: "EB Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
h1, h2, h3 { overflow-wrap: break-word; }
body {
  margin: 0;
  color: var(--sol-white);
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(94, 80, 130, 0.55) 0%, rgba(50, 44, 69, 0) 60%),
    var(--sol-purple);
  background-attachment: fixed;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--sol-magenta); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--sol-purple);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(50, 44, 69, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.55);
}
.nav {
  width: min(var(--wide), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
  color: var(--sol-white);
  text-decoration: none;
}
.brand-logo { width: 230px; height: auto; }
.brand-wordmark {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  padding: 5px 0;
  color: var(--sol-white);
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  background: var(--sol-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

main { overflow: hidden; }
.section {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}
.compact-section { padding-top: 34px; padding-bottom: 34px; }

.hero {
  width: min(var(--content), calc(100% - 40px));
  margin: 52px auto 0;
  padding: 0;
  background: transparent;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 44px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--sol-teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--sol-white);
  font-weight: 700;
  line-height: 1.12;
}
/* Display headings use the editorial serif; card/UI titles (h3) stay sans. */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h3 { font-family: var(--font-body); }
h1 { font-size: clamp(44px, 5.4vw, 66px); }
h2 { font-size: clamp(34px, 4.1vw, 48px); }
h3 { font-size: clamp(24px, 2.5vw, 34px); }
.lede {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.5;
}
.hero-card {
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--sol-cream);
  color: var(--sol-ink);
  box-shadow: var(--sol-shadow);
}
.image-card { padding: 0; }
.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.image-card strong,
.image-card p,
.image-card .safe-url { margin-left: 24px; margin-right: 24px; }
.image-card strong { margin-top: 24px; }
.image-card p:last-child { margin-bottom: 24px; }
.hero-card strong {
  display: block;
  color: var(--sol-purple);
  font-weight: 700;
}
.hero-card p { color: var(--sol-ink); }

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 22px;
  border: 2px solid var(--sol-magenta);
  border-radius: 6px;
  background: var(--sol-magenta);
  color: var(--sol-white);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #a90d58;
  border-color: #a90d58;
  box-shadow: 0 10px 22px -10px rgba(196, 14, 102, 0.7);
}
.button:focus-visible {
  outline: 2px solid var(--sol-teal);
  outline-offset: 2px;
}
.button.secondary,
.button.ghost {
  background: transparent;
  color: var(--sol-white);
  border-color: var(--sol-white);
}
.button.secondary:hover,
.button.ghost:hover { background: rgba(255, 255, 255, 0.06); box-shadow: none; }
.hero-card .button.ghost:hover,
.recommendation-card .button.ghost:hover,
.resource-card .button.ghost:hover { background: rgba(196, 14, 102, 0.06); }
.hero-card .button.ghost,
.recommendation-card .button.ghost,
.resource-card .button.ghost {
  color: var(--sol-magenta);
  border-color: var(--sol-magenta);
}
.button.small { min-height: 38px; padding: 9px 14px; font-size: 14px; }
.muted-button {
  border-color: #c7c0b7;
  background: transparent;
  color: var(--sol-muted);
  cursor: default;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p,
.copy p { color: rgba(255, 255, 255, 0.86); }

.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step,
.callout,
.highlight-panel,
.article,
.toc {
  border-radius: var(--radius);
  box-shadow: var(--sol-shadow);
}
.step {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  background: rgba(0, 160, 140, 0.76);
}
/* Faint decorative orb for depth behind the step content. */
.step::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.step > * { position: relative; }
.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  border-radius: 50%;
  background: var(--sol-magenta);
  color: var(--sol-white);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}
.step p { color: rgba(255,255,255,.9); }

.filter-panel,
.recommendation-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 28px;
}
.search {
  flex: 1 1 280px;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 4px;
  background: var(--sol-cream);
  color: var(--sol-ink);
  font: inherit;
  box-shadow: inset 0 1px 3px rgba(36, 9, 54, 0.16);
  transition: box-shadow .2s ease;
}
.search::placeholder { color: var(--sol-muted); }
.search:focus { outline: none; box-shadow: inset 0 1px 3px rgba(36, 9, 54, 0.16), 0 0 0 3px rgba(0, 160, 140, 0.55); }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--sol-white);
  border-radius: 4px;
  background: transparent;
  color: var(--sol-white);
  padding: 9px 13px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.chip:hover { border-color: var(--sol-teal); background: var(--sol-teal); color: var(--sol-white); }
.chip.is-active {
  border-color: var(--sol-teal);
  background: var(--sol-teal);
  color: var(--sol-white);
  box-shadow: inset 0 2px 5px rgba(36, 9, 54, 0.35);
}
.chip:focus-visible { outline: 2px solid var(--sol-teal); outline-offset: 2px; }

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

.skill-card,
.recommendation-card,
.resource-card,
.related-item {
  position: relative;
  border-radius: var(--radius);
  background: var(--sol-cream);
  color: var(--sol-ink);
  box-shadow: var(--sol-card-edge), var(--sol-shadow);
}
/* Animated teal accent bar along the top edge on hover. */
.skill-card::after,
.recommendation-card::after,
.resource-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--sol-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.skill-card:hover::after,
.resource-card:hover::after { transform: scaleX(1); }
.skill-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.skill-card:hover { transform: translateY(-4px); border-color: var(--sol-teal); box-shadow: var(--sol-card-edge), var(--sol-shadow-hover); }
/* Coming-soon cards read as inert: no lift, no accent bar. */
.skill-card.coming-soon { opacity: .9; }
.skill-card.coming-soon:hover { transform: none; border-color: transparent; box-shadow: var(--sol-card-edge), var(--sol-shadow); }
.skill-card.coming-soon::after { display: none; }
.skill-meta,
.rec-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--sol-muted);
  font-size: 13px;
  font-weight: 600;
}
.badge,
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--sol-teal);
  color: var(--sol-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge.soon {
  background: transparent;
  color: var(--sol-muted);
  box-shadow: inset 0 0 0 1.5px rgba(50, 44, 69, 0.35);
}
.year-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 160, 140, 0.12);
  color: var(--sol-teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tag-pill { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-transform: lowercase; }
.year-tags { color: var(--sol-purple); font-weight: 700; }
.skill-card h3,
.recommendation-card h3,
.resource-card h3,
.related-item strong { color: var(--sol-purple); }
.skill-card p,
.recommendation-card p,
.resource-card p { color: var(--sol-ink); }
.skill-card .card-footer {
  margin-top: auto;
  padding-top: 26px;
  color: var(--sol-magenta);
  font-weight: 700;
}

.callout,
.proof-callout {
  padding: clamp(24px, 4vw, 42px);
  background: var(--sol-cream);
  color: var(--sol-ink);
}
.callout h2,
.proof-callout h2 { color: var(--sol-purple); }
.callout p,
.proof-callout p { color: var(--sol-ink); }
.callout .section-kicker,
.proof-callout .section-kicker { color: var(--sol-magenta); }

.privacy-card code,
.proof-callout code {
  padding: 0.12em 0.38em;
  border-radius: 4px;
  background: rgba(50, 44, 69, 0.1);
  color: var(--sol-purple);
  font-size: 0.9em;
}
.safe-url {
  margin-top: 15px;
  margin-bottom: 24px;
  padding: 12px 13px;
  border-radius: 4px;
  background: rgba(0, 160, 140, 0.14);
  color: var(--sol-purple);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.highlight-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(300px, .5fr);
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--sol-teal);
  color: var(--sol-white);
  border: 2px solid var(--sol-white);
}
.highlight-panel .section-kicker { color: var(--sol-purple); }
.highlight-panel p { color: rgba(255,255,255,.92); }
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.highlight-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border-radius: 4px;
  background: rgba(255,255,255,.16);
  color: var(--sol-white);
  font-weight: 700;
}
.highlight-list small { color: var(--sol-purple); font-weight: 800; white-space: nowrap; }

.recommendation-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 24px;
  border: 2px solid transparent;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.recommendation-card:hover { box-shadow: var(--sol-card-edge), var(--sol-shadow-hover); }
.recommendation-card:hover::after,
.recommendation-card.is-highlighted::after { transform: scaleX(1); }
.recommendation-card.is-highlighted {
  order: -1;
  border-color: var(--sol-teal);
  transform: translateY(-3px);
  box-shadow: var(--sol-card-edge), var(--sol-shadow-hover);
}
.recommendation-card.is-highlighted::before {
  content: "Highlighted for this class profile";
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--sol-magenta);
  color: var(--sol-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.skill-link {
  margin: 0 0 20px;
  color: var(--sol-magenta) !important;
  font-weight: 700;
}
.rec-copy-block { margin: 0 0 16px; }
.rec-copy-block strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sol-purple);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.doc-list { display: grid; gap: 9px; margin: 18px 0 22px; }
.doc-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid rgba(50, 44, 69, 0.16);
  border-radius: 4px;
  background: var(--sol-white);
  color: var(--sol-ink);
  text-decoration: none;
}
.doc-slot span { font-weight: 700; }
.doc-slot small { color: var(--sol-muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.doc-slot.is-available {
  border-color: rgba(0, 160, 140, 0.45);
  border-left: 4px solid var(--sol-teal);
  background: rgba(0, 160, 140, 0.1);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.doc-slot.is-available::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-right: -4px;
  border-radius: 50%;
  background: var(--sol-teal);
  color: var(--sol-white);
  font-size: 12px;
  font-weight: 700;
}
.doc-slot.is-available:hover { border-color: var(--sol-magenta); box-shadow: 0 6px 16px -8px rgba(0, 160, 140, 0.6); }
.doc-slot.is-pending {
  border-left: 3px dashed rgba(50, 44, 69, 0.3);
  color: rgba(33, 35, 39, 0.62);
  background: rgba(50, 44, 69, 0.06);
}
.rec-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.resource-status { color: var(--sol-muted); font-size: 13px; font-weight: 700; }
.no-results { color: var(--sol-white); }

.article-shell {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, .88fr);
  gap: 42px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 116px;
  padding: 18px;
  background: var(--sol-cream);
  color: var(--sol-ink);
}
.toc strong { display: block; margin-bottom: 10px; color: var(--sol-purple); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.toc a {
  display: block;
  padding: 8px 0 8px 0;
  border-left: 2px solid transparent;
  margin-left: -12px;
  padding-left: 12px;
  color: var(--sol-magenta);
  text-decoration: none;
  font-weight: 600;
  transition: border-color .2s ease, padding-left .2s ease, color .2s ease;
}
.toc a:hover,
.toc a:focus-visible {
  border-left-color: var(--sol-teal);
  padding-left: 16px;
  color: var(--sol-purple);
  outline: none;
}
.article { overflow: hidden; background: var(--sol-cream); color: var(--sol-ink); }
.article-header {
  padding: clamp(28px, 5vw, 52px);
  background: var(--sol-teal);
  border-bottom: 0;
}
.article-header .eyebrow { color: var(--sol-purple); }
.article-header p { max-width: 760px; color: rgba(255,255,255,.95); font-size: 20px; }
.article-body { padding: clamp(24px, 5vw, 52px); }
.article-body h2 { margin-top: 44px; color: var(--sol-purple); }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 30px; color: var(--sol-purple); }
.article-body p,
.article-body li { color: var(--sol-ink); font-size: 18px; }
.article-body blockquote {
  position: relative;
  margin: 28px 0;
  padding: 20px 24px 20px 30px;
  border-left: 4px solid var(--sol-teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(0,160,140,.12);
  color: var(--sol-purple);
  font-family: var(--font-display);
  font-size: 22px;
}
.article-body blockquote::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  left: 14px;
  color: var(--sol-magenta);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  opacity: 0.5;
}
.article-body blockquote p:first-child { text-indent: 18px; }
.resource-card {
  min-height: 250px;
  padding: 30px;
}
.resource-card h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.18;
}
.resource-card p {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.6;
}
.related-list { display: grid; gap: 14px; }
.related-item { display: block; padding: 18px; text-decoration: none; }
.related-item strong { display: block; font-family: var(--font-body); font-size: 21px; }
.related-item span { display: block; margin-top: 6px; color: var(--sol-muted); }

.site-footer {
  width: min(var(--content), calc(100% - 40px));
  margin: 70px auto 0;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: center;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.15);
}
.footer-logo { width: 220px; }
.site-footer strong { display: block; color: var(--sol-white); }
.site-footer span { display: block; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
/* Cascade grid children in rather than popping together. */
.skill-grid .reveal:nth-child(2),
.recommendation-grid .reveal:nth-child(2),
.resource-grid .reveal:nth-child(2),
.workflow .reveal:nth-child(2) { transition-delay: .08s; }
.skill-grid .reveal:nth-child(3),
.recommendation-grid .reveal:nth-child(3),
.resource-grid .reveal:nth-child(3),
.workflow .reveal:nth-child(3) { transition-delay: .16s; }
.skill-grid .reveal:nth-child(4),
.recommendation-grid .reveal:nth-child(4) { transition-delay: .08s; }
.skill-grid .reveal:nth-child(5),
.recommendation-grid .reveal:nth-child(5) { transition-delay: .16s; }
.skill-grid .reveal:nth-child(6),
.recommendation-grid .reveal:nth-child(6) { transition-delay: .24s; }

@media (max-width: 1024px) {
  .nav { min-height: 78px; }
  .brand-logo { width: 190px; }
  .brand-wordmark { display: none; }
  .nav-links { gap: 16px; font-size: 16px; }
  .hero-grid,
  .section-head,
  .article-shell,
  .highlight-panel { grid-template-columns: 1fr; }
  .toc { position: relative; top: auto; }
}
@media (max-width: 820px) {
  .workflow,
  .skill-grid,
  .recommendation-grid,
  .resource-grid { grid-template-columns: 1fr; }
  .recommendation-card { min-height: auto; }
}
@media (max-width: 640px) {
  .nav { width: min(100% - 28px, var(--wide)); }
  .nav-links { display: none; }
  .brand-logo { width: 180px; }
  .section,
  .hero { width: min(100% - 28px, var(--content)); }
  .section { padding: 48px 0; }
  h1 { font-size: 40px; }
  .doc-slot,
  .rec-card-actions,
  .highlight-list li,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .doc-slot,
  .rec-card-actions,
  .highlight-list li { flex-direction: column; }
}

/* Refined recommendations start state */
.first-section {
  padding-top: 42px;
}
.resource-section {
  padding-top: 54px;
}
.highlight-panel {
  align-items: center;
  min-height: auto;
  padding: clamp(28px, 4vw, 46px);
}
.highlight-panel h1 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
}
.highlight-panel .section-kicker {
  margin-bottom: 12px;
}
.highlight-list li {
  min-height: 72px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .skill-card:hover,
  .recommendation-card.is-highlighted,
  .button:hover { transform: none; }
}
