:root {
    --cobalt: #1846ff;
    --navy: #0f1b3d;
    --navy-soft: #1d2f65;
    --mist: #f4f7fc;
    --paper: #fbfcff;
    --ink: #102040;
    --ink-soft: #4e607f;
    --line: rgba(24, 70, 255, 0.12);
    --gold: #d7b36a;
    --jade: #7ed7d1;
    --orange: #ff8a3d;
    --panel: rgba(255, 255, 255, 0.78);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --shadow-sm: 0 12px 32px rgba(10, 28, 78, 0.08);
    --shadow-lg: 0 28px 80px rgba(10, 28, 78, 0.16);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --content-width: 1240px;
    --hero-width: 1328px;
    --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
    --sans: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(126, 215, 209, 0.18), transparent 22%),
        radial-gradient(circle at bottom left, rgba(255, 138, 61, 0.12), transparent 18%),
        linear-gradient(180deg, #edf3ff 0%, #f8fbff 34%, #f4f7fc 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 27, 61, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 27, 61, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
    pointer-events: none;
    z-index: -1;
}

main#top {
    display: flex;
    flex-direction: column;
}

.hero-shell { order: 0; }
#overview { order: 1; }
#logic { order: 2; }
#work-system { order: 3; }
#education { order: 4; }
#clusters { order: 5; }
#actions { order: 6; }
#topics { order: 7; }

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

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

button {
    font: inherit;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(248, 251, 255, 0.84);
    border-bottom: 1px solid rgba(15, 27, 61, 0.08);
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease;
}

.topbar.is-hero {
    background: linear-gradient(180deg, rgba(7, 16, 37, 0.42), rgba(7, 16, 37, 0.12));
    border-bottom-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(6, 14, 33, 0.06);
}

.topbar-inner,
.hero,
.section-inner,
.footer-inner {
    width: min(var(--content-width), calc(100% - 48px));
    margin: 0 auto;
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: min-height 0.28s ease;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.brand-mark img {
    width: auto;
    height: 52px;
    max-width: none;
    transition: filter 0.28s ease;
}

.brand-copy small,
.section-label,
.eyebrow,
.metric-label,
.topic-meta,
.resource-tag,
.action-num,
.cluster-overline {
    display: inline-block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-copy small,
.section-label,
.eyebrow,
.metric-label,
.resource-tag,
.action-num,
.cluster-overline {
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
}

.brand-copy strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    transition: color 0.28s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.94rem;
    color: var(--ink-soft);
    transition: color 0.28s ease;
}

.nav-links a {
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cobalt), var(--jade));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--navy), var(--cobalt));
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.topbar.is-hero .brand-mark img {
    filter: brightness(0) invert(1);
}

.topbar.is-hero .brand-copy small,
.topbar.is-hero .brand-copy strong,
.topbar.is-hero .nav-links {
    color: rgba(255, 255, 255, 0.84);
}

.topbar.is-hero .nav-links a:hover {
    color: #fff;
}

.topbar.is-hero .nav-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #fff;
    backdrop-filter: blur(16px);
}

.hero-shell {
    position: relative;
    padding: 126px 0 36px;
    scroll-margin-top: 96px;
}

.hero-shell::before,
.hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
}

.hero-shell::before {
    width: 340px;
    height: 340px;
    top: 60px;
    right: -80px;
    background: radial-gradient(circle, rgba(24, 70, 255, 0.22), transparent 68%);
}

.hero-shell::after {
    width: 300px;
    height: 300px;
    left: -80px;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 138, 61, 0.14), transparent 72%);
}

.chapter-rail {
    position: fixed;
    right: 18px;
    top: 50%;
    z-index: 18;
    display: grid;
    gap: 10px;
    transform: translateY(-50%);
}

.chapter-link {
    display: grid;
    gap: 2px;
    min-width: 106px;
    padding: 11px 14px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(12, 22, 51, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(10, 28, 78, 0.16);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.chapter-link strong {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.chapter-link span {
    font-size: 0.84rem;
    font-weight: 700;
}

.chapter-link:hover,
.chapter-link.is-active {
    transform: translateX(-6px);
    color: #fff;
    background: linear-gradient(135deg, rgba(15, 27, 61, 0.94), rgba(24, 70, 255, 0.88));
    border-color: rgba(126, 215, 209, 0.4);
}

.hero-scene-stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 44px;
    box-shadow: var(--shadow-lg);
}

.hero-scene-backdrop,
.hero-scene-overlay {
    position: absolute;
    inset: 0;
}

.hero-scene-backdrop {
    background:
        linear-gradient(90deg, rgba(8, 18, 42, 0.8) 0%, rgba(8, 18, 42, 0.36) 48%, rgba(8, 18, 42, 0.72) 100%),
        url("images/hero-campus-main.jpg") center 42% / cover no-repeat;
    transform: scale(1.03);
}

.hero-scene-overlay {
    background:
        radial-gradient(circle at 20% 24%, rgba(126, 215, 209, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(7, 16, 37, 0.18), rgba(7, 16, 37, 0.48));
}

.hero {
    position: relative;
    display: grid;
    width: min(var(--hero-width), calc(100% - 48px));
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
    align-items: stretch;
    z-index: 1;
    min-height: 760px;
    padding: 30px;
}

.hero-copy,
.hero-visual,
.section-panel,
.stat-card,
.action-card,
.topic-card,
.resource-card,
.education-card,
.fund-card,
.compare-card {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.hero-copy {
    border-radius: var(--radius-lg);
    padding: 44px;
    background: rgba(251, 252, 255, 0.76);
    border-color: rgba(255, 255, 255, 0.72);
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(24, 70, 255, 0.12);
    color: var(--navy);
    font-size: 0.76rem;
    font-weight: 700;
}

.eyebrow {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(24, 70, 255, 0.08);
}

.hero-title {
    margin: 18px 0 12px;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1.08;
    letter-spacing: 0.03em;
}

.hero-title em {
    font-style: normal;
    color: var(--cobalt);
}

.hero-lead {
    margin: 0;
    max-width: 680px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero-quote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 3px solid var(--cobalt);
    background: rgba(255, 255, 255, 0.6);
    color: var(--navy);
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0 0 28px;
}

.button-primary,
.button-secondary,
.toggle-infographic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button-primary {
    background: linear-gradient(120deg, var(--navy), var(--cobalt));
    color: #fff;
    box-shadow: 0 18px 30px rgba(24, 70, 255, 0.22);
}

.button-secondary,
.toggle-infographic {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(15, 27, 61, 0.1);
    color: var(--ink);
}

.button-primary:hover,
.button-secondary:hover,
.toggle-infographic:hover {
    transform: translateY(-2px);
}

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

.stat-card {
    border-radius: 20px;
    padding: 18px;
}

.metric-value {
    display: block;
    margin-top: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cobalt);
    line-height: 1;
}

.metric-value-wide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.metric-divider {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.metric-note {
    display: block;
    margin-top: 8px;
    color: var(--ink-soft);
    font-size: 0.86rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    background:
        linear-gradient(155deg, rgba(15, 27, 61, 0.9), rgba(24, 70, 255, 0.82)),
        rgba(15, 27, 61, 0.92);
    color: #fff;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 96%);
}

.visual-top,
.visual-bottom {
    position: relative;
    z-index: 1;
}

.visual-top h2 {
    margin: 12px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.visual-top p,
.timeline-item p,
.topic-summary {
    color: rgba(255, 255, 255, 0.78);
}

.compare-subtitle,
.action-text,
.resource-card p,
.section-intro {
    color: var(--ink-soft);
}

.steps {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.timeline-item {
    position: relative;
    padding: 18px 18px 18px 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-item::before {
    content: attr(data-step);
    position: absolute;
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 800;
    color: var(--jade);
}

.timeline-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
}

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

.visual-note {
    border-radius: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
}

.visual-note .metric-label {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.visual-note strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 10px;
}

.visual-note--nowrap strong {
    white-space: nowrap;
    font-size: 1rem;
}

.section {
    padding: 24px 0 84px;
    scroll-margin-top: 96px;
}

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 0.86fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-label {
    margin-bottom: 10px;
}

.section-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.18;
}

.section-intro {
    margin: 0;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

.section-header--focus {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
}

.section-header--focus .section-title {
    max-width: 760px;
    font-size: clamp(2.2rem, 3.4vw, 3.5rem);
    line-height: 1.16;
}

.section-header--focus .section-intro {
    max-width: 760px;
}

.section-panel {
    border-radius: var(--radius-lg);
    padding: 28px;
}

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

.overview-controls {
    display: grid;
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 24px;
}

.overview-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 27, 61, 0.08);
    box-shadow: var(--shadow-sm);
}

.overview-tab {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.overview-tab.is-active {
    background: linear-gradient(120deg, var(--navy), var(--cobalt));
    color: #fff;
    transform: translateY(-1px);
}

.overview-narrative {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.85;
    font-size: 0.95rem;
}

.compare-card {
    border-radius: 28px;
    padding: 30px;
}

.compare-card h3 {
    margin: 12px 0 10px;
    font-size: 1.55rem;
}

.compare-subtitle {
    margin: 0 0 22px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.metric-list {
    display: grid;
    gap: 16px;
}

.metric-list--compact .metric-track {
    height: 52px;
}

.metric-list--compact .metric-row {
    grid-template-columns: 164px 1fr;
}

.metric-row {
    display: grid;
    grid-template-columns: 146px 1fr;
    gap: 16px;
    align-items: center;
}

.metric-row strong {
    font-size: 0.96rem;
}

.metric-track {
    position: relative;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(24, 70, 255, 0.08), rgba(24, 70, 255, 0.02));
    overflow: hidden;
}

.metric-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(24, 70, 255, 0.18), rgba(24, 70, 255, 0.56));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.2, 1, 0.22, 1);
}

.metric-fill.target {
    background: linear-gradient(90deg, rgba(126, 215, 209, 0.18), rgba(126, 215, 209, 0.65));
}

.metric-track.is-animated .metric-fill {
    transform: scaleX(1);
}

.metric-meta {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: 0.86rem;
    color: var(--navy);
    font-weight: 700;
}

.metric-growth {
    color: var(--orange);
}

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

.goal-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(24, 70, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.goal-item::after {
    content: "";
    position: absolute;
    right: -14px;
    bottom: -14px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 70, 255, 0.12), transparent 68%);
}

.goal-item strong {
    display: block;
    margin-top: 8px;
    font-size: 1.24rem;
    color: var(--navy);
}

.development-dual,
.feature-grid {
    display: grid;
    gap: 24px;
}

.logic-reference-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.logic-reference-card {
    padding: 34px 34px 32px;
    border-color: rgba(100, 150, 220, 0.18);
    border-style: solid;
    border-width: 0;
}

.logic-reference-card:nth-child(odd) {
    border-right-width: 1px;
}

.logic-reference-card:nth-child(-n+2) {
    border-bottom-width: 1px;
}

.logic-reference-card--warm {
    background: linear-gradient(180deg, #fff5e8 0%, #fff7eb 100%);
}

.logic-reference-card--cool {
    background: linear-gradient(180deg, #dff0ff 0%, #d7ecff 100%);
}

.logic-reference-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.logic-reference-head h3 {
    margin: 0;
    font-size: 2rem;
    color: var(--navy);
}

.logic-reference-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #efb78f;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.logic-reference-icon--green {
    background: #4fb49f;
}

.logic-reference-icon--blue {
    background: #6b9fd6;
}

.logic-reference-icon--violet {
    background: #b487c4;
}

.logic-reference-list {
    margin: 0;
    padding-left: 1.3rem;
    color: #1f2d47;
    display: grid;
    gap: 16px;
    font-size: 1.12rem;
    line-height: 1.75;
}

.development-dual {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
}

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

.development-flow,
.development-orbit,
.feature-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.development-flow::before,
.feature-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(24, 70, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(24, 70, 255, 0.02), transparent 36%);
    pointer-events: none;
}

.board-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.board-label,
.board-caption {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.board-label {
    background: rgba(24, 70, 255, 0.1);
    color: var(--cobalt);
}

.board-caption {
    background: rgba(15, 27, 61, 0.06);
    color: var(--ink-soft);
}

.development-flow-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    flex: 1;
}

.development-flow-grid::before {
    display: none;
}

.logic-step-card {
    position: relative;
    min-height: 100%;
    padding: 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(24, 70, 255, 0.06), rgba(24, 70, 255, 0.02));
    border: 1px solid rgba(24, 70, 255, 0.08);
}

.logic-step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 28px;
    right: -14px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(24, 70, 255, 0.12);
    color: var(--cobalt);
    font-weight: 800;
}

.logic-step-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--cobalt));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}

.logic-step-card strong {
    display: block;
    margin-top: 14px;
    font-size: 1.12rem;
    color: var(--navy);
}

.logic-step-card p {
    margin: 10px 0 0;
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 0.92rem;
}

.logic-flow-note,
.orbit-note {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-weight: 700;
}

.development-orbit h3,
.feature-panel h3 {
    margin: 12px 0 0;
    font-size: 1.45rem;
    color: var(--navy);
}

.orbit-board {
    margin-top: 24px;
    min-height: 320px;
    border-radius: 28px;
    padding: 28px 24px;
    background: linear-gradient(155deg, rgba(15, 27, 61, 0.98), rgba(24, 70, 255, 0.88));
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 18px;
    flex: 1;
}

.orbit-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.7;
}

.orbit-axis {
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1));
    z-index: 1;
}

.orbit-core,
.orbit-stage {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.orbit-stage {
    width: min(100%, 420px);
    padding: 18px 22px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 14px 28px rgba(5, 14, 37, 0.2);
}

.orbit-stage-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.orbit-core {
    width: min(100%, 290px);
    padding: 26px 22px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 18px 36px rgba(5, 14, 37, 0.24);
}

.orbit-core span,
.orbit-stage > span:last-child {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.orbit-core strong,
.orbit-stage strong {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
}

.pyramid-stack {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.pyramid-layer {
    margin: 0 auto;
    border-radius: 26px;
    background: rgba(24, 70, 255, 0.05);
    border: 1px solid rgba(24, 70, 255, 0.08);
}

.pyramid-layer--top {
    width: 76%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
}

.pyramid-layer--mid {
    width: 88%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
}

.pyramid-layer--base {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
}

.pyramid-layer span,
.pyramid-layer--base div {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.pyramid-layer--base strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
}

.feature-panel--education {
    background: linear-gradient(150deg, rgba(15, 27, 61, 0.98), rgba(24, 70, 255, 0.88));
    color: #fff;
}

.feature-panel--education .section-label,
.feature-panel--education h3 {
    color: #fff;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.logic-step-card {
    padding: 62px 18px 20px;
    background: linear-gradient(180deg, rgba(24, 70, 255, 0.08), rgba(24, 70, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.logic-step-meta {
    position: absolute;
    top: 16px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 27, 61, 0.06);
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logic-step-card:not(:last-child)::after {
    display: none;
}

.logic-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(24, 70, 255, 0.18);
}

.logic-step-card strong {
    margin-top: 16px;
}

.logic-step-card p {
    line-height: 1.78;
}

.logic-flow-note,
.orbit-note {
    position: relative;
    z-index: 1;
}

.orbit-board {
    min-height: 312px;
    border-radius: 32px;
}

.pyramid-stack {
    gap: 16px;
}

.pyramid-layer {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
}

.pyramid-layer--top {
    width: 100%;
}

.pyramid-layer--mid {
    width: 100%;
}

.pyramid-layer--base {
    width: 100%;
}

.pyramid-tier-label {
    display: block;
    margin: 6px 0 0;
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.pyramid-tier-grid {
    display: grid;
    gap: 10px;
}

.pyramid-layer--top .pyramid-tier-grid,
.pyramid-layer--mid .pyramid-tier-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pyramid-layer--base .pyramid-tier-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 14px;
}

.pyramid-tier-grid span,
.pyramid-tier-grid > div {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.76;
    word-break: normal;
    overflow-wrap: anywhere;
}

.pyramid-tier-grid > div strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.35;
}

.pyramid-layer--base .pyramid-tier-grid > div {
    min-height: 132px;
}

.pyramid-layer--base .pyramid-tier-grid > div span {
    display: block;
    font-size: 0.98rem;
    line-height: 1.82;
}

.feature-panel--education::before {
    background:
        radial-gradient(circle at top right, rgba(123, 215, 255, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%);
}

.education-reference-board {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.education-reference-board img {
    display: block;
    width: 100%;
    height: auto;
}

.work-system-reference-board {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.work-system-reference-board img {
    display: block;
    width: 100%;
    height: auto;
}

.education-axis {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.education-axis span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.72;
}

.education-grid {
    position: relative;
    z-index: 1;
    gap: 18px;
}

.education-grid::before {
    content: "";
    position: absolute;
    left: 9%;
    right: 9%;
    top: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(123, 215, 255, 0.08), rgba(123, 215, 255, 0.44), rgba(123, 215, 255, 0.08));
}

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

.action-card {
    position: relative;
    overflow: hidden;
    min-height: 238px;
    border-radius: 28px;
    padding: 24px;
    color: var(--ink);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.action-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 70, 255, 0.16), transparent 70%);
}

.action-card:hover,
.topic-card:hover,
.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.action-card h3 {
    margin: 12px 0 8px;
    font-size: 1.06rem;
}

.action-text {
    margin: 0 0 18px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-size: 0.92rem;
}

.action-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(24, 70, 255, 0.08);
    color: var(--cobalt);
    font-size: 0.8rem;
    font-weight: 700;
}

.cluster-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 24px;
}

.cluster-switches {
    display: grid;
    gap: 14px;
}

.cluster-button {
    width: 100%;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(15, 27, 61, 0.08);
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.cluster-button strong {
    display: block;
    margin-top: 8px;
    font-size: 1.05rem;
}

.cluster-button span {
    display: block;
    margin-top: 6px;
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 0.9rem;
}

.cluster-button.active {
    background: linear-gradient(140deg, rgba(24, 70, 255, 0.98), rgba(29, 47, 101, 0.94));
    color: #fff;
    box-shadow: 0 18px 32px rgba(24, 70, 255, 0.24);
}

.cluster-button.active span,
.cluster-button.active .cluster-overline {
    color: rgba(255, 255, 255, 0.82);
}

.cluster-board {
    --cluster-image: none;
    border-radius: 30px;
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(9, 18, 44, 0.84) 0%, rgba(16, 34, 82, 0.74) 32%, rgba(24, 70, 155, 0.42) 68%, rgba(24, 70, 255, 0.18) 100%),
        var(--cluster-image) center / cover no-repeat,
        linear-gradient(150deg, rgba(15, 27, 61, 0.98), rgba(24, 70, 255, 0.92));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cluster-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(126, 215, 209, 0.28), transparent 26%),
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
}

.cluster-content {
    position: relative;
    z-index: 1;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.cluster-content.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

.cluster-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cluster-chip {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.78rem;
    font-weight: 700;
}

.cluster-content h3 {
    margin: 14px 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.cluster-content p {
    margin: 0;
    max-width: 780px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.cluster-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.cluster-box {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cluster-box strong {
    display: block;
    margin-top: 10px;
}

.cluster-box span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.9rem;
}

.education-card {
    position: relative;
    border-radius: 24px;
    padding: 26px 22px 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.education-card::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 22px;
    right: 22px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(123, 215, 255, 0.18), rgba(123, 215, 255, 0.9), rgba(123, 215, 255, 0.18));
}

.education-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(158, 237, 255, 0.12), rgba(158, 237, 255, 0.82), rgba(158, 237, 255, 0.12));
}

.education-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12));
}

.education-card .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.education-card h4 {
    margin: 12px 0 14px;
    font-size: 1.26rem;
    color: #fff;
}

.education-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
}

.education-card li + li {
    margin-top: 8px;
}

.fund-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
}

.fund-card {
    border-radius: 28px;
    padding: 28px;
}

.fund-total {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(15, 27, 61, 0.96), rgba(24, 70, 255, 0.88));
    color: #fff;
}

.fund-total strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-family: var(--serif);
}

.fund-total p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
}

.fund-detail-panel {
    margin-top: 18px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 27, 61, 0.08);
}

.fund-detail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.fund-detail-head strong,
.fund-detail-item strong {
    display: block;
    margin-top: 8px;
    color: var(--navy);
}

.fund-detail-head strong {
    font-size: 1.36rem;
}

.fund-share-ring {
    --progress: 0;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 52%, transparent 53%),
        conic-gradient(var(--cobalt) calc(var(--progress) * 1%), rgba(24, 70, 255, 0.08) 0);
    box-shadow: inset 0 0 0 1px rgba(15, 27, 61, 0.06);
    transition: background 0.5s ease;
}

.fund-share-ring span {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy);
}

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

.fund-detail-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(24, 70, 255, 0.04);
}

.fund-list {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}

.fund-row {
    display: grid;
    grid-template-columns: 150px 1fr 64px;
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    border-radius: 16px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fund-row span,
.fund-row strong {
    font-size: 0.92rem;
}

.fund-row:hover,
.fund-row.is-active {
    background: rgba(24, 70, 255, 0.05);
}

.fund-row:hover {
    transform: translateX(4px);
}

.fund-bar {
    height: 14px;
    border-radius: 999px;
    background: rgba(24, 70, 255, 0.08);
    overflow: hidden;
}

.fund-bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cobalt), var(--jade));
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.2, 1, 0.22, 1);
}

.fund-row.is-animated .fund-bar i {
    transform: scaleX(1);
}

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

.topic-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: top center;
    color: #fff;
}

.topic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 61, 0.16), rgba(15, 27, 61, 0.84));
}

.topic-card > * {
    position: relative;
    z-index: 1;
}

.topic-meta {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
}

.topic-card h3 {
    margin: 10px 0 8px;
    font-size: 1.28rem;
}

.topic-summary {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 0.92rem;
}

.topic-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    font-weight: 700;
}

.topic-highlight {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

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

.resource-card {
    border-radius: 28px;
    padding: 24px;
    min-height: 220px;
}

.resource-card h3 {
    margin: 14px 0 10px;
    font-size: 1.16rem;
}

.resource-card p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cobalt);
    font-weight: 700;
}

.footer {
    padding: 0 0 48px;
}

.footer-inner {
    border-radius: 32px;
    padding: 26px 28px;
    background: linear-gradient(135deg, rgba(15, 27, 61, 0.96), rgba(29, 47, 101, 0.94));
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-inner strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.02rem;
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .chapter-rail {
        right: 10px;
    }

    .hero,
    .section-header,
    .compare-grid,
    .fund-layout,
    .cluster-layout,
    .development-dual {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
        padding: 24px;
    }

    .overview-controls {
        grid-template-columns: 1fr;
    }

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

    .development-flow-grid,
    .pyramid-layer--top .pyramid-tier-grid,
    .pyramid-layer--mid .pyramid-tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pyramid-layer {
        grid-template-columns: 1fr;
    }

    .pyramid-layer--top,
    .pyramid-layer--mid,
    .pyramid-layer--base {
        width: 100%;
    }

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

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

    .fund-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .chapter-rail {
        display: none;
    }

    .hero-shell {
        padding-top: 150px;
    }

    .topbar-inner {
        min-height: auto;
        padding: 16px 0;
        flex-wrap: wrap;
    }

    .nav-links {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .action-grid,
    .logic-reference-board,
    .education-grid,
    .topic-grid,
    .resource-grid,
    .cluster-matrix,
    .development-flow-grid,
    .pyramid-layer--top .pyramid-tier-grid,
    .pyramid-layer--mid .pyramid-tier-grid,
    .pyramid-layer--base .pyramid-tier-grid {
        grid-template-columns: 1fr;
    }

    .logic-step-card:not(:last-child)::after {
        display: none;
    }

    .board-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .development-flow-grid::before,
    .education-grid::before {
        display: none;
    }

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

    .metric-row,
    .fund-row {
        grid-template-columns: 1fr;
    }

    .metric-track,
    .fund-bar {
        order: 2;
    }

    .fund-detail-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .topic-card {
        min-height: 280px;
    }

    .hero-scene-stage {
        border-radius: 32px;
    }
}

@media (max-width: 640px) {
    .topbar-inner,
    .hero,
    .section-inner,
    .footer-inner {
        width: min(var(--content-width), calc(100% - 28px));
    }

    .hero-copy,
    .hero-visual,
    .section-panel,
    .compare-card,
    .fund-card {
        padding: 22px;
    }

    .hero-shell {
        padding-top: 196px;
    }

    .hero {
        padding: 14px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .logic-reference-card {
        padding: 24px 22px;
    }

    .logic-reference-head h3 {
        font-size: 1.7rem;
    }

    .logic-reference-list {
        font-size: 1rem;
    }

    .hero-lead,
    .section-intro,
    .hero-quote {
        font-size: 0.95rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary,
    .toggle-infographic {
        width: 100%;
    }

    .hero-kicker {
        gap: 8px;
    }

    .hero-kicker span {
        min-height: 28px;
        padding: 0 10px;
    }
}
