:root {
  --red: #b1091d;
  --wine: #8f1239;
  --purple: #3e3f96;
  --deep-purple: #76225e;
  --blue: #1262c8;
  --indigo: #3f438e;
  --green: #3f9142;
  --orange: #eb7a21;
  --ink: #202733;
  --muted: #657080;
  --line: #e5e8ef;
  --soft: #f4f7fb;
  --warm: #fbfaf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 39, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid rgba(229, 232, 239, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 126px;
  height: auto;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #354052;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid #cbd6e6;
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 22px;
}

.hero {
  min-height: calc(100vh - 72px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: #eef3f8;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 248, 0.98) 0%, rgba(251, 250, 248, 0.9) 40%, rgba(251, 250, 248, 0.54) 72%, rgba(251, 250, 248, 0.28) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  position: relative;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 110px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
}

.lead {
  color: #384456;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
}

.sublead {
  color: var(--muted);
  font-size: 16px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: #cbd6e6;
}

.button.dark {
  color: var(--white);
  background: var(--ink);
}

.section {
  padding: 88px 24px;
}

.section.alt {
  background: var(--white);
}

.section.tint {
  background: #eef4fb;
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(32, 39, 51, 0.06);
}

.card.flat {
  box-shadow: none;
}

.card.blue {
  border-top: 5px solid var(--blue);
}

.card.green {
  border-top: 5px solid var(--green);
}

.card.orange {
  border-top: 5px solid var(--orange);
}

.card.red {
  border-top: 5px solid var(--red);
}

.metric {
  color: var(--blue);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  margin: 9px 0;
  color: #445064;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
}

.visual-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.band {
  padding: 46px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.band .lead,
.band .sublead {
  color: rgba(255, 255, 255, 0.82);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0;
}

.price strong {
  font-size: 38px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.contact-link span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 36px 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #151a24;
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 112px;
  filter: brightness(1.1);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.project-hero {
  color: var(--white);
  background-color: #121720;
}

.project-hero::before {
  background:
    linear-gradient(90deg, rgba(18, 23, 32, 0.88) 0%, rgba(18, 23, 32, 0.72) 50%, rgba(18, 23, 32, 0.24) 100%),
    linear-gradient(180deg, rgba(18, 23, 32, 0.16), rgba(18, 23, 32, 0.08));
}

.project-hero .lead,
.project-hero .sublead {
  color: rgba(255, 255, 255, 0.84);
}

.project-hero .eyebrow {
  color: #f3d27c;
}

.project-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.12;
}

.project-hero__note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.project-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
  align-items: center;
}

.project-story__details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
  align-items: start;
}

.project-story__photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}

.project-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 42%;
}

.project-story__copy p {
  color: #3f4b5c;
  font-weight: 650;
}

.profile-strip {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #f8fbff;
}

.profile-strip strong,
.profile-strip span {
  display: block;
}

.profile-strip strong {
  font-size: 20px;
  line-height: 1.35;
}

.profile-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.athlete-philosophy {
  margin-top: 0;
  padding: 22px 24px;
  border: 1px solid rgba(177, 9, 29, 0.16);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.06), rgba(18, 98, 200, 0.04)),
    var(--white);
  box-shadow: 0 10px 26px rgba(32, 39, 51, 0.05);
}

.athlete-philosophy span {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.athlete-philosophy h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
}

.athlete-philosophy p {
  margin-bottom: 10px;
}

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

.athlete-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.athlete-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.athlete-facts strong,
.athlete-facts span {
  display: block;
}

.athlete-facts strong {
  color: var(--deep-purple);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.athlete-facts span {
  margin-top: 5px;
  color: #344052;
  font-weight: 850;
}

.athlete-results {
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(32, 39, 51, 0.05);
}

.athlete-results > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-group {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.result-group:first-of-type {
  border-top: none;
  padding-top: 0;
}

.result-group:last-child {
  padding-bottom: 0;
}

.result-group span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.athlete-results ul {
  margin: 0;
  padding-left: 18px;
}

.athlete-results li {
  margin: 6px 0;
  color: #344052;
  font-weight: 780;
}

.project-value-grid {
  align-items: stretch;
}

.project-value-card {
  min-height: 260px;
}

.project-value-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-weight: 900;
}

.project-impact {
  align-items: start;
}

.fund-list {
  display: grid;
  gap: 12px;
}

.fund-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(32, 39, 51, 0.06);
}

.fund-list strong,
.fund-list span {
  display: block;
}

.fund-list strong {
  font-size: 18px;
}

.fund-list span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 750;
}

.expedition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.expedition-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.08), rgba(18, 98, 200, 0.06)),
    var(--white);
  box-shadow: 0 18px 42px rgba(32, 39, 51, 0.08);
}

.expedition-date {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.expedition-card h3 {
  margin-top: 18px;
  font-size: 28px;
}

.expedition-amount {
  display: inline-grid;
  gap: 2px;
  margin: 4px 0 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.expedition-amount span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.82;
}

.expedition-amount strong {
  font-size: 30px;
  line-height: 1;
}

.expedition-card p {
  color: #3f4b5c;
  font-weight: 750;
}

.expedition-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.expedition-card dl div {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.expedition-card dt {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.expedition-card dd {
  margin: 4px 0 0;
  color: #344052;
  font-weight: 800;
}

.annual-goal {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 0 28px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, var(--red), var(--deep-purple) 54%, var(--blue));
  box-shadow: var(--shadow);
}

.annual-goal span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.annual-goal strong {
  color: #ffe08a;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 1;
}

.annual-goal p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.season-schedule {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(32, 39, 51, 0.08);
}

.season-schedule__head {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.season-schedule__head span {
  color: var(--deep-purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.season-schedule__head strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.season-schedule__head p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.season-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.season-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 18px;
  right: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--deep-purple), var(--blue));
  opacity: 0.28;
}

.season-event {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(18, 98, 200, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.07), rgba(18, 98, 200, 0.06)),
    var(--white);
}

.season-event::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 28px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 0 0 1px rgba(18, 98, 200, 0.18), 0 10px 20px rgba(32, 39, 51, 0.12);
}

.season-event__date {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-left: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.season-event h3 {
  margin-top: 24px;
  font-size: 30px;
}

.season-event__amount {
  display: inline-grid;
  width: fit-content;
  gap: 2px;
  margin: 2px 0 16px;
  padding: 12px 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.season-event__amount span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.84;
}

.season-event__amount strong {
  font-size: 32px;
  line-height: 1;
}

.season-event p {
  margin: 0;
  color: #3f4b5c;
  font-weight: 760;
}

.season-event dl {
  margin: auto 0 0;
  padding-top: 22px;
}

.season-event dl div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.season-event dt {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.season-event dd {
  margin: 4px 0 0;
  color: #344052;
  font-weight: 850;
}

.common-costs {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 26px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(177, 9, 29, 0.12);
  border-radius: var(--radius-lg);
  background: #fff9f9;
}

.common-costs h3 {
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 34px);
}

.common-costs p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 760;
}

.common-costs .cost-note {
  margin-top: 12px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.common-costs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.common-costs li {
  padding: 16px;
  border: 1px solid rgba(18, 98, 200, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.common-costs li strong,
.common-costs li span {
  display: block;
}

.common-costs li strong {
  color: var(--ink);
  font-size: 16px;
}

.common-costs li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.roadmap-grid div {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(32, 39, 51, 0.06);
}

.roadmap-grid strong {
  display: block;
  color: var(--wine);
  font-size: 28px;
  line-height: 1;
}

.roadmap-grid span {
  display: block;
  margin-top: 12px;
  color: #344052;
  font-weight: 850;
}

.roadmap-ascent {
  position: relative;
  display: grid;
  min-height: 340px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  padding: 76px 0 18px;
}

.roadmap-ascent__line {
  position: absolute;
  right: 28px;
  bottom: 132px;
  left: 28px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--deep-purple), var(--blue));
  opacity: 0.38;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.roadmap-step {
  position: relative;
  min-height: 128px;
  margin-bottom: calc(var(--level) * 18px);
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(32, 39, 51, 0.07);
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 0 0 1px rgba(18, 98, 200, 0.16), 0 10px 20px rgba(32, 39, 51, 0.12);
}

.roadmap-step span {
  display: block;
  color: var(--wine);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.roadmap-step strong {
  display: block;
  margin-top: 14px;
  color: #344052;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.roadmap-step--goal {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--deep-purple) 54%, var(--blue));
  box-shadow: var(--shadow);
}

.roadmap-step--goal span,
.roadmap-step--goal strong {
  color: var(--white);
}

.support-bridge {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(18, 98, 200, 0.2);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: #f8fbff;
}

.support-bridge strong {
  font-size: 18px;
}

.support-bridge span {
  color: var(--muted);
  font-weight: 800;
}

.support-sponsor-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 28px;
  padding: 38px;
  border: 1px solid rgba(177, 9, 29, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 98, 200, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(177, 9, 29, 0.1), rgba(18, 98, 200, 0.07)),
    var(--white);
  box-shadow: 0 20px 52px rgba(32, 39, 51, 0.1);
}

.support-sponsor-band h3 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 46px);
}

.support-sponsor-band p {
  max-width: 820px;
  margin-bottom: 0;
  color: #3f4b5c;
  font-size: 17px;
  font-weight: 780;
}

.support-sponsor-band .button {
  flex: 0 0 auto;
  min-width: 230px;
  justify-content: center;
}

.sponsor-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.sponsor-options li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #344052;
  font-size: 12px;
  font-weight: 850;
}

.support-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.support-plan-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(32, 39, 51, 0.09);
}

.support-plan--sponsor {
  border-color: rgba(177, 9, 29, 0.26);
  background:
    linear-gradient(180deg, rgba(177, 9, 29, 0.06), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.support-plan--premium {
  border-color: rgba(18, 98, 200, 0.34);
  background:
    linear-gradient(180deg, rgba(18, 98, 200, 0.11), rgba(255, 255, 255, 0) 42%),
    var(--white);
  box-shadow: 0 24px 58px rgba(18, 98, 200, 0.18);
  transform: translateY(-6px);
}

.recommended {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.support-plan h3 {
  margin-top: 18px;
  font-size: 28px;
}

.support-price {
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
}

.support-price strong {
  color: var(--wine);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
}

.support-price span {
  color: var(--muted);
  font-weight: 850;
}

.support-notes {
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.support-notes li {
  position: relative;
  padding-left: 22px;
  margin: 9px 0;
  color: #445064;
  font-weight: 750;
}

.support-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.support-plan .button {
  margin-top: auto;
}

.logo-note {
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid #d8e1ee;
  border-radius: var(--radius);
  background: #f8fbff;
}

.logo-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.logo-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.project-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-step {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.flow-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.project-final {
  background: var(--white);
}

.project-final .band {
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.96), rgba(118, 34, 94, 0.94) 52%, rgba(18, 98, 200, 0.9)),
    var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid .card {
  min-height: 180px;
}

.trust-grid p {
  color: var(--muted);
  font-weight: 750;
}

.trust-grid a {
  color: var(--blue);
  font-weight: 900;
}

.support-tier {
  display: grid;
  gap: 16px;
}

.support-tier .card {
  display: flex;
  flex-direction: column;
}

.support-tier .button {
  margin-top: auto;
}

.home-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 98, 200, 0.12), transparent 30%),
    radial-gradient(circle at 2% 90%, rgba(177, 9, 29, 0.08), transparent 34%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.home-hero__inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  padding: 86px 0 92px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 58px;
  align-items: center;
}

.home-hero__copy h1 {
  max-width: 830px;
  font-size: clamp(40px, 4.6vw, 58px);
  overflow-wrap: anywhere;
}

.home-hero__copy,
.home-hero__panel,
.signal-card {
  min-width: 0;
  max-width: 100%;
}

.home-hero__panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-visual {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  aspect-ratio: 3 / 2;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.signal-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.signal-card--dark {
  min-height: 210px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.94), rgba(118, 34, 94, 0.94) 54%, rgba(18, 98, 200, 0.9)),
    var(--ink);
}

.signal-card span {
  display: block;
  color: var(--deep-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card--dark span {
  color: rgba(255, 255, 255, 0.76);
}

.signal-card strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 27px;
  line-height: 1.25;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.signal-card--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.route-section {
  background: var(--soft);
}

.route-section .section-head {
  max-width: 920px;
}

.route-cards .card {
  min-height: 300px;
}

.route-card {
  display: flex;
  flex-direction: column;
}

.route-card--primary {
  border-color: rgba(177, 9, 29, 0.28);
  box-shadow: 0 18px 46px rgba(177, 9, 29, 0.11);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.dark-section .eyebrow,
.dark-section h2,
.dark-section .lead {
  color: var(--white);
}

.narrow {
  max-width: 1040px;
  text-align: center;
}

.note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.spring-layout {
  display: grid;
  gap: 34px;
}

.spring-intro {
  max-width: 920px;
}

.spring-intro h2 {
  max-width: 780px;
}

.spring-intro .sublead {
  max-width: 840px;
}

.spring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spring-item {
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(32, 39, 51, 0.06);
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "visual mark"
    "visual title"
    "visual text";
  gap: 4px 16px;
  align-items: center;
}

.spring-visual {
  grid-area: visual;
  overflow: hidden;
  border: 1px solid #edf1f7;
  border-radius: var(--radius);
  background: #fbfcfe;
  aspect-ratio: 1 / 1;
}

.spring-visual picture,
.spring-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.spring-visual img {
  object-fit: cover;
}

.spring-item strong {
  grid-area: mark;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-size: 19px;
}

.spring-item span {
  grid-area: title;
  display: block;
  font-weight: 900;
  font-size: 18px;
}

.spring-item p {
  grid-area: text;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.transformation-cards {
  align-items: stretch;
}

.transform-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.transform-visual {
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #edf1f7;
  border-radius: var(--radius);
  background: #fbfcfe;
  aspect-ratio: 1 / 1;
}

.transform-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iso-figure {
  position: relative;
  height: 180px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 98, 200, 0.08), rgba(177, 9, 29, 0.08)),
    #f8fbff;
  overflow: hidden;
}

.iso-figure span,
.iso-figure i,
.iso-figure b {
  position: absolute;
  display: block;
  transform: rotateX(58deg) rotateZ(-38deg);
  border-radius: 8px;
  box-shadow: 0 18px 28px rgba(32, 39, 51, 0.12);
}

.iso-figure span {
  width: 96px;
  height: 96px;
  left: 46px;
  top: 44px;
  background: linear-gradient(135deg, var(--red), var(--wine));
}

.iso-figure i {
  width: 116px;
  height: 74px;
  right: 46px;
  top: 50px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.iso-figure b {
  width: 72px;
  height: 72px;
  left: 50%;
  bottom: 22px;
  background: linear-gradient(135deg, #ffffff, #dbe7f7);
  border: 1px solid rgba(203, 214, 230, 0.9);
}

.iso-figure--company span {
  width: 130px;
  height: 82px;
  left: 52px;
  top: 62px;
}

.iso-figure--company i {
  width: 82px;
  height: 112px;
  right: 60px;
  top: 34px;
}

.iso-figure--team span,
.iso-figure--team i,
.iso-figure--team b {
  border-radius: 50%;
}

.service-split {
  align-items: center;
}

.founder-section {
  background: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 46px;
  align-items: center;
}

.founder-photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.founder-copy p {
  color: #3f4b5c;
  font-weight: 650;
}

.founder-name {
  display: grid;
  gap: 4px;
  margin: -2px 0 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff7f8;
}

.founder-name strong,
.founder-name span {
  display: block;
}

.founder-name strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.founder-name span {
  color: var(--muted);
  font-weight: 850;
}

.instructor-name {
  display: grid;
  gap: 4px;
  margin: -4px 0 18px;
  padding: 16px 18px;
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  background: #f8fbff;
}

.instructor-name strong,
.instructor-name span {
  display: block;
}

.instructor-name strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.instructor-name span {
  color: var(--muted);
  font-weight: 850;
}

.shiharu-teaser {
  background:
    linear-gradient(90deg, rgba(18, 23, 32, 0.94), rgba(118, 34, 94, 0.88)),
    var(--ink);
  color: var(--white);
}

.shiharu-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 46px;
  align-items: center;
}

.shiharu-teaser .eyebrow,
.shiharu-teaser h2,
.shiharu-teaser .lead {
  color: var(--white);
}

.shiharu-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.26);
}

.shiharu-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shiharu-card div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.shiharu-card strong,
.shiharu-card span {
  display: block;
}

.shiharu-card strong {
  font-size: 24px;
  line-height: 1.25;
}

.shiharu-card span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
}

.contact-panel--phase1 {
  align-items: center;
}

.training-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(18, 98, 200, 0.12), transparent 32%),
    radial-gradient(circle at 0% 92%, rgba(177, 9, 29, 0.08), transparent 34%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.training-hero__inner {
  width: min(1160px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 84px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.training-hero__copy h1 {
  font-size: clamp(38px, 4.4vw, 56px);
}

.training-hero__media {
  display: grid;
  gap: 14px;
}

.training-hero__visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.training-hero__visual picture,
.training-hero__visual img {
  display: block;
  width: 100%;
}

.training-hero__overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(177, 9, 29, 0.96), rgba(118, 34, 94, 0.95) 46%, rgba(18, 98, 200, 0.94));
  box-shadow: 0 14px 28px rgba(32, 39, 51, 0.12);
}

.training-hero__overview span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.training-hero__overview span:last-child {
  border-right: none;
}

.training-page .section-head {
  max-width: 920px;
}

.training-page .section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.24;
}

.training-page .section-head .sublead {
  max-width: 780px;
}

.training-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.training-facts span {
  padding: 8px 11px;
  border: 1px solid #d7e0ed;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #354052;
  font-size: 13px;
  font-weight: 850;
}

.learning-cards .card {
  min-height: 360px;
}

.training-method h3 {
  margin-top: 14px;
}

.output-card {
  display: flex;
  flex-direction: column;
}

.output-visual {
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #edf1f7;
  border-radius: var(--radius);
  background: #fbfcfe;
  aspect-ratio: 4 / 3;
}

.output-visual picture,
.output-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.output-visual img {
  object-fit: cover;
}

.program-table-wrap,
.schedule-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(32, 39, 51, 0.07);
}

.program-table,
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.program-table th,
.program-table td,
.schedule-table th,
.schedule-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.program-table th,
.schedule-table th {
  background: #eef4fb;
  color: #344052;
  font-weight: 900;
}

.program-table tr:last-child td,
.schedule-table tr:last-child td {
  border-bottom: none;
}

.program-table-wrap .note {
  padding: 0 16px 16px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.schedule-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.schedule-card__head h3 {
  margin: 0;
}

.schedule-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--blue));
  font-size: 12px;
  font-weight: 900;
}

.status-badge.closed {
  background: #7a8596;
}

.price-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 42px;
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(177, 9, 29, 0.95), rgba(118, 34, 94, 0.95) 48%, rgba(18, 98, 200, 0.92)),
    var(--ink);
  box-shadow: var(--shadow);
}

.price-panel .eyebrow,
.price-panel h2,
.price-panel p {
  color: var(--white);
}

.training-price {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 28px 0 22px;
}

.training-price span,
.training-price em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 800;
}

.training-price strong {
  color: #ffe08a;
  font-size: clamp(54px, 8vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

.price-panel .actions {
  justify-content: center;
}

.terms-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.terms-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 98, 200, 0.05), rgba(255, 255, 255, 0)),
    var(--white);
  box-shadow: 0 14px 34px rgba(32, 39, 51, 0.06);
}

.terms-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--purple) 58%, var(--blue));
  font-size: 13px;
  font-weight: 900;
}

.terms-card h3 {
  margin-bottom: 10px;
}

.terms-card p {
  margin: 0;
  color: var(--muted);
}

.terms-details {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(32, 39, 51, 0.06);
}

.terms-details details {
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.terms-details details:last-child {
  border-bottom: none;
}

.terms-details summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
}

.terms-details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.terms-note {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.instructor-layout {
  align-items: center;
}

.training-footer-cta {
  padding: 88px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(177, 9, 29, 0.94), rgba(118, 34, 94, 0.92) 52%, rgba(18, 98, 200, 0.9)),
    var(--ink);
}

.training-footer-cta h2 {
  color: var(--white);
}

.training-footer-cta p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.cta-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  max-width: 860px;
  margin: 28px auto 0;
}

.cta-checklist strong,
.cta-checklist span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.cta-checklist strong {
  background: rgba(255, 255, 255, 0.2);
}

.training-footer-cta .actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .nav {
    width: 100%;
    max-width: none;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--warm);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(251, 250, 248, 0.98), rgba(251, 250, 248, 0.9));
  }

  .project-hero::before {
    background: linear-gradient(180deg, rgba(18, 23, 32, 0.95), rgba(18, 23, 32, 0.82));
  }

  .hero-inner {
    width: min(100% - 36px, 720px);
    padding: 72px 0 84px;
  }

  .section {
    padding: 64px 18px;
  }

  .home-hero__inner,
  .training-hero__inner,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .split,
  .timeline,
  .contact-panel,
  .founder-layout,
  .shiharu-layout,
  .project-story,
  .project-story__details,
  .support-plan-grid,
  .support-plan-grid--three,
  .support-sponsor-band,
  .expedition-grid,
  .roadmap-grid,
  .season-timeline,
  .common-costs,
  .common-costs ul,
  .trust-grid,
  .project-flow {
    grid-template-columns: 1fr;
  }

  .season-schedule,
  .common-costs {
    padding: 22px;
  }

  .season-timeline {
    gap: 16px;
    padding-left: 16px;
  }

  .season-timeline::before {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 23px;
    width: 4px;
    height: auto;
  }

  .season-event {
    padding: 24px;
  }

  .season-event::before {
    left: -1px;
  }

  .season-event__date {
    margin-left: 8px;
  }

  .roadmap-ascent {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 0 24px;
  }

  .roadmap-ascent__line {
    top: 0;
    right: auto;
    bottom: 0;
    left: 8px;
    width: 5px;
    height: auto;
    transform: none;
  }

  .roadmap-step {
    min-height: auto;
    margin-bottom: 0;
    margin-left: 18px;
  }

  .roadmap-step::before {
    top: 24px;
    left: -31px;
  }

  .support-sponsor-band {
    align-items: stretch;
    flex-direction: column;
  }

  .support-plan--premium {
    transform: none;
  }

  .athlete-facts {
    grid-template-columns: 1fr;
  }

  .home-hero__inner {
    display: block;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    padding: 64px 24px 72px;
  }

  .training-hero__inner {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    padding: 64px 24px 72px;
  }

  .training-hero__media {
    margin-top: 38px;
  }

  .training-hero__overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__copy,
  .home-hero__panel {
    width: 100%;
    max-width: 100%;
  }

  .home-hero__panel {
    margin-top: 42px;
    padding: 18px;
    overflow: hidden;
  }

  .signal-grid,
  .spring-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .schedule-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .terms-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .program-table-wrap,
  .schedule-card {
    overflow-x: auto;
  }

  .price-panel {
    padding: 38px 22px;
  }

  .signal-card {
    width: 100%;
    max-width: 100%;
  }

  .home-hero__copy h1,
  .home-hero__copy p,
  .signal-card strong,
  .signal-card p {
    word-break: normal;
    line-break: strict;
    overflow-wrap: anywhere;
  }

  .band {
    padding: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 106px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  .home-hero__copy h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .lead {
    font-size: 16px;
  }

  .actions {
    display: grid;
  }

  .button {
    min-width: 0;
    width: 100%;
  }

  .card,
  .step {
    padding: 20px;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
  }
}
