:root {
    color-scheme: dark;
    --bg: #080909;
    --bg-2: #0d0f0f;
    --panel: #111414;
    --panel-2: #171b1a;
    --panel-3: #1d211f;
    --line: #2b302e;
    --line-strong: #414943;
    --text: #f7f8f6;
    --muted: #9ba39e;
    --accent: #c8ff34;
    --accent-soft: #ddff7a;
    --danger: #ff5a36;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 78px 78px,
        linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px) 0 0 / 78px 78px,
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--accent);
    z-index: 30;
    pointer-events: none;
}

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

.shell {
    width: min(calc(100% - 44px), var(--max));
    margin: 0 auto;
}

.top-stripe {
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0 72%, var(--danger) 72% 100%);
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: #080909;
    position: relative;
    z-index: 20;
}

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

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

.brand strong {
    display: grid;
    place-items: center;
    width: 45px;
    height: 38px;
    background: var(--accent);
    color: #080a08;
    font-size: 1.12rem;
    font-weight: 950;
    letter-spacing: -.06em;
    transform: skewX(-8deg);
}

.brand span {
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

.nav a {
    position: relative;
    color: var(--muted);
    padding: 12px 14px;
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

.hero,
.page-hero {
    position: relative;
    padding: 106px 0 70px;
}

.hero {
    max-width: 1040px;
    overflow: hidden;
}

.hero::after {
    content: "ENDURANCE";
    position: absolute;
    top: 52px;
    right: -36px;
    z-index: -1;
    font-size: clamp(5rem, 15vw, 11rem);
    font-weight: 950;
    letter-spacing: -.09em;
    line-height: .8;
    color: rgba(255,255,255,.028);
    writing-mode: vertical-rl;
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: .74rem;
    font-weight: 950;
    letter-spacing: .18em;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--accent);
    transform: skewX(-24deg);
}

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

h1,
h2,
h3,
.metric strong,
.summary-grid strong,
.comparison-panel strong,
.performance-strip strong {
    font-stretch: condensed;
}

h1 {
    margin-bottom: 24px;
    max-width: 940px;
    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 950;
    line-height: .88;
    letter-spacing: -.065em;
    text-transform: uppercase;
}

h1 span {
    color: var(--accent);
}

.page-hero h1 {
    font-size: clamp(3rem, 6vw, 5.8rem);
    max-width: 880px;
}

.hero-copy,
.page-hero p {
    max-width: 760px;
    color: #b1b8b3;
    font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.performance-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(860px, 100%);
    margin-top: 34px;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.performance-strip > div {
    padding: 17px 18px 16px 0;
    border-right: 1px solid var(--line);
}

.performance-strip > div + div {
    padding-left: 18px;
}

.performance-strip > div:last-child {
    border-right: 0;
}

.performance-strip strong {
    display: block;
    color: var(--text);
    font-size: clamp(1.4rem, 3vw, 2.35rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.045em;
}

.performance-strip span {
    display: block;
    margin-top: 7px;
    color: var(--accent);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
    transform: skewX(-5deg);
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.button.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #080a08;
}

.button.secondary {
    background: var(--panel);
}

.button:hover {
    background: var(--text);
    border-color: var(--text);
    color: #080909;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-bottom: 92px;
}

.metric,
.summary-grid article {
    position: relative;
    min-height: 198px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--panel);
    overflow: hidden;
}

.metric::before,
.summary-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 4px;
    background: var(--line-strong);
}

.metric:hover::before,
.summary-grid article:hover::before,
.metric.feature::before {
    background: var(--accent);
}

.metric.feature {
    grid-column: span 1;
    background: linear-gradient(135deg, #181d19 0%, #111412 100%);
    border-color: #3e493d;
}

.metric.feature::after {
    content: "58.1%";
    position: absolute;
    right: -3px;
    bottom: -13px;
    color: rgba(200,255,52,.06);
    font-size: 4.6rem;
    font-weight: 950;
    letter-spacing: -.08em;
}

.metric-label {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.metric strong,
.summary-grid strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.055em;
    margin-bottom: 15px;
}

.metric.feature strong {
    color: var(--accent);
}

.metric p,
.metric small,
.summary-grid p {
    position: relative;
    z-index: 1;
    color: var(--muted);
}

.metric p {
    margin-bottom: 5px;
    font-weight: 700;
}

.statement-section,
.streak-section,
.feature-story,
.stats-table-wrap,
.summary-grid,
.timeline,
.comparison-panel {
    margin-bottom: 96px;
}

.statement-section,
.streak-section {
    position: relative;
    padding-top: 34px;
    border-top: 1px solid var(--line-strong);
}

.statement-section::before,
.streak-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 130px;
    height: 4px;
    background: var(--accent);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.section-heading h2,
.feature-story h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.statement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.statement-grid article {
    position: relative;
    min-height: 230px;
    padding: 30px 28px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.statement-grid article::before {
    content: "01";
    display: block;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .14em;
}

.statement-grid article:nth-child(2)::before { content: "02"; }
.statement-grid article:nth-child(3)::before { content: "03"; }

.statement-grid h3 {
    font-size: 1.45rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 11px;
}

.statement-grid p,
.feature-story p {
    color: var(--muted);
}

.quote-panel {
    position: relative;
    padding: 38px 0 118px;
}

.quote-panel::before {
    content: "NO SHORTCUTS";
    display: block;
    margin-bottom: 24px;
    color: var(--danger);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .2em;
}

.quote-panel p {
    max-width: 960px;
    font-size: clamp(2rem, 4.4vw, 4.15rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.timeline {
    border-top: 1px solid var(--line-strong);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding: 34px 18px 34px 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
}

.timeline-item:hover,
.timeline-item.highlight {
    background: linear-gradient(90deg, rgba(200,255,52,.045), transparent 55%);
}

.timeline-item.highlight::before {
    background: var(--accent);
}

.timeline-item > span {
    padding-left: 16px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.timeline-item h2 {
    margin-bottom: 7px;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 950;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.timeline-item p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
}

.timeline-item.highlight h2 {
    color: var(--accent);
}

.comparison-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
}

.comparison-panel > div {
    position: relative;
    padding: 30px;
    background: var(--panel);
}

.comparison-panel > div::after {
    content: "↗";
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 900;
}

.comparison-panel strong {
    font-size: clamp(1.65rem, 3vw, 2.7rem);
    font-weight: 950;
    letter-spacing: -.045em;
}

.running-grid .feature {
    grid-column: span 1;
}

.streak-strip {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 6px;
}

.streak-strip div {
    position: relative;
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #4a5a35;
    border-top: 4px solid var(--accent);
    border-radius: 1px;
    background: #141914;
}

.streak-strip div::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 12px;
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
}

.streak-strip div.rest {
    border-color: var(--line);
    border-top-color: var(--line-strong);
    background: var(--panel);
}

.streak-strip div.rest::after {
    background: var(--line-strong);
}

.streak-strip span {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
}

.streak-strip b {
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feature-story {
    position: relative;
    padding: 48px;
    border: 1px solid #46513b;
    border-left: 5px solid var(--accent);
    border-radius: 2px;
    background: linear-gradient(135deg, #181d19 0%, #101311 100%);
    overflow: hidden;
}

.feature-story::after {
    content: "15.06";
    position: absolute;
    right: -12px;
    bottom: -40px;
    color: rgba(200,255,52,.05);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 950;
    letter-spacing: -.1em;
    line-height: 1;
    pointer-events: none;
}

.feature-story h2,
.feature-story p,
.feature-story .eyebrow {
    position: relative;
    z-index: 1;
}

.feature-story p {
    max-width: 800px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.stats-table-wrap {
    border-top: 4px solid var(--accent);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 21px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.stats-table th {
    background: #0e100f;
    color: var(--accent);
    font-size: .69rem;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.stats-table tbody tr {
    background: var(--panel);
}

.stats-table tbody tr:nth-child(even) {
    background: #0e1110;
}

.stats-table tbody tr:hover {
    background: #171c18;
}

.stats-table td:first-child {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.stats-table td:nth-child(2) {
    color: var(--text);
    font-weight: 850;
}

.stats-table td:nth-child(3) {
    color: var(--muted);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.not-found {
    min-height: 60vh;
}

.site-footer {
    border-top: 1px solid var(--line-strong);
    background: #080909;
}

.footer-inner {
    min-height: 124px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: .84rem;
}

.footer-inner p {
    margin: 0;
}

.footer-inner strong {
    color: var(--accent);
    font-size: .72rem;
    letter-spacing: .1em;
}

@media (max-width: 900px) {
    .metrics-grid,
    .statement-grid,
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric.feature {
        grid-column: span 1;
    }

    .running-grid .feature {
        grid-column: span 2;
    }

    .streak-strip {
        grid-template-columns: repeat(6, 1fr);
    }

    .performance-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .performance-strip > div:nth-child(2) {
        border-right: 0;
    }

    .performance-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    body::before {
        width: 3px;
    }

    .shell {
        width: min(calc(100% - 30px), var(--max));
    }

    .nav-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
        gap: 12px;
    }

    .brand span {
        display: none;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .nav a {
        padding-left: 10px;
        padding-right: 10px;
        white-space: nowrap;
    }

    .nav a::after {
        left: 10px;
        right: 10px;
    }

    .hero,
    .page-hero {
        padding-top: 70px;
    }

    .hero::after {
        display: none;
    }

    h1 {
        font-size: clamp(3.1rem, 16vw, 5.3rem);
    }

    .metrics-grid,
    .statement-grid,
    .summary-grid,
    .comparison-panel {
        grid-template-columns: 1fr;
    }

    .metric.feature,
    .running-grid .feature {
        grid-column: span 1;
    }

    .performance-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .performance-strip > div {
        padding: 14px 12px 14px 0;
    }

    .performance-strip > div + div {
        padding-left: 12px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 9px;
        padding-left: 14px;
    }

    .timeline-item > span {
        padding-left: 0;
    }

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

    .feature-story {
        padding: 30px 24px;
    }

    .feature-story::after {
        font-size: 8rem;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 26px 0;
    }
}

.snapshot-line {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 12px 18px;
    width: min(940px, 100%);
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.snapshot-line span {
    color: var(--accent);
    font-size: .66rem;
    font-weight: 950;
    letter-spacing: .15em;
}

.snapshot-line strong {
    font-size: .78rem;
    letter-spacing: .08em;
}

.snapshot-line small {
    color: var(--muted);
    font-size: .76rem;
}

.context-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 38px;
}

.context-grid article {
    position: relative;
    min-height: 235px;
    padding: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.context-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 4px;
    background: var(--accent);
}

.context-grid strong {
    display: block;
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.045em;
}

.context-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

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

    .context-grid article {
        min-height: 0;
    }

    .snapshot-line {
        grid-template-columns: auto 1fr;
    }

    .snapshot-line small {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .snapshot-line {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .snapshot-line small {
        grid-column: auto;
    }
}

.performance-strip .discipline-value {
    font-size: clamp(1rem, 1.7vw, 1.55rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.lifestyle-cards article {
    min-height: 310px;
}

.lifestyle-cards article::before {
    margin-bottom: 24px;
}

.personal-note {
    margin: 18px 0 0;
    color: #777f7a;
    font-size: .78rem;
}

.training-philosophy,
.fuel-section {
    margin-bottom: 96px;
}

.training-philosophy {
    padding-top: 34px;
    border-top: 1px solid var(--line-strong);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 10px;
}

.philosophy-main,
.discipline-stack {
    border: 1px solid var(--line);
    background: var(--panel);
}

.philosophy-main {
    position: relative;
    min-height: 360px;
    padding: 38px;
    overflow: hidden;
}

.philosophy-main::before {
    content: "INTENSITY";
    position: absolute;
    right: -10px;
    bottom: -26px;
    color: rgba(200,255,52,.045);
    font-size: clamp(5rem, 12vw, 9rem);
    font-weight: 950;
    line-height: .85;
    letter-spacing: -.08em;
    pointer-events: none;
}

.philosophy-main h3,
.fuel-grid h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 950;
    line-height: .92;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.philosophy-main p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--muted);
}

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

.discipline-stack {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

.discipline-stack div {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}

.discipline-stack div:last-child {
    border-bottom: 0;
}

.discipline-stack strong {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 950;
    letter-spacing: .08em;
}

.discipline-stack span {
    color: var(--muted);
    font-size: .84rem;
}

.fuel-section {
    position: relative;
    padding: 42px 0 0;
    border-top: 4px solid var(--accent);
}

.fuel-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
    column-gap: 54px;
    align-items: end;
    margin-bottom: 34px;
}

.fuel-intro .eyebrow,
.fuel-intro h2 {
    grid-column: 1;
}

.fuel-intro h2 {
    margin-bottom: 0;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.06em;
    text-transform: uppercase;
}

.fuel-intro > p {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin-bottom: 0;
    color: var(--muted);
}

.fuel-markers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 10px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.fuel-markers div {
    min-width: 0;
    padding: 21px 24px;
    border-right: 1px solid var(--line);
}

.fuel-markers div:last-child {
    border-right: 0;
}

.fuel-markers strong {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    font-weight: 950;
    line-height: .9;
    letter-spacing: -.04em;
}

.fuel-markers span {
    display: block;
    color: var(--muted);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.fuel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fuel-grid article {
    position: relative;
    min-height: 290px;
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.fuel-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 62px;
    height: 4px;
    background: var(--line-strong);
}

.fuel-grid article:hover::before,
.fuel-grid .fuel-story::before {
    background: var(--accent);
}

.fuel-grid h3 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.fuel-grid p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--muted);
}

.fuel-grid .fuel-story {
    background: linear-gradient(135deg, #181d19 0%, #101311 100%);
    border-color: #46513b;
}

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

.context-grid article {
    min-height: 265px;
}

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

    .context-grid article {
        min-height: 230px;
    }
}

@media (max-width: 900px) {
    .philosophy-grid,
    .fuel-intro,
    .fuel-grid {
        grid-template-columns: 1fr;
    }

    .fuel-intro > p {
        grid-column: 1;
        grid-row: auto;
        margin-top: 20px;
    }

    .fuel-markers {
        grid-template-columns: repeat(2, 1fr);
    }

    .fuel-markers div:nth-child(2) {
        border-right: 0;
    }

    .fuel-markers div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

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

    .context-grid article {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .performance-strip .discipline-value {
        font-size: .9rem;
        white-space: normal;
    }

    .lifestyle-cards article,
    .philosophy-main,
    .fuel-grid article {
        min-height: 0;
    }

    .philosophy-main {
        padding: 28px 24px;
    }

    .discipline-stack div {
        grid-template-columns: 82px 1fr;
        padding: 17px 18px;
    }

    .fuel-markers {
        grid-template-columns: 1fr;
    }

    .fuel-markers div,
    .fuel-markers div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fuel-markers div:last-child {
        border-bottom: 0;
    }

    .fuel-grid article {
        padding: 26px 22px;
    }
}
