:root {
  --bg: #0c1424;
  --bg-elev: #14203a;
  --bg-card: #1b2a4a;
  --bg-card-hover: #233356;
  --line: #2a3a60;
  --line-strong: #38507c;
  --text: #eef2fb;
  --text-dim: #b3c0dc;
  --text-mute: #8090b3;

  /* Brighter accents — primary amber + secondary coral + tertiary teal */
  --accent: #ffb74d;
  --accent-strong: #ffa726;
  --accent-soft: rgba(255, 183, 77, 0.14);
  --accent-line: rgba(255, 183, 77, 0.42);
  --accent2: #ff7a8a;
  --accent3: #5fdcc4;
  --accent4: #7aa8ff;

  --good: #7ddca0;
  --warn: #ffb74d;
  --bad: #ff7a8a;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 60px -10px rgba(255, 183, 77, 0.4);
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(255, 183, 77, 0.13), transparent 60%),
    radial-gradient(1000px 600px at -10% 20%, rgba(122, 168, 255, 0.13), transparent 60%),
    radial-gradient(900px 700px at 50% 110%, rgba(255, 122, 138, 0.07), transparent 60%),
    var(--bg);
  min-height: 100vh;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
p { margin: 0; }
button { font-family: inherit; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16, .84, .32, 1),
              transform .8s cubic-bezier(.16, .84, .32, 1);
  will-change: opacity, transform;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-stagger-1.revealed { transition-delay: 0.05s; }
.reveal-stagger-2.revealed { transition-delay: 0.15s; }
.reveal-stagger-3.revealed { transition-delay: 0.25s; }
.reveal-stagger-4.revealed { transition-delay: 0.35s; }
.reveal-stagger-5.revealed { transition-delay: 0.45s; }
.reveal-stagger-6.revealed { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.revealed { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(12, 20, 36, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; transition: transform .2s ease; }
.brand:hover { transform: scale(1.02); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1b1305;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 16px rgba(255, 183, 77, 0.4);
}
.brand-mark.small { width: 30px; height: 30px; font-size: 13px; }
.brand-dot { color: #fff; }
.brand-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 19px; }
.nav { display: flex; gap: 24px; font-size: 14px; color: var(--text-dim); }
.nav a { transition: color .15s ease; position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent); transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
@media (max-width: 720px) { .nav { gap: 14px; font-size: 13px; } .nav a:nth-child(2) { display: none; } }

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.18), transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 40px); }
}
.hero-inner { max-width: 840px; position: relative; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; color: var(--accent); font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(40px, 6.5vw, 76px); line-height: 1.04; margin-bottom: 22px; }
.accent { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-dim);
  max-width: 660px;
  margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 32px; line-height: 1; color: var(--accent);
  margin-bottom: 4px;
}
.hero-stats span {
  font-size: 12px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 24px; border-radius: 11px;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305;
  box-shadow: 0 8px 20px -6px rgba(255, 167, 38, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px rgba(255, 167, 38, 0.7);
}
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Page heads ---------- */
.page-head { margin-bottom: 32px; }
.page-head h1 { font-size: clamp(32px, 4.5vw, 50px); line-height: 1.08; margin-bottom: 10px; }
.page-head .count { color: var(--text-mute); font-size: .55em; vertical-align: middle; font-weight: 400; }
.page-head p { color: var(--text-dim); font-size: 16px; }
.page-head.center { text-align: center; margin: 60px auto 36px; max-width: 720px; }
.section-head { text-align: center; margin-bottom: 56px; position: relative; }
.section-num {
  display: inline-block; font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.section-head p { color: var(--text-dim); font-size: 17px; max-width: 600px; margin: 0 auto; }
.section-title { font-size: 26px; margin: 38px 0 12px; color: var(--text); font-family: 'Fraunces', serif; }
.section-sub { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }
.center { text-align: center; }
.muted { color: var(--text-mute) !important; font-size: 14px !important; }

/* ---------- Home: How it works ---------- */
.how {
  padding: 100px 0;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.step-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--accent);
  display: block; margin-bottom: 16px;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 15px; flex: 1; }
.step-link {
  display: inline-block; margin-top: 18px;
  color: var(--accent); font-size: 14px; font-weight: 600;
  transition: transform .2s ease;
}
.step:hover .step-link { transform: translateX(4px); }

/* ============================================================
   HOME: FEATURED SECTION (big, scroll-revealed)
============================================================ */
.featured-section { padding: 110px 0; position: relative; }
.featured-stack {
  display: flex; flex-direction: column; gap: 24px;
}
.featured-card {
  display: block;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16, .84, .32, 1),
              border-color .25s ease,
              box-shadow .3s ease;
  position: relative;
}
.featured-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.featured-card:hover {
  transform: translateY(-6px) scale(1.005);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}
.featured-card:hover::before { opacity: 1; }

.featured-card-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
@media (max-width: 720px) {
  .featured-card-inner { grid-template-columns: 1fr; }
}

.featured-side {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-card));
  padding: 40px 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  min-height: 240px;
}
@media (max-width: 720px) {
  .featured-side {
    flex-direction: row; align-items: center;
    border-right: none; border-bottom: 1px solid var(--line);
    padding: 20px 24px; min-height: 0;
  }
}
.featured-icon {
  --cat-color: var(--accent);
  width: 72px; height: 72px; border-radius: 18px;
  background: color-mix(in srgb, var(--cat-color) 14%, transparent);
  color: var(--cat-color);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
}
.featured-icon svg { width: 36px; height: 36px; }
.featured-num {
  font-family: 'Fraunces', serif; font-size: 78px; line-height: 1;
  font-weight: 700; color: var(--accent);
  opacity: 0.18;
  letter-spacing: -0.04em;
}
@media (max-width: 720px) { .featured-num { font-size: 48px; } }

.featured-content {
  padding: 36px 40px;
}
.featured-cat {
  --cat-color: var(--accent);
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cat-color);
  padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--cat-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color) 25%, transparent);
  margin-bottom: 14px;
}
.featured-card h3 {
  font-size: clamp(26px, 3vw, 34px); margin-bottom: 8px;
}
.featured-tagline {
  color: var(--text-dim); font-size: 16px; margin-bottom: 16px;
  font-weight: 500;
}
.featured-desc {
  color: var(--text-mute); font-size: 14.5px; line-height: 1.65; margin-bottom: 22px;
}
.featured-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 16px 0; margin-bottom: 18px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}
@media (max-width: 540px) { .featured-meta { grid-template-columns: 1fr; gap: 8px; } }
.featured-meta div { display: flex; flex-direction: column; }
.featured-meta strong {
  font-size: 11px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 3px;
}
.featured-meta span { color: var(--text); font-size: 14px; font-weight: 500; }
.featured-link {
  color: var(--accent); font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .2s ease;
}
.featured-card:hover .featured-link { transform: translateX(4px); }

/* ============================================================
   HOME: CTA section
============================================================ */
.cta-section { padding: 70px 0 110px; }
.cta-card {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: #1b1305;
  box-shadow: 0 30px 60px -25px rgba(255, 122, 138, 0.5);
}
.cta-card h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #1b1305;
  margin-bottom: 12px;
}
.cta-card p {
  font-size: 17px; max-width: 540px;
  margin: 0 auto 28px;
  color: #2c1f08;
}
.cta-card .btn-primary {
  background: #1b1305;
  color: var(--accent);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.35);
}
.cta-card .btn-primary:hover { background: #2c1f08; color: var(--accent); }

/* ============================================================
   CAREERS PAGE
============================================================ */
.careers-page { padding: 60px 0 100px; }
.careers-controls {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-bottom: 30px;
}
.search-wrap {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 12px; padding: 0 16px;
  flex: 1 1 300px; min-height: 48px;
  color: var(--text-mute);
  transition: border-color .2s ease, background .2s ease;
}
.search-wrap:focus-within {
  border-color: var(--accent); color: var(--accent);
  background: var(--bg-card-hover);
}
.search-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--text); font-size: 15px; font-family: inherit;
  padding: 13px 0;
}
.search-input::placeholder { color: var(--text-mute); }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  --chip-color: var(--text-dim);
  background: var(--bg-card); border: 1px solid var(--line);
  color: var(--text-dim); padding: 9px 14px;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
}
.chip:hover { color: var(--text); border-color: var(--line-strong); transform: translateY(-1px); }
.chip.active {
  background: color-mix(in srgb, var(--chip-color) 14%, transparent);
  color: var(--chip-color);
  border-color: var(--chip-color);
  box-shadow: 0 0 0 1px var(--chip-color) inset;
}

.no-results {
  text-align: center; color: var(--text-mute);
  padding: 80px 0; font-size: 16px;
}

/* ---------- Careers Grid ---------- */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.career-card {
  display: flex; flex-direction: column; gap: 10px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .2s ease,
              background .2s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.career-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.career-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
}
.career-card:hover::before { transform: scaleX(1); }
.career-card-head { display: flex; align-items: center; justify-content: space-between; }
.career-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
}
.career-card-icon svg { width: 22px; height: 22px; }
.career-card-cat {
  --cat-color: var(--text-dim);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cat-color);
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--cat-color) 12%, transparent);
}
.career-card h3 { font-size: 18px; margin: 4px 0 2px; }
.career-card-tag { color: var(--text-dim); font-size: 13.5px; line-height: 1.5; flex: 1; }
.career-card-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px; color: var(--text-mute);
  padding-top: 10px; margin-top: 6px;
  border-top: 1px dashed var(--line);
}
.career-card-meta strong { color: var(--text-dim); font-weight: 500; }

/* ============================================================
   CAREER DETAIL
============================================================ */
.career-detail { padding: 40px 0 100px; }
.back-link {
  display: inline-block; color: var(--text-dim);
  font-size: 14px; margin-bottom: 26px;
  transition: color .15s ease, transform .2s ease;
}
.back-link:hover { color: var(--accent); transform: translateX(-3px); }

.detail-head {
  display: flex; gap: 24px; align-items: flex-start;
  padding-bottom: 34px; margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.detail-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.detail-icon svg { width: 34px; height: 34px; }
.detail-cat {
  --cat-color: var(--text-dim);
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cat-color);
  padding: 4px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--cat-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color) 25%, transparent);
  margin-bottom: 10px;
}
.detail-titles h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; margin-bottom: 8px; }
.detail-tag { color: var(--text-dim); font-size: 17px; }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-desc {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.detail-desc p { color: var(--text-dim); font-size: 15.5px; line-height: 1.7; }

/* ---------- NEXT STEPS CARD ---------- */
.next-steps-card {
  margin: 28px 0;
  padding: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent3) 8%, var(--bg-card)), var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--accent3) 30%, var(--line));
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.next-steps-card::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent3) 20%, transparent), transparent 70%);
  pointer-events: none;
}
.next-steps-head { position: relative; margin-bottom: 22px; }
.next-steps-head h2 {
  font-size: 24px; margin-bottom: 6px; color: var(--text);
}
.next-steps-head p { color: var(--text-dim); font-size: 14.5px; }

.age-input-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
}
.age-label { color: var(--text-dim); font-size: 15px; font-weight: 500; }
.age-input {
  width: 70px; padding: 10px 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 9px; color: var(--text);
  font-family: inherit; font-size: 17px; font-weight: 600;
  text-align: center; outline: none;
  transition: border-color .15s ease;
}
.age-input:focus { border-color: var(--accent); }
.age-input::-webkit-inner-spin-button,
.age-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.age-input { -moz-appearance: textfield; }

.next-steps-empty {
  margin-top: 16px; padding: 14px; border-radius: 10px;
  background: var(--bg); color: var(--text-mute); font-size: 14px;
}

.next-steps-result { margin-top: 22px; position: relative; }
.ns-grade-badge {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 22px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305;
  border-radius: 12px;
  opacity: 0; transform: translateY(10px);
}
.ns-grade-badge.ns-anim-in { animation: nsIn .5s cubic-bezier(.16,.84,.32,1) forwards; }
.ns-grade-badge strong { font-size: 17px; }
.ns-grade-badge span { font-size: 14px; color: #2c1f08; }

.ns-blocks {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (max-width: 600px) { .ns-blocks { grid-template-columns: 1fr; } }
.ns-block {
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0; transform: translateY(10px);
}
.ns-block.ns-anim-in { animation: nsIn .5s cubic-bezier(.16,.84,.32,1) forwards; }
@keyframes nsIn {
  to { opacity: 1; transform: translateY(0); }
}
.ns-block-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent3);
  background: color-mix(in srgb, var(--accent3) 14%, transparent);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.ns-block h4 {
  font-family: 'Fraunces', serif; font-size: 17px;
  color: var(--text); margin-bottom: 8px;
}
.ns-block p, .ns-block li {
  color: var(--text-dim); font-size: 14px; line-height: 1.55;
}
.ns-block ul { margin: 0; padding-left: 18px; }
.ns-block ul li { padding: 2px 0; }
.ns-link {
  display: inline-block; margin-top: 8px;
  color: var(--accent); font-size: 13px; font-weight: 600;
}
.ns-tip {
  margin-top: 18px; padding: 14px 18px;
  background: var(--bg); border-left: 3px solid var(--accent);
  border-radius: 8px; font-size: 14px; color: var(--text-dim);
  opacity: 0; transform: translateY(10px);
}
.ns-tip.ns-anim-in { animation: nsIn .5s cubic-bezier(.16,.84,.32,1) forwards; }
.ns-tip strong { color: var(--text); }

/* ---------- Grade selector ---------- */
.grade-selector {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 26px;
  padding: 6px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px;
}
.grade-btn {
  flex: 1 1 60px; min-width: 60px;
  padding: 11px 8px; border-radius: 9px; border: none;
  background: transparent; color: var(--text-dim);
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .2s ease;
}
.grade-btn:hover { color: var(--text); background: var(--bg-elev); }
.grade-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305;
  box-shadow: 0 4px 14px -2px rgba(255, 167, 38, 0.4);
}

.grade-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
  border: 1px solid var(--accent-line);
}
.grade-headline {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  margin-bottom: 20px; color: var(--text);
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-bottom: 26px;
}
.class-card {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.class-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.class-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mute); margin-bottom: 6px; display: block;
}
.class-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.class-why { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 8px; }
.class-resource {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--accent3);
  padding: 5px 10px; border-radius: 6px;
  background: color-mix(in srgb, var(--accent3) 10%, transparent);
  margin-top: 8px;
  transition: background .15s ease;
}
.class-resource:hover {
  background: color-mix(in srgb, var(--accent3) 20%, transparent);
  color: var(--accent3);
}

.tip-box {
  display: flex; gap: 14px; padding: 18px 20px;
  background: var(--bg); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 10px;
  margin-bottom: 26px;
}
.tip-icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.tip-text { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.tip-text strong { color: var(--text); }

/* ---------- RESOURCES GRID ---------- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-top: 8px;
}
.resource-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all .2s ease;
  position: relative; overflow: hidden;
}
.resource-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--accent4) 8%, transparent), transparent 60%);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.resource-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent4);
  background: var(--bg-card-hover);
}
.resource-card:hover::before { opacity: 1; }
.resource-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 4px;
}
.resource-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: color-mix(in srgb, var(--accent4) 14%, transparent);
  color: var(--accent4);
  display: inline-flex; align-items: center; justify-content: center;
}
.resource-type {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mute);
}
.resource-card h4 {
  font-family: 'Fraunces', serif; font-size: 17px;
  color: var(--text); line-height: 1.3;
  margin-bottom: 4px;
}
.resource-by { font-size: 13px; color: var(--text-dim); line-height: 1.5; flex: 1; }
.resource-link {
  margin-top: 8px;
  color: var(--accent4); font-size: 13px; font-weight: 600;
}

/* ---------- Detail sidebar ---------- */
.detail-side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  padding: 22px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.side-card:hover { border-color: var(--line-strong); }
.side-card h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mute); margin-bottom: 12px;
}
.side-card dl { margin: 0; }
.side-card dt { font-size: 12px; color: var(--text-mute); margin-bottom: 2px; }
.side-card dd { font-size: 14.5px; color: var(--text); margin: 0 0 12px; font-weight: 500; }
.side-card dd:last-child { margin-bottom: 0; }
.side-card ul { margin: 0; padding-left: 0; list-style: none; }
.side-card li {
  font-size: 14px; color: var(--text-dim);
  padding: 8px 0; border-bottom: 1px dashed var(--line);
}
.side-card li:last-child { border-bottom: none; padding-bottom: 0; }
.side-card li:first-child { padding-top: 0; }

.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag {
  font-size: 12px; padding: 5px 11px; border-radius: 999px;
  background: var(--bg-elev); color: var(--text-dim);
  border: 1px solid var(--line);
}

/* ============================================================
   TEST
============================================================ */
.test-intro, .test-question, .test-results { padding: 40px 0 100px; }
.test-narrow { max-width: 720px; margin: 0 auto; }
.test-actions { display: flex; gap: 12px; justify-content: center; margin: 30px 0; flex-wrap: wrap; }
.test-info {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 60px;
}
@media (max-width: 720px) { .test-info { grid-template-columns: 1fr; } }
.info-card {
  padding: 24px; background: var(--bg-card);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease;
}
.info-card:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.info-card h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 10px;
}
.info-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.test-progress {
  height: 6px; background: var(--bg-card);
  border-radius: 999px; overflow: hidden; margin-bottom: 14px;
}
.test-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 999px; transition: width .4s cubic-bezier(.16,.84,.32,1);
}
.test-meta {
  font-size: 12px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.test-q {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.22; margin-bottom: 30px;
  animation: fadeUp .4s cubic-bezier(.16,.84,.32,1);
}
.test-options {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px;
  animation: fadeUp .5s cubic-bezier(.16,.84,.32,1);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.test-option {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; text-align: left;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text); font-size: 15px; cursor: pointer;
  transition: all .15s ease;
}
.test-option:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.option-letter {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg-elev); color: var(--text-dim);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 14px;
  flex-shrink: 0; transition: all .15s ease;
}
.test-option:hover .option-letter {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305;
}
.option-text { flex: 1; line-height: 1.4; }
.test-back { font-size: 13px; padding: 8px 14px; }

/* Test results */
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.result-card {
  position: relative; padding: 26px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all .25s ease;
}
.result-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.result-rank {
  position: absolute; top: 18px; right: 18px;
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
}
.result-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.result-icon svg { width: 26px; height: 26px; }
.result-card h3 { font-size: 21px; margin-bottom: 6px; }
.result-tagline { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.result-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12.5px; color: var(--text-mute);
  padding: 10px 0; margin-bottom: 12px;
  border-top: 1px dashed var(--line);
}
.result-meta strong { color: var(--text-dim); font-weight: 500; }
.result-link { color: var(--accent); font-size: 13px; font-weight: 600; }
.results-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-inner { max-width: 720px; }
.about h1, .about h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 20px; }
.about p { color: var(--text-dim); font-size: 17px; line-height: 1.75; margin-bottom: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0; background: var(--bg-elev); }
.footer-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-inner p { font-size: 13px; color: var(--text-mute); }

/* ============================================================
   INTERESTS (Find your spark)
============================================================ */
.interests-section { padding: 90px 0; border-top: 1px solid var(--line); }
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.interest-tile {
  --int-color: var(--accent);
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--int-color) 18%, transparent), transparent 60%),
    var(--bg-card);
  border: 1px solid color-mix(in srgb, var(--int-color) 30%, var(--line));
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  overflow: hidden;
}
.interest-tile:hover {
  transform: translateY(-5px);
  border-color: var(--int-color);
  box-shadow: 0 16px 40px -16px color-mix(in srgb, var(--int-color) 50%, transparent);
}
.interest-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: color-mix(in srgb, var(--int-color) 18%, transparent);
  color: var(--int-color);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--int-color) 30%, transparent);
}
.interest-icon svg { width: 28px; height: 28px; }
.interest-tile h3 {
  font-size: 19px; color: var(--text);
  line-height: 1.25; margin-top: 4px;
}
.interest-tile p { font-size: 13px; color: var(--text-mute); flex: 1; }
.interest-link {
  color: var(--int-color); font-size: 14px; font-weight: 600;
  transition: transform .2s ease;
}
.interest-tile:hover .interest-link { transform: translateX(4px); }

/* Active-filter chip on careers grid */
.active-filter-row { margin-bottom: 20px; }
.active-filter-chip {
  --int-color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: color-mix(in srgb, var(--int-color) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--int-color) 35%, transparent);
  color: var(--int-color);
  border-radius: 999px;
  font-size: 14px;
}
.active-filter-chip strong { color: var(--text); font-weight: 600; }
.clear-filter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg);
  color: var(--text-dim);
  font-size: 16px; line-height: 1;
  margin-left: 4px;
  transition: color .15s ease, background .15s ease;
}
.clear-filter:hover { color: var(--text); background: var(--bg-elev); }

/* ============================================================
   INSIGHTS (By the numbers)
============================================================ */
.insights-section { padding: 90px 0; border-top: 1px solid var(--line); }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.insight-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.insight-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
}
.insight-num {
  font-family: 'Fraunces', serif;
  font-size: 52px; font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.insight-card strong {
  font-size: 16px; color: var(--text); font-weight: 600;
}
.insight-sub {
  font-size: 13px; color: var(--text-mute);
  line-height: 1.5;
}

/* ============================================================
   SPOTLIGHT (Day in the life)
============================================================ */
.spotlight-section { padding: 90px 0; border-top: 1px solid var(--line); }
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .spotlight-grid { grid-template-columns: 1fr; } }

.spotlight-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.spotlight-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.spotlight-head {
  --cat-color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.spotlight-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: color-mix(in srgb, var(--cat-color) 14%, transparent);
  color: var(--cat-color);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--cat-color) 28%, transparent);
}
.spotlight-icon svg { width: 22px; height: 22px; }
.spotlight-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--cat-color);
}
.spotlight-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; line-height: 1.2;
  color: var(--text);
}
.spotlight-tag {
  font-size: 14px; color: var(--text-dim); line-height: 1.5;
}
.spotlight-day {
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.spotlight-day-label {
  display: block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.spotlight-day ul {
  margin: 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.spotlight-day li {
  font-size: 13.5px; color: var(--text-dim);
  padding-left: 18px; position: relative;
  line-height: 1.5;
}
.spotlight-day li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.spotlight-meta {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13px; color: var(--text-dim);
  padding-top: 4px;
}
.spotlight-meta strong { color: var(--text); }
.spotlight-link {
  color: var(--accent); font-size: 14px; font-weight: 600;
  margin-top: 4px;
  transition: transform .2s ease;
}
.spotlight-card:hover .spotlight-link { transform: translateX(4px); }

/* ============================================================
   WORK ETHIC CALCULATOR
============================================================ */
.work-ethic-card {
  margin: 28px 0;
  padding: 32px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--bg-card)), var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.work-ethic-card::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.we-head { position: relative; margin-bottom: 22px; }
.we-head h2 { font-size: 24px; margin-bottom: 6px; color: var(--text); }
.we-head p { color: var(--text-dim); font-size: 14.5px; }

.we-subjects {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 24px; position: relative;
}
.we-subject {
  padding: 16px 18px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px;
}
.we-subject-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 10px;
}
.we-subject-name {
  font-weight: 600; font-size: 15px; color: var(--text);
}
.we-subject-weight {
  font-size: 11px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.we-pills {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.we-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 6px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
  color: var(--text-mute);
  transition: all .15s ease;
  font-family: inherit;
}
.we-pill:hover { color: var(--text); border-color: var(--line-strong); transform: translateY(-1px); }
.we-pill-grade {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-weight: 700;
}
.we-pill-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.we-pill.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #1b1305; border-color: var(--accent);
  box-shadow: 0 4px 14px -2px rgba(255, 167, 38, 0.4);
}

/* ----- Result ----- */
.we-result-grid {
  display: grid; grid-template-columns: 200px 1fr; gap: 22px;
  padding: 22px; margin-bottom: 18px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
}
@media (max-width: 600px) {
  .we-result-grid { grid-template-columns: 1fr; }
}

.we-score-block {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.we-score-ring {
  --score: 0;
  --ring-color: var(--accent);
  width: 140px; height: 140px;
  border-radius: 50%;
  background:
    conic-gradient(var(--ring-color) calc(var(--score) * 1%), var(--bg-elev) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background 0.5s cubic-bezier(.16, .84, .32, 1);
}
.we-score-ring::before {
  content: ""; position: absolute; inset: 8px;
  border-radius: 50%; background: var(--bg-card);
}
.we-score-inner {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.we-score-num {
  font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.we-score-of {
  font-size: 11px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 2px;
}
.we-pulse { animation: wePulse .4s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes wePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.we-comp {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  text-align: center;
  padding: 8px 14px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.we-comp span {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  opacity: 0.75;
}
.we-comp-good { background: color-mix(in srgb, var(--good) 14%, transparent); color: var(--good); }
.we-comp-ok   { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); }
.we-comp-bad  { background: color-mix(in srgb, var(--bad) 14%, transparent); color: var(--bad); }

.we-tier-block {
  display: flex; flex-direction: column; gap: 6px;
}
.we-tier-tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 2px;
}
.we-tier-block h3 {
  font-size: 24px; color: var(--text); line-height: 1.2;
}
.we-tier-blurb { color: var(--text-dim); font-size: 14px; line-height: 1.6; }
.we-tier-examples { color: var(--text-dim); font-size: 13px; }
.we-tier-examples strong { color: var(--text); }
.we-tier-push {
  margin-top: 6px; padding: 10px 12px;
  background: var(--bg-elev); border-radius: 8px;
  font-size: 13px; color: var(--text-dim);
}
.we-tier-push strong { color: var(--accent); }
.we-tier-push em { color: var(--text); font-style: normal; font-weight: 600; }
.we-tier-max { color: var(--good); border-left: 2px solid var(--good); }
.we-tier-max strong { color: var(--good); }

/* ----- Stretch suggestions ----- */
.we-stretch {
  padding: 22px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
}
.we-stretch h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px; color: var(--text);
  margin-bottom: 16px;
}
.we-stretch-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
@media (max-width: 600px) { .we-stretch-grid { grid-template-columns: 1fr; } }
.we-stretch-col {}
.we-stretch-subject {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent3);
  background: color-mix(in srgb, var(--accent3) 14%, transparent);
  padding: 4px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: 10px;
}
.we-stretch-col ul {
  margin: 0; padding-left: 0; list-style: none;
}
.we-stretch-col li {
  font-size: 13.5px; color: var(--text-dim);
  padding: 6px 0 6px 18px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  line-height: 1.5;
}
.we-stretch-col li:last-child { border-bottom: none; }
.we-stretch-col li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--accent3); font-weight: 700;
}

.we-disclaimer {
  font-size: 11.5px; color: var(--text-mute);
  text-align: center; padding-top: 6px;
  font-style: italic; line-height: 1.5;
}

/* ============================================================
   PROFILE — nav chip, page, avatar, danger zone
============================================================ */
.nav-profile {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.nav-profile::after { display: none; }
.nav-profile:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.profile-avatar {
  --avatar-color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--avatar-color);
  color: #1b1305;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}
.profile-name { font-weight: 600; }
.profile-anon { color: var(--text-mute); font-weight: 600; }

.nav-share {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--bg-card); border: 1px solid var(--line);
  color: var(--text-dim); cursor: pointer;
  transition: all .15s ease;
}
.nav-share:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

@media (max-width: 720px) {
  .nav-profile .profile-name { display: none; }
}

/* Profile page */
.profile-page { padding: 60px 0 100px; }
.profile-head {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 28px;
}
.profile-big-avatar {
  --avatar-color: var(--accent);
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--avatar-color), color-mix(in srgb, var(--avatar-color) 70%, #1b1305));
  color: #1b1305;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,.5);
}
.profile-head-text h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 6px; }
.profile-head-text p { color: var(--text-dim); font-size: 15px; }

.profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 560px) { .profile-stats { grid-template-columns: 1fr; } }
.profile-stat {
  padding: 22px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
}
.profile-stat strong {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.profile-stat span { font-size: 13px; color: var(--text-mute); }

.profile-section {
  padding: 26px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.profile-section h3 {
  font-size: 18px; color: var(--text);
  margin-bottom: 6px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.profile-more { font-size: 13px; font-weight: 600; color: var(--accent); }
.profile-help { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.profile-form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.profile-input {
  flex: 1; min-width: 200px;
  padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; color: var(--text);
  font-family: inherit; font-size: 15px; outline: none;
}
.profile-input:focus { border-color: var(--accent); }
.profile-row { display: flex; gap: 10px; flex-wrap: wrap; }
.profile-import-btn { cursor: pointer; }

.profile-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.profile-mini-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .15s ease;
}
.profile-mini-card:hover { border-color: var(--accent-line); }
.profile-mini-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-mini-icon svg { width: 18px; height: 18px; }
.profile-mini-card strong { font-size: 13px; color: var(--text); font-weight: 600; }

.profile-danger {
  border-color: color-mix(in srgb, var(--bad) 30%, var(--line));
  background: color-mix(in srgb, var(--bad) 4%, var(--bg-card));
}
.btn-danger {
  background: transparent; border: 1px solid var(--bad);
  color: var(--bad); font-weight: 600;
  padding: 11px 18px; border-radius: 10px;
  cursor: pointer; font-size: 14px;
  transition: all .15s ease;
}
.btn-danger:hover { background: var(--bad); color: #fff; }

/* Credits page */
.credits-page { padding: 60px 0 100px; }
.credits-narrow { max-width: 820px; margin: 0 auto; }
.partner-spotlight {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px;
  padding: 36px;
  background: linear-gradient(135deg, color-mix(in srgb, #14bf96 8%, var(--bg-card)), var(--bg-card));
  border: 1px solid color-mix(in srgb, #14bf96 30%, var(--line));
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
@media (max-width: 600px) { .partner-spotlight { grid-template-columns: 1fr; } }
.partner-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #14bf96;
  background: color-mix(in srgb, #14bf96 14%, transparent);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.partner-spotlight h2 { font-size: 28px; margin-bottom: 14px; }
.partner-spotlight p { color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.partner-spotlight p strong { color: var(--text); }
.partner-actions { display: flex; gap: 12px; margin: 16px 0; flex-wrap: wrap; }
.partner-note {
  font-size: 13px; color: var(--text-mute) !important;
  font-style: italic; padding-top: 8px;
  border-top: 1px dashed var(--line);
}

.credits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 50px;
}
.credit-card {
  padding: 18px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s ease, transform .2s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.credit-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.credit-card strong { color: var(--text); font-size: 15px; font-weight: 600; }
.credit-card p { color: var(--text-dim); font-size: 13px; line-height: 1.5; flex: 1; }
.credit-link { color: var(--accent); font-size: 13px; font-weight: 600; margin-top: 4px; }

.reach-out-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
}
.reach-out-card h2 { font-size: 22px; margin-bottom: 12px; }
.reach-out-card p { color: var(--text-dim); margin-bottom: 8px; line-height: 1.6; }
.reach-out-card a { color: var(--accent); }

/* Share toast */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translate(-50%, 80px);
  background: var(--text); color: var(--bg);
  padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s ease, transform .3s cubic-bezier(.16, .84, .32, 1);
  z-index: 1000;
  pointer-events: none;
}
.toast.toast-show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============================================================
   NAV SAVED LINK + COUNT BADGE
============================================================ */
.nav-saved {
  display: inline-flex; align-items: center; gap: 6px;
  position: relative;
}
.nav-saved svg { color: var(--accent2); }
.nav-badge {
  display: none;
  align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 6px;
  background: var(--accent2); color: #fff;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-left: 2px;
}

/* ============================================================
   RECENTLY VIEWED STRIP
============================================================ */
.recent-section { padding: 50px 0 30px; }
.section-strip {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 18px;
}
.section-strip h2 {
  font-size: clamp(20px, 2.2vw, 24px);
}
.section-strip p { color: var(--text-mute); font-size: 14px; }
.recent-strip {
  display: flex; gap: 12px;
  overflow-x: auto; padding: 4px 4px 14px;
  scrollbar-width: thin;
}
.recent-strip::-webkit-scrollbar { height: 8px; }
.recent-strip::-webkit-scrollbar-track { background: var(--bg-elev); border-radius: 4px; }
.recent-strip::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }
.recent-card {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  min-width: 220px;
  transition: transform .15s ease, border-color .2s ease;
}
.recent-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-line);
}
.recent-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--bg-elev);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.recent-icon svg { width: 20px; height: 20px; }
.recent-text { display: flex; flex-direction: column; gap: 2px; }
.recent-cat {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.recent-text strong { font-size: 14px; color: var(--text); font-weight: 600; }

/* ============================================================
   CATEGORY BROWSE GRID
============================================================ */
.categories-section { padding: 90px 0; border-top: 1px solid var(--line); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.category-card {
  --cat-color: var(--accent);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--cat-color) 12%, var(--bg-card)), var(--bg-card));
  border: 1px solid color-mix(in srgb, var(--cat-color) 28%, var(--line));
  border-radius: var(--radius-lg);
  transition: all .25s ease;
  overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--cat-color);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--cat-color);
  box-shadow: 0 14px 40px -16px color-mix(in srgb, var(--cat-color) 50%, transparent);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card-head {
  display: flex; align-items: center; justify-content: space-between;
}
.category-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: color-mix(in srgb, var(--cat-color) 18%, transparent);
  color: var(--cat-color);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid color-mix(in srgb, var(--cat-color) 30%, transparent);
}
.category-card-icon svg { width: 26px; height: 26px; }
.category-count {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 700;
  color: var(--cat-color);
  opacity: 0.85;
  line-height: 1;
}
.category-card h3 {
  font-size: 22px; color: var(--text);
}
.category-samples {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.category-samples li {
  font-size: 13.5px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.category-samples li::before {
  content: "•"; position: absolute; left: 0;
  color: var(--cat-color); opacity: 0.6;
}
.category-link {
  color: var(--cat-color);
  font-size: 13px; font-weight: 600;
  margin-top: 4px;
  transition: transform .2s ease;
}
.category-card:hover .category-link { transform: translateX(4px); }

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-section { padding: 90px 0; border-top: 1px solid var(--line); }
.faq-inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] {
  border-color: var(--accent-line);
  background: var(--bg-card-hover);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 20px 24px;
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--text-mute); transition: transform .25s ease, color .15s ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--accent); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px; line-height: 1.7;
}
.faq-item p em { color: var(--text); font-style: italic; }
.faq-item p strong { color: var(--text); }

/* ============================================================
   FAVORITES (HEART) BUTTON
============================================================ */
.career-card-wrap { position: relative; }
.fav-btn {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(28, 40, 70, 0.85);
  border: 1px solid var(--line);
  color: var(--text-mute);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s ease;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.fav-btn:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  transform: scale(1.1);
}
.fav-btn.favorited {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
.fav-btn.favorited svg { fill: #fff; stroke: #fff; }
.fav-btn.fav-pop { animation: favPop .35s cubic-bezier(.34, 1.56, .64, 1); }
@keyframes favPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Large heart button on career detail header */
.fav-btn-lg {
  position: static;
  width: auto; height: auto;
  padding: 11px 18px;
  border-radius: 11px;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 600; font-size: 14px;
  gap: 8px;
  align-self: flex-start;
  margin-left: auto;
}
.fav-btn-lg .fav-btn-text { display: inline; }
.fav-btn-lg:hover {
  border-color: var(--accent2);
  background: var(--bg-card-hover);
  color: var(--accent2);
  transform: none;
}
.fav-btn-lg.favorited {
  background: color-mix(in srgb, var(--accent2) 18%, var(--bg-card));
  border-color: var(--accent2);
  color: var(--accent2);
}
.fav-btn-lg.favorited svg { fill: var(--accent2); stroke: var(--accent2); }

/* ============================================================
   SAVED PAGE empty state
============================================================ */
.saved-page { padding: 60px 0 100px; }
.empty-state {
  text-align: center;
  padding: 80px 30px;
  background: var(--bg-card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}
.empty-state .empty-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent2);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.empty-state .empty-icon svg { width: 32px; height: 32px; }
.empty-state p { color: var(--text-dim); margin-bottom: 22px; font-size: 16px; }

/* ============================================================
   RESPONSIVE SCALING — scale up on big monitors
   so the layout doesn't look tiny on 1440p / 1080p / 4K.
   Breakpoints fire at 1440 (laptop-large), 1920 (FHD desktop),
   and 2560 (1440p / 4K).
============================================================ */

/* --- 1440px+ : roomier laptop / 1440p --- */
@media (min-width: 1440px) {
  :root { --max-w: 1340px; }
  .container { padding: 0 32px; }
  .hero { padding: 120px 0 90px; }
  .hero h1 { font-size: clamp(48px, 5.8vw, 88px); }
  .hero-stats { gap: 56px; }
  .hero-stats strong { font-size: 38px; }

  .section-head h2 { font-size: clamp(34px, 3.6vw, 54px); }
  .section-head p { font-size: 18px; }

  .featured-card-inner { grid-template-columns: 280px 1fr; }
  .featured-side { padding: 48px 32px; min-height: 280px; }
  .featured-icon { width: 80px; height: 80px; border-radius: 20px; }
  .featured-icon svg { width: 40px; height: 40px; }
  .featured-num { font-size: 96px; }
  .featured-content { padding: 44px 50px; }
  .featured-card h3 { font-size: clamp(28px, 2.8vw, 38px); }
  .featured-tagline { font-size: 17px; }
  .featured-desc { font-size: 15px; }

  .career-card { padding: 26px; }
  .careers-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
  .class-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .resources-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

  .detail-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; }
  .detail-icon { width: 80px; height: 80px; }
  .detail-icon svg { width: 38px; height: 38px; }

  .cta-card { padding: 70px 50px; }

  .results-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* --- 1920px+ : FHD desktop / large displays --- */
@media (min-width: 1920px) {
  :root { --max-w: 1520px; }
  html { font-size: 17px; }
  .container { padding: 0 40px; }

  .hero { padding: 150px 0 120px; }
  .hero-inner { max-width: 1000px; }
  .hero h1 { font-size: clamp(56px, 5.4vw, 104px); }
  .lede { max-width: 760px; font-size: 20px; }
  .hero-stats strong { font-size: 44px; }
  .hero-stats span { font-size: 13px; }

  .brand-mark { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
  .brand-name { font-size: 22px; }
  .nav { gap: 32px; font-size: 15px; }

  .section-head { margin-bottom: 64px; }
  .section-head h2 { font-size: clamp(40px, 3.4vw, 64px); }
  .section-head p { font-size: 19px; max-width: 700px; }

  .step { padding: 38px 32px; }
  .step h3 { font-size: 24px; }
  .step p { font-size: 16px; }

  .featured-card-inner { grid-template-columns: 320px 1fr; }
  .featured-side { padding: 56px 36px; min-height: 320px; }
  .featured-icon { width: 92px; height: 92px; border-radius: 22px; }
  .featured-icon svg { width: 46px; height: 46px; }
  .featured-num { font-size: 110px; }
  .featured-content { padding: 52px 60px; }

  .career-card { padding: 30px; gap: 12px; }
  .career-card-icon { width: 46px; height: 46px; border-radius: 12px; }
  .career-card-icon svg { width: 26px; height: 26px; }
  .career-card h3 { font-size: 20px; }
  .career-card-tag { font-size: 14.5px; }
  .careers-grid { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 20px; }
  .class-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
  .resources-grid { grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }

  .detail-grid { grid-template-columns: minmax(0, 1fr) 400px; gap: 48px; }
  .detail-head { gap: 28px; padding-bottom: 38px; margin-bottom: 38px; }
  .detail-icon { width: 88px; height: 88px; border-radius: 18px; }
  .detail-icon svg { width: 42px; height: 42px; }
  .detail-titles h1 { font-size: clamp(36px, 3.6vw, 56px); }
  .detail-tag { font-size: 19px; }

  .side-card { padding: 26px; }
  .side-card h4 { font-size: 13px; }
  .side-card dd { font-size: 15.5px; }

  .next-steps-card { padding: 40px; }
  .next-steps-head h2 { font-size: 28px; }

  .result-card { padding: 30px; }
  .result-card h3 { font-size: 23px; }

  .cta-card { padding: 80px 60px; }
  .cta-card h2 { font-size: clamp(34px, 3.5vw, 50px); }

  .btn { padding: 14px 26px; font-size: 16px; }
}

/* --- 2560px+ : 1440p / 4K monitors --- */
@media (min-width: 2560px) {
  :root { --max-w: 1760px; }
  html { font-size: 18px; }
  .container { padding: 0 56px; }

  .hero { padding: 180px 0 140px; }
  .hero h1 { font-size: clamp(64px, 5vw, 120px); }
  .hero-stats strong { font-size: 52px; }

  .featured-card-inner { grid-template-columns: 360px 1fr; }
  .featured-side { padding: 64px 40px; min-height: 360px; }
  .featured-icon { width: 100px; height: 100px; }
  .featured-icon svg { width: 50px; height: 50px; }
  .featured-num { font-size: 128px; }

  .careers-grid { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
  .class-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
  .resources-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }

  .detail-grid { grid-template-columns: minmax(0, 1fr) 440px; }
}

/* --- 3440px+ : ultra-wide / studio displays --- */
@media (min-width: 3440px) {
  :root { --max-w: 2000px; }
  html { font-size: 19px; }
}
