/* ============================================================
   THE MORNING SCRAMBLE — morningscramble.com
   Brand palette: BG_DARK #0a0e1e | TEAL #00bcbc | GOLD #ffb91e
   ============================================================ */

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

:root {
  --bg-dark:    #0a0e1e;
  --bg-mid:     #121a38;
  --bg-section: #0e1428;
  --bg-card:    #111828;
  --teal:       #00bcbc;
  --teal-dark:  #00828c;
  --gold:       #ffb91e;
  --gold-dark:  #c98e00;
  --white:      #ffffff;
  --light-gray: #c8d2e1;
  --subtle:     #3c5064;
  --series-bg:  #003c5a;
  --radius:     6px;
  --max-w:      1100px;
  --side-bar:   6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--light-gray);
  line-height: 1.65;
  font-size: 16px;
}

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Typography Helpers ───────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.body-text {
  font-size: 17px;
  color: var(--light-gray);
  margin-bottom: 18px;
  max-width: 720px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #00d8d8; color: var(--bg-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background .2s, color .2s;
}
.btn-secondary:hover { background: var(--gold); color: var(--bg-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--teal);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--teal); color: var(--bg-dark); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background .2s, color .2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--bg-dark); }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 30, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--subtle);
  height: 60px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--white);
}
.nav-brand:hover { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--light-gray);
  letter-spacing: .04em;
}
.nav-links a:hover { color: var(--teal); }

.btn-nav {
  background: var(--teal) !important;
  color: var(--bg-dark) !important;
  padding: 7px 18px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 700 !important;
}
.btn-nav:hover { background: #00d8d8 !important; }

/* ── Hero ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 140px 0 90px;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--bg-mid) 100%);
  text-align: center;
  overflow: hidden;
}

/* Side accent bars */
.hero-bar-left {
  position: absolute;
  top: 0; left: 0;
  width: var(--side-bar);
  height: 100%;
  background: var(--teal);
}
.hero-bar-right {
  position: absolute;
  top: 0; right: 0;
  width: var(--side-bar);
  height: 100%;
  background: var(--gold);
}

/* Top rule */
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: var(--side-bar); right: var(--side-bar);
  height: 4px;
  background: var(--teal);
}

.label-introducing {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 17px;
  color: var(--light-gray);
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.divider-teal {
  width: 380px;
  height: 2px;
  background: var(--teal-dark);
  margin: 0 auto 28px;
}

/* Series pill */
.series-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--series-bg);
  border-left: 4px solid var(--teal);
  padding: 14px 28px;
  border-radius: 3px;
  margin-bottom: 36px;
}
.series-pill span {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-thoughtline {
  margin-bottom: 28px;
}

.label-small {
  font-size: 15px;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.thoughtline-text {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .02em;
}

.hero-body {
  font-size: 18px;
  color: var(--light-gray);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-body em { color: var(--gold); font-style: italic; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Series Section ───────────────────────────────────────── */
#series {
  padding: 90px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--subtle);
}

#series h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 36px;
  max-width: 680px;
}

.series-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.series-stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* AI-Staff Commercial Playbook outcome stat */
.series-stat-outcome {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--series-bg) 0%, #001e30 100%);
  border: 1px solid var(--teal);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 4px;
}

.stat-equals {
  font-size: 48px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  opacity: .7;
}

.stat-outcome-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-outcome-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.2;
}

.stat-outcome-sub {
  font-size: 13px;
  color: var(--light-gray);
  font-style: italic;
  line-height: 1.4;
}

.stat-outcome-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
  margin-top: 4px;
}

a.series-stat-outcome {
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
a.series-stat-outcome:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
a.series-stat-outcome:hover .stat-outcome-cta { color: var(--gold); }

.series-themes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.theme-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 4px solid var(--teal);
}

.theme-card.theme-tmp  { border-color: #00bcbc; }
.theme-card.theme-cpd  { border-color: #1e50a0; }
.theme-card.theme-pl   { border-color: #e66414; }
.theme-card.theme-aug  { border-color: #783cc8; }

.theme-code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  background: var(--subtle);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.theme-card.theme-tmp  .theme-code { background: #003c5a; color: #00bcbc; }
.theme-card.theme-cpd  .theme-code { background: #0a1e3c; color: #82c8ff; }
.theme-card.theme-pl   .theme-code { background: #3c1a06; color: #ffdc64; }
.theme-card.theme-aug  .theme-code { background: #1e0a3c; color: #c8a0ff; }

.theme-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--light-gray);
}

/* ── Posts Section ────────────────────────────────────────── */
#posts {
  padding: 90px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--subtle);
}

#posts h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 40px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, transform .15s;
}
.post-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.post-theme {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 3px;
  align-self: flex-start;
}
.post-theme.tmp { background: #003c5a; color: #00bcbc; }
.post-theme.cpd { background: #0a1e3c; color: #82c8ff; }
.post-theme.pl  { background: #3c1a06; color: #ffdc64; }
.post-theme.aug { background: #1e0a3c; color: #c8a0ff; }

.post-week {
  font-size: 12px;
  color: var(--subtle);
  font-weight: 600;
  letter-spacing: .04em;
}

.post-hook {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
}

.post-excerpt {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
  flex: 1;
}

.post-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-top: auto;
  letter-spacing: .02em;
}
.post-link:hover { color: var(--gold); }

.post-card.post-placeholder {
  opacity: .55;
}

.posts-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── About Section ────────────────────────────────────────── */
#about {
  padding: 90px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

#about h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}

.mit-cert {
  font-size: 13px;
  color: var(--light-gray);
  margin-bottom: 24px;
  font-weight: 500;
}

.about-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.about-link:hover { background: var(--teal); color: var(--bg-dark); }

.about-quote {
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: var(--radius);
  margin-top: 32px;
}

.about-quote blockquote {
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-quote cite {
  font-size: 13px;
  color: var(--light-gray);
  font-style: normal;
  font-weight: 600;
}

/* ── Subscribe Section ────────────────────────────────────── */
#subscribe {
  padding: 90px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--subtle);
  text-align: center;
}

#subscribe h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px auto;
  max-width: 560px;
}

.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: var(--bg-dark);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.subscribe-form input:focus { border-color: var(--teal); }
.subscribe-form input::placeholder { color: var(--subtle); }

.form-note {
  font-size: 13px;
  color: var(--subtle);
  margin-top: 8px;
}
.form-note a { color: var(--teal); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  border-top: 4px solid var(--gold);
  padding: 48px 0 32px;
  text-align: center;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--teal);
}
footer::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: var(--gold);
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--light-gray);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--teal);
}
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: var(--subtle); }

.footer-copy {
  font-size: 12px;
  color: var(--subtle);
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg-mid);
  border: 1px solid var(--teal);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 44px 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--light-gray);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.modal-close:hover { color: var(--white); }

.modal h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 15px;
  color: var(--light-gray);
  margin-bottom: 28px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.modal-form input {
  padding: 13px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.modal-form input:focus { border-color: var(--teal); }
.modal-form input::placeholder { color: var(--light-gray); }
.modal-form .btn-primary { width: 100%; justify-content: center; }

/* ── Workshop Button ──────────────────────────────────────── */
.btn-workshop {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: 2px solid var(--subtle);
  transition: border-color .2s, color .2s;
}
.btn-workshop:hover { border-color: var(--white); color: var(--white); }

/* ── Nav Logo ─────────────────────────────────────────────── */
.nav-logo {
  height: 34px;
  width: auto;
  opacity: .85;
  vertical-align: middle;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

/* ── Ways to Connect ──────────────────────────────────────── */
#connect {
  padding: 90px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--subtle);
}

#connect h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.connect-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--subtle);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-decoration: none;
  transition: border-color .2s, transform .15s;
}
.connect-card:hover { border-color: var(--teal); transform: translateY(-2px); color: inherit; }
.connect-card.connect-calendar:hover { border-color: var(--gold); }

.connect-icon {
  font-size: 18px;
  font-weight: 900;
  color: var(--teal);
  background: var(--series-bg);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.connect-calendar .connect-icon { color: var(--gold); background: #3c2800; }

.connect-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  /* Black PNG → teal #00bcbc */
  filter: invert(56%) sepia(82%) saturate(608%) hue-rotate(138deg) brightness(97%) contrast(101%);
  opacity: .9;
}

.connect-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.connect-url {
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 4px;
}
.connect-calendar .connect-url { color: var(--gold); }
.connect-desc {
  font-size: 13px;
  color: var(--light-gray);
}

/* ── Nav logo link ────────────────────────────────────────── */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  opacity: 1;
}
.nav-logo-link:hover .nav-logo { opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 4px var(--teal)); }

/* ── Footer copyright link ────────────────────────────────── */
.footer-copy-link {
  color: var(--light-gray);
  font-weight: 600;
}
.footer-copy-link:hover { color: var(--teal); }

/* ── Footer logo ──────────────────────────────────────────── */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo {
  height: 36px;
  width: auto;
  opacity: .5;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer-logo-link:hover .footer-logo { opacity: .85; }

/* ── Footer contrast fixes ────────────────────────────────── */
.footer-copy { color: var(--light-gray); }

/* ── Subscribe section contrast fix ──────────────────────── */
.subscribe-form input::placeholder { color: var(--light-gray); }
.subscribe-form input { color: var(--white); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .series-stats {
    gap: 28px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .posts-cta {
    flex-direction: column;
  }

  .divider-teal {
    width: 240px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  #hero { padding: 120px 0 70px; }
}

/* ── Human Velocity Training ──────────────────────────────── */
#training {
  padding: 90px 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--subtle);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}

#training h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.training-tagline {
  font-size: 19px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.5;
}

.training-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 32px 0 28px;
  padding: 20px 24px;
  background: var(--bg-dark);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
}

.price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.price-detail {
  font-size: 14px;
  color: var(--light-gray);
  font-weight: 500;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: #ffd04a; color: var(--bg-dark); transform: translateY(-1px); }

.training-outcomes {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--subtle);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.outcome-icon {
  font-size: 18px;
  color: var(--gold);
  width: 36px;
  height: 36px;
  background: rgba(255, 185, 30, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .training-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Subscription Confirmation Modal ─────────────────────── */
.confirm-modal {
  border-top-color: var(--teal);
}

.confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 188, 188, .15);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-size: 26px;
  line-height: 54px;
  text-align: center;
  margin: 0 auto 20px;
}

.confirm-email-line {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
  word-break: break-all;
}

.confirm-note {
  font-size: 14px;
  color: var(--light-gray);
  margin-top: 12px;
  margin-bottom: 28px;
  opacity: .85;
}

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