/* ── Comms Stack — Course 0: Claude Code Kickstart ───────────── */

/* ── Google Fonts loaded in <head> of each HTML file ─────────── */

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

body {
  font-family: 'Open Sans', sans-serif;
  background: #F8FAFC;
  color: #334155;
  line-height: 1.6;
}

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

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1E293B;
}

.logo-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #64748B;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: #1E293B; }

/* ── Progress dots (module pages) ────────────────────────────── */
.progress-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
  transition: background 0.2s;
}

.progress-dot.done   { background: #16A34A; }
.progress-dot.active { background: #1E40AF; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: #1E40AF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}

.btn-primary:hover { background: #1d3a9e; transform: translateY(-1px); }

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 18px;  font-size: 13px; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #1E40AF;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid #1E40AF;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  padding: 14px 32px;
  font-size: 15px;
}

.btn-secondary:hover { background: #EFF6FF; }

/* ── Breadcrumb bar ───────────────────────────────────────────── */
.breadcrumb-bar {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  padding: 9px 0;
}

.breadcrumb-bar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1;
}

.breadcrumb-link {
  color: #1E40AF;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-link:hover { text-decoration: underline; }

.breadcrumb-sep {
  color: #94A3B8;
  font-size: 14px;
  user-select: none;
}

.breadcrumb-current { color: #64748B; }

/* ── Jump-to-module dropdown (lives inside the breadcrumb bar) ─ */
.breadcrumb-jump {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  color: #64748B;
  line-height: 1;
}

.breadcrumb-jump-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748B;
}

.breadcrumb-jump-select {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1E293B;
  background: #fff;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  padding: 4px 26px 4px 10px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 7px;
}

.breadcrumb-jump-select:hover { border-color: #94A3B8; }

.breadcrumb-jump-select:focus {
  outline: 2px solid #1E40AF;
  outline-offset: 1px;
  border-color: #1E40AF;
}

@media (max-width: 640px) {
  .breadcrumb-jump-label { display: none; }
}

/* ── Hero Section (course landing page) ──────────────────────── */
.hero {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  padding: 64px 0 72px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06B6D4;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #1E293B;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title .highlight { color: #1E40AF; }

.hero-subtitle {
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.meta-pill {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-pill span { color: #1E293B; }

/* ── Hero email gate form (landing page) ──────────────────────── */
.hero-gate {
  max-width: 440px;
  margin: 0 auto;
}

.hero-gate-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #64748B;
  margin-bottom: 12px;
}

.hero-gate-row {
  display: flex;
  gap: 10px;
}

.hero-gate-row input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  background: #F8FAFC;
  color: #1E293B;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}

.hero-gate-row input[type="email"]::placeholder { color: #94A3B8; }
.hero-gate-row input[type="email"]:focus {
  outline: none;
  border-color: #06B6D4;
}

#hero-gate-status {
  margin-top: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.5;
  display: none;
  text-align: left;
}

#hero-gate-status.cs-error   { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
#hero-gate-status.cs-success { display: block; background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
#hero-gate-status.cs-info    { display: block; background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }

.hero-gate-optin {
  display: none;
  margin-top: 12px;
}

.hero-gate-optin-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ── Body Sections ────────────────────────────────────────────── */
.section-white    { background: #FFFFFF; padding: 80px 0; }
.section-offwhite { background: #F8FAFC; padding: 80px 0; }

.section-eyebrow {
  display: inline-block;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #06B6D4;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1E293B;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #64748B;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── Cards ────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.card-number {
  display: inline-block;
  background: #EFF6FF;
  color: #1E40AF;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1E293B;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* ── Curriculum ────────────────────────────────────────────────── */
.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curriculum-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.curriculum-card:hover {
  border-color: #1E40AF;
  box-shadow: 0 4px 12px rgba(30,64,175,0.1);
}

.curriculum-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1E40AF;
  min-width: 28px;
}

.curriculum-info { flex: 1; }

.curriculum-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1E293B;
  margin-bottom: 2px;
}

.curriculum-deliverable {
  font-size: 13px;
  color: #64748B;
}

.curriculum-arrow {
  color: #1E40AF;
  font-size: 18px;
}

/* ── Footer ────────────────────────────────────────────────────── */
.site-footer {
  background: #1E293B;
  padding: 32px 0;
  border-top: 1px solid #334155;
}

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

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #06B6D4;
  text-decoration: none;
}

.footer-link:hover { text-decoration: underline; }

.footer-sep {
  color: #475569;
  font-size: 14px;
}

.footer-bug-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #64748B;
  text-decoration: none;
}

.footer-bug-link:hover { color: #94A3B8; text-decoration: underline; }

/* ── Module hero ───────────────────────────────────────────────── */
.module-hero {
  background: #334155;
  padding: 24px 0 28px;
  text-align: center;
  color: #fff;
}

.module-label {
  display: inline-block;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #06B6D4;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.module-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.module-subtitle {
  font-size: 17px;
  color: #94A3B8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Module content area ───────────────────────────────────────── */
.module-content {
  padding: 56px 0 72px;
}

/* ── "What You're Building" banner ────────────────────────────── */
.building-banner {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-left: 4px solid #06B6D4;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 44px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.building-banner-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.building-banner-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06B6D4;
  margin-bottom: 4px;
}

.building-banner-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #1E293B;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Step content ──────────────────────────────────────────────── */
.module-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1E293B;
  margin: 40px 0 14px;
}

.module-content h2:first-of-type { margin-top: 0; }

.module-content p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

.module-content ul,
.module-content ol {
  padding-left: 22px;
  margin-bottom: 20px;
}

.module-content li {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* ── Step list ─────────────────────────────────────────────────── */
.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  counter-reset: step;
}

.step-list > li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-list > li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1E40AF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-list > li .step-body {
  flex: 1;
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
}

.step-list > li .step-body strong {
  color: #1E293B;
}

/* ── Your call callout ─────────────────────────────────────────── */
.your-call {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 4px solid #F59E0B;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0 24px;
  font-size: 15px;
  color: #1E293B;
  line-height: 1.6;
}

.your-call strong {
  color: #92400E;
  font-family: 'Poppins', sans-serif;
}

/* ── Note callout ──────────────────────────────────────────────── */
.note {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0 24px;
  font-size: 14px;
  color: #1E40AF;
  line-height: 1.6;
}

/* ── Checklist (before you start) ─────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  padding: 6px 0;
  line-height: 1.5;
}

.checklist li::before {
  content: '☐';
  color: #64748B;
  font-size: 16px;
  flex-shrink: 0;
}

.checklist li code {
  font-size: inherit;
}

/* ── Prompt blocks ──────────────────────────────────────────────── */
.prompt-block {
  background: #0F172A;
  border: 1px solid #06B6D4;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.prompt-block-label {
  color: #06B6D4;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.prompt-block-code {
  color: #E2E8F0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-wrap;
  margin: 0 0 16px 0;
  word-break: break-word;
}

.prompt-copy-btn {
  background: transparent;
  border: 1px solid #06B6D4;
  color: #06B6D4;
  border-radius: 6px;
  padding: 6px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.prompt-copy-btn:hover { background: #06B6D4; color: #0F172A; }

/* ── "What You've Built So Far" card ───────────────────────────── */
.built-so-far {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: 12px;
  padding: 28px 24px;
  margin: 48px 0 32px;
}

.built-so-far-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1E293B;
  margin-bottom: 16px;
}

.built-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.built-checklist li {
  padding: 6px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

.built-done    { color: #16A34A !important; }
.built-current { color: #1E40AF !important; font-weight: 600; }
.built-upcoming{ color: #94A3B8 !important; }

/* ── Module navigation ─────────────────────────────────────────── */
.module-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0;
  border-top: 1px solid #E2E8F0;
  gap: 16px;
  flex-wrap: wrap;
}

.module-nav-back {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #64748B;
  text-decoration: none;
}

.module-nav-back:hover { color: #1E293B; }

/* ── You Built It page ─────────────────────────────────────────── */
.ybi-hero {
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  padding: 32px 0 36px;
  text-align: center;
}

.ybi-celebration {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
}

.ybi-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #1E293B;
  margin-bottom: 12px;
  line-height: 1.1;
}

.ybi-course-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1E40AF;
  margin-bottom: 16px;
}

.ybi-subtitle {
  font-size: 17px;
  color: #64748B;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Full deliverable checklist (YBI page) ──────────────────────── */
.deliverable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverable-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #334155;
  line-height: 1.5;
}

.deliverable-list li:last-child { border-bottom: none; }

.deliverable-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #16A34A;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Share section (YBI page) ───────────────────────────────────── */
.share-section {
  text-align: center;
}

.share-section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1E293B;
  margin-bottom: 10px;
}

.share-section > p {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 28px;
}

.caption-box {
  background: #0F172A;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  margin-bottom: 20px;
}

.caption-box pre {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #E2E8F0;
  white-space: pre-wrap;
  line-height: 1.7;
  margin: 0 0 18px;
}

.copy-caption-btn {
  background: transparent;
  border: 1px solid #06B6D4;
  color: #06B6D4;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.copy-caption-btn:hover { background: #06B6D4; color: #0F172A; }

.share-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.share-tip {
  font-size: 14px;
  color: #64748B;
  margin: 0;
}

/* ── Demo link ─────────────────────────────────────────────────── */
.demo-section {
  margin-top: 40px;
  text-align: center;
}

.demo-section p {
  font-size: 14px;
  color: #64748B;
  margin-top: 10px;
}

/* ── Make It Yours page ─────────────────────────────────────────── */
.miy-hero {
  background: #334155;
  padding: 24px 0 28px;
  text-align: center;
  color: #fff;
}
.miy-hero .section-eyebrow {
  background: rgba(6,182,212,0.15);
  border: 1px solid rgba(6,182,212,0.4);
  color: #06B6D4;
}
.miy-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.miy-hero .miy-subtitle {
  font-size: 17px;
  color: #94A3B8;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.miy-scenario {
  padding: 32px 0;
  border-bottom: 1px solid #E2E8F0;
}
.miy-scenario:last-child { border-bottom: none; }
.miy-scenario-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #1E293B;
  margin-bottom: 6px;
}
.miy-scenario-who {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 14px;
  line-height: 1.6;
  font-style: italic;
}
.miy-think-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.miy-think-list li {
  font-size: 15px;
  color: #334155;
  line-height: 1.65;
  padding: 4px 0 4px 22px;
  position: relative;
}
.miy-think-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #06B6D4;
  font-weight: 600;
}
.miy-describe {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 3px solid #1E40AF;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin-top: 4px;
}
.miy-describe strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #1E40AF;
}

/* ── Next module button ────────────────────────────────────────── */
.next-module-btn {
  display: inline-block;
  background: #1E40AF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}

.next-module-btn:hover { background: #1d3a9e; transform: translateY(-1px); }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-gate-row { flex-direction: column; }
  .header-nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .module-nav { flex-direction: column; align-items: flex-start; }
  .share-actions { flex-direction: column; align-items: stretch; }
  .share-actions a, .share-actions button { text-align: center; }
}
