/* ============================================================
   The Untaught Lessons — styles.css
   Brand: cream · navy · gold
   Fonts: Playfair Display (headings) · Lato (body)
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --cream:    #F3EDE2;
  --navy:     #003366;
  --gold:     #EEA320;
  --charcoal: #4A4A4A;
  --steel:    #4D7094;
  --smoke:    #FAF9F6;
  --parchment:#E8DFD1;
}

/* ================================================================
   MAIN PAGE — clarity over cleverness
   ================================================================ */

.home-page {
  --home-navy: #003366;
  --home-gold: #EEA320;
  --home-cream: #F3EDE2;
  --home-deep-cream: #EBE4D5;
  --home-charcoal: #4A4A4A;
  --home-white: #FFFFFF;
  background: var(--home-cream);
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.home-page * { box-sizing: border-box; }
.home-page img { display: block; max-width: 100%; }
.home-page a { color: inherit; }

.home-page .site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  max-width: none;
  width: 100%;
  min-height: 76px;
  margin: 0;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--home-white);
  border-bottom: 1px solid var(--home-deep-cream);
}

.home-page .nav-brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex: 0 0 auto;
}

.home-page .nav-brand img {
  width: 156px;
  height: auto;
}

.home-page .nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.home-page .nav-menu a,
.home-page .nav-menu button {
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  color: var(--home-navy);
  text-decoration: none;
  line-height: 1;
}

.home-page .nav-menu a:hover { color: var(--home-gold); }

.home-page .nav-menu a.nav-link-active {
  color: var(--home-navy);
  text-decoration: underline;
  text-decoration-color: var(--home-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.home-page .nav-menu .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--home-navy);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, filter .2s ease;
}

.home-page .nav-menu .nav-button-secondary {
  background: transparent;
  color: var(--home-navy);
}

.home-page .nav-menu .nav-button-secondary:hover {
  background: var(--home-navy);
  color: var(--home-white);
}

.home-page .nav-menu .nav-button-primary {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-page .nav-menu .nav-button-primary:hover { filter: brightness(1.08); }

.home-page .nav-menu a:nth-last-child(2) { margin-left: 4px; }
.home-page .nav-menu .nav-button + .nav-button { margin-left: -16px; }

.home-page .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--home-deep-cream);
  border-radius: 4px;
  background: var(--home-white);
  cursor: pointer;
}

.home-page .nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--home-navy);
}

.home-page .home-container {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.home-page .home-container.wide { width: min(100%, 1160px); }

.home-page .home-label {
  margin: 0;
  font-family: 'Roboto Mono', monospace;
  font-size: 11pt;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--home-gold);
}

.home-page .section-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: inherit;
  margin: 0 0 20px;
  text-align: left;
}

.home-page .section-label::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--home-gold);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.home-page .section-label-text {
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 11pt;
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .section-headline {
  max-width: 720px;
  margin: 0 0 40px;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 40pt;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.home-page .section-headline .trademark {
  font-style: normal;
  font-weight: 400;
  font-size: 16pt;
  vertical-align: super;
}

.home-page .section-subheadline {
  max-width: 720px;
  margin: -32px 0 0;
  color: var(--home-charcoal);
  font-family: 'Playfair Display', serif;
  font-size: 18pt;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

.home-page .home-hero {
  min-height: 100vh;
  background: var(--home-navy);
  display: grid;
  place-items: center;
  padding: 120px 24px;
}

.home-page .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-page .hero-logo {
  width: min(220px, 60vw);
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 40px;
}

.home-page .home-hero h1 {
  max-width: 600px;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22pt;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--home-white);
}

.home-page .hero-divider {
  width: 80px;
  height: 1px;
  margin: 32px auto;
  background: var(--home-gold);
}

.home-page .hero-button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.home-page .hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 32px;
  border: 1px solid var(--home-white);
  border-radius: 4px;
  background: transparent;
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.home-page .hero-button:hover {
  background: var(--home-white);
  color: var(--home-navy);
}

.home-page .hero-button-gold {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-page .hero-button-gold:hover {
  background: var(--home-white);
  border-color: var(--home-white);
  color: var(--home-navy);
}

.home-page .credibility-strip {
  margin: 28px 0 0;
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
}

.home-page .member-tools-section {
  padding: 88px 0;
  background: var(--home-cream);
  border-bottom: 1px solid rgba(0, 51, 102, .10);
}

.home-page .member-tools-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border: 1px solid rgba(0, 51, 102, .12);
  border-radius: 12px;
  background: var(--home-white);
  box-shadow: 0 18px 45px rgba(0, 51, 102, .08);
  text-align: left;
}

.home-page .member-tools-panel .section-headline {
  margin-bottom: 14px;
}

.home-page .member-tools-copy {
  max-width: 620px;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.7;
}

.home-page .member-tools-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 4px;
  background: var(--home-navy);
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.home-page .member-tools-button:hover {
  background: var(--home-gold);
  color: var(--home-navy);
}

.home-page .questions-section {
  padding: 100px 0;
  background: var(--home-cream);
}

.home-page .question-list {
  display: grid;
  gap: 28px;
  margin-top: 20px;
}

.home-page .reveal-question {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: 30pt;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--home-navy);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}

.home-page .reveal-question.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page .questions-close {
  max-width: 600px;
  margin: 56px auto 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 17pt;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}

.home-page .pillars-section {
  padding: 100px 0;
  background: var(--home-deep-cream);
}

.home-page .tsa-home-teaser {
  padding: 88px 0;
  background: var(--home-navy);
  text-align: center;
}

.home-page .tsa-home-teaser h2 {
  margin: 0;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: 38pt;
  font-weight: 700;
  line-height: 1.15;
}

.home-page .tsa-home-teaser p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--home-cream);
  font-family: 'Lato', sans-serif;
  font-size: 16pt;
  font-weight: 300;
  line-height: 1.65;
}

.home-page .tsa-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 30px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--home-gold);
  color: var(--home-navy);
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: filter .2s ease, transform .2s ease;
}

.home-page .tsa-home-button:hover {
  color: var(--home-navy);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.home-page .tsa-home-meta {
  display: block;
  margin-top: 18px;
  color: var(--home-cream);
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5pt;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.home-page .pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
}

.home-page .flip-card {
  width: min(100%, 340px);
  height: 420px;
  perspective: 1100px;
}

.home-page .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .7s ease;
  transform-style: preserve-3d;
}

.home-page .flip-card:hover .flip-card-inner,
.home-page .flip-card:focus-within .flip-card-inner,
.home-page .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.home-page .flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px;
  border-radius: 4px;
  backface-visibility: hidden;
  text-align: left;
}

.home-page .flip-front {
  background: var(--home-navy);
  color: var(--home-white);
}

.home-page .flip-back {
  background: var(--home-cream);
  color: var(--home-navy);
  transform: rotateY(180deg);
}

.home-page .pillar-icon {
  color: var(--home-gold);
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
}

.home-page .flip-card h2 {
  margin: 0 0 16px;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.15;
}

.home-page .flip-front p {
  margin: 0;
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.5;
}

.home-page .flip-back p {
  margin: 0;
  color: var(--home-navy);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.7;
}

.home-page .stats-section {
  padding: 100px 0;
  background: var(--home-navy);
}

.home-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.home-page .stat-item { text-align: center; }

.home-page .stat-number {
  display: block;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: 56pt;
  font-weight: 700;
  line-height: 1;
}

.home-page .stat-item p {
  margin: 18px 0 0;
  color: var(--home-gold);
  font-family: 'Lato', sans-serif;
  font-size: 12pt;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-page .testimonials-section {
  overflow: hidden;
  padding: 100px 0;
  background: var(--home-cream);
}

.home-page .marquee-wrap {
  display: grid;
  gap: 24px;
  margin-top: 0;
}

.home-page .marquee-row {
  display: flex;
  width: max-content;
  gap: 24px;
}

.home-page .marquee-track {
  display: flex;
  gap: 24px;
  animation-duration: 540s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

.home-page .is-running .marquee-track { animation-play-state: running; }
.home-page .marquee-left .marquee-track { animation-name: marquee-left; }
.home-page .marquee-right .marquee-track { animation-name: marquee-right; }

.home-page .testimonial-card {
  flex: 0 0 420px;
  width: 420px;
  min-height: 360px;
  margin: 0;
  padding: 32px;
  border-left: 4px solid var(--home-navy);
  border-radius: 4px;
  background: var(--home-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.home-page .testimonial-card p {
  margin: 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 13.5pt;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

.home-page .testimonial-card footer { margin-top: 24px; }

.home-page .testimonial-card strong,
.home-page .testimonial-card span {
  display: block;
  font-family: 'Lato', sans-serif;
}

.home-page .testimonial-card strong {
  color: var(--home-navy);
  font-size: 14pt;
  font-weight: 700;
}

.home-page .testimonial-card .testimonial-title {
  margin-top: 4px;
  color: var(--home-charcoal);
  font-size: 12.5pt;
  font-style: italic;
  font-weight: 300;
}

.home-page .testimonial-card .testimonial-company {
  margin-top: 20px;
  color: #000;
  font-size: 17pt;
  font-weight: 700;
  letter-spacing: .02em;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 24px)); }
}

@keyframes marquee-right {
  from { transform: translateX(calc(-100% - 24px)); }
  to { transform: translateX(0); }
}

.home-page .closing-cta {
  padding: 120px 0;
  background: var(--home-navy);
}

.home-page .closing-cta h2 {
  max-width: 600px;
  margin: 0 auto;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: 36pt;
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
}

.home-page .closing-cta p {
  margin: 24px 0 0;
  color: var(--home-gold);
  font-family: 'Lato', sans-serif;
  font-size: 17pt;
  font-weight: 300;
  line-height: 1.6;
}

.home-page .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 40px;
  padding: 16px 40px;
  border: 0;
  border-radius: 4px;
  background: var(--home-gold);
  color: var(--home-navy);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s ease;
}

.home-page .cta-button:hover { opacity: .88; }

.home-page .site-footer {
  background: #002855;
  color: var(--home-white);
}

.home-page .footer-grid {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.home-page .footer-logo {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

.home-page .footer-tagline {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 12pt;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.home-page .footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 32px;
}

.home-page .footer-links a {
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-weight: 300;
  text-decoration: none;
}

.home-page .footer-links a:hover { color: var(--home-gold); }

.home-page .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  text-align: center;
}

.home-page .footer-bottom p {
  margin: 0;
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 11pt;
  font-weight: 300;
}

.modal-open { overflow: hidden; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-modal.is-open { display: flex; }

.lead-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.lead-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 48px;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: #4A4A4A;
  font-family: 'Lato', sans-serif;
  font-size: 20pt;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.lead-modal-content h2 {
  margin: 0;
  color: #003366;
  font-family: 'Playfair Display', serif;
  font-size: 26pt;
  font-weight: 700;
  line-height: 1.2;
}

.lead-modal-content > p {
  margin: 12px 0 28px;
  color: #4A4A4A;
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  color: #003366;
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-weight: 700;
  line-height: 1.2;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  color: #4A4A4A;
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.35;
}

.lead-form textarea { resize: vertical; }

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: #003366;
  outline: 0;
}

.lead-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: 4px;
  background: #EEA320;
  color: #003366;
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: filter .2s ease;
}

.lead-submit:hover { filter: brightness(1.08); }

.lead-error {
  display: none;
  margin: 0;
  color: #B42318;
  font-family: 'Lato', sans-serif;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.4;
}

.lead-error.is-visible { display: block; }

.lead-success {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 16px 0;
  text-align: center;
}

.lead-success h2 {
  font-size: 22pt;
  font-style: italic;
}

.lead-success p {
  margin: 0;
  color: #4A4A4A;
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
}

.tsa-page {
  background: var(--home-cream);
}

.tsa-section {
  padding: 96px 0;
}

.tsa-container {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 24px;
}

.tsa-container.narrow {
  width: min(100%, 820px);
  text-align: center;
}

.tsa-hero {
  padding: 116px 0 104px;
  background: var(--home-cream);
  text-align: center;
}

.tsa-hero h1 {
  margin: 0;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 700;
  line-height: 1.06;
}

.tsa-hero p {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 18pt;
  font-weight: 300;
  line-height: 1.65;
}

.tsa-formula {
  display: block;
  margin-top: 28px;
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 12pt;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.6;
  text-transform: uppercase;
}

.tsa-explainer {
  background: var(--home-white);
}

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

.tsa-pillar {
  text-align: center;
}

.tsa-pillar-icon {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.tsa-pillar h2 {
  margin: 18px 0 10px;
  color: var(--home-gold);
  font-family: 'Playfair Display', serif;
  font-size: 24pt;
  font-weight: 700;
  line-height: 1.15;
}

.tsa-pillar p,
.tsa-explainer-copy,
.tsa-step p,
.tsa-card p {
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

.tsa-pillar p {
  margin: 0;
  font-size: 14.5pt;
}

.tsa-explainer-copy {
  max-width: 640px;
  margin: 56px auto 0;
  font-size: 16pt;
  text-align: center;
}

.tsa-routing {
  background: var(--home-cream);
}

.tsa-start-card {
  max-width: 720px;
  margin: 0 auto 34px;
  padding: 34px;
  border: 1px solid rgba(0, 51, 102, .14);
  border-top: 4px solid var(--home-gold);
  border-radius: 12px;
  background: var(--home-navy);
  color: var(--home-cream);
  text-align: center;
  box-shadow: 0 16px 38px rgba(0, 51, 102, .12);
}

.tsa-start-card h2 {
  margin: 0;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(28pt, 5vw, 42pt);
  line-height: 1.12;
}

.tsa-start-card p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--home-cream);
  font-family: 'Lato', sans-serif;
  font-size: 15.5pt;
  font-weight: 300;
  line-height: 1.55;
}

.tsa-start-card .tsa-start-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 50px;
  margin-top: 24px;
  padding: 16px 28px;
  border: 1px solid var(--home-gold) !important;
  border-radius: 8px;
  background: var(--home-gold) !important;
  color: var(--home-white) !important;
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.tsa-start-card .tsa-start-button:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.tsa-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.tsa-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid #E0E0E0;
  border-top: 4px solid var(--home-gold);
  border-radius: 12px;
  background: var(--home-white);
  box-shadow: 0 16px 38px rgba(0, 51, 102, .09);
}

.tsa-card-label {
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5pt;
  font-weight: 400;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.tsa-card h2 {
  margin: 14px 0 14px;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 32pt;
  font-weight: 700;
  line-height: 1.15;
}

.tsa-card p {
  margin: 0;
  font-size: 15.5pt;
}

.tsa-card-detail {
  display: block;
  margin-top: 24px;
  color: var(--home-charcoal);
  font-family: 'Roboto Mono', monospace;
  font-size: 10.5pt;
  font-weight: 400;
  letter-spacing: .7px;
  line-height: 1.5;
}

.tsa-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: auto;
  padding: 14px 18px;
  border: 1px solid var(--home-navy);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, filter .2s ease;
}

.tsa-card-button.primary {
  margin-top: 34px;
  background: var(--home-navy);
  color: var(--home-white);
}

.tsa-card-button.secondary {
  margin-top: 34px;
  background: var(--home-white);
  color: var(--home-navy);
}

.tsa-card-button.locked {
  margin-top: 34px;
  border-color: rgba(0, 51, 102, .24);
  background: #F6F1E8;
  color: var(--home-navy);
  cursor: not-allowed;
}

.tsa-card-button:hover {
  filter: brightness(1.05);
}

.tsa-how {
  background: var(--home-white);
}

.tsa-how h2 {
  margin: 0 0 44px;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 38pt;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

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

.tsa-step {
  text-align: center;
}

.tsa-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--home-navy);
  color: var(--home-white);
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-weight: 700;
}

.tsa-step h3 {
  margin: 18px 0 10px;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 22pt;
  font-weight: 700;
  line-height: 1.2;
}

.tsa-step p {
  margin: 0;
  font-size: 14.5pt;
}

.tsa-rubric-line {
  margin: 48px 0 0;
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 11pt;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.programs-page {
  min-height: 100vh;
  background: var(--home-navy);
}

.programs-page .programs-placeholder {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 72px 24px;
}

.programs-page .programs-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.programs-page .programs-logo {
  width: min(160px, 56vw);
  height: auto;
  filter: brightness(0) invert(1);
}

.programs-page .programs-placeholder h1 {
  margin: 40px 0 0;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 32pt;
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
}

.programs-page .programs-placeholder p {
  margin: 16px 0 0;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 18pt;
  font-weight: 300;
  line-height: 1.5;
}

.programs-page .programs-back-link {
  margin-top: 48px;
  color: var(--home-gold);
  font-family: 'Lato', sans-serif;
  font-size: 14pt;
  font-weight: 300;
  text-decoration: none;
}

.programs-page .programs-back-link:hover { color: #FFFFFF; }

.about-page {
  background: var(--home-cream);
}

.about-page .about-section {
  padding: 100px 0;
}

.about-page .about-why {
  background: var(--home-cream);
}

.about-page .about-meet {
  background: var(--home-deep-cream);
}

.about-page .about-results {
  background: var(--home-navy);
}

.about-page .about-results .about-container {
  width: min(100%, 900px);
}

.about-page .about-container {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.about-page .about-container.wide {
  width: min(100%, 1000px);
}

.about-page .about-copy {
  margin-top: 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 17pt;
  font-weight: 300;
  line-height: 1.8;
}

.about-page .about-copy-centered {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.about-page .about-copy p {
  margin: 0;
}

.about-page .about-copy p + p {
  margin-top: 28px;
}

.about-page .about-payoff {
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 20pt;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

.about-page .about-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  gap: 64px;
  align-items: start;
  margin-top: 0;
  text-align: left;
}

.about-page .about-profile-card {
  width: min(100%, 380px);
}

.about-page .about-profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

.about-page .about-profile-line {
  width: 100%;
  height: 1px;
  margin-top: 24px;
  background: var(--home-gold);
}

.about-page .about-profile-name {
  margin: 18px 0 0;
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 11pt;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-page .about-profile-role {
  margin: 8px 0 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.about-page .about-profile-copy {
  margin-top: 0;
  text-align: left;
}

.about-page .about-profile-copy p + p {
  margin-top: 24px;
}

.about-page .about-results .about-copy {
  color: var(--home-white);
}

.about-page .about-results-stats {
  width: min(100%, 900px);
  margin: 56px auto 0;
}

.about-page .about-results-note {
  margin: 0 0 32px;
  color: var(--home-gold);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
}

.about-page .about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 40px;
}

.about-page .about-stat {
  text-align: center;
}

.about-page .about-stat strong {
  display: block;
  color: var(--home-white);
  font-family: 'Playfair Display', serif;
  font-size: 48pt;
  font-weight: 700;
  line-height: 1;
}

.about-page .about-stat p {
  margin: 18px 0 0;
  color: var(--home-gold);
  font-family: 'Roboto Mono', monospace;
  font-size: 11pt;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-page .about-closing-cta {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.about-page .about-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}

.about-page .about-photo-reveal {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .4s ease, transform .4s ease;
}

.about-page .about-reveal.is-visible,
.about-page .about-photo-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-page {
  background: var(--home-cream);
}

.contact-page .contact-section {
  padding: 100px 0;
}

.contact-page .contact-invitation {
  background: var(--home-cream);
}

.contact-page .contact-form-section {
  background: var(--home-deep-cream);
}

.contact-page .contact-container {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.contact-page .contact-invitation h1 {
  max-width: 720px;
  margin: 0 0 40px;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 40pt;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

.contact-page .contact-intro {
  max-width: 640px;
  margin: 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 17pt;
  font-weight: 300;
  line-height: 1.8;
}

.contact-page .contact-intro span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
}

.contact-page .contact-grid {
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 64px;
  align-items: start;
}

.contact-page .contact-form {
  display: grid;
  gap: 12px;
}

.contact-page .contact-form label {
  color: var(--home-navy);
  font-family: 'Lato', sans-serif;
  font-size: 13pt;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  width: 100%;
  margin-bottom: 8px;
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.35;
}

.contact-page .contact-form textarea {
  resize: vertical;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: var(--home-navy);
  outline: 0;
}

.contact-page .contact-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 0;
  border-radius: 4px;
  background: var(--home-gold);
  color: var(--home-navy);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: filter .2s ease;
}

.contact-page .contact-submit:hover {
  filter: brightness(1.08);
}

.contact-page .contact-error {
  display: none;
  margin: 0;
  color: #B42318;
  font-family: 'Lato', sans-serif;
  font-size: 12pt;
  font-weight: 700;
  line-height: 1.4;
}

.contact-page .contact-error.is-visible {
  display: block;
}

.contact-page .contact-success {
  display: grid;
  justify-items: center;
  gap: 16px;
  min-height: 320px;
  align-content: center;
  text-align: center;
}

.contact-page .contact-success h2 {
  margin: 0;
  color: var(--home-navy);
  font-family: 'Playfair Display', serif;
  font-size: 22pt;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

.contact-page .contact-success p {
  margin: 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
}

.contact-page .contact-details {
  color: var(--home-charcoal);
}

.contact-page .contact-direct {
  margin: 0;
  color: var(--home-charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
}

.contact-page .contact-detail-list {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.contact-page .contact-detail-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.contact-page .contact-detail-row svg {
  width: 20px;
  height: 20px;
  fill: var(--home-gold);
}

.contact-page .contact-detail-row a,
.contact-page .contact-detail-row span {
  font-family: 'Lato', sans-serif;
  font-size: 15pt;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
}

.contact-page .contact-detail-row a {
  color: var(--home-navy);
}

.contact-page .contact-detail-row span {
  color: var(--home-charcoal);
}

.contact-page .contact-detail-row a:hover {
  color: var(--home-gold);
}

.contact-page .contact-closing-cta {
  background: var(--home-navy);
}

.contact-page .contact-closing-cta .cta-button {
  transition: filter .2s ease;
}

.contact-page .contact-closing-cta .cta-button:hover {
  opacity: 1;
  filter: brightness(1.08);
}

.contact-page .contact-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}

.contact-page .contact-details-reveal {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease;
}

.contact-page .contact-reveal.is-visible,
.contact-page .contact-details-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 768px) {
  .home-page .site-nav { padding: 10px 20px; }
  .home-page .nav-brand img { width: 132px; }
  .home-page .nav-toggle { display: block; }

  .home-page .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--home-white);
    border-bottom: 1px solid var(--home-deep-cream);
  }

  .home-page .nav-menu.is-open { display: flex; }

  .home-page .nav-menu a,
  .home-page .nav-menu button {
    padding: 14px 0;
    font-size: 13pt;
  }

  .home-page .nav-menu .nav-button {
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 14px 16px;
    text-align: center;
  }

  .home-page .nav-menu a:nth-last-child(2),
  .home-page .nav-menu .nav-button + .nav-button {
    margin-left: 0;
  }

  .home-page .flip-card:hover .flip-card-inner,
  .home-page .flip-card:focus-within .flip-card-inner {
    transform: none;
  }

  .home-page .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }

  .home-page .home-hero { padding: 96px 24px; }
  .home-page .member-tools-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .home-page .member-tools-button {
    justify-self: start;
  }

  .home-page .tsa-home-teaser {
    padding: 72px 0;
  }

  .home-page .tsa-home-teaser h2 {
    font-size: 30pt;
  }

  .home-page .tsa-home-teaser p {
    font-size: 14.5pt;
  }

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

  .tsa-hero {
    padding: 88px 0 78px;
  }

  .tsa-hero p {
    font-size: 15.5pt;
  }

  .tsa-formula {
    font-size: 10.5pt;
  }

  .tsa-pillar-grid,
  .tsa-card-grid,
  .tsa-step-grid {
    grid-template-columns: 1fr;
  }

  .tsa-card {
    padding: 28px;
  }

  .tsa-card h2,
  .tsa-how h2 {
    font-size: 28pt;
  }

  .home-page .pillar-grid { grid-template-columns: minmax(0, 340px); }
  .home-page .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-page .footer-grid { grid-template-columns: 1fr; }

  .home-page .footer-links {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lead-modal-card {
    padding: 40px 24px 32px;
  }

  .about-page .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-page .about-profile-card {
    width: 100%;
    max-width: 100%;
  }

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

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 480px) {
  .home-page .site-nav { min-height: 68px; }
  .home-page .nav-brand img { width: 112px; }
  .home-page .home-hero h1 { font-size: 20pt; }

  .home-page .questions-section,
  .home-page .member-tools-section,
  .home-page .pillars-section,
  .home-page .stats-section,
  .home-page .testimonials-section {
    padding: 80px 0;
  }

  .home-page .reveal-question { font-size: 24pt; }
  .home-page .member-tools-panel { padding: 24px; }
  .home-page .member-tools-copy { font-size: 14pt; }
  .home-page .questions-close { font-size: 15pt; }
  .home-page .flip-card { height: 450px; }
  .home-page .flip-face { padding: 32px; }
  .home-page .stats-grid { gap: 36px 18px; }
  .home-page .stat-number { font-size: 40pt; }
  .home-page .stat-item p { font-size: 10pt; }

  .home-page .testimonial-card {
    flex-basis: 300px;
    width: 300px;
    padding: 28px;
  }

  .home-page .closing-cta h2 { font-size: 28pt; }

  .about-page .about-section {
    padding: 80px 0;
  }

  .about-page .about-copy {
    font-size: 15pt;
  }

  .about-page .about-payoff {
    font-size: 18pt;
  }

  .about-page .about-stats-grid {
    gap: 40px 18px;
  }

  .about-page .about-stat strong {
    font-size: 34pt;
  }

  .about-page .about-stat p {
    font-size: 9pt;
  }

  .contact-page .contact-section {
    padding: 80px 0;
  }

  .contact-page .contact-intro {
    font-size: 15pt;
  }

  .contact-page .contact-detail-row a,
  .contact-page .contact-detail-row span {
    font-size: 13pt;
  }
}

/* Admin Tabs */
.ws-admin-tabs {
  display: flex;
  border-bottom: 2px solid var(--ws-line);
  margin-bottom: 24px;
}

.ws-admin-tab {
  padding: 12px 18px;
  text-decoration: none;
  color: var(--ws-steel);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.ws-admin-tab:hover {
  color: var(--ws-navy);
}

.ws-admin-tab.ws-active {
  color: var(--ws-navy);
  border-bottom-color: var(--ws-gold);
}

/* Student Progress Table */
.ws-admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ws-admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ws-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 51, 102, .03);
}

.ws-admin-table th,
.ws-admin-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--ws-line);
  text-align: left;
  vertical-align: top;
}

.ws-admin-table th {
  background: var(--ws-cream);
  color: var(--ws-navy);
  font-family: 'Roboto Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.ws-admin-table td {
  font-size: 14px;
  color: var(--ws-charcoal);
}

.ws-admin-table td small {
  display: block;
  font-size: 11px;
  color: var(--ws-steel);
  margin-top: 2px;
}

.ws-progress-dots-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px; /* Space between video and exercise dots */
}

.ws-progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ws-line); /* Gray for pending */
  display: inline-block;
  flex-shrink: 0;
}

.ws-progress-dot.ws-dot-solid {
  background: var(--ws-green); /* Green for done */
}

.ws-progress-dot.ws-dot-half {
  background: linear-gradient(90deg, var(--ws-green) 50%, var(--ws-line) 50%); /* Half for partially done */
}

.ws-button-small {
  padding: 6px 10px;
  font-size: 11px;
  min-height: 30px;
}

/* Admin Section Header */
.ws-admin-section {
  margin-top: 20px;
}
.ws-admin-section .ws-kicker {
  margin-bottom: 8px;
}
.ws-admin-section .ws-title {
  font-size: 32px;
  margin-top: 0;
}
.ws-admin-section .ws-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}
.ws-admin-section .ws-help {
  margin-top: 15px;
  font-size: 14px;
  color: var(--ws-steel);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ───────────────────────────────────────────────────────── */
html, body {
  background: var(--cream);
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Section label ──────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.87; }

.btn-disabled {
  opacity: 0.55;
  cursor: default;
}

.btn-disabled:hover { opacity: 0.55; }

.btn-text {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(0,51,102,0.25);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.btn-text:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ================================================================
   NAVIGATION
   ================================================================ */

nav {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

nav img {
  height: 126px;
  width: auto;
  display: block;
  border: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-links li a {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.nav-links li a:hover { color: var(--navy); }

.nav-links li a[href$="portal.html"] {
  display: inline-block;
  padding: 7px 12px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 2px;
  font-weight: 700;
}

.nav-links li a[href$="portal.html"]:hover {
  opacity: 0.87;
}

.nav-links li a.active {
  color: var(--navy);
  border-bottom: 1px solid rgba(0,51,102,0.28);
  padding-bottom: 2px;
}

.nav-links li a[href$="portal.html"].active {
  border-bottom: 0;
  padding: 7px 12px;
}

.nav-cta {
  flex-shrink: 0;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.87; }

/* ================================================================
   HERO
   ================================================================ */

.hero {
  padding: 80px 0 96px;
}

.hero .container {
  position: relative;
}

.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 54px;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.hero p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--charcoal);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ================================================================
   WHAT WE DO
   ================================================================ */

.what-we-do {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.what-we-do p {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.what-we-do p:last-child { margin-bottom: 0; }

.what-we-do p strong {
  font-weight: 400;
  color: var(--navy);
}

/* ================================================================
   ASSESSMENT PREVIEW
   ================================================================ */

.assessment-preview {
  padding: 72px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.assessment-preview h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 480px;
}

.assessment-preview p {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.assessment-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ================================================================
   PROGRAM
   ================================================================ */

.program {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.program h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 480px;
}

.phase-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-card {
  background: var(--smoke);
  border-radius: 3px;
  padding: 28px 32px 28px 36px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.phase-card:nth-child(1) { border-left-color: var(--gold); }
.phase-card:nth-child(2) { border-left-color: rgba(238,163,32,0.45); }
.phase-card:nth-child(3) { border-left-color: rgba(238,163,32,0.2); }

.phase-num {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.phase-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.phase-card p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 440px;
}

.phase-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
  background: rgba(77,112,148,0.1);
  padding: 3px 9px;
  border-radius: 2px;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */

.how-it-works {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.how-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(74,74,74,0.1);
}

.step-item:last-child { border-bottom: none; }

.step-n {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: rgba(0,51,102,0.15);
  line-height: 1;
  min-width: 40px;
  padding-top: 2px;
}

.step-content h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 460px;
}

/* ================================================================
   WHY IT WORKS
   ================================================================ */

.why-it-works {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.why-it-works h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 48px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item strong {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 460px;
}

/* ================================================================
   PORTAL PREVIEW
   ================================================================ */

.portal-preview {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.portal-preview p.lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 36px;
}

.preview-frame {
  background: #fff;
  border: 1px solid rgba(0,51,102,0.18);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  padding: 28px 28px 24px;
  margin-bottom: 36px;
}

.preview-frame-label {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
}

.preview-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-card {
  background: var(--smoke);
  border: 1px solid rgba(0,51,102,0.12);
  border-radius: 3px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.preview-card-letter {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  min-width: 20px;
}

.preview-card-title {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--navy);
}

.preview-card-status {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
}

.preview-card.preview-active .preview-card-letter {
  color: var(--navy);
}

.preview-card.preview-active {
  border-left: 3px solid var(--gold);
}

.preview-card.preview-locked {
  opacity: 0.5;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq {
  padding: 80px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.faq h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(74,74,74,0.12);
  padding: 4px 0;
}

.faq-item summary {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--navy);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--steel);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.85;
  max-width: 520px;
  padding-bottom: 22px;
}

/* ================================================================
   ABOUT / CTA STRIP
   ================================================================ */

.about-strip {
  padding: 64px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.about-strip p {
  font-size: 17px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ================================================================
   SIMPLE PAGES
   ================================================================ */

.page-hero {
  padding: 72px 0 64px;
  border-top: 1px solid rgba(74,74,74,0.08);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 46px;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 560px;
}

.page-hero p {
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 34px;
}

.page-section {
  padding: 72px 0;
  border-top: 1px solid rgba(74,74,74,0.12);
}

.tool-section-header {
  margin-bottom: 28px;
}

.tool-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.tool-section-header p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
}

.tool-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-card {
  background: var(--smoke);
  border: 1px solid rgba(0,51,102,0.1);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tool-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
}

.tool-label,
.tool-status {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--steel);
}

.tool-label {
  margin-bottom: 10px;
}

.tool-status {
  flex-shrink: 0;
  background: rgba(77,112,148,0.1);
  padding: 4px 10px;
  border-radius: 2px;
}

.tool-card.muted,
.tool-card.locked {
  border-left-color: rgba(77,112,148,0.28);
}

.tool-card.locked {
  background: var(--parchment);
}

.locked-tools {
  background: rgba(250,249,246,0.35);
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(74,74,74,0.1);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

footer p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--charcoal);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--steel);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--gold); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 768px) {
  nav {
    padding: 24px;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }

  .nav-logo {
    width: 100%;
    justify-content: center;
  }

  nav img {
    height: 114px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li a {
    font-size: 13px;
  }

  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .what-we-do,
  .assessment-preview,
  .program,
  .how-it-works,
  .why-it-works,
  .portal-preview,
  .faq,
  .about-strip {
    padding: 56px 0;
  }

  .program h2,
  .assessment-preview h2,
  .how-it-works h2,
  .why-it-works h2,
  .faq h2 {
    font-size: 26px;
  }

  .phase-card {
    padding: 22px 20px 22px 24px;
  }

  .step-item {
    gap: 18px;
  }

  .step-n {
    font-size: 22px;
    min-width: 32px;
  }

  .hero-actions {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding: 48px 0 56px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-section {
    padding: 56px 0;
  }

  .tool-section-header h2 {
    font-size: 26px;
  }

  .tool-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 20px 22px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* Force current section label treatment above legacy page styles. */
.section-label,
.section-label-text {
  color: #EEA320 !important;
  font-family: 'Roboto Mono', monospace !important;
  font-size: 11pt !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

.section-label {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  max-width: inherit !important;
  margin-bottom: 20px !important;
  text-align: left !important;
}

.section-label::before {
  content: '' !important;
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  background-color: #EEA320 !important;
  margin-bottom: 16px !important;
}

.member-workspace-page .phase-section,
.member-workspace-page .hub-section {
  scroll-margin-top: 64px;
}

/* === MEMBER WORKSPACE MOBILE — May 2026 === */
@media (max-width: 768px) {
  body.member-workspace-page {
    overflow-x: hidden;
  }

  .member-workspace-page .page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .member-workspace-page .topbar {
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 12px;
  }

  .member-workspace-page .logo {
    width: auto;
    height: 30px;
  }

  .member-workspace-page .home-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    font-size: 14px;
  }

  .member-workspace-page .identity-avatar {
    background: #EEA320;
    color: #003366;
    border-color: rgba(238, 163, 32, .78);
  }

  .member-workspace-page .identity-user-status {
    color: #EEA320;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
  }

  .member-workspace-page .profile-dropdown {
    right: 0;
    width: min(320px, calc(100vw - 32px));
    padding: 16px;
    border-top: 4px solid #EEA320;
    border-radius: 8px;
  }

  .member-workspace-page .profile-dropdown-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.05;
  }

  .member-workspace-page .profile-dropdown-meta {
    font-size: 13px;
    line-height: 1.4;
  }

  .member-workspace-page .profile-dropdown-action {
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid rgba(0, 51, 102, .28);
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
  }

  .member-workspace-page .profile-dropdown-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 10px;
    padding: 9px 12px;
    border: 1px solid rgba(74, 74, 74, .22);
    border-radius: 7px;
    color: #4A4A4A;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .member-workspace-page .dashboard {
    overflow-x: hidden;
    overflow-y: visible;
    padding-top: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .member-workspace-page .member-identity-bar {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-right: -16px;
    margin-left: -16px;
    padding: 8px 16px;
  }

  .member-workspace-page .identity-label {
    line-height: 1.15;
  }

  .member-workspace-page .member-identity-left {
    order: 1;
  }

  .member-workspace-page .member-identity-right {
    order: 2;
    margin-left: auto;
  }

  .member-workspace-page .dashboard-header {
    gap: 6px;
    padding: 12px 0 16px;
  }

  .member-workspace-page .dashboard-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 26px !important;
    line-height: 1.05;
  }

  .member-workspace-page .dashboard-header p {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.45;
  }

  .member-workspace-page .mission-card {
    width: 100%;
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .member-workspace-page .member-nav {
    order: 3;
    flex-basis: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .member-workspace-page .member-nav::-webkit-scrollbar {
    display: none;
  }

  .member-workspace-page .member-nav-inner,
  .member-workspace-page .nav-links,
  .member-workspace-page .nav-phase-links,
  .member-workspace-page .nav-utility-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .member-workspace-page .member-nav-inner {
    width: max-content;
    min-width: 100%;
    height: auto;
    min-height: 44px;
    gap: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .member-workspace-page .nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .member-workspace-page .nav-item.active {
    border-bottom-color: #EEA320;
  }

  .member-workspace-page .nav-workspace-label {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-family: 'Roboto Mono', monospace;
    font-size: 11px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .member-workspace-page .nav-divider,
  .member-workspace-page .nav-sep {
    flex-shrink: 0;
  }

  .member-workspace-page .nav-divider {
    margin-right: 22px;
    margin-left: 22px;
  }

  .member-workspace-page .phase-section,
  .member-workspace-page .hub-section {
    gap: 12px;
    padding-top: 20px;
    padding-right: 16px;
    padding-bottom: 20px;
    padding-left: 16px;
  }

  .member-workspace-page .phase-heading .section-label,
  .member-workspace-page .section-header .section-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 10px !important;
    letter-spacing: .08em;
  }

  .member-workspace-page .phase-heading h2,
  .member-workspace-page .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    line-height: 1.12;
  }

  .member-workspace-page .phase-stack {
    gap: 0;
    margin-top: 14px;
  }

  .member-workspace-page .phase-chunk {
    gap: 8px;
    margin-top: 6px;
  }

  .member-workspace-page .slides-bar,
  .member-workspace-page .ws-context-accordion {
    width: 100%;
    min-height: 44px;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
  }

  .member-workspace-page .ws-context-accordion .slides-bar-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .member-workspace-page .ws-context-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
  }

  .member-workspace-page .ws-context-sub {
    font-size: 12px;
  }

  .member-workspace-page .exercise-card-grid {
    width: 100%;
    gap: 12px;
  }

  .member-workspace-page .exercise-card {
    width: 100%;
    min-height: 0;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
  }

  .member-workspace-page .exercise-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px !important;
    line-height: 1.1;
  }

  .member-workspace-page .exercise-card .card-time {
    font-family: 'Lato', sans-serif;
    font-size: 14px !important;
    line-height: 1.4;
  }

  .member-workspace-page .exercise-card .card-type {
    display: flex;
    align-items: center;
    min-width: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    letter-spacing: .06em;
  }

  .member-workspace-page .ws-step-circle {
    width: 22px;
    min-width: 22px;
    height: 22px;
  }

  .member-workspace-page .ws-done-pill {
    flex-shrink: 0;
  }

  .member-workspace-page .ws-open-tool,
  .member-workspace-page .ws-mark-done {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .member-workspace-page .ws-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 8px;
  }

  .member-workspace-page .ws-lock-hint,
  .member-workspace-page .ws-is-locked .ws-lock-hint {
    font-size: 13px;
    color: #4A4A4A;
    text-align: center;
  }
}
