/* =====================================================================
   AI for New Founders — Global Stylesheet
   Pure CSS, mobile-first. Shared across all pages.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --green:        #2D4F3C;
  --green-dark:   #1E3829;
  --green-light:  #3A6B50;
  --yellow:       #FFD700;
  --yellow-dark:  #E6C200;
  --white:        #FFFFFF;
  --off-white:    #F8F8F4;
  --ink:          #1A2620;
  --muted:        #5B6B62;
  --line:         #E4EAE6;
  --shadow:       0 10px 30px rgba(30, 56, 41, 0.10);
  --shadow-lg:    0 20px 50px rgba(30, 56, 41, 0.18);
  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--yellow); }
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-yellow { background: var(--yellow); color: var(--green-dark); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--green); padding: 10px 14px; }
.btn-ghost:hover { transform: none; box-shadow: none; color: var(--green-dark); }
.btn.disabled { opacity: .55; pointer-events: none; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--green);
  display: flex; align-items: center; gap: 9px;
}
.logo .dot {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green); color: var(--yellow);
  display: grid; place-items: center; font-size: 1rem; font-weight: 900;
  font-family: 'Inter', sans-serif; overflow: hidden;
}
.logo .dot img { width: 26px; height: 26px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 0.96rem; color: var(--ink); transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-links .btn { padding: 10px 20px; font-size: 0.92rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: .25s; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 10px 22px 20px; border-bottom: 1px solid var(--line); background: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .btn { margin-top: 10px; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 360px at 85% 10%, rgba(255,215,0,0.12), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; margin: 16px 0 18px; }
.hero h1 .hl { color: var(--yellow); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); max-width: 540px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.hero-trust b { color: var(--yellow); }

/* Video placeholder (shared) */
.video-ph {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--green-dark), #16271d);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  overflow: hidden;
}
.video-ph .play {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--yellow); color: var(--green-dark);
  display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(255,215,0,0.6);
  animation: pulse 2.1s infinite;
  cursor: pointer;
}
.video-ph .play svg { margin-left: 4px; }
.video-ph .vlabel {
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.55);
  font-size: 0.85rem; letter-spacing: .02em;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,215,0,0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(255,215,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0); }
}

/* =====================================================================
   JOURNEY STRIP (5 stages)
   ===================================================================== */
.journey { background: var(--off-white); border-bottom: 1px solid var(--line); }
.journey-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
}
.journey-grid.cols-7 { grid-template-columns: repeat(7, 1fr); }
.journey-step { padding: 30px 18px; text-align: center; position: relative; }
.journey-step:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 28px; bottom: 28px; width: 1px; background: var(--line);
}
.journey-num {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1.6rem; color: var(--yellow-dark);
  -webkit-text-stroke: 0; line-height: 1; margin-bottom: 8px;
}
.journey-step h4 { font-size: 1.02rem; margin-bottom: 4px; }
.journey-step p { font-size: 0.85rem; color: var(--muted); }

/* =====================================================================
   JOURNEY SECTION  (The Founder's Hero's Journey)
   ===================================================================== */
.journey-hero { background: var(--white); padding: 80px 5%; }
.journey-hero .jh-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.journey-hero h2 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: 12px;
}
.journey-hero .jh-sub {
  margin-top: 14px;
  font-size: 1.15rem;
  color: var(--muted);
}

/* Carousel wrapper + arrows (arrows shown on mobile only) */
.jc-wrap { position: relative; }
.jc-arrow {
  display: flex;
  position: absolute; top: 130px; transform: translateY(-50%); z-index: 6;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #fff; border: none;
  align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 6px 18px rgba(30,56,41,0.28);
  transition: opacity .2s ease, background .2s ease;
}
.jc-arrow:hover { background: var(--green-dark); }
.jc-arrow.prev { left: 2px; }
.jc-arrow.next { right: 2px; }
.jc-arrow.is-hidden { opacity: 0; pointer-events: none; }

/* Horizontal scroll wrapper (mobile); centred when it fits (desktop) */
.jc-scroll { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 6px; scroll-behavior: smooth; }
.jc-scroll::-webkit-scrollbar { display: none; }
.jc-inner { display: flex; flex-direction: column; width: max-content; margin: 0 auto; }

/* Circle row + label row share the same column grid so labels line up */
.jc-track { display: flex; gap: 16px; align-items: center; }
.jc-labels { display: flex; gap: 16px; align-items: flex-start; margin-top: 10px; }
.jc-col, .jl-col { flex: 0 0 210px; display: flex; justify-content: center; }
.jl-col { flex-direction: column; align-items: center; gap: 4px; text-align: center; }

/* The circles */
.jc {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(160deg, var(--green-light) 0%, var(--green) 100%); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 22px; gap: 6px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.jc:hover { transform: scale(1.04); box-shadow: 0 16px 40px rgba(30,56,41,0.28); }
.jc.big { width: 210px; height: 210px; box-shadow: 0 0 0 3px var(--yellow), 0 14px 36px rgba(30,56,41,0.30); }
.jc-num { font-size: 0.75rem; font-weight: 600; letter-spacing: .12em; color: rgba(255,255,255,0.4); }
.jc-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; line-height: 1.15; color: #fff; }
.jc-desc { font-size: 0.78rem; line-height: 1.32; color: rgba(255,255,255,0.6); }

/* Arrows + labels below circles 4 and 5 */
.jl-arrow { display: block; }
.jl-text { font-size: 0.82rem; color: #aaa; line-height: 1.3; max-width: 200px; }

/* Caption */
.jc-caption { margin: 50px auto 0; color: var(--muted); font-size: 1.05rem; max-width: 900px; text-align: center; }
.jc-caption b { color: var(--ink); }

@media (max-width: 760px) {
  .jc-arrow { display: flex; }
  .jc-scroll { scroll-snap-type: x mandatory; }
  .jc-col { scroll-snap-align: center; }
}

@media (max-width: 620px) {
  .journey-hero { padding: 60px 5%; }
  .jc { width: 140px; height: 140px; padding: 0 16px; gap: 4px; }
  .jc-title { font-size: 0.9rem; }
  .jc-desc { font-size: 0.72rem; }
  .jc.big { width: 162px; height: 162px; }
  .jc-col, .jl-col { flex-basis: 162px; }
  .jc-arrow { top: 108px; }
}

/* =====================================================================
   FEATURE / INCLUDED CARDS
   ===================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.cards-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0d6; }
.card-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(160deg, var(--green), var(--green-light));
  color: var(--yellow);
  display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 18px;
}
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* Full-bleed photo cards with text overlaid on the image */
.card.photo-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: transparent;
}
.photo-card .card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .45s ease;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top,
    rgba(16,28,22,0.94) 0%,
    rgba(16,28,22,0.70) 34%,
    rgba(16,28,22,0.20) 66%,
    rgba(16,28,22,0) 100%);
}
.photo-card .card-text {
  position: relative;
  z-index: 2;
  padding: 24px 26px 26px;
}
.photo-card h3 { color: var(--white); }
.photo-card p { color: rgba(255,255,255,0.94); }
.photo-card:hover .card-bg { transform: scale(1.06); }

/* =====================================================================
   CURRICULUM
   ===================================================================== */
.curriculum-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 44px; }
.curriculum-col h3 {
  font-size: 1.35rem; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.curriculum-col .col-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-light);
}
.curriculum-col .col-count { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }
.mod-list { display: flex; flex-direction: column; gap: 10px; }
.mod-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
a.mod-item:hover { transform: translateX(4px); border-color: var(--green-light); box-shadow: var(--shadow); }
.mod-no {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 9px;
  background: var(--off-white); color: var(--green);
  display: grid; place-items: center; font-weight: 700; font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}
.mod-item.is-free .mod-no { background: var(--green); color: var(--yellow); }
.mod-title { font-weight: 600; font-size: 0.97rem; flex: 1; }
.badge-free {
  font-size: 0.66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--yellow); color: var(--green-dark);
  padding: 4px 9px; border-radius: 999px;
}
.lock { color: var(--muted); font-size: 0.95rem; }

/* =====================================================================
   GROWTH HIGHLIGHT (dark green band)
   ===================================================================== */
.highlight {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
}
.highlight h2 { color: var(--white); }
.highlight .section-sub { color: rgba(255,255,255,0.82); }
.highlight-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center; }
.highlight-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.highlight-list li { display: flex; gap: 13px; align-items: flex-start; }
.highlight-list .tick {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--yellow); color: var(--green-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 0.85rem; margin-top: 2px;
}
.highlight-list .ht b { display: block; color: var(--white); }
.highlight-list .ht span { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
}
.stat-card .big { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 3.4rem; color: var(--yellow); line-height: 1; }
.stat-card .lbl { color: rgba(255,255,255,0.85); margin-top: 8px; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
.pricing-grid.cols-6 { grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* 4 tiers in a clean single row on desktop (no empty cell) */
@media (min-width: 981px) {
  .pricing-grid.cols-6 { grid-template-columns: repeat(4, 1fr); }
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.featured { border-color: var(--green); box-shadow: var(--shadow); }
.price-card.featured::before {
  content: "Most Popular";
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--green-dark);
  font-size: 0.72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.price-name { font-size: 1.25rem; margin-bottom: 2px; }
.price-tier { font-size: 0.74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--green-light); margin-bottom: 8px; }
.price-desc { color: var(--muted); font-size: 0.92rem; min-height: 42px; }
.price-amt { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 2.6rem; color: var(--green); margin: 16px 0 4px; }
.price-amt small { font-size: 0.95rem; color: var(--muted); font-weight: 500; font-family: 'Inter', sans-serif; }
.price-feats { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 26px; }
.price-feats li { display: flex; gap: 10px; font-size: 0.94rem; color: var(--ink); }
.price-feats .tick { color: var(--green-light); font-weight: 800; }
.price-card .btn { margin-top: auto; width: 100%; }
.coming-soon {
  text-align: center; font-weight: 700; color: var(--green);
  border: 2px dashed var(--line); border-radius: 999px; padding: 13px;
  margin-top: auto;
}

/* =====================================================================
   DISCOVERY
   ===================================================================== */
.discovery { background: var(--off-white); }
.calendly-ph {
  margin-top: 36px;
  background: var(--white);
  border: 2px dashed #cfe0d6;
  border-radius: var(--radius);
  padding: 60px 30px;
  text-align: center;
}
.calendly-ph .cal-icon { font-size: 2.6rem; margin-bottom: 12px; }
.calendly-ph h3 { font-size: 1.4rem; margin-bottom: 8px; }
.calendly-ph p { color: var(--muted); max-width: 460px; margin: 0 auto 22px; }

/* Inline cal.com scheduler embed */
.cal-embed {
  margin: 36px auto 0;
  max-width: 940px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cal-embed #cal-inline { width: 100%; min-height: 640px; }
.cal-fallback { margin-top: 20px; color: var(--muted); font-size: 0.95rem; }
.cal-fallback .btn { margin-top: 12px; }
@media (max-width: 620px) {
  .cal-embed { padding: 6px; }
  .cal-embed #cal-inline { min-height: 560px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 50px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer .logo { color: var(--white); }
.footer .logo .dot { background: var(--green-light); color: var(--yellow); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-copy { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; text-align: center; }

/* =====================================================================
   DASHBOARD
   ===================================================================== */
.dash-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white); padding: 46px 0;
}
.dash-banner h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.dash-banner p { color: rgba(255,255,255,0.85); margin-top: 6px; }
.dash-progress {
  margin-top: 22px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius);
  padding: 22px 24px; max-width: 560px;
}
.progress-row { display: flex; justify-content: space-between; font-size: 0.92rem; margin-bottom: 10px; }
.progress-row b { color: var(--yellow); }
.bar { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.18); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 999px; background: var(--yellow); width: 0; transition: width .6s ease; }

.dash-section { padding: 50px 0 0; }
.dash-section:last-of-type { padding-bottom: 70px; }
.dash-section h2 { font-size: 1.5rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.dash-section .sec-meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.module-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0d6; }
.mc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.mc-no {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(160deg, var(--green), var(--green-light));
  color: var(--yellow); display: grid; place-items: center; font-weight: 800;
}
.pill {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.pill.not-started { background: var(--off-white); color: var(--muted); }
.pill.in-progress { background: #FFF4CC; color: #8A6D00; }
.pill.completed { background: #DCF2E4; color: #1E6B43; }
.module-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.module-card p { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 16px; }
.module-card .mc-go { font-weight: 600; color: var(--green); font-size: 0.92rem; }

/* =====================================================================
   DASHBOARD — CAROUSEL TRACKS (slide cards)
   ===================================================================== */
.track { margin-top: 46px; }
.track-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.track-head .bar-tag { flex: 0 0 6px; width: 6px; height: 42px; background: var(--yellow); border-radius: 6px; }
.track-head h2 { font-size: 1.5rem; line-height: 1.1; margin: 0; }
.track-head .count { color: var(--muted); font-size: 0.88rem; }
.track-toggle {
  margin-left: auto; flex: 0 0 auto;
  background: var(--white); border: 1px solid var(--line); color: var(--green-dark);
  font-weight: 700; font-size: 0.9rem; font-family: 'Inter', sans-serif;
  padding: 10px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.track-toggle:hover { background: var(--yellow); border-color: var(--yellow); color: var(--green-dark); box-shadow: 0 8px 20px rgba(255,215,0,0.4); }

.row-wrap { position: relative; }

/* Expanded grid view — every module visible at a glance */
.row.is-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 20px; overflow: visible;
}
.row.is-grid .slide { flex: none; width: auto; height: 360px; scroll-snap-align: none; }
.row.is-grid .slide[aria-hidden="true"] { display: none; }
.row-wrap.is-expanded .row-arrow { display: none; }
.row {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 6px 4px 22px; scroll-snap-type: none;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
}
.row::-webkit-scrollbar { display: none; }

/* Slide card — gradient fills the whole card, text overlaid */
.slide {
  position: relative; scroll-snap-align: start;
  flex: 0 0 270px; width: 270px; height: 380px;
  border-radius: 20px; overflow: hidden; display: block;
  box-shadow: 0 8px 30px rgba(30,56,41,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.slide:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.slide-bg { position: absolute; inset: 0; }
.slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,12,0.92) 0%, rgba(8,16,12,0.55) 32%, rgba(8,16,12,0.08) 62%, rgba(8,16,12,0) 100%);
}
.slide-num {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--green-dark); color: var(--white);
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-family: 'Inter', sans-serif;
}
.slide.is-free .slide-num { background: var(--yellow); color: var(--green-dark); }
.slide-pill {
  position: absolute; top: 16px; right: 14px; z-index: 3;
  font-size: 0.66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.slide-pill.free { background: var(--yellow); color: var(--green-dark); }
.slide-pill.in-progress { background: #FFF4CC; color: #8A6D00; }
.slide-pill.completed { background: #DCF2E4; color: #1E6B43; }
.slide-pill.locked { background: rgba(255,255,255,0.9); color: var(--green-dark); }
.slide-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 20px 20px; display: flex; flex-direction: column; gap: 7px;
}
.slide-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.18rem; line-height: 1.16; color: #fff; }
.slide-desc { color: rgba(255,255,255,0.82); font-size: 0.83rem; line-height: 1.45; }
.slide-link { font-weight: 700; font-size: 0.85rem; color: var(--yellow); margin-top: 3px; transition: transform .2s; }
.slide:hover .slide-link { transform: translateX(3px); }

.row-arrow {
  position: absolute; top: calc(50% - 11px); transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  background: #fff; color: var(--green-dark); border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(30,56,41,0.16);
  transition: background .2s, color .2s, opacity .25s, transform .15s, box-shadow .2s;
}
.row-arrow:hover { background: var(--yellow); color: var(--green-dark); border-color: var(--yellow); box-shadow: 0 12px 28px rgba(255,215,0,0.45); }
.row-arrow:active { transform: translateY(-50%) scale(.94); }
.row-arrow.prev { left: -14px; }
.row-arrow.next { right: -14px; }
.row-arrow.is-hidden { opacity: 0; pointer-events: none; }
@media (max-width: 700px) {
  .row-arrow { width: 40px; height: 40px; }
  .row-arrow.prev { left: 2px; }
  .row-arrow.next { right: 2px; }
}

/* =====================================================================
   MODULE PAGE
   ===================================================================== */
.mod-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: var(--white); padding: 50px 0 60px; }
.mod-hero .crumb { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.mod-hero .crumb a:hover { color: var(--yellow); }
.mod-hero-grid { display: grid; grid-template-columns: 0.5fr 1.5fr; gap: 36px; align-items: center; }
.mod-hero .tag { color: var(--yellow); font-weight: 700; font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase; }
.mod-hero h1 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 10px 0 12px; }
.mod-hero p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.mod-body { padding: 46px 0 80px; }
.mod-prog-strip {
  display: flex; align-items: center; gap: 16px;
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 22px; margin-bottom: 34px;
}
.mod-prog-strip .bar { flex: 1; background: var(--line); }
.mod-prog-strip .bar-fill { background: var(--green); }
.mod-prog-strip .lbl { font-size: 0.9rem; color: var(--muted); white-space: nowrap; }

.learn-box {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; margin-bottom: 30px;
}
.learn-box h3 { font-size: 1.3rem; margin-bottom: 18px; }
.learn-list { display: flex; flex-direction: column; gap: 14px; }
.learn-list li { display: flex; gap: 13px; align-items: flex-start; }
.learn-list .tick {
  flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: var(--yellow);
  display: grid; place-items: center; font-weight: 800; font-size: 0.78rem; margin-top: 2px;
}
/* Founder examples (module pages) */
.founders-intro { color: var(--muted); margin: -6px 0 22px; font-size: 0.98rem; }

/* ---- Founders responsive grid ---- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
  padding: 4px 0 6px;
}
.founder {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
}
.founder .f-photo {
  position: relative; flex: 0 0 52px; width: 52px; height: 52px;
  border-radius: 50%; overflow: hidden;
  background: linear-gradient(160deg, var(--green-light), var(--green));
}
.founder .f-photo::before {
  content: attr(data-initials);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.92rem;
}
.founder .f-photo img {
  position: relative; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.founder b { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 3px; }
.founder .f-stage { color: var(--green-light); font-weight: 600; }
.founder .f-worth {
  display: inline-block; vertical-align: middle;
  background: var(--yellow); color: var(--green-dark);
  font-size: 0.72rem; font-weight: 700; line-height: 1.2;
  padding: 2px 9px; border-radius: 999px; margin-left: 6px;
  white-space: nowrap;
}
.founder span { display: block; color: var(--muted); font-size: 0.88rem; line-height: 1.42; }
@media (max-width: 640px) {
  .founders-grid { grid-template-columns: 1fr; }
  .mod-prog-strip { flex-direction: column; align-items: stretch; gap: 10px; }
  .mod-prog-strip .lbl { white-space: normal; }
  .mod-prog-strip .bar { flex: none; width: 100%; }
}

.mod-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.mod-actions-hint { color: var(--muted); font-size: 0.9rem; margin: 0 2px 34px; }

/* Single upsell card (after the free content) */
.lesson-upsell {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
  margin-bottom: 34px;
}
.lesson-upsell h3 { color: var(--white); font-size: 1.5rem; margin: 10px 0 10px; }
.lesson-upsell p { color: rgba(255,255,255,0.86); font-size: 1rem; max-width: 640px; }
.upsell-points { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }
.upsell-points li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,0.92); font-size: 0.96rem; }
.upsell-points .tick {
  flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow); color: var(--green-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 0.72rem; margin-top: 1px;
}
.upsell-next { margin-top: 16px; color: rgba(255,255,255,0.7); font-size: 0.88rem; }

.mod-navbtns { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 26px; }
.mod-navbtns .nb { max-width: 48%; }
.mod-navbtns .nb small { display: block; font-size: 0.74rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.mod-navbtns .nb b { font-weight: 600; color: var(--green); font-size: 0.96rem; }
.mod-navbtns .nb.next { text-align: right; margin-left: auto; }
.mod-navbtns .nb.disabled { opacity: .4; pointer-events: none; }

/* Upgrade banner (trial page) */
.upgrade-banner {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--green-dark);
  border-radius: var(--radius); padding: 28px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-bottom: 34px;
}
.upgrade-banner h3 { color: var(--green-dark); font-size: 1.3rem; }
.upgrade-banner p { color: rgba(30,56,41,0.85); font-size: 0.96rem; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .highlight-grid { grid-template-columns: 1fr; gap: 32px; }
  .mod-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .mod-hero-media { order: -1; }
  .curriculum-cols { grid-template-columns: 1fr; gap: 34px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-grid.cols-7 { grid-template-columns: repeat(3, 1fr); }
  .journey-step:nth-child(odd)::after { display: none; }
  .cards-grid, .cards-grid.cols-5, .pricing-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid.cols-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .cards-grid, .cards-grid.cols-5, .pricing-grid, .module-grid, .journey-grid { grid-template-columns: 1fr; }
  .pricing-grid.cols-6 { grid-template-columns: 1fr; }
  .journey-grid.cols-7 { grid-template-columns: repeat(2, 1fr); }
  .journey-step::after { display: none !important; }

  /* Hero */
  .hero { padding: 56px 0 60px; }
  .hero h1 { font-size: 2.05rem; line-height: 1.15; margin: 12px 0 16px; }
  .hero-sub { font-size: 1.05rem; }
  .hero-ctas, .mod-actions { flex-direction: column; }
  .hero-ctas .btn, .mod-actions .btn { width: 100%; }
  .hero-trust { flex-wrap: wrap; justify-content: center; text-align: center; }

  /* Section headings */
  .section-title { font-size: 1.75rem; }
  .section-sub { font-size: 0.98rem; }

  /* Photo cards — full-width, compact, readable overlay */
  .cards-grid { margin-top: 28px; gap: 16px; }
  .card.photo-card { min-height: 230px; }
  .photo-card .card-bg { object-position: center 28%; }
  .photo-card .card-text { padding: 20px 20px 22px; }
  .photo-card h3 { font-size: 1.18rem; }
  .photo-card p { font-size: 0.92rem; }
  .photo-card::after {
    background: linear-gradient(to top,
      rgba(16,28,22,0.96) 0%,
      rgba(16,28,22,0.78) 32%,
      rgba(16,28,22,0.28) 62%,
      rgba(16,28,22,0) 100%);
  }

  /* Pricing readability */
  .price-amt { font-size: 2.3rem; }
  .price-name { font-size: 1.15rem; }

  /* Carousel slides — smaller so a card + a peek of the next fits */
  .row { gap: 14px; }
  .slide { flex-basis: 248px; width: 248px; height: 344px; }
  .slide-title { font-size: 1.18rem; }
  .slide-desc { font-size: 0.86rem; }

  /* Pricing + highlight stat */
  .price-card { padding: 28px 22px; }
  .stat-card { padding: 28px; }
  .stat-card .big { font-size: 2.8rem; }
  .upgrade-banner { padding: 24px; flex-direction: column; text-align: center; }
  .upgrade-banner .btn { width: 100%; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .container { padding: 0 15px; }
  .hero h1 { font-size: 1.85rem; }
  .slide { flex-basis: 230px; width: 230px; height: 326px; }
  .mod-navbtns { flex-direction: column; }
  .mod-navbtns .nb, .mod-navbtns .nb.next { max-width: 100%; text-align: left; margin-left: 0; }
}
