:root {
  --accent-gold: #c9a961;
  --accent-gold-dark: #a88a47;
  --bg-cream: #f7f5ef;
  --bg-light: #faf9f5;
  --bg-white: #ffffff;
  --border-subtle: #e8e3d6;
  --primary-navy: #0b1f3a;
  --primary-navy-dark: #081629;
  --primary-navy-light: #1e3556;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #7a7668;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #c4bfb2;
  --shadow-soft: 0 24px 60px rgba(8, 22, 41, 0.14);
  --shadow-card: 0 20px 40px rgba(11, 31, 58, 0.08);
  --shell-width: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top left, rgba(201, 169, 97, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #f8f4eb 100%);
  font-family: "Noto Sans JP", sans-serif;
}

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

p,
h1,
h2,
h3,
h4,
blockquote,
ul {
  margin: 0;
}

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

.shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 22, 41, 0.82);
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-gold);
  box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.14);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-on-dark-muted);
  font-size: 14px;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--accent-gold);
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--accent-gold);
  background: var(--accent-gold);
  color: var(--primary-navy-dark);
  padding: 16px 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 14px 30px rgba(201, 169, 97, 0.25);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(201, 169, 97, 0.3);
}

.button-small {
  padding: 12px 18px;
  font-size: 13px;
}

.mobile-apply-button {
  display: none;
}

.button-large {
  padding: 20px 48px;
  font-size: 18px;
}

.button-ghost {
  background: transparent;
  color: var(--text-on-dark);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #081629;
  color: var(--text-on-dark);
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: var(--shell-width);
  transform: translateX(-50%);
  overflow: hidden;
}

.hero-image {
  width: 50%;
  margin-left: auto;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  opacity: 0.78;
}

.hero-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  width: var(--shell-width);
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(8, 22, 41, 0.98) 0%, rgba(8, 22, 41, 0.98) 48%, rgba(8, 22, 41, 0.86) 64%, rgba(8, 22, 41, 0.35) 100%),
    radial-gradient(circle at 14% 18%, rgba(201, 169, 97, 0.2), transparent 24%);
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: block;
  padding: 68px 0 70px;
  min-height: calc(100vh - 84px);
}

.hero-copy {
  display: grid;
  gap: 28px;
  max-width: 860px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--accent-gold);
}

.hero h1,
.section-title,
.trainer-name,
.cta-shell h2 {
  font-family: "Noto Serif JP", serif;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  line-height: 1.26;
  letter-spacing: -0.04em;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-highlight {
  display: inline-block;
  padding: 4px 16px;
  margin-right: 6px;
  background: var(--accent-gold);
  color: #081629;
  line-height: 1.1;
}

.divider {
  width: 64px;
  height: 2px;
  background: var(--accent-gold);
}

.divider-left {
  margin: 0;
}

.hero-lead,
.cta-shell p {
  color: var(--text-on-dark-muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-head-copy,
.intro-copy p,
.trainer-description,
.message-copy {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 820px;
  padding-top: 8px;
}

.hero-stats div {
  display: grid;
  gap: 6px;
}

.hero-stats div + div {
  position: relative;
}

.hero-stats div + div::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 97, 0.2);
}

.hero-stats strong {
  color: var(--accent-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}

.hero-stats span {
  color: var(--text-on-dark-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid rgba(201, 169, 97, 0.46);
  border-radius: 999px;
  background: rgba(8, 22, 41, 0.5);
  color: var(--text-on-dark);
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 22px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-gold);
  margin-right: 8px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-panel {
  position: absolute;
  border: 1px solid rgba(201, 169, 97, 0.22);
  box-shadow: var(--shadow-soft);
}

.hero-panel-main {
  inset: 60px 0 70px 40px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 22, 41, 0.18)),
    radial-gradient(circle at top right, rgba(201, 169, 97, 0.28), transparent 30%),
    linear-gradient(135deg, #d8c29a 0%, #263a58 30%, #081629 100%);
}

.hero-panel-side {
  right: 24px;
  bottom: 18px;
  width: 220px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(8, 22, 41, 0.92);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.panel-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.8);
}

.hero-panel-main h2 {
  font-size: 36px;
  line-height: 1.25;
}

.hero-panel-main p {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.section {
  padding: 104px 0;
}

.section-cream {
  background: var(--bg-cream);
}

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

.section-dark {
  background:
    radial-gradient(circle at top center, rgba(201, 169, 97, 0.12), transparent 24%),
    linear-gradient(180deg, #081629 0%, #0c1d35 100%);
}

.split-intro,
.trainer-grid,
.curriculum-grid,
.message-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.curriculum-grid {
  align-items: stretch;
}

.section-title {
  color: var(--primary-navy);
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.section-title.large {
  font-size: clamp(2.4rem, 5.4vw, 3.7rem);
}

.split-intro .section-title.large {
  white-space: nowrap;
  font-size: clamp(1.8rem, 5vw, 3.7rem);
}

.section-subtitle {
  margin-top: 20px;
  color: var(--primary-navy);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.75;
}

.intro-copy {
  display: grid;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.03));
  border-left: 1px solid rgba(201, 169, 97, 0.32);
}

.intro-copy p {
  color: var(--text-secondary);
  font-size: 16px;
}

.capsule-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  color: var(--accent-gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-head-split {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
}

.section-head-center {
  justify-items: center;
  text-align: center;
}

.section-head-copy {
  max-width: 640px;
  color: var(--text-secondary);
  font-size: 15px;
}

.on-dark {
  color: var(--text-on-dark);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.issue-card,
.showcase-card,
.feature-card,
.pricing-card,
.requirement-card,
.state-card {
  border: 1px solid var(--border-subtle);
  background: var(--bg-light);
  box-shadow: var(--shadow-card);
}

.issue-card {
  overflow: hidden;
  background: var(--bg-cream);
}

.issue-visual,
.showcase-visual,
.message-visual,
.trainer-photo {
  position: relative;
  overflow: hidden;
}

.issue-visual {
  height: 220px;
  background-color: #0b1f3a;
  background-size: cover;
  background-position: center;
}

.issue-visual::after,
.showcase-visual::after,
.message-visual::after,
.trainer-photo::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.issue-visual::after {
  content: none;
}

.issue-visual-time::before,
.issue-visual-setup::before,
.issue-visual-output::before {
  content: "";
  position: absolute;
  inset: auto 28px 28px auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.issue-visual-time::before,
.issue-visual-setup::before,
.issue-visual-output::before {
  content: none;
}

.issue-visual-setup {
  background-image: url("./assets/images/section-entrepreneur-late-night-photo-texture.png");
}

.issue-visual-output {
  background-image: url("./assets/images/section-entrepreneur-presentation-photo-texture.png");
}

.issue-visual-time {
  background-image: url("./assets/images/section-entrepreneur-watch-photo-texture.png");
}

.issue-body,
.showcase-body {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.issue-index,
.showcase-tag,
.feature-index,
.pricing-label,
.state-label,
.cta-kicker,
.footer-sub,
.trainer-romaji {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.issue-index,
.feature-index,
.pricing-label,
.trainer-romaji {
  color: var(--accent-gold-dark);
  font-size: 11px;
  font-weight: 700;
}

.issue-index span {
  color: var(--text-muted);
  margin-left: 8px;
}

.issue-card h3,
.showcase-card h3,
.feature-card h3,
.timeline h3,
.requirement-card h3,
.state-card h3 {
  color: var(--primary-navy);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.5;
}

.issue-card h3 {
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.issue-card p:last-child,
.showcase-card p:last-child,
.feature-card p,
.timeline p,
.requirement-card p,
.state-card p,
.pricing-note {
  color: var(--text-secondary);
  line-height: 1.9;
}

.showcase-card {
  overflow: hidden;
  background: rgba(11, 31, 58, 0.96);
  border-color: rgba(201, 169, 97, 0.2);
}

.showcase-visual {
  height: 224px;
  background-color: #0b1f3a;
  background-size: cover;
  background-position: center;
}

.showcase-visual::before {
  content: none;
}

.showcase-visual-lp::after,
.showcase-visual-ops::after,
.showcase-visual-tool::after {
  content: none;
}

.showcase-visual-lp {
  background-image: url("./assets/images/sample-slide.png");
}

.showcase-visual-ops {
  background-image: url("./assets/images/sample-excel.png");
}

.showcase-visual-tool {
  background-image: url("./assets/images/sample-miniapp.png");
}

.showcase-body h3,
.showcase-body p:last-child {
  color: var(--text-on-dark);
}

.showcase-body p:last-child {
  color: var(--text-on-dark-muted);
}

.showcase-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--accent-gold);
  background: rgba(201, 169, 97, 0.08);
  font-size: 10px;
  font-weight: 700;
}

.trainer-photo {
  min-height: 580px;
  background:
    radial-gradient(circle at top left, rgba(201, 169, 97, 0.28), transparent 26%),
    linear-gradient(160deg, #d8c39b 0%, #7f8da3 38%, #0b1f3a 100%);
  border: 1px solid rgba(201, 169, 97, 0.24);
  box-shadow: var(--shadow-soft);
}

.trainer-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(8, 22, 41, 0.84);
  color: var(--text-on-dark);
  border: 1px solid rgba(201, 169, 97, 0.26);
}

.portrait-kicker {
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.portrait-card strong {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}

.portrait-card p {
  color: var(--text-on-dark-muted);
}

.trainer-copy {
  display: grid;
  gap: 18px;
}

.trainer-name {
  color: var(--primary-navy);
  font-size: 42px;
}

.trainer-description {
  color: var(--text-secondary);
  font-size: 16px;
}

.message-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--primary-navy);
  border: 2px solid var(--accent-gold);
  color: var(--text-on-dark);
}

.message-box h4 {
  color: var(--accent-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}

.message-box p {
  line-height: 1.9;
}

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

.feature-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--text-primary);
}

.feature-summary {
  display: grid;
  gap: 28px;
  margin-top: 40px;
  padding: 36px;
  background:
    linear-gradient(180deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.04)),
    var(--bg-cream);
  border: 1px solid rgba(201, 169, 97, 0.26);
}

.feature-summary blockquote {
  color: var(--primary-navy);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  line-height: 1.7;
}

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

.mini-stats div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
}

.mini-stats strong {
  color: var(--primary-navy);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.mini-stats span {
  color: var(--text-muted);
  font-size: 13px;
}

.curriculum-panel {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 40px;
  background:
    linear-gradient(160deg, rgba(239, 228, 207, 0.24) 0%, rgba(197, 171, 119, 0.34) 22%, rgba(36, 58, 89, 0.62) 54%, rgba(8, 22, 41, 0.84) 100%),
    radial-gradient(circle at top right, rgba(201, 169, 97, 0.22), transparent 24%),
    url("./assets/images/program.png");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-soft);
}

.curriculum-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 41, 0.06) 36%, rgba(8, 22, 41, 0.74) 100%);
  pointer-events: none;
}

.curriculum-panel > * {
  position: relative;
  z-index: 1;
}

.curriculum-panel p {
  color: var(--accent-gold);
  text-shadow: 0 2px 10px rgba(8, 22, 41, 0.55);
}

.curriculum-panel strong {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  color: var(--accent-gold);
  text-shadow: 0 3px 14px rgba(8, 22, 41, 0.6);
}

.curriculum-panel span {
  color: var(--accent-gold);
  text-shadow: 0 2px 10px rgba(8, 22, 41, 0.5);
  line-height: 1.8;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-subtle);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--primary-navy);
  color: var(--accent-gold);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
}

.pricing-shell {
  display: grid;
  gap: 36px;
}

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 56px 40px;
  background:
    radial-gradient(circle at top center, rgba(201, 169, 97, 0.16), transparent 36%),
    linear-gradient(180deg, #fff 0%, #f8f4eb 100%);
}

.pricing-amount {
  color: var(--primary-navy);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.pricing-amount span {
  font-size: 0.42em;
  color: var(--text-muted);
}

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

.requirement-card {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.checkmark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-gold);
  position: relative;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  width: 12px;
  height: 7px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.state-card {
  min-height: 380px;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px;
}

.state-before {
  background: #edeae1;
}

.state-after {
  background: var(--primary-navy);
  border: 2px solid var(--accent-gold);
}

.state-after,
.state-after h3,
.state-after p {
  color: var(--text-on-dark);
}

.state-before .state-label {
  color: var(--text-muted);
}

.state-after .state-label {
  color: var(--accent-gold);
}

.state-arrow {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--accent-gold);
  color: var(--bg-white);
  font-size: 30px;
  font-weight: 700;
}

.message-visual {
  min-height: 560px;
  background:
    radial-gradient(circle at top center, rgba(201, 169, 97, 0.28), transparent 22%),
    linear-gradient(150deg, #e3d3ae 0%, #aa9366 22%, #405879 48%, #0b1f3a 100%);
  box-shadow: var(--shadow-soft);
}

.message-visual::before {
  content: "";
  position: absolute;
  inset: auto 26px 26px 26px;
  height: 112px;
  background: rgba(8, 22, 41, 0.82);
  border: 1px solid rgba(201, 169, 97, 0.28);
}

.message-lead {
  color: var(--text-primary);
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 2;
}

.message-copy {
  color: var(--text-secondary);
  font-size: 16px;
}

.cta-section {
  background:
    radial-gradient(circle at top center, rgba(201, 169, 97, 0.16), transparent 18%),
    linear-gradient(180deg, #0b1f3a 0%, #081629 100%);
}

.cta-shell {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
  color: var(--text-on-dark);
}

.cta-kicker,
.footer-sub {
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 700;
}

.cta-shell h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

.cta-shell p {
  max-width: 640px;
  font-size: 16px;
}

.cta-note {
  color: var(--accent-gold);
  letter-spacing: 0.16em;
  font-size: 14px;
}

.site-footer {
  background: var(--primary-navy-dark);
  color: var(--text-on-dark-muted);
}

.footer-top {
  padding: 34px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--primary-navy-light);
}

.footer-brand {
  color: var(--text-on-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
}

@media (max-width: 1100px) {
  .split-intro,
  .trainer-grid,
  .curriculum-grid,
  .message-grid,
  .section-head-split,
  .before-after,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .state-arrow {
    order: 2;
  }

  .hero-image-wrap {
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero-image {
    width: 100%;
    margin-left: 0;
  }

  .hero-backdrop {
    left: 0;
    width: 100%;
    transform: none;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(8, 22, 41, 0.9) 0%, rgba(8, 22, 41, 0.62) 48%, rgba(8, 22, 41, 0.94) 100%),
      radial-gradient(circle at 14% 18%, rgba(201, 169, 97, 0.2), transparent 24%);
  }

  .hero-grid {
    padding: 72px 0 56px;
  }

  .hero-stats,
  .card-grid-3,
  .feature-grid,
  .requirement-grid,
  .mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    gap: 24px;
  }

  .hero-stats div + div::before {
    left: -12px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  .footer-top {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --shell-width: min(100vw - 32px, 100%);
  }

  .nav-toggle-button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .mobile-apply-button {
    display: inline-flex;
    order: 2;
    margin-left: auto;
    margin-right: 10px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(201, 169, 97, 0.22);
  }

  .nav-toggle-button {
    order: 3;
  }

  .nav-toggle-button span {
    width: 18px;
    height: 2px;
    background: var(--text-on-dark);
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(8, 22, 41, 0.96);
    border: 1px solid rgba(201, 169, 97, 0.2);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-stats,
  .card-grid-3,
  .feature-grid,
  .requirement-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
    gap: 14px;
  }

  .hero-stats div {
    position: relative;
    padding-left: 14px;
    border-left: 1px solid rgba(201, 169, 97, 0.28);
  }

  .hero-stats div + div::before {
    content: none;
  }

  .section {
    padding: 76px 0;
  }

  .trainer-photo,
  .message-visual,
  .curriculum-panel {
    min-height: 380px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 16px;
  }
}
