@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@500;700;900&family=Inter:wght@400;500;700&display=swap');

:root {
  --brand-red: #C7161D;
  --brand-red-dark: #A11118;
  --brand-red-light: #FFEAEC;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-mute: #888888;
  --line: #E5E5E5;
  --line-soft: #F0F0F0;
  --bg: #FFFFFF;
  --bg-tint: #FAFAF8;
  --bg-dark: #0E0E10;
  --accent-yellow: #F4C430;
  --max: 1120px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 6px;
  --serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
  --sans: 'Noto Sans JP', 'Hiragino Sans', system-ui, sans-serif;
  --mono: 'Inter', system-ui, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ========== Top Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { height: 22px; }
.nav__menu {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
}
.nav__menu a { color: var(--ink-soft); transition: color .15s; }
.nav__menu a:hover { color: var(--brand-red); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand-red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background .15s;
}
.nav__cta:hover { background: var(--brand-red-dark); }
.nav__cta::after { content: '→'; font-weight: 700; }

@media (max-width: 720px) {
  .nav__menu { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(90deg, rgba(14,14,16,0.92) 0%, rgba(14,14,16,0.80) 35%, rgba(14,14,16,0.55) 60%, rgba(14,14,16,0.35) 100%),
    url('assets/hero-visual.png');
  background-size: cover, cover;
  background-position: center, center right;
  background-repeat: no-repeat, no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 140px;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(199,22,29,0.18), transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(14,14,16,0.6) 50%, var(--bg-dark));
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 1;
}
.hero__text { max-width: 620px; }
.hero__pills {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
}
.pill--red { background: var(--brand-red); color: #fff; }
.pill--yellow { background: var(--accent-yellow); color: var(--ink); }
.pill--ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }

.hero__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero__title .accent { color: var(--brand-red); }
.hero__title .br { display: block; }

.hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__date {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid var(--brand-red);
  border-radius: 6px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero__date-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--brand-red);
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
}
.hero__date-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
  flex-wrap: wrap;
}
.hero__date-md {
  font-size: clamp(18px, 2.4vw, 24px);
  letter-spacing: 0.5px;
}
.hero__date-dow {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-right: 4px;
}
.hero__date-sep {
  font-size: 16px;
  color: var(--brand-red);
  margin: 0 4px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .15s;
  font-family: inherit;
}
.btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 4px 20px rgba(199,22,29,.4);
}
.btn--primary:hover { background: var(--brand-red-dark); transform: translateY(-1px); }
.btn--primary::after { content: '→'; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--ghost::after { content: '↓'; }

@media (max-width: 880px) {
  .hero {
    min-height: 620px;
    padding: 80px 0 100px;
    background-image:
      linear-gradient(180deg, rgba(14,14,16,0.85) 0%, rgba(14,14,16,0.70) 60%, rgba(14,14,16,0.92) 100%),
      url('assets/hero-visual.png');
    background-position: center, center;
  }
  .hero__text { max-width: 100%; }
}

/* ========== Hero meta strip ========== */
.meta-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.meta-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.meta-item__icon {
  width: 44px;
  height: 44px;
  background: var(--brand-red-light);
  color: var(--brand-red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.meta-item__label {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 2px;
}
.meta-item__value {
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 720px) {
  .meta-strip__inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== Section base ========== */
.section {
  padding: 88px 0;
  background: #fff;
}
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--bg-dark); color: #fff; }

.sect-head {
  text-align: center;
  margin-bottom: 56px;
}
.sect-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-red);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.sect-head__kicker::before,
.sect-head__kicker::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-red);
}
.sect-head__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.sect-head__title .accent { color: var(--brand-red); }
.sect-head__sub {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

/* ========== Problem (02) ========== */
.problem__lead {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}
.problem__divider {
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
  margin: 24px 0 28px;
}
.problem__punch {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.5;
}
.problem__punch .accent { color: var(--brand-red); }

/* ========== Why now (03) ========== */
.why__head {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.5;
  margin-bottom: 32px;
}
.why__body {
  text-align: center;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
  max-width: 720px;
  margin: 0 auto 40px;
}
.why__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 580px;
  margin: 0 auto;
}
.why__stat-block { text-align: center; }
.why__stat-cap {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--ink-mute);
  font-weight: 700;
  margin-bottom: 4px;
}
.why__stat-num {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
}
.why__stat-num.is-accent { color: var(--brand-red); }
.why__stat-arrow {
  font-size: 28px;
  color: var(--brand-red);
  font-weight: 700;
}

/* ========== Difference (04) ========== */
.diff__map {
  max-width: 880px;
  margin: 0 auto 32px;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.diff__map img {
  width: 100%;
  height: auto;
  display: block;
}

.diff__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.diff-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}
.diff-card.is-shosan {
  border-color: var(--brand-red);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, #FFF8F8 100%);
  box-shadow: 0 8px 30px rgba(199,22,29,.08);
}
.diff-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.diff-card.is-shosan .diff-card__label { color: var(--brand-red); }
.diff-card__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  white-space: pre-line;
}
.diff-card__theme {
  font-size: 14px;
  color: var(--ink-soft);
}
.diff-card.is-shosan .diff-card__theme { color: var(--brand-red); font-weight: 700; }

.diff__footer {
  text-align: center;
  margin-top: 24px;
}
.diff__footer-text {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 8px;
}
.diff__footer-emph {
  color: var(--brand-red);
  font-weight: 700;
  font-size: 17px;
  font-family: var(--serif);
}

@media (max-width: 720px) { .diff__cards { grid-template-columns: 1fr; } }

/* ========== Program (05) ========== */
.program__heading {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.4;
  margin-bottom: 48px;
}

.day {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 24px;
}
.day__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.day__label {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 4px;
}
.day__date {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}
.day__sub {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
}
.day__desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.day__goal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-tint);
  border-left: 3px solid var(--brand-red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.day__goal-tag {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 1px;
}

.timetable {
  border-top: 1px solid var(--line);
}
.timetable__head,
.timetable__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.timetable__head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  border-bottom: 1px solid var(--line);
}
.timetable__time {
  font-weight: 700;
  color: var(--brand-red);
}
.timetable__row.is-soft .timetable__time,
.timetable__row.is-soft .timetable__content {
  color: var(--ink-mute);
}
.timetable__row.is-final {
  background: linear-gradient(90deg, var(--brand-red-light), transparent);
  margin: 0 -8px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--brand-red);
}
.timetable__row.is-final .timetable__time { color: var(--brand-red); }
.timetable__row.is-final .timetable__content { font-weight: 700; }

@media (max-width: 600px) {
  .timetable__head,
  .timetable__row { grid-template-columns: 100px 1fr; gap: 12px; font-size: 13px; }
}

/* ========== Takeaways (06) ========== */
.takeaways__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.takeaway-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform .2s, border-color .15s, box-shadow .2s;
  position: relative;
}
.takeaway-card:hover {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(199,22,29,.08);
}
.takeaway-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--brand-red-light), #FFF5F6);
  color: var(--brand-red);
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199,22,29,.15);
}
.takeaway-card__title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.4;
}
.takeaway-card__sub {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .takeaways__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .takeaways__grid { grid-template-columns: 1fr; }
}

/* Examples (under takeaways) */
.examples {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.examples__head {
  text-align: center;
  margin-bottom: 36px;
}
.examples__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.examples__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.5;
  color: var(--ink);
}
.examples__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.example-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.example-fig__frame {
  position: relative;
  background: #FAFAF8;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  padding: 16px;
}
.example-fig:hover .example-fig__frame {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(199,22,29,.12);
}
.example-fig__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.example-fig__caption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
}
.example-fig__tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  background: var(--brand-red);
  padding: 4px 10px;
  border-radius: 4px;
}
.example-fig__name {
  color: var(--ink);
  font-weight: 700;
}
@media (max-width: 720px) {
  .examples__grid { grid-template-columns: 1fr; gap: 24px; }
  .examples { margin-top: 56px; padding-top: 40px; }
}

/* ========== Mentor (07) ========== */
.mentor__head {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.5;
  margin-bottom: 16px;
}
.mentor__head .accent { color: var(--brand-red); }
.mentor__connect {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: 40px;
}
.mentor__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mentor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-red);
  border-radius: 8px;
  padding: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  overflow: hidden;
}
.mentor-card__photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: var(--brand-red-light);
  overflow: hidden;
}
.mentor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.mentor-card__body {
  padding: 28px;
}
@media (max-width: 720px) {
  .mentor-card { grid-template-columns: 1fr; }
  .mentor-card__photo { min-height: 240px; aspect-ratio: 16/10; }
  .mentor-card__photo img { object-position: center 25%; }
}
.mentor-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.mentor-card__name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}
.mentor-card__co {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.mentor-card__bullets {
  list-style: none;
}
.mentor-card__bullets li {
  font-size: 13px;
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
  color: var(--ink-soft);
}
.mentor-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: var(--brand-red);
}
.mentor__note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 24px;
}

@media (max-width: 720px) { .mentor__duo { grid-template-columns: 1fr; } }

/* ========== Target (08) ========== */
.target__heading {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.4;
  margin-bottom: 48px;
}

.target__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.target-col {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.target-col.is-welcome { border-top: 3px solid var(--brand-red); }
.target-col__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.target-col.is-welcome .target-col__title { color: var(--brand-red); }
.target-col.is-mismatch .target-col__title { color: var(--ink-mute); }
.target-col__list {
  list-style: none;
}
.target-col__list li {
  font-size: 14px;
  line-height: 1.9;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.target-col__list li:last-child { border-bottom: none; }

.target__students {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.target-student {
  text-align: center;
}
.target-student img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

@media (max-width: 720px) {
  .target__columns { grid-template-columns: 1fr; }
  .target__students { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Outcome (09) ========== */
.outcome__heading {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  margin-bottom: 40px;
}

.outcome__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.outcome__steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--line), var(--brand-red), var(--line));
  z-index: 0;
}
.outcome-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}
.outcome-step.is-final {
  border-color: var(--brand-red);
  background: linear-gradient(180deg, #fff, var(--brand-red-light));
}
.outcome-step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.outcome-step__title {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 4px;
}
.outcome-step.is-final .outcome-step__title { color: var(--brand-red); }
.outcome-step__desc {
  font-size: 12px;
  color: var(--ink-soft);
}

.outcome__footer {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 15px;
}
.outcome__footer-emph {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--brand-red);
}

@media (max-width: 720px) {
  .outcome__steps { grid-template-columns: 1fr; }
  .outcome__steps::before { display: none; }
}

/* ========== Selection (10) ========== */
.selection__heading {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 40px;
}

.selection__steps {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.sel-step {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-left: 4px solid var(--brand-red);
}
.sel-step__num {
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  min-width: 50px;
}
.sel-step__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sel-step__desc {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ========== FAQ (11) ========== */
.faq__heading {
  text-align: center;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 40px;
}
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--brand-red); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
}
.faq-item__plus {
  color: var(--brand-red);
  font-size: 22px;
  font-weight: 700;
  transition: transform .2s;
}
.faq-item.is-open .faq-item__plus { transform: rotate(45deg); }
.faq-item__a {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s, padding .25s;
}
.faq-item.is-open .faq-item__a {
  padding-top: 14px;
  max-height: 300px;
}

/* ========== CTA (12) ========== */
.final-cta {
  background: var(--brand-red);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,.12), transparent 50%);
  pointer-events: none;
}
.final-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  text-align: center;
}
.final-cta__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.final-cta__title {
  font-family: var(--sans);
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 28px;
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #fff;
  color: var(--brand-red);
  font-size: 16px;
  font-weight: 900;
  border-radius: var(--radius);
  transition: all .15s;
}
.final-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.final-cta__btn::after { content: '→'; }
.final-cta__sub {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.8;
}

/* ========== Footer ========== */
.footer {
  background: #0E0E10;
  color: rgba(255,255,255,.6);
  padding: 40px 0 32px;
  font-size: 12px;
  text-align: center;
}
.footer__logo {
  margin-bottom: 12px;
  display: inline-block;
  filter: invert(1) brightness(2);
  opacity: 0.85;
  height: 18px;
}
.footer p { margin-bottom: 4px; }

/* ========== Hero tagline + badges (added) ========== */
.hero__tagline {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  backdrop-filter: blur(8px);
}
.hero-badge--accent {
  border-color: var(--brand-red);
  background: rgba(199,22,29,.18);
}
.hero-badge__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.6);
}
.hero-badge__value {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  white-space: nowrap;
}
.hero-badge__value small { font-size: .7em; color: rgba(255,255,255,.7); }
.hero-badge--accent .hero-badge__value { color: #fff; }

/* meta-strip → 4 columns */
.meta-strip__inner { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .meta-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .meta-strip__inner { grid-template-columns: 1fr; gap: 16px; }
}

/* ========== Why + Difference (merged) ========== */
.why__diff {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.why__diff-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.5;
  margin-bottom: 28px;
}
.why__diff-title .accent { color: var(--brand-red); }
.why__diff .diff__map { margin-bottom: 24px; }
.why__diff .diff__footer-emph { margin-top: 8px; }

/* ========== Change (reframed) ========== */
.change__proof {
  max-width: 800px;
  margin: 0 auto 56px;
  padding: 44px 40px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #FFF8F8 100%);
  border: 2px solid var(--brand-red);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(199,22,29,.10);
}
.change__proof-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 16px;
}
.change__proof-lead {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 36px);
  line-height: 1.45;
  margin-bottom: 18px;
}
.change__proof-lead .accent { color: var(--brand-red); }
.change__proof-sub {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.95;
}
.change__evidence-head {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.change__evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.evidence-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.evidence-item__no {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 900;
  color: var(--brand-red);
  flex-shrink: 0;
  padding-top: 1px;
}
.evidence-item__name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.4;
}
.evidence-item__desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .change__evidence-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .change__evidence-grid { grid-template-columns: 1fr; }
}

/* ========== CTA band ========== */
.cta-band {
  background: var(--ink);
  color: #fff;
}
.cta-band--alt { background: var(--brand-red-dark); }
.cta-band__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band__text {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
}
.cta-band__text strong { color: var(--accent-yellow); }
.cta-band__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #fff;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 900;
  border-radius: var(--radius);
  transition: transform .15s, box-shadow .15s;
  white-space: nowrap;
}
.cta-band__btn::after { content: '→'; }
.cta-band__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ========== Future (career capital) ========== */
.future__lead {
  text-align: center;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto 48px;
}
.future__lead strong { color: var(--ink); }
.future__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.future-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-red);
  border-radius: 10px;
}
.future-card__no {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.future-card__title {
  font-size: 19px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}
.future-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.85;
}
@media (max-width: 720px) {
  .future__grid { grid-template-columns: 1fr; }
}

/* ========== Program day tabs + accordion ========== */
.day-tabs {
  display: flex;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 24px;
}
.day-tab {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.day-tab.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.day-panel { display: none; max-width: 760px; margin: 0 auto; }
.day-panel.is-active { display: block; }
.timetable-acc {
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.timetable-acc__summary {
  padding: 14px 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-red);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.timetable-acc__summary::-webkit-details-marker { display: none; }
.timetable-acc__summary::before {
  content: '＋';
  font-weight: 900;
}
.timetable-acc[open] .timetable-acc__summary::before { content: '−'; }
.timetable-acc .timetable { border-top: none; margin-top: 4px; }

/* ========== Recruit (requirements) ========== */
.recruit__highlight {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 18px 28px;
  text-align: center;
  background: var(--brand-red-light);
  border: 1px solid rgba(199,22,29,.25);
  border-radius: 8px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  color: var(--ink);
}
.recruit__highlight strong { color: var(--brand-red); }
.recruit__table {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.recruit__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--line-soft);
}
.recruit__row:last-child { border-bottom: none; }
.recruit__key {
  padding: 18px 24px;
  background: var(--bg-tint);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  border-right: 1px solid var(--line-soft);
}
.recruit__val {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
}
.recruit__sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-mute);
}
.recruit__row--accent .recruit__key { color: var(--brand-red); }
.recruit__row--accent .recruit__val { color: var(--brand-red); font-weight: 900; }
.recruit__row--tbd .recruit__val { color: var(--ink-mute); }
.recruit__note {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.7;
}
@media (max-width: 600px) {
  .recruit__row { grid-template-columns: 1fr; }
  .recruit__key { border-right: none; border-bottom: 1px solid var(--line-soft); padding-bottom: 10px; }
  .recruit__val { padding-top: 12px; }
}

/* ========== Sticky CTA ========== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(14,14,16,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.12);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.3;
}
.sticky-cta__lead {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.sticky-cta__deadline {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 900;
  color: var(--accent-yellow);
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--brand-red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background .15s;
}
.sticky-cta__btn::after { content: '→'; }
.sticky-cta__btn:hover { background: var(--brand-red); filter: brightness(1.1); }
@media (max-width: 480px) {
  .sticky-cta__btn { padding: 12px 18px; }
}

/* ========== Animations ========== */
@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
