:root {
    --hoelt-navy: #10243e;
    --hoelt-navy-dark: #09182b;
    --hoelt-blue: #315c92;
    --hoelt-red: #c74f49;
    --hoelt-paper: #fffdf8;
    --hoelt-cream: #f3efe6;
    --hoelt-white: #ffffff;
    --hoelt-ink: #17202b;
    --hoelt-muted: #566170;
    --hoelt-faint: #7c8490;
    --hoelt-border: #dcd7cc;
    --hoelt-max: 1160px;
}

.hoelt-page {
    background: var(--hoelt-paper);
    color: var(--hoelt-ink);
    font-family: "Inter Tight", Inter, sans-serif;
}

.hoelt-page a {
    color: var(--hoelt-blue);
}

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

.hoelt-nav {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(220, 215, 204, 0.92);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(16px);
}

.hoelt-nav-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.hoelt-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hoelt-navy) !important;
    font-weight: 800;
    text-decoration: none;
}

.hoelt-brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hoelt-badge,
.hoelt-status,
.hoelt-eyebrow,
.hoelt-kicker {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hoelt-badge {
    padding: 5px 8px;
    border: 1px solid var(--hoelt-navy);
    border-radius: 4px;
}

.hoelt-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.hoelt-nav-links a {
    color: var(--hoelt-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

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

.hoelt-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    color: var(--hoelt-red);
}

.hoelt-status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.hoelt-hero {
    padding: 82px 0 64px;
    border-bottom: 1px solid var(--hoelt-border);
    background: var(--hoelt-cream);
}

.hoelt-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 60px;
    align-items: end;
}

.hoelt-eyebrow,
.hoelt-kicker {
    color: var(--hoelt-red);
}

.hoelt-hero h1,
.hoelt-article-hero h1,
.hoelt-section-title {
    color: var(--hoelt-navy);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hoelt-hero h1 {
    max-width: 840px;
    margin: 18px 0 22px;
    font-size: clamp(52px, 8vw, 104px);
    line-height: 0.9;
}

.hoelt-hero-copy {
    max-width: 740px;
    margin: 0;
    color: var(--hoelt-muted);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(20px, 2.3vw, 27px);
    line-height: 1.45;
}

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

.hoelt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 17px;
    border: 1px solid var(--hoelt-navy);
    border-radius: 5px;
    color: var(--hoelt-navy) !important;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.hoelt-btn-primary,
.hoelt-btn:hover {
    background: var(--hoelt-navy);
    color: var(--hoelt-white) !important;
}

.hoelt-brief {
    overflow: hidden;
    border: 1px solid var(--hoelt-border);
    border-radius: 8px;
    background: var(--hoelt-white);
}

.hoelt-brief-head {
    padding: 13px 18px;
    border-bottom: 1px solid var(--hoelt-border);
    background: var(--hoelt-navy);
    color: var(--hoelt-white);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.hoelt-brief-row {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--hoelt-border);
}

.hoelt-brief-row:last-child {
    border-bottom: 0;
}

.hoelt-brief-row span {
    color: var(--hoelt-faint);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hoelt-brief-row strong {
    color: var(--hoelt-ink);
    font-size: 14px;
    line-height: 1.4;
}

.hoelt-section {
    padding: 76px 0;
}

.hoelt-section-alt {
    border-block: 1px solid var(--hoelt-border);
    background: var(--hoelt-cream);
}

.hoelt-section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 46px;
    align-items: end;
    margin-bottom: 34px;
}

.hoelt-section-title {
    margin: 10px 0 0;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1;
}

.hoelt-section-intro {
    margin: 0;
    color: var(--hoelt-muted);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 20px;
    line-height: 1.55;
}

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

.hoelt-resource-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-white);
    color: var(--hoelt-ink) !important;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.hoelt-resource-card:hover {
    transform: translateY(-4px);
    border-color: var(--hoelt-blue);
    box-shadow: 0 18px 36px rgba(16, 36, 62, 0.08);
}

.hoelt-card-number {
    color: var(--hoelt-red);
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}

.hoelt-resource-card h3 {
    margin: 44px 0 12px;
    color: var(--hoelt-navy);
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.hoelt-resource-card p {
    margin: 0;
    color: var(--hoelt-muted);
    font-size: 15px;
    line-height: 1.65;
}

.hoelt-card-link {
    margin-top: 28px;
    color: var(--hoelt-blue);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.hoelt-known-grid,
.hoelt-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hoelt-known-card,
.hoelt-faq-item {
    padding: 24px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-white);
}

.hoelt-known-card h3,
.hoelt-faq-item h3 {
    margin: 0 0 9px;
    color: var(--hoelt-navy);
    font-size: 19px;
}

.hoelt-known-card p,
.hoelt-faq-item p {
    margin: 0;
    color: var(--hoelt-muted);
    font-size: 15px;
    line-height: 1.65;
}

.hoelt-known-card[data-state="unknown"] {
    border-left: 4px solid var(--hoelt-red);
}

.hoelt-known-card[data-state="confirmed"] {
    border-left: 4px solid var(--hoelt-blue);
}

.hoelt-expert-quote {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    padding: 30px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-navy);
    color: var(--hoelt-white);
}

.hoelt-expert-meta {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    line-height: 1.6;
    text-transform: uppercase;
}

.hoelt-expert-meta strong {
    display: block;
    margin-bottom: 5px;
    color: var(--hoelt-white);
    font-family: "Inter Tight", Inter, sans-serif;
    font-size: 17px;
    text-transform: none;
}

.hoelt-expert-meta a {
    color: #b9d4f3;
}

.hoelt-expert-quote blockquote {
    margin: 0;
    color: var(--hoelt-white);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 22px;
    line-height: 1.55;
}

.hoelt-expert-context {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

.hoelt-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--hoelt-border);
}

.hoelt-timeline-item {
    padding: 24px 22px 10px 0;
    border-right: 1px solid var(--hoelt-border);
}

.hoelt-timeline-item + .hoelt-timeline-item {
    padding-left: 22px;
}

.hoelt-timeline-item:last-child {
    border-right: 0;
}

.hoelt-timeline-date {
    color: var(--hoelt-red);
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.hoelt-timeline-item h3 {
    margin: 11px 0 8px;
    color: var(--hoelt-navy);
    font-size: 19px;
}

.hoelt-timeline-item p {
    margin: 0;
    color: var(--hoelt-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hoelt-article-hero {
    padding: 52px 0 40px;
    border-bottom: 1px solid var(--hoelt-border);
    background: var(--hoelt-cream);
}

.hoelt-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
    color: var(--hoelt-faint);
    font-size: 13px;
}

.hoelt-breadcrumbs a {
    color: var(--hoelt-blue);
    text-decoration: none;
}

.hoelt-article-hero h1 {
    max-width: 950px;
    margin: 13px 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
}

.hoelt-article-deck {
    max-width: 800px;
    margin: 0;
    color: var(--hoelt-muted);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 21px;
    line-height: 1.55;
}

.hoelt-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: 24px;
    color: var(--hoelt-faint);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.hoelt-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 54px;
    padding: 48px 0 68px;
}

.hoelt-article {
    min-width: 0;
}

.hoelt-article section {
    padding: 0 0 38px;
    scroll-margin-top: 88px;
}

.hoelt-article section + section {
    padding-top: 34px;
    border-top: 1px solid var(--hoelt-border);
}

.hoelt-article h2 {
    margin: 0 0 15px;
    color: var(--hoelt-navy);
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.hoelt-article h3 {
    margin: 25px 0 9px;
    color: var(--hoelt-ink);
    font-size: 20px;
    line-height: 1.35;
}

.hoelt-article p,
.hoelt-article li {
    color: var(--hoelt-muted);
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 18px;
    line-height: 1.75;
}

.hoelt-article p {
    margin: 0 0 18px;
}

.hoelt-article ul,
.hoelt-article ol {
    margin: 0 0 20px;
    padding-left: 25px;
}

.hoelt-article li {
    margin-bottom: 9px;
}

.hoelt-article a {
    font-weight: 650;
}

.hoelt-answer-box,
.hoelt-note,
.hoelt-source-box {
    margin: 22px 0;
    padding: 21px 23px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-white);
}

.hoelt-answer-box {
    border-left: 4px solid var(--hoelt-blue);
}

.hoelt-note {
    border-left: 4px solid var(--hoelt-red);
    background: #fbf7f0;
}

.hoelt-answer-box strong,
.hoelt-note strong,
.hoelt-source-box strong {
    display: block;
    margin-bottom: 7px;
    color: var(--hoelt-navy);
    font-family: "Inter Tight", Inter, sans-serif;
    font-size: 16px;
}

.hoelt-answer-box p,
.hoelt-note p,
.hoelt-source-box p,
.hoelt-source-box li {
    font-size: 16px;
    line-height: 1.65;
}

.hoelt-data-table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
    background: var(--hoelt-white);
    font-size: 15px;
}

.hoelt-data-table th,
.hoelt-data-table td {
    padding: 14px 15px;
    border: 1px solid var(--hoelt-border);
    text-align: left;
    vertical-align: top;
}

.hoelt-data-table th {
    background: var(--hoelt-navy);
    color: var(--hoelt-white);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.hoelt-data-table td {
    color: var(--hoelt-muted);
    line-height: 1.55;
}

.hoelt-toc {
    position: sticky;
    top: 92px;
    align-self: start;
    padding: 19px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-white);
}

.hoelt-toc strong {
    display: block;
    margin-bottom: 12px;
    color: var(--hoelt-navy);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
}

.hoelt-toc a {
    display: block;
    padding: 8px 0;
    border-top: 1px solid var(--hoelt-border);
    color: var(--hoelt-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
}

.hoelt-toc a:hover {
    color: var(--hoelt-blue);
}

.hoelt-related {
    padding: 58px 0;
    border-block: 1px solid var(--hoelt-border);
    background: var(--hoelt-cream);
}

.hoelt-related h2 {
    margin: 0 0 24px;
    color: var(--hoelt-navy);
    font-size: 30px;
}

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

.hoelt-related-card {
    padding: 21px;
    border: 1px solid var(--hoelt-border);
    border-radius: 7px;
    background: var(--hoelt-white);
    color: var(--hoelt-ink) !important;
    text-decoration: none;
}

.hoelt-related-card strong {
    display: block;
    margin-bottom: 7px;
    color: var(--hoelt-navy);
    font-size: 17px;
}

.hoelt-related-card span {
    color: var(--hoelt-muted);
    font-size: 14px;
    line-height: 1.55;
}

.hoelt-footer {
    padding: 34px 0;
    background: var(--hoelt-navy-dark);
    color: rgba(255, 255, 255, 0.66);
}

.hoelt-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 13px;
}

.hoelt-footer a {
    color: var(--hoelt-white);
}

@media (max-width: 900px) {
    .hoelt-nav-links {
        display: none;
    }

    .hoelt-status {
        margin-left: auto;
    }

    .hoelt-hero-grid,
    .hoelt-section-head,
    .hoelt-article-layout,
    .hoelt-expert-quote {
        grid-template-columns: 1fr;
    }

    .hoelt-hero-grid {
        align-items: start;
    }

    .hoelt-resource-grid,
    .hoelt-related-grid {
        grid-template-columns: 1fr;
    }

    .hoelt-resource-card {
        min-height: 260px;
    }

    .hoelt-toc {
        position: static;
        order: -1;
    }

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

    .hoelt-timeline-item:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .hoelt-shell {
        width: min(100% - 30px, var(--hoelt-max));
    }

    .hoelt-badge {
        display: none;
    }

    .hoelt-status {
        font-size: 9px;
    }

    .hoelt-hero {
        padding: 58px 0 46px;
    }

    .hoelt-hero h1 {
        font-size: clamp(49px, 16vw, 72px);
    }

    .hoelt-known-grid,
    .hoelt-faq-grid,
    .hoelt-timeline {
        grid-template-columns: 1fr;
    }

    .hoelt-timeline-item,
    .hoelt-timeline-item + .hoelt-timeline-item {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid var(--hoelt-border);
    }

    .hoelt-timeline-item:last-child {
        border-bottom: 0;
    }

    .hoelt-data-table {
        display: block;
        overflow-x: auto;
    }

    .hoelt-footer-inner {
        flex-direction: column;
    }
}
