/* ==========================================================================
   Vibe Coding PH — Sales Funnel Design System
   Inspired by AI Profit System, ThetiuMedia, & Yujnu Noura
   ========================================================================== */

:root {
  --bg-dark: #09090c;
  --bg-surface: #121218;
  --bg-surface-elevated: #181822;
  --bg-surface-hover: #1e1e2c;
  --text-white: #ffffff;
  --text-paper: #f4efe6;
  --text-muted: #9c9588;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-prominent: rgba(255, 255, 255, 0.16);
  --primary-red: #e5421e;
  --primary-red-hover: #ff5733;
  --primary-red-glow: rgba(229, 66, 30, 0.35);
  --electric-green: #98f477;
  --electric-green-glow: rgba(152, 244, 119, 0.3);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
}

/* Base sales-page overrides */
body.sales-page {
  background-color: var(--bg-dark);
  color: var(--text-paper);
  font-family: var(--font-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sales-page .wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.sales-page a {
  color: inherit;
  text-decoration: none;
}

/* Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(152, 244, 119, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(152, 244, 119, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(152, 244, 119, 0); }
}

@keyframes flame-glow {
  0%, 100% { opacity: 0.7; filter: blur(40px); }
  50% { opacity: 0.9; filter: blur(55px); }
}

/* Top Announcement Strip */
.review-note {
  background: #12121a;
  border-bottom: 1px solid var(--border-subtle);
  color: #d1cbc0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(1200px, 100%);
  margin-inline: auto;
  gap: 16px;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 66, 30, 0.15);
  border: 1px solid rgba(229, 66, 30, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.top-countdown-label {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  color: #ff8566;
}

.top-timer-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  color: #fff;
  font-weight: 800;
}

.top-timer-display b {
  color: var(--electric-green);
  font-weight: 800;
}

.top-timer-display .sep {
  color: rgba(255, 255, 255, 0.4);
}

.live-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--electric-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* Common Countdown Timer Styles */
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.timer-box {
  background: #0b0b10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.timer-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 850;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.timer-box span {
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--electric-green);
  margin-top: 3px;
}

.timer-colon {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

/* Hero Countdown Strip */
.hero-countdown-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(19, 19, 28, 0.85);
  border: 1px solid rgba(229, 66, 30, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin: 18px 0 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 66, 30, 0.12);
}

.countdown-tagline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  color: #ff8566;
}

/* Pricing Countdown Card */
.pricing-countdown-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #151520 0%, #1c1824 100%);
  border: 1px solid rgba(229, 66, 30, 0.35);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  margin-bottom: 36px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 66, 30, 0.12);
}

.pricing-countdown-copy h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 6px;
}

.pricing-countdown-copy p {
  font-size: 13px;
  color: #aba497;
  margin: 0;
}

/* Sticky Glassmorphic Navbar */
.sales-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.sales-nav .nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sales-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.sales-nav .brand-mark {
  background: var(--primary-red);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 2px 10px var(--primary-red-glow);
}

.sales-nav .brand small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sales-nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sales-nav-detail {
  font-size: 13px;
  font-weight: 600;
  color: #c9c3b6;
  transition: color 0.2s ease;
}

.sales-nav-detail:hover {
  color: #fff;
}

/* Buttons */
.sales-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  text-align: center;
  line-height: 1.2;
}

.sales-page .btn.orange {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 18px var(--primary-red-glow);
}

.sales-page .btn.orange:hover {
  background: var(--primary-red-hover);
  border-color: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 66, 30, 0.5);
}

.sales-page .btn.outline {
  background: transparent;
  color: #fff;
  border-color: var(--border-prominent);
}

.sales-page .btn.outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
  transform: translateY(-2px);
}

.sales-page .btn.small {
  padding: 9px 18px;
  font-size: 13px;
  min-height: 40px;
}

.sales-page .btn.full {
  width: 100%;
}

.quiet-button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}

.quiet-button:hover {
  color: #fff;
}

.text-link {
  font-size: 13px;
  font-weight: 600;
  color: #d1cbc0;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

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

/* Eyebrows and Section Headers */
.sales-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sales-page .eyebrow.orange {
  color: #ff7452;
}

.sales-section-head {
  margin-bottom: 48px;
}

.sales-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.sales-section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8566;
}

.sales-section-head p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 640px;
}

.sales-section-head.center-text {
  text-align: center;
}

.sales-section-head.center-text p {
  margin-inline: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.luxury-hero {
  position: relative;
  padding: 56px 0 42px;
  background: radial-gradient(ellipse at 50% 25%, rgba(229,66,30,.14), transparent 65%);
  overflow: hidden;
}
.hero-pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge-pill {
  color: var(--electric-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 20px;
}
.luxury-hero h1 {
  max-width: 1040px;
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.1rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero-gradient {
  color: #ff7955;
  background: linear-gradient(110deg, #ffae8d, #ff6541 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.luxury-hero .lead {
  max-width: 680px;
  margin: 0;
  color: #cec7bb;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  text-wrap: balance;
}
.sales-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  font-size: 12px;
  color: #bfb7aa;
}
.sales-byline .avatars {display: flex;}
.sales-byline .avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-dark);
  margin-right: -8px;
}
.sales-byline b {color: #fff; font-weight: 700;}
.hero-flow-line {
  width: 1px;
  height: 28px;
  margin: 14px 0 0;
  background: linear-gradient(transparent, #e5421e);
}
.hero-offer {
  width: min(100%, 580px);
  box-sizing: border-box;
  padding: 24px 28px 20px;
  border: 1px solid rgba(255,121,85,.55);
  border-top: 3px solid var(--primary-red);
  border-radius: 12px;
  background: linear-gradient(155deg, #231915, #131316 70%);
  box-shadow: 0 18px 65px rgba(0,0,0,.24);
}
.hero-offer-label {
  color: #ffae8d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}
.hero-offer h2 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 29px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -.035em;
  color: #fff;
}
.hero-offer h2 em {font: inherit;}
.hero-offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: var(--electric-green);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.hero-offer-price span {
  color: #bfb7aa;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}
.hero-offer-inclusions {margin: 14px 0 18px; color: #d0c8bb; font-size: 12px; line-height: 1.8; text-wrap: balance;}
.hero-offer-inclusions span {padding-inline: 5px; color: #ff7955;}
.hero-actions {justify-content: center; margin: 0;}
.hero-actions .btn {width: min(100%, 380px); box-sizing: border-box; justify-content: center; min-height: 56px;}
.hero-offer-date {margin: 12px 0 0; font-size: 10px; color: #bfb7aa; text-wrap: balance;}
.hero-offer-date span {white-space: nowrap;}
.hero-scroll-link {display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; color: #cfc7ba; font-size: 12px;}
.hero-scroll-link:hover {color: #fff;}
.hero-scroll-link span {color: #ff7955;}
@media (max-width: 600px) {
  .luxury-hero {padding: 36px 0 30px;}
  .hero-badge-pill {font-size: 8px; letter-spacing: .12em; margin-bottom: 18px;}
  .hero-desktop-break {display: none;}
  .hero-offer {padding: 22px 16px 18px;}
  .hero-offer-price {font-size: 42px;}
  .hero-offer-inclusions {font-size: 11px;}
  .hero-offer-date {font-size: 10px;}
}

/* ==========================================================================
   HERO RIGHT: 3D BUNDLE SHOWCASE
   ========================================================================== */
.bundle-showcase {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}

.bundle-glow-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 60% 40%, rgba(229, 66, 30, 0.35) 0%, rgba(152, 244, 119, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.bundle-main-card {
  position: relative;
  z-index: 1;
  background: #13131b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(229, 66, 30, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bundle-main-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 66, 30, 0.4);
}

.bundle-header-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.bundle-header-tag span:first-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #ff8566;
}

.bundle-tag-pill {
  background: var(--electric-green);
  color: #0c1508;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: var(--radius-full);
}

.bundle-title-group small {
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--text-muted);
}

.bundle-title-group h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 6px 0 10px;
}

.bundle-title-group h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #ff8566;
}

.bundle-title-group p {
  font-size: 13px;
  color: #b8b2a3;
  margin-bottom: 20px;
}

.bundle-val-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(229, 66, 30, 0.12);
  border: 1px solid rgba(229, 66, 30, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.bundle-val-tag span {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #e5a092;
  font-weight: 700;
}

.bundle-val-tag b {
  font-family: var(--font-display);
  font-size: 16px;
  color: #ff8566;
}

.bundle-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.bundle-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #d8d2c4;
  padding: 6px 0;
}

.bundle-checklist li span {
  color: var(--electric-green);
  font-weight: 800;
}

.bundle-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.instructors-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #c9c3b6;
}

.instructors-pill img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #fff;
  object-fit: cover;
}

.bundle-cta-link {
  font-size: 11px;
  color: #ff8566;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   TRUST MARQUEE
   ========================================================================== */
.trust-marquee {
  background: #0f0f14;
  border-block: 1px solid var(--border-subtle);
  padding: 20px 0;
}

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

.trust-marquee-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.3;
}

.trust-brands {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-brand-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e5ded2;
}

.trust-brand-item small {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.trust-rating-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
}

.stars {
  color: #ffb703;
  letter-spacing: 2px;
  font-size: 12px;
}

.trust-rating-pill b {
  color: #fff;
}

.trust-rating-pill small {
  color: var(--text-muted);
  font-size: 11px;
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.problem-section {
  padding: 90px 0;
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 66, 30, 0.35);
}

.problem-number {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--primary-red);
  margin-bottom: 18px;
}

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 14px;
  color: #aba496;
  line-height: 1.6;
}

.solution-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #181824 0%, #1a1622 100%);
  border: 1px solid rgba(229, 66, 30, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.solution-banner-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 10px;
}

.solution-banner-content p {
  font-size: 15px;
  color: #c9c2b4;
  max-width: 650px;
}

/* ==========================================================================
   AUDIENCE QUALIFICATION (THETIUMEDIA STYLE)
   ========================================================================== */
.qualification-section {
  padding: 90px 0;
  background: #0d0d12;
  border-block: 1px solid var(--border-subtle);
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.qualification-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.qualification-card.fit-yes {
  border-top: 4px solid var(--electric-green);
}

.qualification-card.fit-no {
  border-top: 4px solid #842f22;
}

.qual-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.yes-badge {
  background: rgba(152, 244, 119, 0.15);
  color: var(--electric-green);
  border: 1px solid rgba(152, 244, 119, 0.3);
}

.no-badge {
  background: rgba(229, 66, 30, 0.15);
  color: #ff7452;
  border: 1px solid rgba(229, 66, 30, 0.3);
}

.qualification-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.qual-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(152, 244, 119, 0.15);
  color: var(--electric-green);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.cross-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(229, 66, 30, 0.15);
  color: #ff6644;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.qual-list b {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 3px;
}

.qual-list p {
  font-size: 13px;
  color: #aba497;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   WORKSHOP ROADMAP
   ========================================================================== */
.stack-section {
  padding: 95px 0;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.workshop-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.workshop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 66, 30, 0.4);
}

.workshop-cover {
  height: 190px;
  position: relative;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cover-01 {
  background: linear-gradient(135deg, #bd2c0c 0%, #e5421e 100%);
}

.cover-02 {
  background: linear-gradient(135deg, #18221b 0%, #203525 100%);
}

.cover-03 {
  background: linear-gradient(135deg, #1a2c3a 0%, #22435b 100%);
}

.workshop-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 850;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.workshop-bg-num {
  position: absolute;
  right: -5px;
  bottom: -20px;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
  color: #fff;
}

.workshop-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  max-width: 220px;
}

.workshop-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
}

.workshop-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.workshop-desc {
  font-size: 13px;
  color: #bdb6a8;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.workshop-deliverable {
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.workshop-deliverable span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--electric-green);
  margin-bottom: 4px;
}

.workshop-deliverable b {
  font-size: 12px;
  color: #f1ebd8;
  line-height: 1.4;
  display: block;
}

.lean-inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lean-inclusions article {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
}

.inclusion-tag {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  color: var(--electric-green);
}

.lean-inclusions h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 10px;
}

.lean-inclusions p {
  font-size: 13px;
  color: #aba497;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   VALUE STACK (AI PROFIT SYSTEM STYLE)
   ========================================================================== */
.value-stack-section {
  padding: 95px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(229, 66, 30, 0.1) 0%, transparent 70%);
}

.value-stack-wrap {
  max-width: 960px;
}

.value-stack-box {
  background: #111117;
  border: 1px solid rgba(229, 66, 30, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 35px rgba(229, 66, 30, 0.12);
}

.value-stack-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.value-item b {
  font-size: 15px;
  color: #fff;
  display: block;
}

.value-item p {
  font-size: 12px;
  color: #9c9588;
  margin: 3px 0 0;
}

.val-price {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ff9175;
  white-space: nowrap;
}

.value-stack-total {
  background: #161622;
  padding: 32px 36px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.total-row del {
  font-size: 20px;
  color: #d1513e;
}

.final-offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.cohort-tag {
  display: inline-block;
  background: var(--electric-green);
  color: #0c1508;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.final-offer-row h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.final-offer-row small {
  font-size: 12px;
  color: var(--text-muted);
}

.price-callout {
  text-align: right;
}

.price-callout b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price-callout span {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

.value-cta-block {
  text-align: center;
  margin-top: 10px;
}

.value-cta-block .btn {
  font-size: 18px;
  padding: 18px 42px;
  width: 100%;
}

.value-cta-block .fine {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ==========================================================================
   WALL OF LOVE / TESTIMONIALS
   ========================================================================== */
.learner-proof {
  padding: 95px 0;
  background: #0a0a0e;
  border-block: 1px solid var(--border-subtle);
}

.featured-proof-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.wall-of-love-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  margin-bottom: 24px;
}

.wall-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.stars-line {
  font-size: 11px;
  color: #ffb703;
  font-weight: 700;
  letter-spacing: 1px;
}

.learner-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learner-quote {
  margin: 0;
  padding: 26px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.learner-quote:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.learner-quote-dark {
  background: #14141d;
}

.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.learner-context {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e56647;
}

.learner-quote-dark .learner-context {
  color: var(--electric-green);
}

.learner-quote h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 12px;
}

.learner-quote blockquote {
  font-size: 14px;
  line-height: 1.6;
  color: #d8d2c4;
  margin: 0 0 22px;
  flex: 1;
}

.quote-pen {
  color: #fff;
  font-weight: 700;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8 C43 3 83 8 122 5 S184 4 217 3' fill='none' stroke='%23e5421e' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.4em;
  padding-bottom: 0.15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.learner-quote figcaption {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-top: auto;
}

.learner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.learner-identity b {
  display: block;
  font-size: 13px;
  color: #fff;
}

.learner-identity span {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

.learner-original {
  grid-column: 1 / -1;
  font-size: 10px;
  color: var(--text-muted);
  text-decoration: underline;
  margin-top: 2px;
}

.learner-source {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 36px;
}

/* ==========================================================================
   PRICING COMPARISON CARDS
   ========================================================================== */
.offer-section {
  padding: 95px 0;
}

.pricing-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1020px;
  margin-inline: auto;
}

.price-tier-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-tier-card.featured-tier {
  background: #14141f;
  border: 2px solid var(--electric-green);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--electric-green-glow);
}

.tier-featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--electric-green);
  color: #0b1407;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.tier-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.tier-label.electric {
  color: var(--electric-green);
}

.price-tier-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.tier-tagline {
  font-size: 13px;
  color: #aba497;
  min-height: 40px;
  margin-bottom: 20px;
}

.tier-price {
  margin-bottom: 20px;
}

.tier-price b {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 850;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.tier-price small {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 8px;
}

.tier-swis-banner {
  background: rgba(152, 244, 119, 0.12);
  border: 1px solid rgba(152, 244, 119, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--electric-green);
  text-align: center;
}

.tier-inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.tier-inclusions-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #ddd7ca;
  padding: 9px 0;
  border-top: 1px solid var(--border-subtle);
}

.tier-inclusions-list li span {
  color: var(--primary-red);
  font-weight: 800;
}

.electric-check {
  color: var(--electric-green) !important;
}

.muted-inc {
  color: #6d675b !important;
}

.muted-inc span {
  color: #6d675b !important;
}

.tier-secondary-links {
  text-align: center;
  margin-top: 14px;
}

.tier-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.lean-terms {
  max-width: 860px;
  margin: 0 auto 32px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   FOUNDER CREDIBILITY
   ========================================================================== */
.lean-founders {
  padding: 95px 0;
  background: #0e0e13;
  border-block: 1px solid var(--border-subtle);
}

.lean-founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.lean-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.founder-portrait-card {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.founder-portrait-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.founder-portrait-card figcaption {
  padding: 14px 16px;
}

.founder-portrait-card b {
  display: block;
  font-size: 14px;
  color: #fff;
}

.founder-portrait-card span {
  font-size: 11px;
  color: var(--text-muted);
}

.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.founder-copy p {
  font-size: 15px;
  color: #c9c2b4;
  line-height: 1.7;
  margin-bottom: 16px;
}

.founder-links-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ==========================================================================
   COMMUNITY CLUB TEASER
   ========================================================================== */
.club-teaser {
  padding: 85px 0;
  background: #111118;
}

.club-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.club-teaser h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.club-teaser p {
  font-size: 15px;
  color: #bdb6a8;
  line-height: 1.6;
}

.club-teaser b {
  display: block;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.club-event {
  color: #ff9175 !important;
  font-weight: 600;
  margin: 12px 0 16px;
}

.club-teaser small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.lean-faq {
  padding: 95px 0;
}

.sales-page .faq {
  border-top: 1px solid var(--border-subtle);
}

.sales-page details {
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
  transition: background 0.2s;
}

.sales-page summary {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sales-page summary::-webkit-details-marker {
  display: none;
}

.sales-page summary::after {
  content: '+';
  font-size: 24px;
  color: var(--primary-red);
  line-height: 1;
  transition: transform 0.2s;
}

.sales-page details[open] summary::after {
  content: '−';
}

.sales-page details p {
  font-size: 14px;
  color: #bdb7aa;
  line-height: 1.7;
  padding-top: 14px;
  margin: 0;
}

/* ==========================================================================
   FREE RESOURCE BOTTOM TEASER
   ========================================================================== */
.free-offer {
  padding: 70px 0;
  background: #14141c;
  border-top: 1px solid var(--border-subtle);
}

.free-offer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.free-offer h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.free-offer p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ==========================================================================
   INTERACTIVE LEAD MODAL (YUJNU NOURA 2-STEP)
   ========================================================================== */
.resource-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: #121219;
  border: 1px solid rgba(229, 66, 30, 0.4);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  color: var(--text-paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 66, 30, 0.2);
}

.resource-dialog::backdrop {
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: #fff;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.resource-dialog h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 6px 0 12px;
}

.resource-steps {
  margin-bottom: 18px;
}

.resource-steps span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  color: #ff8566;
}

.step-progress-bar {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.step-progress-bar i {
  height: 4px;
  flex: 1;
  background: var(--border-subtle);
  border-radius: 2px;
}

.step-progress-bar i[data-step-progress].complete {
  background: var(--primary-red);
}

.stage-question {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.stage-options {
  display: grid;
  gap: 10px;
}

.stage-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: #181824;
  border: 1px solid var(--border-subtle);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}

.stage-options button:hover {
  border-color: var(--primary-red);
  background: #202030;
  transform: translateX(4px);
}

.stage-options button b {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.stage-options button small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.stage-options button span {
  color: var(--primary-red);
  font-size: 18px;
  font-weight: 800;
  margin-left: 12px;
}

.stage-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
}

.stage-tip {
  font-size: 12px;
  line-height: 1.5;
  color: #e5dfd2;
  background: rgba(152, 244, 119, 0.08);
  border-left: 3px solid var(--electric-green);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
}

.resource-dialog .field {
  margin-bottom: 14px;
}

.resource-dialog .field span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #d1cbc0;
  margin-bottom: 6px;
}

.resource-dialog .field input {
  width: 100%;
  background: #0d0d14;
  border: 1px solid var(--border-prominent);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
}

.resource-dialog .check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  margin: 16px 0 20px;
}

.resource-dialog .check input {
  margin-top: 3px;
  accent-color: var(--primary-red);
}

/* ==========================================================================
   CHECKOUT PAGE
   ========================================================================== */
.checkout-section {
  padding: 60px 0 90px;
  background: #09090c;
}

.focused-checkout {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.checkout-main-form h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin: 6px 0 14px;
}

.checkout-main-form .lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.focused-checkout .field select {
  background: #13131b;
  border: 1px solid var(--border-prominent);
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  width: 100%;
}

.focused-checkout .notice {
  background: #181824;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 12px;
  color: #c9c3b4;
  margin: 20px 0;
}

.checkout-summary {
  background: #12121a;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}

.checkout-summary h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 14px;
}

.checkout-summary .access {
  background: rgba(152, 244, 119, 0.15);
  color: var(--electric-green);
  border: 1px solid rgba(152, 244, 119, 0.3);
  font-size: 11px;
  font-weight: 750;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 18px;
}

.checkout-summary .outline-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.checkout-summary .outline-list li {
  font-size: 12px;
  color: #d1cbc0;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary .outline-list li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: 800;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  color: var(--text-muted);
}

.summary-line b {
  color: #fff;
}

.summary-line.total {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.summary-line.total span:last-child {
  font-family: var(--font-display);
  font-size: 24px;
  color: #ff8566;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.sales-footer {
  background: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 110px;
}

.sales-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.sales-footer .footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}

.sales-footer .footer-links a:hover {
  color: #fff;
}

/* ==========================================================================
   MOBILE PURCHASE STICKY BAR
   ========================================================================== */
.mobile-purchase {
  display: none;
}

@media (max-width: 768px) {
  .mobile-purchase {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(14, 14, 20, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-prominent);
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  }

  .mobile-purchase b {
    display: block;
    font-size: 13px;
    color: #fff;
  }

  .mobile-purchase small {
    display: block;
    font-size: 11px;
    color: var(--primary-red);
    font-weight: 700;
  }

  .mobile-purchase .btn {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 42px;
    white-space: nowrap;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .sales-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .bundle-showcase {
    max-width: 500px;
  }

  .problem-cards-grid,
  .workshop-grid,
  .learner-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qualification-grid,
  .pricing-comparison-grid,
  .lean-founder-grid,
  .focused-checkout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-proof-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sales-nav-detail {
    display: none;
  }

  .luxury-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.8rem);
  }

  .problem-cards-grid,
  .workshop-grid,
  .learner-proof-grid,
  .lean-inclusions,
  .club-teaser-grid,
  .free-offer .wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .solution-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 20px;
  }

  .value-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .val-price {
    align-self: flex-end;
  }

  .final-offer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .price-callout {
    text-align: left;
  }

  .qualification-card,
  .price-tier-card,
  .value-stack-box {
    padding: 28px 22px;
  }

  .resource-dialog {
    padding: 28px 20px;
  }
}

/* Outcome and proof stay on the same central reading axis. */
.hero-offer-goal {margin: 12px 0 0; color: #f4efe6; font-size: 13px; text-wrap: balance;}
.hero-result {display: flex; align-items: center; gap: 14px; max-width: 530px; margin: 25px 0 0; text-align: left;}
.hero-result img {flex: 0 0 42px; width: 42px; height: 42px; object-fit: cover; border-radius: 50%;}
.hero-result blockquote {margin: 0 0 7px; font-size: 13px; line-height: 1.6; color: #e3dcd0;}
.hero-result mark {background: none; color: inherit; text-decoration: underline; text-decoration-color: #f16d4e; text-decoration-thickness: 2px; text-underline-offset: 4px;}
.hero-result figcaption {font-size: 10px; color: #b6ad9e; line-height: 1.7;}
.hero-result figcaption a {text-decoration: underline; text-underline-offset: 3px; margin-left: 5px;}
.value-item .val-price {font-family: var(--font-body); font-size: 12px; white-space: normal; text-align: right; min-width: 135px;}
@media (max-width: 600px) {.hero-result {gap: 12px; margin-top: 22px;} .hero-result blockquote {font-size: 12px;} .hero-result figcaption a {display: block; margin-left: 0;}}

/* Center the resource dialog; only its content scrolls, never its primary action. */
.resource-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  box-sizing: border-box;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 52px 0 0;
  overflow: hidden;
}
.resource-dialog[open] {display: flex; flex-direction: column;}
.resource-dialog [hidden] {display: none !important;}
.resource-dialog .modal-close {top: 10px; right: 12px; z-index: 2; width: 36px; height: 36px;}
.resource-scroll {min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 0 28px 20px; scrollbar-gutter: stable;}
.resource-dialog #resource-description {font-size: 14px; line-height: 1.5; margin: 0 0 20px;}
.resource-dialog .eyebrow {font-size: 10px;}
.resource-dialog .resource-footer {flex: 0 0 auto; padding: 14px 28px 16px; border-top: 1px solid var(--border-prominent); background: #121219;}
.resource-footer .btn {width: 100%; min-height: 50px; justify-content: center; font-size: 14px;}
.resource-footer .form-status:empty {display: none;}
.resource-footer .form-status {margin: 0 0 10px; font-size: 12px;}
.resource-footer .dismiss-resource {display: block; margin: 8px auto 0; padding: 4px 12px; font-size: 12px;}
.resource-dialog .field input {font-size: 16px; scroll-margin-block: 12px;}
.resource-dialog .stage-options button:hover {transform: none;}
@media (max-width: 600px), (max-height: 650px) {
  .resource-dialog {width: min(520px, calc(100vw - 24px)); max-height: calc(100dvh - 24px); padding-top: 48px;}
  .resource-scroll {padding: 0 20px 16px;}
  .resource-dialog .resource-footer {padding: 12px 20px;}
  .resource-dialog h2 {font-size: 25px;}
  .resource-dialog .stage-options button {padding: 12px;}
  .resource-dialog .stage-tip {margin-bottom: 12px;}
}
/* Once the visitor chooses a path, give the form more room on small screens. */
@media (max-width: 600px), (max-height: 650px) {
  .resource-dialog:has([data-resource-email]:not([hidden])) #resource-description,
  .resource-dialog:has([data-resource-email]:not([hidden])) .stage-tip {display: none;}
  .resource-dialog:has([data-resource-email]:not([hidden])) h2 {font-size: 23px; margin-bottom: 16px;}
}

/* Availability is compact and secondary to the centered primary offer. */
.offer-availability {box-sizing:border-box; width:min(100%,580px); margin:24px auto 0; padding:18px 22px; border:1px solid #46332b; border-radius:12px; background:#161313; text-align:left;}
.offer-availability[hidden], .buyer-activity[hidden] {display:none;}
.availability-topline {display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:8px; font-size:10px; color:#c2b8a9;}
.preview-chip {font-size:9px; letter-spacing:.08em; color:#ffd5a4; font-weight:700;}
.availability-headline {display:flex; flex-wrap:wrap; justify-content:space-between; align-items:baseline; gap:4px 12px; margin:12px 0 10px;}
.availability-headline strong {color:#fff; font-size:16px;}
.availability-headline>span {color:#c2b8a9; font-size:11px;}
.availability-progress {height:6px; background:#38302a; border-radius:20px; overflow:hidden;}
.availability-progress>span {display:block; height:100%; width:0; border-radius:inherit; background:linear-gradient(90deg,#c34023,#ff9367);}
.availability-clock {display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px;}
.availability-clock>span {font-size:12px; color:#ddd4c7;}
.availability-clock b {font:750 25px/1.2 var(--font-display); font-variant-numeric:tabular-nums; letter-spacing:.05em; color:#ffad87;}
.availability-deadline {font-size:11px; color:#c2b8a9; margin:7px 0; line-height:1.6;}
.availability-deadline>span {white-space:nowrap;}
.availability-note {display:block; font-size:10px; line-height:1.5; color:#b7ad9e;}
.window-ended .availability-clock b {color:#b7ad9e;}
.offer-wrap>.offer-availability {margin:30px auto 0;}
.buyer-activity {position:fixed; left:24px; bottom:24px; z-index:110; width:min(360px,calc(100vw - 32px)); display:flex; align-items:center; gap:12px; padding:16px 40px 16px 16px; box-sizing:border-box; background:#fff9ef; color:#241d17; border:1px solid #dfc9b9; border-left:4px solid #d44220; border-radius:12px; box-shadow:0 12px 40px #0005; animation:activity-enter .25s ease-out;}
.buyer-activity-icon {display:grid; flex:0 0 32px; width:32px; height:32px; place-items:center; background:#dfefd6; color:#2b5925; border-radius:50%; font-weight:800;}
.buyer-activity-label {display:block; font-size:8px; letter-spacing:.06em; font-weight:800; color:#92502f;}
.buyer-activity strong {display:block; font-size:13px; line-height:1.4; margin:4px 0;}
.buyer-activity-detail {display:block; font-size:11px; color:#665a4d;}
.buyer-activity button {position:absolute; top:4px; right:4px; width:32px; height:32px; border:0; background:transparent; color:#665a4d; font-size:22px; border-radius:50%;}
.buyer-activity button:hover {background:#eaded0;}
@keyframes activity-enter {from {opacity:0; transform:translateY(12px);} to {opacity:1; transform:translateY(0);}}
@media(max-width:768px) {
 .buyer-activity {left:16px; bottom:calc(110px + env(safe-area-inset-bottom,0px));}
 .offer-availability {padding:16px;}
 .availability-clock b {font-size:23px;}
}
@media(prefers-reduced-motion:reduce) {.buyer-activity {animation:none;}}

.daily-price-note {display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:10px; margin:8px 0; font-size:11px; color:#ffb38e;}
.daily-price-note del {color:#b8ad9c; font-size:14px;}
.daily-price-note [hidden] {display:none;}
.hero-offer-price>[data-guided-price] {font:inherit; color:inherit; letter-spacing:inherit;}
.founding-future {font-size:10px; line-height:1.6; color:#b7ad9e; margin:12px 0 0; padding-top:10px; border-top:1px solid #46332b;}
.buyer-activity {left:auto; right:24px; top:54%; bottom:auto; transform:translateY(-50%); width:320px;}
.buyer-activity a {display:inline-block; font-size:11px; font-weight:700; color:#a42e13; margin-top:6px; text-decoration:underline; text-underline-offset:3px;}
@keyframes activity-enter {from {opacity:0; translate:12px 0;} to {opacity:1; translate:0 0;}}
@media(max-width:768px) {
 .buyer-activity {top:auto; right:16px; left:auto; bottom:calc(112px + env(safe-area-inset-bottom,0px)); transform:none; width:min(320px,calc(100vw - 32px));}
}
@media(min-width:769px) {.buyer-activity {top:38%; width:300px;}}

/* Community names are usable links, with visible hover and keyboard states. */
a.trust-brand-item {border-radius:6px; padding:6px; transition:background .15s ease;}
a.trust-brand-item:hover {background:#ffffff0c;}
a.trust-brand-item:hover b {color:#ffad87;}
a.trust-brand-item:focus-visible {outline:2px solid #ffad87; outline-offset:4px;}
.community-inline-link {text-decoration:underline !important; text-underline-offset:4px;}

.free-training {background:#111116; border-block:1px solid var(--border-subtle);}
.training-video-grid {display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px;}
.training-video-card {border:1px solid #37302a; border-radius:12px; overflow:hidden; background:#18171b;}
.training-player {position:relative; aspect-ratio:16/9; background:#000;}
.training-player button {display:block; position:relative; padding:0; border:0; width:100%; height:100%; background:#000; color:#fff;}
.training-player img {width:100%; height:100%; object-fit:cover; opacity:.82;}
.training-player button:hover img {opacity:1;}
.training-player button:focus-visible {outline:3px solid #98f477; outline-offset:-4px;}
.training-play {position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); display:grid; place-items:center; width:60px; height:60px; border-radius:50%; background:#db4420; box-shadow:0 4px 30px #0006; font-size:23px; padding-left:4px;}
.training-watch {position:absolute; left:16px; bottom:14px; padding:5px 10px; background:#111d; border-radius:4px; font-size:12px;}
.training-player iframe {display:block; border:0; width:100%; height:100%;}
.training-video-copy {padding:24px;}
.training-video-copy h3 {font:700 24px/1.2 var(--font-display); color:#fff; margin:10px 0;}
.training-video-copy p {font-size:14px; color:#c6bdaf; margin:0 0 16px;}
.training-video-copy a {color:#ffa07d; font-size:12px; text-decoration:underline; text-underline-offset:4px;}
.workshop-feedback {margin-top:32px;}
.workshop-feedback-label {text-align:center; font-size:12px; color:#d5c9b8;}
.workshop-feedback-grid {display:grid; grid-template-columns:1fr 1fr; gap:20px; align-items:start;}
.workshop-feedback-grid a {display:block; padding:12px; background:#fff; border-radius:8px;}
.workshop-feedback-grid img {display:block; width:100%; height:auto;}
.training-next {text-align:center; margin-top:32px;}
.training-next p {font-size:14px; color:#cfc5b4; text-align:center; margin-inline:auto;}
@media(max-width:700px){.training-video-grid,.workshop-feedback-grid {grid-template-columns:1fr;}.training-video-copy {padding:20px;}.training-video-copy h3 {font-size:22px;}}

/* Keep the custom title unobstructed by the video control. */
.training-player [data-training-video="lKcLBypvnug"] img {opacity:1;}
.training-player [data-training-video="lKcLBypvnug"] .training-play {left:10%; top:87%; width:44px; height:44px; font-size:18px;}
.training-player [data-training-video="lKcLBypvnug"] .training-watch {left:19%; bottom:9%; background:none; padding:0;}
@media(max-width:700px){.training-player [data-training-video="lKcLBypvnug"] .training-play {width:36px; height:36px; font-size:15px;}.training-player [data-training-video="lKcLBypvnug"] .training-watch {font-size:11px;}}

/* Short workshop excerpts keep the proof readable before the offer. */
.workshop-feedback {margin-top:64px; scroll-margin-top:105px;}
.workshop-feedback-heading {text-align:center; margin-bottom:26px;}
.workshop-feedback-heading h3 {font:700 clamp(26px,3vw,36px)/1.2 var(--font-display); color:#fff8e9; margin:12px 0;}
.workshop-feedback-heading p {font-size:14px; color:#bcb5aa;}
.workshop-takeaway-grid {display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px;}
.workshop-takeaway {display:flex; flex-direction:column; margin:0; padding:26px; background:#1b191d; border:1px solid #393137; border-radius:12px;}
.workshop-takeaway .eyebrow {font-size:9px; letter-spacing:.12em; color:#98f477;}
.workshop-takeaway h3 {font:700 21px/1.25 var(--font-display); margin:16px 0; color:#fff8e9;}
.workshop-takeaway blockquote {font-size:15px; line-height:1.8; margin:0 0 24px; color:#d8d2c4;}
.workshop-takeaway figcaption {display:flex; flex-direction:column; gap:6px; margin-top:auto; padding-top:16px; border-top:1px solid #3b3339;}
.workshop-takeaway figcaption b {font-size:14px; color:#fff8e9;}
.workshop-takeaway figcaption span {font-size:11px; color:#bcb5aa;}
.workshop-takeaway figcaption a {font-size:12px; color:#ffa07d; text-decoration:underline; text-underline-offset:4px; margin-top:5px;}
.sales-page .workshop-more {margin-top:20px; border:1px solid #40363a; border-radius:10px; padding:0 22px; background:transparent;}
.sales-page .workshop-more summary {padding:22px 0; color:#fff8e9; font-size:14px;}
.workshop-more .workshop-takeaway-grid {grid-template-columns:repeat(2,minmax(0,1fr)); padding-bottom:24px;}
.workshop-more .workshop-feedback-grid {padding-bottom:24px;}
.workshop-source-note {text-align:center; color:#a49e96; font-size:11px; line-height:1.7; margin-top:20px;}
@media(max-width:800px){.workshop-takeaway-grid {grid-template-columns:1fr;}.workshop-more .workshop-takeaway-grid {grid-template-columns:1fr;}.workshop-takeaway {padding:22px;}.workshop-feedback {margin-top:44px;}.sales-page .workshop-more {padding:0 14px;}}
.workshop-feedback-heading p,.workshop-source-note {margin-inline:auto; text-align:center;}

.workshop-screenshot-grid {display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; align-items:start;}
.workshop-screenshot {margin:0; background:#fff; border:1px solid #e0ddd8; border-radius:10px; overflow:hidden; box-shadow:0 6px 24px #0002;}
.workshop-capture {display:block; padding:14px 12px; cursor:zoom-in; background:#fff;}
.workshop-capture img {display:block; width:100%; height:auto;}
.workshop-capture:focus-visible {outline:3px solid #ed4925; outline-offset:-4px;}
.workshop-screenshot figcaption {display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:10px; padding:12px 16px; background:#f1eee9; color:#484139; font-size:11px; line-height:1.5;}
.workshop-screenshot figcaption a {color:#923018; text-decoration:underline; text-underline-offset:3px; font-weight:600; white-space:nowrap;}
.workshop-more .workshop-screenshot-grid {padding-bottom:24px;}
@media(max-width:800px){.workshop-screenshot-grid {grid-template-columns:1fr; gap:18px;}.workshop-capture {padding:12px 6px;}.workshop-screenshot figcaption {padding:10px 12px;}}

/* Make the build process and actual delivery workspace visible. */
.workshop-action-list {list-style:none; margin:0 0 22px; padding:0; display:grid; gap:13px; font-size:13px; line-height:1.6; color:#cfc5b8;}
.workshop-action-list li {display:grid; grid-template-columns:15px 1fr; gap:8px;}
.workshop-action-list li::before {content:'→'; color:#98f477;}
.launch-route-note {display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:10px; max-width:850px; margin:28px auto 0; text-align:center;}
.launch-route-note>b {font-size:13px; margin-right:4px;}
.launch-route-note>span {font-size:11px; padding:6px 12px; border:1px solid #463a31; border-radius:30px; color:#ffb692;}
.launch-route-note p {flex-basis:100%; max-width:650px; font-size:13px; color:#b9b0a4; margin:6px auto 0;}
.workspace-preview {margin:64px auto 0; padding:44px 30px; max-width:950px; border:1px solid #40352d; border-radius:16px; background:radial-gradient(ellipse at top,#2b211c,#141316 65%); text-align:center;}
.workspace-preview-heading h3 {font:700 clamp(28px,4vw,42px)/1.1 var(--font-display); color:#fff8e9; margin:14px 0;}
.workspace-preview-heading p {font-size:15px; color:#c9beb1; max-width:620px; margin:0 auto;}
.workspace-proof-points {display:flex; flex-wrap:wrap; justify-content:center; list-style:none; padding:0; margin:25px 0; gap:14px 24px; font-size:12px; color:#ece4da;}
.workspace-proof-points b {color:#98f477; font-size:10px; margin-right:6px;}
.workspace-window {max-width:700px; margin:0 auto; border:1px solid #54423a; border-radius:12px; overflow:hidden; box-shadow:0 20px 50px #0004; background:#fffdf7;}
.workspace-window figcaption {display:flex; align-items:center; gap:8px; padding:13px 17px; color:#f4efe6; background:#282128; font-size:10px; text-align:left;}
.workspace-window figcaption>span:last-child {margin-left:auto; color:#a7e891;}
.workspace-window-dot {width:7px; height:7px; background:#98f477; border-radius:50%; flex-shrink:0;}
.workspace-window a {display:block; padding:22px;}
.workspace-window img {display:block; width:100%; height:auto;}
.workspace-window a:focus-visible {outline:3px solid #e5421e; outline-offset:-4px;}
.workspace-preview-action p {font-size:13px; margin:26px auto 16px; max-width:none;}
.workspace-preview-action small {display:block; font-size:11px; color:#aaa196; margin-top:14px;}
@media(max-width:700px){.workspace-preview {padding:30px 16px; margin-top:42px;}.workspace-proof-points {display:grid; text-align:left; gap:10px;}.workspace-window a {padding:12px;}.workspace-window figcaption {font-size:9px; padding:12px;}.workspace-preview-action .btn {white-space:normal; font-size:12px;}.launch-route-note>b {flex-basis:100%;}}

/* Portfolio results: reported sales and project counts stay separately labeled. */
.launch-proof {background:#121116; border-block:1px solid #33282a;}
.launch-proof-stats {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;margin:0 0 32px;padding:28px;border:1px solid #51352b;border-radius:12px;background:#211a18;}
.launch-proof-stats>div {display:flex;flex-direction:column;gap:9px;text-align:center;}
.launch-proof-stats strong {font:800 clamp(32px,4vw,58px)/1.1 var(--font-display);color:#98f477;}
.launch-proof-stats>div:first-child strong {color:#ff926e;}
.launch-proof-stats span {font-size:12px;line-height:1.6;color:#d4c8bc;max-width:230px;margin-inline:auto;}
.launch-case-grid {display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.launch-case {border:1px solid #3e3031;border-radius:10px;overflow:hidden;background:#1a171b;}
.launch-case>a {display:block;background:#eee5d6;}
.launch-case img {display:block;width:100%;height:155px;object-fit:cover;object-position:top;}
.launch-case-copy {padding:22px 18px;}
.launch-case-copy>strong {display:block;font:800 30px/1.1 var(--font-display);color:#fff8e9;}
.launch-case-copy>span {display:block;font-size:10px;color:#b9aea0;margin:10px 0 20px;}
.launch-case-copy h3 {font-size:16px;margin:0 0 12px;color:#fff8e9;}
.launch-case-copy p {font-size:12px;line-height:1.7;margin:0;color:#c8beb0;}
.launch-proof-attribution {font-size:11px;color:#b7ad9f;text-align:center;margin:20px auto 38px;max-width:850px;}
.shipped-product-strip {display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center;padding:28px;border:1px solid #3b3237;border-radius:12px;}
.shipped-product-strip h3 {font:700 27px/1.15 var(--font-display);color:#fff8e9;margin:14px 0;}
.shipped-product-strip p {font-size:14px;color:#c8beb0;line-height:1.7;}
.launch-proof-links {display:flex;gap:22px;font-size:12px;color:#ffad87;}
.launch-proof-links a,.launch-project-ledger a {text-decoration:underline;text-underline-offset:4px;}
.shipped-product-image img {display:block;width:100%;height:auto;max-height:260px;object-fit:contain;border-radius:8px;}
.shipped-product-image span {display:block;margin-top:10px;font-size:11px;color:#bdb3a6;}
.sales-page .launch-proof-detail {margin-top:28px;border-block:1px solid #453735;padding:0 20px;}
.sales-page .launch-proof-detail summary {font-size:14px;}
.sales-page .launch-proof-detail p {max-width:900px;color:#c8beb0;font-size:12px;}
.launch-project-ledger {display:grid;grid-template-columns:1fr 1fr;gap:18px 34px;padding:10px 0 24px 22px;font-size:13px;}
.launch-project-ledger span {display:block;color:#aaa095;font-size:11px;margin-top:5px;}
.launch-results-note {max-width:960px;margin:24px auto 0;}
.launch-results-note p {max-width:none;font-size:11px;line-height:1.8;color:#b7aea2;}
.launch-proof-cta {text-align:center;margin-top:30px;}
.launch-proof-cta p {margin-inline:auto;font-size:14px;}
.workshop-grid {grid-template-columns:repeat(4,minmax(0,1fr));}
.cover-04 {background:linear-gradient(135deg,#271848,#50235a);}
@media(max-width:1100px){.workshop-grid,.launch-case-grid {grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:700px){.launch-proof-stats {grid-template-columns:1fr;padding:24px;gap:24px;}.launch-proof-stats>div+div {border-top:1px solid #48372d;padding-top:22px;}.shipped-product-strip,.launch-project-ledger {grid-template-columns:1fr;}.shipped-product-strip {padding:22px;}.launch-case-grid,.workshop-grid {grid-template-columns:1fr;}.launch-case img {height:190px;}.launch-case-copy {padding:22px;}.sales-page .launch-proof-detail {padding:0 8px;}}

/* EldenHR: a shipped-first story with a separately labeled client investment. */
.elden-story {align-items:start;gap:38px;scroll-margin-top:100px;}
.elden-story h3 {font-size:clamp(27px,3vw,36px);}
.elden-story-steps {list-style:none;counter-reset:elden;display:grid;gap:18px;padding:0;margin:24px 0;}
.elden-story-steps li {counter-increment:elden;position:relative;padding-left:36px;}
.elden-story-steps li:before {content:"0" counter(elden);position:absolute;left:0;top:1px;color:#98f477;font-size:12px;font-weight:700;}
.elden-story-steps b {display:block;color:#fff8e9;font-size:14px;margin-bottom:5px;}
.elden-story-steps span {display:block;color:#c8beb0;font-size:13px;line-height:1.65;}
.elden-story blockquote {margin:26px 0 0;padding:0 0 0 18px;border-left:3px solid #ff926e;color:#fff1da;font-size:16px;line-height:1.65;}
.elden-story cite {display:block;margin-top:10px;font-size:11px;font-style:normal;color:#bdb3a6;}
.elden-story .elden-build-details {margin:20px 0 0;border-top:1px solid #453735;}
.elden-story .elden-build-details summary {font-size:12px;}
.elden-story .elden-build-details p {font-size:12px;}
.elden-story-visual {display:grid;gap:24px;}
.elden-story-visual .shipped-product-image img {height:auto;max-height:none;}
.elden-investment {padding:26px;border-radius:10px;border:1px solid #4a4932;background:#20251b;}
.elden-investment>span {display:block;font-size:10px;letter-spacing:.13em;color:#d3dec5;}
.elden-investment>strong {display:block;font:800 clamp(42px,5vw,64px)/1.15 var(--font-display);color:#98f477;margin:12px 0;}
.elden-investment p {color:#e1e6d7;margin:0 0 18px;font-size:14px;}
.elden-investment small {display:block;color:#b7c2ab;font-size:11px;line-height:1.6;}
@media(max-width:700px){.elden-story {gap:28px;}.elden-story-visual {grid-row:2;}.elden-investment {padding:22px;}}

@media(min-width:1000px){.training-video-grid {grid-template-columns:repeat(3,minmax(0,1fr));}}

/* Keep the inclusions heading clear of the sticky navigation. */
#inside, #valuestack {scroll-margin-top:100px;}

@media(min-width:701px) and (max-width:1000px){.launch-proof-stats {grid-template-columns:repeat(2,minmax(0,1fr));}}
