/* ========================================
   ROADMAP — Visual Chapter Layout
   ======================================== */

/* ── Chapter Nav ── */
.chapter-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.chapter-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--gray-900);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px;
    padding: 14px 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.cn-dot {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    /* opacity-driven reveal — controlled via JS scroll */
    opacity: 0.18;
    transition: opacity 0.55s ease;
}

.cn-dot::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    flex-shrink: 0;
    transform: scale(1);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease;
}

/* Year dot colors — brand palette only */
.cn-dot[data-year="2026"]::before { background: #6451f5; }
.cn-dot[data-year="2025"]::before { background: #def247; }
.cn-dot[data-year="2024"]::before { background: #59d8ff; }
.cn-dot[data-year="2023"]::before { background: #6451f5; }
.cn-dot[data-year="2022"]::before { background: #def247; }
.cn-dot[data-year="2021"]::before { background: #59d8ff; }
.cn-dot[data-year="2020"]::before { background: #def247; }
.cn-dot[data-year="2019"]::before { background: #6451f5; }

/* Visited (scrolled past) — semi-bright */
.cn-dot.visited {
    opacity: 0.45;
}

/* Active (current section) — full color + bounce scale + glow */
.cn-dot.active {
    opacity: 1;
}
.cn-dot.active::before {
    transform: scale(1.55);
}
/* Per-year glow on active */
.cn-dot[data-year="2026"].active::before { box-shadow: 0 0 10px 3px rgba(100,81,245,0.7); }
.cn-dot[data-year="2025"].active::before { box-shadow: 0 0 10px 3px rgba(222,242,71,0.7); }
.cn-dot[data-year="2024"].active::before { box-shadow: 0 0 10px 3px rgba(89,216,255,0.7); }
.cn-dot[data-year="2023"].active::before { box-shadow: 0 0 10px 3px rgba(100,81,245,0.7); }
.cn-dot[data-year="2022"].active::before { box-shadow: 0 0 10px 3px rgba(222,242,71,0.7); }
.cn-dot[data-year="2021"].active::before { box-shadow: 0 0 10px 3px rgba(89,216,255,0.7); }
.cn-dot[data-year="2020"].active::before { box-shadow: 0 0 10px 3px rgba(222,242,71,0.7); }
.cn-dot[data-year="2019"].active::before { box-shadow: 0 0 10px 3px rgba(100,81,245,0.7); }

/* Hover — always show fully */
.cn-dot:hover { opacity: 1; }

/* Active / hover — keep year color, just enlarge + glow */
.cn-dot[data-year="2026"].active::before, .cn-dot[data-year="2026"]:hover::before { background: #6451f5 !important; box-shadow: 0 0 8px #6451f5; width: 13px; height: 13px; }
.cn-dot[data-year="2025"].active::before, .cn-dot[data-year="2025"]:hover::before { background: #def247 !important; box-shadow: 0 0 8px #def247; width: 13px; height: 13px; }
.cn-dot[data-year="2024"].active::before, .cn-dot[data-year="2024"]:hover::before { background: #59d8ff !important; box-shadow: 0 0 8px #59d8ff; width: 13px; height: 13px; }
.cn-dot[data-year="2023"].active::before, .cn-dot[data-year="2023"]:hover::before { background: #6451f5 !important; box-shadow: 0 0 8px #6451f5; width: 13px; height: 13px; }
.cn-dot[data-year="2022"].active::before, .cn-dot[data-year="2022"]:hover::before { background: #def247 !important; box-shadow: 0 0 8px #def247; width: 13px; height: 13px; }
.cn-dot[data-year="2021"].active::before, .cn-dot[data-year="2021"]:hover::before { background: #59d8ff !important; box-shadow: 0 0 8px #59d8ff; width: 13px; height: 13px; }
.cn-dot[data-year="2020"].active::before, .cn-dot[data-year="2020"]:hover::before { background: #def247 !important; box-shadow: 0 0 8px #def247; width: 13px; height: 13px; }
.cn-dot[data-year="2019"].active::before, .cn-dot[data-year="2019"]:hover::before { background: #6451f5 !important; box-shadow: 0 0 8px #6451f5; width: 13px; height: 13px; }

.cn-dot span {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--gray-900);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(4px);
    transition: all 0.2s;
}

.cn-dot:hover span { opacity: 1; transform: translateX(0); }

.cn-line {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
}
.cn-line-future { background: rgba(99,102,241,0.3); }

/* ── Hero ── */
.rm-hero {
    background: var(--gray-900);
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 0 80px;
}

.rm-hero-bg-text {
    position: absolute;
    font-family: var(--font-title);
    font-size: clamp(120px, 20vw, 260px);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    line-height: 1;
}

.rm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 15% 50%, rgba(222, 242, 71,0.06) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 85% 20%, rgba(99,102,241,0.06) 0%, transparent 65%);
}

.rm-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.rm-hero-content { flex: 1; }

.rm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(222, 242, 71,0.1);
    border: 1px solid rgba(222, 242, 71,0.2);
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.rm-hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
}

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

.rm-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
}

.rm-hero-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex-shrink: 0;
    width: 300px;
}

.rm-kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: background 0.25s;
}

.rm-kpi:hover { background: rgba(222, 242, 71,0.06); border-color: rgba(222, 242, 71,0.15); }

.rm-kpi-n {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--lime);
    line-height: 1;
}

.rm-kpi-u {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
}

.rm-kpi-l {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}

.rm-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 1;
}

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

/* ── Chapter Structure ── */
.rm-chapter {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    scroll-margin-top: 80px;
    --rc: rgba(255,255,255,0.1); /* default — overridden per year */
}

/* Subtle colored tint overlay driven by --rc */
.rm-chapter::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--rc);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.rm-chapter-light { background: var(--bg); }
.rm-chapter-alt   { background: var(--white); }

.rm-chapter-dark {
    background: var(--gray-900);
}

.rm-chapter-wm {
    position: absolute;
    font-family: var(--font-title);
    font-size: clamp(140px, 22vw, 280px);
    font-weight: 900;
    letter-spacing: -0.06em;
    /* tinted with year color */
    color: var(--rc);
    opacity: 0.07;
    top: -0.15em;
    left: -0.04em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

/* remove overrides — watermark now uses --rc for all */
.rm-chapter-wm-dark { opacity: 0.05; }

.rm-chapter-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

.rm-chapter-head {
    margin-bottom: 56px;
    max-width: 560px;
}

.rm-chapter-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.rm-label-done    { background: #dcfce7; color: #15803d; }
.rm-label-current { background: var(--lime); color: var(--gray-900); }
.rm-label-future  { background: rgba(99,102,241,0.15); color: #818cf8; }

.rm-label-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gray-900);
    display: inline-block;
    animation: rmPulse 1.8s ease-in-out infinite;
}

@keyframes rmPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.rm-chapter-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 12px;
}

.rm-title-light { color: var(--white); }

.rm-chapter-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.rm-desc-light { color: rgba(255,255,255,0.45); }

/* ── Grid ── */
.rm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.rm-grid-5 {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Cards ── */
.rm-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s;

    opacity: 0;
    transform: translateY(20px);
}

.rm-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1),
                transform 0.5s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.25s,
                border-color 0.25s;
}

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

.rm-card-done    { background: var(--white); border: 1px solid rgba(0,0,0,0.09); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.rm-card-current { background: var(--white); box-shadow: 0 0 0 2px var(--lime), 0 4px 20px rgba(222, 242, 71,0.15); border-color: transparent; }
.rm-card-current:hover { box-shadow: 0 0 0 2px var(--lime), 0 16px 40px rgba(222, 242, 71,0.2); }
.rm-card-future  { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.rm-card-future:hover { background: rgba(255,255,255,0.07); border-color: rgba(99,102,241,0.3); box-shadow: 0 12px 40px rgba(99,102,241,0.1); }

.rm-card-top {
    height: 4px;
    width: 100%;
}
.rm-top-done    { background: #22c55e; }
.rm-top-current { background: var(--lime); }

.rm-card-body {
    padding: 22px;
}

.rm-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.rm-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 9px;
    border-radius: 100px;
}
.rm-badge-done    { background: #dcfce7; color: #15803d; }
.rm-badge-current { background: var(--lime); color: var(--gray-900); }
.rm-badge-future  { background: rgba(99,102,241,0.15); color: #818cf8; }

.rm-quarter       { font-size: 0.72rem; color: var(--gray-500); font-weight: 600; }
.rm-quarter-light { color: rgba(255,255,255,0.3); }

.rm-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    margin-bottom: 14px;
    transition: background 0.2s, color 0.2s;
}

.rm-card:hover .rm-icon-wrap { background: #f0fdf4; color: #15803d; }
.rm-card-current:hover .rm-icon-wrap { background: rgba(222, 242, 71,0.15); color: var(--gray-900); }

.rm-icon-current { background: rgba(222, 242, 71,0.12); color: var(--gray-900); }
.rm-icon-future  { background: rgba(99,102,241,0.1); color: #818cf8; }
.rm-card-future:hover .rm-icon-wrap { background: rgba(99,102,241,0.15); color: #a5b4fc; }

.rm-card-body h3           { font-family: var(--font-title); font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; color: var(--gray-900); margin-bottom: 8px; line-height: 1.3; }
.rm-card-body p            { font-size: 0.83rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 14px; }
.rm-card-title-light       { color: rgba(255,255,255,0.9) !important; }
.rm-card-text-light        { color: rgba(255,255,255,0.45) !important; }

.rm-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rm-tags span { font-size: 0.7rem; font-weight: 600; color: var(--gray-700); background: var(--gray-100); padding: 3px 9px; border-radius: 100px; }
.rm-tags-dark span { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

/* ── Wide milestone card ── */
.rm-card-wide {
    grid-column: span 2;
}

.rm-card-milestone {
    background: linear-gradient(135deg, #1C1C1C 0%, #16213e 100%);
    border: none;
    overflow: visible;
    position: relative;
}

.rm-card-milestone::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, #f59e0b, #fcd34d);
    z-index: -1;
}

.rm-card-milestone .rm-card-body { padding: 28px 32px; }

.rm-milestone-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fcd34d;
    margin-bottom: 20px;
}

.rm-milestone-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.rm-milestone-title {
    font-family: var(--font-title);
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    color: var(--white) !important;
    margin-bottom: 8px !important;
}

.rm-milestone-text { color: rgba(255,255,255,0.55) !important; font-size: 0.88rem !important; }

.rm-milestone-number {
    font-family: var(--font-title);
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: #fcd34d;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.9;
}

.rm-card-milestone .rm-tags span {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
}

/* ── FTD Photo Card ── */
.rm-ftd-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    margin-top: 8px;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rm-ftd-card.visible { opacity: 1; transform: translateY(0); }

.rm-ftd-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transition: transform 0.6s ease;
}

.rm-ftd-card:hover .rm-ftd-bg { transform: scale(1.03); }

.rm-ftd-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.65) 45%,
        rgba(0,0,0,0.15) 100%
    );
}

.rm-ftd-content {
    position: relative;
    z-index: 2;
    padding: 40px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 580px;
}

.rm-ftd-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fcd34d;
    margin-bottom: 14px;
}

.rm-ftd-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.rm-ftd-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin-bottom: 24px;
}

.rm-ftd-stats {
    display: flex;
    gap: 28px;
}

.rm-ftd-stats div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rm-ftd-stats strong {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--lime);
    line-height: 1;
}

.rm-ftd-stats span {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.4);
}

/* ── Vision card (2026 big one) ── */
.rm-vision-card {
    position: relative;
    margin-top: 8px;
    border-radius: 20px;
    background: #a5b4fc;
    border: none;
    padding: 60px 48px;
    text-align: center;
    overflow: hidden;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rm-vision-card.visible { opacity: 1; transform: translateY(0); }

.rm-vision-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.rm-vision-content { position: relative; z-index: 1; }

.rm-vision-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.5);
    margin-bottom: 32px;
}

.rm-vision-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.rm-vision-numbers div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rm-vision-big {
    font-family: var(--font-title);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #1C1C1C;
    line-height: 1;
}

.rm-vision-unit {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0,0,0,0.5);
}

.rm-vision-x {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 300;
    color: rgba(0,0,0,0.2);
    align-self: center;
    margin-bottom: 28px;
}

.rm-vision-text {
    font-size: 0.95rem;
    color: rgba(0,0,0,0.6);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── CTA ── */
.rm-cta {
    background: var(--gray-900);
    padding: 100px 0;
    text-align: center;
}

.rm-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 32px;
}

.rm-cta h2 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.15;
}

.rm-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 36px;
}

.rm-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.rm-cta .btn-primary {
    background: var(--lime);
    color: var(--gray-900);
}

.rm-cta .btn-primary:hover {
    background: #cfe022;
}

.rm-cta .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 2px solid rgba(255,255,255,0.18);
}

.rm-cta .btn-secondary:hover {
    border-color: rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rm-grid { grid-template-columns: repeat(2, 1fr); }
    .rm-grid-5 { grid-template-columns: repeat(2, 1fr); }
    .rm-card-wide { grid-column: span 2; }
    .chapter-nav { display: none; }
}

@media (max-width: 760px) {
    .rm-hero-inner { flex-direction: column; gap: 40px; }
    .rm-hero-kpis { width: 100%; grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .rm-kpi { padding: 14px; }
    .rm-kpi-n { font-size: 1.5rem; }

    .rm-chapter { padding: 64px 0; }
    .rm-chapter-inner { padding: 0 20px; }
    .rm-chapter-wm { font-size: clamp(80px, 30vw, 140px); }

    .rm-grid { grid-template-columns: 1fr; }
    .rm-grid-5 { grid-template-columns: 1fr; }
    .rm-card-wide { grid-column: span 1; }

    .rm-milestone-content { flex-direction: column; gap: 12px; }
    .rm-milestone-number { font-size: 3.5rem; }

    .rm-ftd-card { height: 300px; }
    .rm-ftd-content { padding: 24px; }
    .rm-ftd-title { font-size: 1.7rem; }
    .rm-ftd-stats { flex-wrap: wrap; gap: 16px; }

    .rm-vision-card { padding: 40px 24px; }
    .rm-vision-numbers { gap: 12px; }
    .rm-vision-big { font-size: 3.5rem; }

    .rm-hero-inner { padding: 0 24px; }
}
