/* ═══════════════════════════════════════════════════════════
   ISHIMURA DOJO - Styles (Light Mode Only)
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:          #f7f6f4;
  --bg-card:     #ffffff;
  --white:       #ffffff;
  --text:        #111111;
  --text-muted:  #555555;
  --red:         #cc0000;
  --red-hover:   #aa0000;
  --border:      rgba(0,0,0,0.08);
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --radius:      12px;
  --nav-height:  72px;
}

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

html {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

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

.container--narrow {
  max-width: 760px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--red);
  color: #ffffff;
}
.btn--primary:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 20px rgba(204,0,0,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn--secondary:hover {
  background: rgba(204,0,0,0.06);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #ffffff;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

.btn--nav {
  background: var(--red);
  color: #ffffff !important;
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn--nav:hover {
  background: var(--red-hover);
}

.btn--full { width: 100%; }
.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* ── Section Base ────────────────────────────────────────────── */
.section {
  padding: 120px 0;
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section__eyebrow--light {
  color: rgba(255,255,255,0.7);
}

.section__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.section__divider {
  width: 56px;
  height: 2px;
  background: var(--red);
  margin: 28px auto;
}

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

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: var(--nav-height);
}

.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 64px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}


.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: black;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.65) 0%,
    rgba(5,5,5,0.58) 60%,
    rgba(5,5,5,0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 20px 100px;
  color: #ffffff;
}

.hero__logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 32px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff4444;
  margin-bottom: 16px;
}

.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero .text-red {
  color: #ff4444;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 16px;
}

.hero__launch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero__launch::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero .btn--primary {
  background: var(--red);
  color: #ffffff;
}

.hero .btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero__badge {
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
  animation: bounce 2.2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.br-desktop { display: block; }

/* ── Problem Section ─────────────────────────────────────────── */
.problem {
  background: var(--bg);
  text-align: center;
}

.problem .section__headline {
  text-align: center;
}

.problem .section__eyebrow {
  text-align: center;
}

.problem__body {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

.problem__list {
  list-style: none;
  margin: 0 auto 20px;
  max-width: 420px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.problem__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.problem__body--callout {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 12px;
}

/* ── Solution Section ────────────────────────────────────────── */
.solution {
  background: var(--bg-card);
}

.solution__header {
  text-align: center;
  margin-bottom: 64px;
}

.solution__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.solution__grid--quad {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Cards ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.card__icon { margin-bottom: 20px; }

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ── Instructor Section ──────────────────────────────────────── */
.instructeur {
  background: var(--bg);
}

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

.instructeur__photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  line-height: 0;
}

.instructeur__photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.instructeur__content .section__eyebrow {
  text-align: left;
}

.instructeur__name {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.15;
}

.instructeur__title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.instructeur__bio {
  margin-bottom: 28px;
}

.instructeur__bio p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.instructeur__bio p:last-child {
  margin-bottom: 0;
}

.instructeur__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.instructeur__badge {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

/* ── Programmes Section ──────────────────────────────────────── */
.programmes {
  background: var(--bg-card);
  text-align: center;
}

.programmes .section__eyebrow {
  text-align: center;
}

.programmes__visual {
  margin: 48px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.programmes__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.programmes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

.programmes__grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.programmes__list {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.programmes__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.programmes__list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 8px;
}

.card__body--callout {
  font-weight: 600;
  color: var(--text);
  margin-top: 8px;
}

/* ── How It Works ────────────────────────────────────────────── */
.how {
  background: var(--bg);
  text-align: center;
}

.how .section__headline,
.how .section__eyebrow {
  text-align: center;
}

.how__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 64px;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto 56px;
  position: relative;
}

.step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step__connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: var(--border);
}

.how__last-connector { display: none; }

.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.how__cta {
  text-align: center;
}

/* ── Pricing Section ─────────────────────────────────────────── */
.pricing {
  background: var(--bg);
  text-align: center;
}

.pricing .section__headline {
  text-align: center;
}

.pricing .section__eyebrow {
  text-align: center;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 56px auto 0;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.pricing__card--featured {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(204,0,0,0.12);
}

.pricing__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing__badge--neutral {
  background: var(--text-muted);
}

.pricing__top {
  margin-bottom: 28px;
}

.pricing__plan {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing__amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing__price-meta {
  display: flex;
  flex-direction: column;
}

.pricing__currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.pricing__period {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.pricing__price-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing__features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text);
}

.pricing__check {
  flex-shrink: 0;
}

.pricing__aside {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.pricing__spots {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  text-align: center;
}

.pricing__note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}

.pricing__footer-note {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq {
  background: var(--bg-card);
  text-align: center;
}

.faq .section__headline {
  text-align: center;
  margin-bottom: 48px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  gap: 16px;
  text-align: left;
}

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-muted);
}

.faq__item.open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: none;
  padding-bottom: 22px;
}

.faq__item.open .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Final CTA ───────────────────────────────────────────────── */
.final-cta {
  background: #0e0e0e;
  padding: 80px 0;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0e0e0e;
  border-top: none;
  padding: 56px 0 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  height: 240px;
  width: auto;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 340px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  text-align: center;
}

/* ── Member Button ───────────────────────────────────────────── */
.btn--member {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn--member:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  transform: none;
}

.nav__mobile-member {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 0;
  text-align: center;
  transition: color 0.2s;
}

.nav__mobile-member:hover {
  color: #ffffff;
}

/* ── Member Modal ─────────────────────────────────────────────── */
.member-modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  max-width: 420px;
  width: calc(100% - 48px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  background: var(--bg-card);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.member-modal::backdrop {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
}

.member-modal[open] {
  display: flex;
}

.member-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px 32px;
  position: relative;
  width: 100%;
}

.member-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
  line-height: 0;
}

.member-modal__close:hover {
  color: var(--text);
}

.member-modal__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(204,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.member-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.member-modal__body {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.member-modal__apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.member-modal__app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.member-modal__app-btn:hover {
  border-color: var(--red);
  background: var(--bg-card);
  transform: translateY(-1px);
}

.member-modal__app-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.member-modal__app-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.member-modal__app-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* ── Todo Highlight ──────────────────────────────────────────── */
mark.todo {
  background: rgba(255, 180, 0, 0.25);
  color: #7a5000;
  border-radius: 3px;
  padding: 1px 4px;
  font-weight: 600;
}

/* ── Scroll Animations ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }

/* ── Dojo Kun ────────────────────────────────────────────────── */
.dojo-kun {
  position: relative;
  background-color: #0e0e0e;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

/* grain texture overlay */
.dojo-kun::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  opacity: 0.045;
  pointer-events: none;
}

/* radial glow from centre */
.dojo-kun::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(204,0,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.dojo-kun__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.dojo-kun__logo {
  width: 88px;
  height: auto;
  margin-bottom: 28px;
}

.dojo-kun__label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.dojo-kun__intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 44px;
}

.dojo-kun__list {
  list-style: none;
  counter-reset: dojo-kun;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 680px;
}

.dojo-kun__list li {
  counter-increment: dojo-kun;
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.dojo-kun__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.dojo-kun__list li::before {
  content: counter(dojo-kun, decimal-leading-zero);
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--red);
  line-height: 1;
  margin-top: 2px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav__actions { margin-left: 0; }

  .step__number {
    margin: 0 auto 20px;
  }
}

@media (max-width: 1024px) {

  .pricing__grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; }

  .instructeur__inner {
    grid-template-columns: 1fr;
  }

  .instructeur__photo-wrap {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav__links,
  .nav > .btn--nav { display: none; }

  .btn--member { display: none; }

  .nav__hamburger { display: flex; }

  .solution__grid { grid-template-columns: 1fr; }

  .how__steps { grid-template-columns: 1fr; gap: 40px; }
  .step__connector { display: none; }
  .step { padding: 0; }

  .programmes__grid { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; }

  .hero__logo { display: none; }

  .br-desktop { display: inline; }

  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  /* ── Left-align everything on mobile ── */
  .section__eyebrow,
  .section__headline,
  .solution__header,
  .solution__sub,
  .problem,
  .problem .section__headline,
  .problem .section__eyebrow,
  .problem__body,
  .problem__list,
  .how,
  .how .section__headline,
  .how .section__eyebrow,
  .how__sub,
  .how__cta,
  .programmes,
  .programmes .section__headline,
  .programmes .section__eyebrow,
  .pricing,
  .pricing .section__headline,
  .pricing .section__eyebrow,
  .faq,
  .faq .section__headline,
  .step,
  .step__title,
  .step__body {
    text-align: left;
  }

  .section__divider { margin: 28px 0; }

  .programmes__visual { border-radius: var(--radius); }

  .footer__inner { align-items: center; }
  .footer__brand { align-items: center; }
  .footer__links { justify-content: center; }
  .footer__legal { text-align: center; }

  .pricing__spots,
  .pricing__note { text-align: left; }

  .pricing__footer-note { text-align: left; }

  .dojo-kun { padding: 72px 0; }
  .dojo-kun__intro { font-size: 0.9rem; margin-bottom: 36px; }
  .dojo-kun__list li { font-size: 0.9rem; gap: 16px; padding: 18px 0; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2rem; }

  .pricing__amount { font-size: 2.2rem; }

  .footer__links { gap: 16px; }
}
