:root {
  --page-bg: #02030a;
  --page-bg-alt: #05050b;
  --panel-bg: rgba(255, 255, 255, 0.03);
  --panel-bg-strong: rgba(255, 255, 255, 0.05);
  --text-main: #f4f4f4;
  --text-muted: #b3b3b3;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --transition-fast: 0.25s ease;
}

.section-cta h3,
p,
a {
  text-align: left;
}

p {
  margin: initial;
}

.feature-card {
  text-align: left;
}

.feature-card img {
  background: color-mix(in srgb, var(--role-color) 35%, rgba(0, 0, 0, 0.9))
}

/* MAIN WRAPPER */

.role-landing {
  background: radial-gradient(circle at top, #071021 0, var(--role-color) 75%, #000 100%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

header {
  display: block;
}

.header-nav {
  display: flex;
}

header p {
  text-align: center;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  padding: 5.5rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.05), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--role-color);
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-figure img {
  max-width: 360px;
  width: 100%;
  display: block;
  filter:
    drop-shadow(0 0 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 32px color-mix(in srgb, var(--role-color) 55%, transparent));
}

.hero-text {
  max-width: 520px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: .8rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: .85rem;
  color: var(--text-muted);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
  background: var(--role-color);
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px color-mix(in srgb, var(--role-color) 55%, transparent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--role-color);
  background: rgba(255, 255, 255, 0.04);
}

.btn-large {
  padding-inline: 2.4rem;
}

/* HERO BENEFITS */

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: .82rem;
}

.hero-benefit-icon {
  font-size: 1rem;
}

/* =========================
   STORY
========================= */

.story {
  background: #05050b;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 1.5rem 3.5rem;
}

.story-inner {
  max-width: 880px;
  margin: 0 auto;
}

.story-header h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}

.story-problems {
  margin-bottom: 3rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.story-problems li {
  margin-bottom: .6rem;
}

.story-aha {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--role-color) 28%, transparent),
      rgba(255, 255, 255, 0.03));
  border-radius: var(--radius-lg);
  padding: 1.9rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.story-aha h3 {
  font-size: 1.4rem;
  margin-bottom: .6rem;
}

.story-aha p {
  color: #e9e9e9;
}

.story-solution {
  margin-top: 1.5rem;
}

.story-solution h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.story-solution p {
  color: var(--text-muted);
}

/* =========================
   MODULES (optional)
========================= */

.modules {
  background: #05060d;
  padding: 4.5rem 1.5rem 3.5rem;
}

.modules-inner {
  max-width: 980px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: .98rem;
}

.modules-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.module-card {
  background: var(--panel-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-icon {
  width: 100px;
  height: 80px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    color-mix(in srgb, var(--role-color) 35%, rgba(0, 0, 0, 0.9));
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-top: 20px;
  font-size: 3em;
}

.module-card h3 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.module-card p {
  color: var(--text-muted);
  font-size: .95rem;
}

/* =========================
   FEATURES GRID
========================= */

.features {
  background: #05050b;
  padding: 4.5rem 1.5rem 3.5rem;
  border-top: 1px solid var(--border-subtle);
}

.features-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.feature-card {
  background: var(--panel-bg);
  border-radius: 20px;
  padding: 1.8rem 1.9rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: 0;
  background: radial-gradient(circle at top, color-mix(in srgb, var(--role-color) 26%, transparent), transparent 60%);
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
  border-color: color-mix(in srgb, var(--role-color) 45%, rgba(255, 255, 255, 0.07));
  background: rgba(255, 255, 255, 0.04);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-body {
  position: relative;
  z-index: 1;
}

.feature-tag {
  display: inline-block;
  margin-bottom: .6rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: color-mix(in srgb, var(--role-color) 70%, #fff);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: .8rem;
}

.feature-card ul {
  padding-left: 1.1rem;
}

.feature-card li {
  color: var(--text-muted);
  margin-bottom: .45rem;
  font-size: .95rem;
}

.feature-card-media {
  margin-top: 1.2rem;
  text-align: center;
}

.feature-card-media img {
  border-radius: 12px;
  max-width: 100%;
  opacity: .96;
}

/* =========================
   TESTIMONIAL
========================= */

.testimonial {
  background: var(--page-bg-alt);
  padding: 4rem 1.5rem 3.5rem;
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
}

.testimonial-card {
  background:
    color-mix(in srgb, var(--role-color) 50%, rgba(0, 0, 0, 0.9));
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.testimonial .quote {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.testimonial .author {
  font-size: .95rem;
  color: var(--text-muted);
}

/* =========================
   ENDING CTA
========================= */

.ending {
  background: #000;
  padding: 4rem 1.5rem 4.5rem;
  border-top: 1px solid var(--border-subtle);
}

.ending-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ending-inner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ending-subtext {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .feature-card {
    width: 83.548613%;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero-main {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

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

@media (max-width: 600px) {
  .hero {
    padding-inline: 1.2rem;
  }

  .story,
  .modules,
  .features,
  .testimonial,
  .ending {
    padding-inline: 1.2rem;
  }
}


/* =========================
   COACH WORKFLOW STORY
   (JSON-driven, final)
========================= */

.coach-workflow {
  padding: 6rem 0;
  background: #0e0f11;
}

.coach-workflow-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   HEADER
========================= */

.coach-workflow .section-header {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.coach-workflow .section-header h2 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.coach-workflow .section-header p {
  font-size: 1rem;
  opacity: 0.65;
}

/* =========================
   STEPS WRAPPER
========================= */

.coach-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* =========================
   SINGLE STEP
========================= */

.coach-workflow-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 4rem;
  align-items: start;
}

/* Reverse: Text rechts, Media links */
.coach-workflow-step.reverse {
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
}

.coach-workflow-step.reverse .coach-workflow-text {
  order: 2;
}

.coach-workflow-step.reverse .coach-workflow-media {
  order: 1;
}

/* =========================
   TEXT BLOCK
========================= */

.coach-workflow-text {
  max-width: 640px;
}

.coach-workflow-index {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
  background-color: color-mix(in srgb, var(--role-color) 60%, rgba(0, 0, 0, 0.9));
  width: 25px;
  height: 20px;
  border-radius: 100px;
  padding: 6px;
  padding-top: 10px;
  text-align: center;
}

.coach-workflow-text h3 {
  font-size: 1.4rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.coach-workflow-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

/* =========================
   MEDIA
========================= */

.coach-workflow-media {
  width: 100%;
}

@media (min-width: 960px) {
  .coach-workflow-media {
    position: sticky;
    top: 120px;
  }
}

.coach-workflow-media img {
  margin: 0 auto;
  width: 55%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.coach-workflow-media:hover img {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .coach-workflow-step.reverse {
    flex-direction: column-reverse;
    display: flex;
  }

  .coach-workflow {
    padding: 4rem 0;
  }

  .coach-workflow-inner {
    padding: 0 1.5rem;
  }

  .coach-workflow-step,
  .coach-workflow-step.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .coach-workflow-media {
    position: static;
  }
}

.coach-workflow-media {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.coach-workflow-media.aos-animate {
  opacity: 1;
}

/* =========================
   Outro Sections – Nutrition
========================= */

.cta-box,
.focus-slider,
.faq,
.micro-mission,
.footer-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

section.focus-slider.aos-init.aos-animate,
section.faq.aos-init.aos-animate,
.content-wrapper {
  background: black;
}

.content-wrapper {
  padding-top: 30px;
}

/* CTA */
.cta-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: color-mix(in srgb, var(--role-color) 60%, rgba(0, 0, 0, 0.9));
}

.cta-box h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: .75rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0 auto 1.75rem;
}

/* Button */
.btn-primary {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(72, 173, 75, 0.35);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: rgba(72, 173, 75, 0.26);
}

/* Focus */
.slide {
  grid-template-columns: 1fr 520px;
  gap: 3rem;
  align-items: center;
}

.slide-text h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.slide-text p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.slide img {
  width: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

/* Divider */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* FAQ */
.faq h2 {
  color: #fff;
  margin-bottom: 2rem;
}

.faq-item {
  background: color-mix(in srgb, var(--role-color) 60%, rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
  margin: 0 auto;
  margin-bottom: 1rem;
  max-width: 600px;
}

.faq-item h4 {
  color: #fff;
  margin-bottom: .4rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.65);
}

/* Mission */
.micro-mission {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding-bottom: 5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .slide {
    grid-template-columns: 1fr;
  }
}

.slide {
  display: block;
  text-align: center;
}

.slide-text p {
  margin: 0 auto;
  max-width: 620px;
  margin-bottom: 20px;
}

.slide img {
  max-width: 800px;
}

section {
  border: none;
}