/* =============================================
   CSS CUSTOM PROPERTIES — Color Tokens
   ============================================= */
:root {
  --yellow:          #EAB308;
  --yellow-hover:    #CA8A04;
  --teal:            #0EA5E9;
  --teal-hover:      #0284C7;
  --bg-light:        #FFFEF5;
  --bg-white:        #FFFFFF;
  --bg-gray:         #F9FAFB;
  --text-primary:    #1F2937;
  --text-secondary:  #6B7280;
  --border-light:    #E5E7EB;
  --shadow-card:     0 4px 6px rgba(0, 0, 0, 0.07);

  /* Spacing grid (8px base) */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-6:  48px;
  --space-8:  64px;
  --space-10: 80px;
  --space-15: 120px;

  /* Layout */
  --max-width: 1200px;
  --radius-card: 14px;
  --radius-btn:  8px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
}

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

ul {
  list-style: none;
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-btn);
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  min-height: 44px; /* WCAG touch target */
}

/* Sheen effect — diagonal highlight that sweeps across on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 125%;
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn-teal {
  background-color: var(--teal);
  color: #ffffff;
}

.btn-teal:hover {
  background-color: var(--teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25);
}

.btn-teal:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(14, 165, 233, 0.2);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--text-primary);
}

.btn-yellow:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.3);
}

.btn-yellow:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(234, 179, 8, 0.25);
}

/* Yellow button sheen uses warmer tone */
.btn-yellow::before {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease;
}

/* Opaque state — applied via JS on scroll */
.site-header.scrolled {
  background-color: var(--bg-white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* Brand */
.nav-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
}

.nav-brand-hr {
  background-color: var(--yellow);
  color: var(--text-primary);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
}

.nav-brand-approved {
  color: var(--text-primary);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-left: auto;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.15s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: var(--teal);
}

.nav-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Desktop CTA */
.nav-cta {
  padding: 10px 20px;
  font-size: 15px;
  flex-shrink: 0;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

.hamburger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.hamburger:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger open state — X animation */
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: var(--space-3) var(--space-3) var(--space-4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);

  /* Hidden state */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding-top: var(--space-3);
  padding-bottom: var(--space-4);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  min-height: 44px;
  transition: color 0.15s ease;
}

.mobile-nav-link:hover {
  color: var(--teal);
}

.mobile-nav-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.mobile-cta {
  margin-top: var(--space-2);
  width: 100%;
  text-align: center;
}

/* =============================================
   RESPONSIVE — Navigation breakpoints
   ============================================= */
@media (max-width: 767px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .nav-container {
    gap: var(--space-2);
  }
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================================
   HERO SECTION — Three-column layout
   ============================================= */
.hero {
  background-color: var(--bg-light);
  padding-top: calc(68px + 28px);
  padding-bottom: var(--space-6);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 5fr 4fr 3fr;
  align-items: start;
  gap: var(--space-3);
}

/* ---- Column 1: Copy ---- */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--yellow);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400; /* Archivo Black only ships one weight — 400 is its native black weight */
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.hero-subheadline {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
}

.hero-proof-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-proof-stars {
  letter-spacing: 1px;
  margin-right: 3px;
}

/* ---- Column 2: Book Image ---- */
.hero-image-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

.hero-book-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

/* ---- Column 3: Email signup card ---- */
.hero-signup-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.hero-email-card {
  background: #FFFBEC;
  border: 1px solid #EFE7C9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-email-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero-email-supporting {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-email-form {
  margin-top: 4px;
}

.hero-email-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-email-input {
  width: 100%;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-gray);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 42px;
}

.hero-email-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.hero-email-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
  background: var(--bg-white);
}

.hero-email-input.invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.hero-email-btn {
  width: 100%;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  height: 42px;
}

.btn-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hero-email-btn:hover .btn-icon {
  transform: translateX(3px);
}

.hero-email-error {
  font-size: 12px;
  font-weight: 500;
  color: #EF4444;
  margin-top: 4px;
}

.hero-email-success {
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  margin-top: 6px;
}

/* Screen reader only utility */
.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;
}

/* Secondary links (below email card) */
.hero-secondary-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-secondary-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-secondary-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-text-link {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(107, 114, 128, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.hero-text-link:hover {
  color: var(--text-primary);
  text-decoration-color: var(--text-primary);
}

.hero-text-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* =============================================
   RESPONSIVE — Hero
   ============================================= */

/* Tablet: stack to two columns (copy + card), image above */
@media (max-width: 1023px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-copy {
    order: 1;
  }

  .hero-image-wrap {
    order: 0;
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
    justify-content: center;
  }

  .hero-signup-col {
    order: 2;
  }

  .hero-badge {
    justify-content: flex-start;
  }
}

/* Mobile: single column */
@media (max-width: 767px) {
  .hero {
    padding-top: calc(68px + var(--space-3));
    padding-bottom: var(--space-6);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }

  .hero-copy {
    align-items: center;
    order: 2;
  }

  .hero-image-wrap {
    order: 3;
    max-width: 260px;
    grid-column: auto;
  }

  .hero-signup-col {
    order: 1;
  }

  .hero-headline {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 15px;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-secondary-links {
    align-items: center;
    text-align: center;
  }
}

/* =============================================
   EMAIL CONFIRMATION MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--bg-white);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.modal-close:hover {
  background: var(--bg-gray);
  color: var(--text-primary);
}

.modal-close:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Headline */
.modal-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-right: 36px;
}

/* Email row */
.modal-email-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 8px;
}

.modal-email-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg-gray);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-email-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
  background: var(--bg-white);
}

.modal-confirm-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  height: 44px;
}

.modal-confirm-btn:disabled {
  background-color: var(--border-light);
  color: var(--text-secondary);
  cursor: not-allowed;
}

.modal-confirm-btn:disabled:hover {
  background-color: var(--border-light);
}

/* Role question */
.modal-role-question {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

/* Role cards */
.modal-role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.modal-role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--bg-gray);
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}

.modal-role-card:hover {
  border-color: #c4c9d0;
  background: #f3f4f6;
}

.modal-role-card:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

/* Selected state */
.modal-role-card[aria-pressed="true"] {
  border-color: var(--teal);
  background: rgba(14, 165, 233, 0.06);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.modal-role-icon {
  color: var(--teal);
  flex-shrink: 0;
}

.modal-role-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Error */
.modal-error {
  font-size: 13px;
  font-weight: 500;
  color: #EF4444;
}

.modal-consent {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.4;
}

/* Modal success state */
.modal-success {
  text-align: center;
  padding: var(--space-4) 0;
}

.modal-success-text {
  font-size: 18px;
  font-weight: 700;
  color: #059669;
  line-height: 1.4;
}

/* =============================================
   RESPONSIVE — Modal
   ============================================= */
@media (max-width: 480px) {
  .modal {
    padding: 24px 20px;
  }

  .modal-email-row {
    flex-direction: column;
  }

  .modal-confirm-btn {
    width: 100%;
    justify-content: center;
  }

  .modal-role-cards {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.section-heading {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.5vw, 36px);
  color: var(--text-primary);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* =============================================
   WHAT YOU'LL LEARN SECTION
   ============================================= */
.learn {
  background-color: var(--bg-white);
  padding: var(--space-3) 0 var(--space-10);
}

/* Centered heading above columns */
.learn-header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  margin-bottom: var(--space-6);
}

.learn-intro {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* Two-column layout */
.learn-columns {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: start;
  gap: 20px;
}

/* Left: image (visually bigger than its column by scaling up the inner image) */
.learn-image-col {
  position: sticky;
  top: 80px;
}

.learn-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  width: 115%;
  max-width: none;
}

.learn-image-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 25%,
    #FFFFFF 100%
  );
  pointer-events: none;
}

.learn-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

/* Right: cards */
.learn-cards-col {
}

.learn-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.learn-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.learn-card-number {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.learn-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.learn-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.35;
}

.learn-card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================================
   RESPONSIVE — What You'll Learn
   ============================================= */
@media (max-width: 767px) {
  .learn {
    padding: var(--space-6) 0;
  }

  .learn-header {
    margin-bottom: var(--space-4);
  }

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

  .learn-image-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .learn-image-wrap::after {
    display: none;
  }

  .learn-cards-col {
    padding-right: 0;
  }

  .learn-cards {
    gap: 16px;
  }
}

/* =============================================
   WHO THIS BOOK IS FOR
   ============================================= */
.who {
  background-color: var(--bg-gray);
  padding: var(--space-6) 0 var(--space-3);
}

.who-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header block — two-column: text left, image right */
.who-header {
  display: grid;
  grid-template-columns: 60% 1fr;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-4);
}

.who-header-text {
  text-align: left;
}

.who-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.who-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--yellow);
  flex-shrink: 0;
}

.who-heading {
  text-align: left;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.25;
}

.who-subheadline {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 14px;
}

.who-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 16px;
}

.who-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-card);
}

/* Three profiles — column layout with dividers */
.who-profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: var(--space-8);
}

.who-profile {
  padding: 0 var(--space-4);
  border-right: 1px solid var(--border-light);
}

.who-profile:first-child {
  padding-left: 0;
}

.who-profile:last-child {
  border-right: none;
  padding-right: 0;
}

.who-profile-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.who-profile-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--yellow);
  flex-shrink: 0;
  margin-top: 6px;
}

.who-profile-sub {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.55;
}

.who-profile-benefit {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 12px;
  font-style: italic;
}

.who-benefit-label {
  font-style: normal;
  font-weight: 600;
  color: var(--text-primary);
}

.who-also-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.who-also-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.who-also-list li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.who-also-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yellow);
}

.who-also-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Combined callout box */
.who-manager-note {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  padding: 24px 28px;
}

.who-note-divider {
  border: none;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

.who-note-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.who-note-icon {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 1px;
}

.who-note-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-note-text a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(14, 165, 233, 0.35);
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.who-note-text a:hover {
  color: var(--teal-hover);
  text-decoration-color: var(--teal-hover);
}

.who-note-text a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Closing line (inside intro block) */
.who-closing {
  text-align: left;
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 18px;
}

/* =============================================
   RESPONSIVE — Who This Book Is For
   ============================================= */
@media (max-width: 1023px) {
  .who-profiles {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .who-profile {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: var(--space-4);
  }

  .who-profile:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .who {
    padding: var(--space-6) 0 var(--space-3);
  }

  .who-container {
    padding: 0 var(--space-3);
  }

  .who-header {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
  }

  .who-header-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .who-heading {
    font-size: clamp(22px, 6vw, 28px);
  }

  .who-profiles {
    margin-bottom: var(--space-6);
  }

  .who-closing {
    font-size: 16px;
  }
}

/* =============================================
   CHAPTER PREVIEW SECTION
   ============================================= */
.preview {
  background-color: var(--bg-white);
  padding: var(--space-3) 0 var(--space-10);
}

.preview-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px 0 32px;
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: start;
  gap: var(--space-4);
}

/* Left: image */
.preview-image-col {
  position: sticky;
  top: 80px;
}

.preview-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.preview-image-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 25%,
    #FFFFFF 100%
  );
  pointer-events: none;
}

.preview-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

/* Right: text content */
.preview-content-col {
  display: flex;
  flex-direction: column;
}

.preview-heading {
  text-align: left;
}

.preview-subheadline {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: 12px;
  line-height: 1.5;
}

.preview-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 14px;
}

/* Tiers — clean numbered list, no cards */
.preview-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-4);
}

.preview-tier {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.preview-tier:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.preview-tier-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.preview-tier-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.preview-tier-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.3;
}

.preview-tier-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  font-style: italic;
}

.preview-tier-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 4px;
}

/* =============================================
   RESPONSIVE — Chapter Preview
   ============================================= */
@media (max-width: 1023px) {
  .preview-container {
    grid-template-columns: 35% 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 767px) {
  .preview {
    padding: var(--space-3) 0 var(--space-6);
  }

  .preview-container {
    grid-template-columns: 1fr;
    padding: 0 var(--space-3);
  }

  .preview-image-col {
    position: static;
    max-width: 360px;
    margin: 0 auto;
  }

  .preview-image-wrap::after {
    display: none;
  }

  .preview-tier-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
  }
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews {
  background-color: var(--bg-gray);
  padding: var(--space-6) 0;
}

.reviews-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.reviews-header {
  margin-bottom: var(--space-6);
}

.reviews-heading {
  text-align: left;
}

.reviews-subheadline {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

/* Two-column layout: cards left (65%), QR sidebar right (35%) */
.reviews-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: var(--space-4);
  align-items: start;
}

/* Left: cards grid (3 per row) */
.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Quote wrap with 4-line truncation + fade */
.review-quote-wrap {
  position: relative;
  max-height: 92px; /* ~4 lines at 11.5px / 1.9 line-height with breathing room */
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.review-quote-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #FFFFFF 100%
  );
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.review-card.is-expanded .review-quote-wrap {
  max-height: none;
}

.review-card.is-expanded .review-quote-wrap::after {
  opacity: 0;
}

.review-quote {
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 0;
}

/* Single inline meta row at bottom */
.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}

.review-stars {
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1;
  flex: 1;
}

.review-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.review-toggle:hover {
  color: var(--teal);
}

.review-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.review-card.is-expanded .review-toggle {
  transform: rotate(90deg);
}

/* Right: sticky QR sidebar */
.reviews-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  border-left: 1px solid var(--border-light);
  padding-left: var(--space-4);
}

.reviews-sidebar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3) 0;
}

.reviews-qr-label {
  display: block;
  text-align: center;
  margin: 0 0 18px 0;
}

.reviews-qr-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 0 0 6px 0;
}

.reviews-qr-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.reviews-qr-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--yellow);
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
}

.reviews-qr-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.reviews-qr-link:hover {
  transform: scale(1.02);
}

.reviews-qr-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

.reviews-qr-img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   RESPONSIVE — Reviews
   ============================================= */
@media (max-width: 1023px) {
  .reviews-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .reviews {
    padding: var(--space-6) 0;
  }

  .reviews-container {
    padding: 0 var(--space-3);
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .reviews-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-sidebar {
    position: static;
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: var(--space-3);
  }

  /* Mobile: cards fully expanded, no truncation, no fade, no arrow */
  .review-quote-wrap {
    max-height: none;
    overflow: visible;
  }

  .review-quote-wrap::after {
    display: none;
  }

  .review-toggle {
    display: none;
  }

  .review-quote {
    font-size: 15px;
    line-height: 1.6;
  }

  .review-name {
    font-size: 14px;
  }

  .review-stars {
    font-size: 13px;
  }

  .reviews-heading {
    text-wrap: balance;
    max-width: 340px;
  }
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing {
  background-color: var(--bg-white);
  padding: var(--space-6) 0 var(--space-10);
}

.pricing-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing-subheadline {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

/* Card grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: var(--space-6);
}

.pricing-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 40px 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Featured card — slightly more prominent */
.pricing-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Most Popular badge — overlaps top border */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--yellow);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(234, 179, 8, 0.25);
}

/* Clickable book cover */
.pricing-cover-link {
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.pricing-cover-link:hover {
  transform: translateY(-3px);
}

.pricing-cover-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Eyebrow */
.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pricing-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--yellow);
  flex-shrink: 0;
}

/* Book title */
.pricing-book-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

/* Tagline */
.pricing-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

/* Book cover */
.pricing-cover-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-cover {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.12));
}

/* Divider */
.pricing-divider {
  border: none;
  height: 1px;
  background: var(--border-light);
  width: 100%;
  margin: 0 0 20px;
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
  width: 100%;
}

.pricing-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.pricing-check-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background-color: var(--yellow);
  color: #ffffff;
  flex-shrink: 0;
}

.pricing-check-circle svg {
  width: 9px;
  height: 9px;
}

/* CTA */
.pricing-cta {
  width: auto;
  justify-content: center;
  gap: 8px;
  padding: 12px 36px;
  font-size: 15px;
  font-weight: 600;
}

.pricing-cta:hover .btn-icon {
  transform: translateX(3px);
}

/* Small text */
.pricing-small {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

/* Closing */
.pricing-closing {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: var(--text-secondary);
  text-align: center;
}

/* =============================================
   RESPONSIVE — Pricing
   ============================================= */
@media (max-width: 767px) {
  .pricing {
    padding: var(--space-6) 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    padding: 32px 28px;
  }

  .pricing-closing {
    font-size: 13px;
    text-wrap: balance;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   FULL-WIDTH EMAIL SIGNUP
   ============================================= */
.signup-full {
  background-color: var(--bg-gray);
  padding: var(--space-6) 0;
}

.signup-full-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
  text-align: center;
}

.signup-full-heading {
  text-align: center;
}

.signup-full-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: var(--space-4);
}

.signup-full-form {
  max-width: 520px;
  margin: 0 auto;
}

.signup-full-field-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.signup-full-input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-btn);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 50px;
}

.signup-full-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.signup-full-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.signup-full-btn {
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  height: 50px;
}

.signup-full-btn:hover .btn-icon {
  transform: translateX(3px);
}

.signup-full-error {
  font-size: 13px;
  font-weight: 500;
  color: #EF4444;
  margin-top: 8px;
}

.signup-full-success {
  font-size: 15px;
  font-weight: 600;
  color: #059669;
  margin-top: 10px;
}

/* =============================================
   RESPONSIVE — Email Signup
   ============================================= */
@media (max-width: 767px) {
  .signup-full-field-wrap {
    flex-direction: column;
  }

  .signup-full-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--text-primary);
  padding: var(--space-4) 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 3px;
}

/* =============================================
   RESPONSIVE — Footer
   ============================================= */
@media (max-width: 767px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  padding: calc(68px + var(--space-6)) 0 var(--space-10);
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.legal-container h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.legal-container .legal-updated {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  font-style: italic;
}

.legal-container h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  margin-top: var(--space-4);
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-container h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  margin-top: var(--space-3);
  margin-bottom: 10px;
  line-height: 1.4;
}

.legal-container p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-container ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-container ul li {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-container ul li strong {
  color: var(--text-primary);
}

.legal-container a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(14, 165, 233, 0.4);
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.legal-container a:hover {
  color: var(--teal-hover);
}
