/* ===== Design system — editorial, premium ===== */

.home-page {
    --hp-bg: #050506;
    --hp-bg-elevated: #09090b;
    --hp-surface: #0c0c0f;
    --hp-surface-raised: #111114;
    --hp-border: rgba(255, 255, 255, 0.07);
    --hp-border-hover: rgba(255, 255, 255, 0.12);
    --hp-text: #f5f3ef;
    --hp-muted: #9c9890;
    --hp-muted-soft: #6b6760;
    --hp-accent: #d4cfc4;
    --hp-blue: #5b8fd6;
    --hp-blue-glow: rgba(38, 68, 165, 0.48);
    --hp-blue-glow-mid: rgba(32, 58, 145, 0.32);
    --hp-blue-glow-soft: rgba(28, 50, 125, 0.24);
    --hp-radius: 12px;
    --hp-container: 1080px;
    --hp-gutter: clamp(1.25rem, 4vw, 2.5rem);
    --hp-section: clamp(5rem, 10vw, 8rem);
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-article: 'Montserrat', system-ui, sans-serif;
    --navbar-height: 64px;
    --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background-color: var(--hp-bg);
    background-image:
        radial-gradient(ellipse 100% 60% at 50% -8%, rgba(42, 72, 168, 0.32), transparent 58%),
        radial-gradient(ellipse 50% 45% at 95% 10%, rgba(32, 55, 135, 0.2), transparent 52%),
        radial-gradient(ellipse 45% 40% at 0% 45%, rgba(28, 48, 120, 0.18), transparent 52%);
    color: var(--hp-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Reset, scoped to the editorial pages so the Tailwind legacy pages are untouched.
   Without border-box, `.home-container`'s `width: 100%` plus its gutter padding
   overflowed the viewport by two gutters, and the default body margin added 8px
   more — which `.rv-main`'s overflow-x: clip then hid by cutting text off. */
.home-page,
.home-page *,
.home-page *::before,
.home-page *::after {
    box-sizing: border-box;
}

.home-page {
    margin: 0;
    max-width: 100%;
    /* clip, not hidden: `hidden` would make body a scroll container and break the
       sticky article sidebar. This is only a backstop — the real fix is border-box. */
    overflow-x: clip;
}

/* Film grain — adds physical texture */
.home-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.home-page ::selection {
    background: rgba(245, 243, 239, 0.15);
    color: var(--hp-text);
}

/* Inline SVG icons (_includes/icon.html) — scale with font-size, inherit colour */
.icon {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-fill {
    fill: currentColor;
    stroke: none;
}

.home-page .rv-main {
    padding-top: 0;
    min-width: 0;
    overflow-x: clip;
    position: relative;
    isolation: isolate;
}

/* Ambient blue wash — homepage hero */
.home-page[data-page="home"] .rv-main::before {
    content: '';
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(80rem, 140vw);
    height: 42rem;
    background: radial-gradient(ellipse 65% 55% at 50% 45%, rgba(45, 78, 175, 0.3), rgba(30, 55, 140, 0.12) 50%, transparent 72%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* Inner pages — single subtle top wash, no stacked rv-main glow */
.home-page[data-page="blog"],
.home-page[data-page="blog-post"] {
    background-image: radial-gradient(ellipse 70% 28% at 50% 0%, rgba(38, 65, 155, 0.14), transparent 62%);
}

.home-page .rv-main > * {
    position: relative;
    z-index: 1;
}

.home-container {
    width: 100%;
    max-width: var(--hp-container);
    margin: 0 auto;
    padding-left: var(--hp-gutter);
    padding-right: var(--hp-gutter);
}

/* ---- HERO ---- */
.home-hero {
    position: relative;
    width: 100%;
    min-height: 92svh;
    min-height: 92dvh;
    box-sizing: border-box;
    padding-top: calc(var(--navbar-height) + 3rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--hp-border);
    overflow: hidden;
}

/* Hero — blue glow behind headline */
.home-hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -10%;
    width: 70%;
    height: 75%;
    background: radial-gradient(ellipse at 35% 45%, rgba(48, 82, 185, 0.38), rgba(32, 58, 150, 0.16) 45%, transparent 72%);
    filter: blur(70px);
    pointer-events: none;
}

/* Hero — blue glow behind portrait */
.home-hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(52, 88, 190, 0.4), rgba(35, 62, 155, 0.18) 45%, transparent 70%);
    filter: blur(65px);
    pointer-events: none;
}

@media (max-width: 899px) {
    .home-hero::after {
        top: auto;
        bottom: 12%;
        right: 50%;
        transform: translateX(50%);
        width: 340px;
        height: 340px;
    }
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3.5rem;
    align-items: end;
    width: 100%;
}

@media (min-width: 900px) {
    .home-hero-inner {
        grid-template-columns: 1fr 260px;
        gap: 5rem;
    }
}

.home-eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

/* Role as a small-caps label, matching the section labels used elsewhere */
.home-eyebrow-role {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--hp-text);
}

.home-eyebrow-tail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--hp-muted-soft);
}

.home-eyebrow-tail::before {
    content: '';
    width: 1px;
    height: 0.85em;
    background: var(--hp-border);
}

/* Stacked on small screens, where the divider would land at the start of a line */
@media (max-width: 599px) {
    .home-eyebrow {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .home-eyebrow-tail::before {
        display: none;
    }
}

.home-eyebrow::before {
    display: none;
}

.home-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 4.75rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    max-width: 18ch;
}

.home-title-accent {
    font-style: italic;
    background: linear-gradient(120deg, #b8d4f5 0%, #6ba3e0 50%, #9ec4f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--hp-muted);
    max-width: 46ch;
    margin-bottom: 2.5rem;
}

.home-actions {
    display: none;
}

.home-hero-portrait {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.home-avatar-frame {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(65, 105, 195, 0.4);
    background: var(--hp-surface);
    filter: grayscale(8%) contrast(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 60px -8px rgba(40, 70, 165, 0.55),
        0 24px 64px -16px rgba(30, 55, 140, 0.45);
}

.home-avatar-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hp-muted-soft);
    text-align: center;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.5rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background 0.3s var(--hp-ease), border-color 0.3s var(--hp-ease), color 0.3s var(--hp-ease), transform 0.3s var(--hp-ease), box-shadow 0.3s var(--hp-ease);
}

.home-btn-primary {
    background: transparent;
    color: var(--hp-text);
    border: 1px solid var(--hp-border-hover);
    padding: 0.875rem 1.75rem;
}

.home-btn-primary:hover {
    background: var(--hp-text);
    color: var(--hp-bg);
    border-color: var(--hp-text);
    transform: none;
    box-shadow: none;
}

.home-btn-ghost {
    color: var(--hp-muted);
    border: 1px solid var(--hp-border);
    background: rgba(255, 255, 255, 0.02);
}

.home-btn-ghost:hover {
    border-color: var(--hp-border-hover);
    color: var(--hp-text);
    background: rgba(255, 255, 255, 0.04);
}

.home-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 2rem;
    border-top: 1px solid var(--hp-border);
}

.home-stat strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--hp-text);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
}

.home-stat span {
    display: block;
    font-size: 0.8125rem;
    color: var(--hp-muted);
    margin-top: 0.25rem;
}

.home-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.home-avatar-frame {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    border-radius: var(--hp-radius);
    overflow: hidden;
    border: 1px solid var(--hp-border);
    background: var(--hp-surface);
    box-shadow:
        var(--hp-shadow-md),
        0 0 0 1px rgba(0, 0, 0, 0.2);
}

.home-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-avatar-caption {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--hp-muted);
    line-height: 1.5;
}

.home-avatar-caption strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.home-avatar-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hp-muted);
}

/* ---- SECTION HEADER ---- */
.home-section {
    padding: var(--hp-section) 0;
}

.home-section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
}

.home-section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hp-muted-soft);
    margin-bottom: 0.625rem;
}

.home-section-title {
    font-family: var(--font-article);
    font-size: clamp(1.625rem, 3vw, 2.125rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
}

.home-section-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--hp-muted-soft);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.25s var(--hp-ease);
}

.home-section-link:hover {
    color: var(--hp-text);
}

/* ---- START HERE ---- */
.home-start-here {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    border-bottom: 1px solid var(--hp-border);
}

.home-start-header {
    margin-bottom: 2rem;
}

.home-start-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .home-start-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.home-start-path-title {
    font-family: var(--font-article);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem;
    color: var(--hp-text);
}

.home-start-path-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--hp-muted-soft);
    margin: 0 0 0.75rem;
}

/* What the path costs, so the commitment is visible before the list */
.home-start-path-meta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    color: var(--hp-muted-soft);
    margin: 0 0 1.25rem;
}

.home-start-links {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: start-here;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.home-start-links li {
    counter-increment: start-here;
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
}

.home-start-links li::before {
    content: counter(start-here);
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--hp-muted-soft);
    width: 1.25rem;
}

.home-start-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--hp-muted);
    text-decoration: none;
    transition: color 0.25s var(--hp-ease);
}

.home-start-links a:hover {
    color: var(--hp-blue);
}

/* ---- SPOTLIGHT (latest article) ---- */
.home-spotlight {
    display: block;
    position: relative;
    padding: 2rem 0 3rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--hp-border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s var(--hp-ease);
}

.home-spotlight::before {
    content: '';
    position: absolute;
    left: -12%;
    top: -10%;
    width: 65%;
    height: 130%;
    background: radial-gradient(ellipse at 25% 50%, rgba(42, 72, 168, 0.35), rgba(30, 52, 135, 0.14) 50%, transparent 72%);
    filter: blur(55px);
    pointer-events: none;
    z-index: -1;
}

#writing.home-section {
    position: relative;
}

#writing.home-section::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 10%;
    width: 45%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(38, 65, 155, 0.24), transparent 68%);
    filter: blur(70px);
    pointer-events: none;
}

.home-spotlight:hover .home-spotlight-title {
    color: var(--hp-blue);
}

.home-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    color: var(--hp-muted-soft);
    font-variant-numeric: tabular-nums;
}

.home-spotlight-meta span:first-child {
    color: var(--hp-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.home-spotlight:hover {
    opacity: 0.92;
}

.home-spotlight-title {
    font-family: var(--font-article);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    max-width: 28ch;
    transition: color 0.3s var(--hp-ease);
}

.home-spotlight-excerpt {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--hp-muted);
    max-width: 62ch;
    margin: 1rem 0 0;
}

/* ---- ARTICLE LIST (editorial rows) ---- */
.home-post-list {
    display: flex;
    flex-direction: column;
}

.home-post-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem 1.5rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--hp-border);
    text-decoration: none;
    color: inherit;
    align-items: start;
    transition: opacity 0.25s var(--hp-ease);
}

@media (min-width: 768px) {
    .home-post-row {
        grid-template-columns: 5.5rem 1fr 2rem;
        gap: 2rem;
        align-items: center;
        padding: 2rem 0;
    }
}

.home-post-row:hover {
    opacity: 0.82;
}

.home-post-row-date {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hp-muted);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

.home-post-row-year,
.home-post-row-read {
    font-size: 0.75rem;
    color: var(--hp-muted-soft);
    font-weight: 400;
}

/* Stacked in the narrow date column on desktop, inline on one line on mobile */
@media (max-width: 767px) {
    .home-post-row-date {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }
}

.home-post-row-title {
    font-family: var(--font-article);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: var(--hp-text);
    transition: color 0.25s var(--hp-ease);
}

.home-post-row:hover .home-post-row-title {
    color: var(--hp-blue);
}

.home-post-row-excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--hp-muted);
    margin: 0 0 0.75rem;
    max-width: 58ch;
}

.home-post-row-arrow {
    display: none;
    color: var(--hp-muted-soft);
    font-size: 0.875rem;
    transition: color 0.25s var(--hp-ease), transform 0.25s var(--hp-ease);
}

@media (min-width: 768px) {
    .home-post-row-arrow {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

.home-post-row:hover .home-post-row-arrow {
    color: var(--hp-text);
    transform: translateX(3px);
}

.home-post-row .home-card-tags {
    margin-bottom: 0;
}

/* ---- CARDS (blog page) ---- */
.home-post-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .home-post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .home-post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

.home-post-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--hp-surface);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s var(--hp-ease);
    min-height: 220px;
}

.home-post-card:hover {
    border-color: var(--hp-border-hover);
}

.home-post-card:hover .home-post-title {
    color: var(--hp-text);
}

.home-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-post-date {
    font-size: 0.75rem;
    color: var(--hp-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.home-post-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin-bottom: 0.625rem;
    transition: color 0.2s ease;
}

.home-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-bottom: 0.875rem;
    font-size: 0.75rem;
}

.home-card-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--hp-muted-soft);
    padding: 0;
    border: none;
    border-radius: 0;
    line-height: 1.35;
    letter-spacing: 0.01em;
    background: none;
}

.home-card-tag:not(:last-child)::after {
    content: '·';
    margin: 0 0.35rem;
    color: var(--hp-muted-soft);
    opacity: 0.5;
}

.home-post-card:hover .home-card-tag {
    color: var(--hp-muted);
}

.home-featured .home-card-tags {
    margin-bottom: 1rem;
}

.home-featured .home-card-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
}

.home-post-excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--hp-muted);
    flex: 1;
    margin-bottom: 1.25rem;
}

.home-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--hp-muted);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--hp-border);
}

/* ---- SCROLL REVEAL ---- */
.home-page .scroll-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.home-page .scroll-reveal.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .home-page .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---- NAVBAR OVERRIDES ---- */
.home-page {
    --navbar-height: 64px;
    --navbar-bg: rgba(5, 5, 6, 0.88);
    --navbar-bg-scrolled: rgba(5, 5, 6, 0.96);
    --navbar-border: rgba(255, 255, 255, 0.06);
    --navbar-shadow: none;
    --navbar-text: #f5f3ef;
    --navbar-text-hover: #fff;
    --navbar-accent: #5b8fd6;
    --navbar-cta-bg: transparent;
    --navbar-cta-hover: transparent;
}

.home-page .navbar-content {
    height: 64px;
    max-width: var(--hp-container);
}

.home-page .navbar-cta {
    background: transparent;
    color: var(--hp-muted);
    border: 1px solid var(--hp-border);
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.home-page .navbar-cta:hover {
    color: var(--hp-text);
    border-color: var(--hp-border-hover);
    background: transparent;
}

.home-page .navbar {
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.home-page .navbar-logo-text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--hp-text);
    letter-spacing: -0.02em;
}

.home-page .navbar-logo-subtitle {
    color: var(--hp-muted-soft);
    font-weight: 400;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-page .navbar-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hp-muted);
}

.home-page .navbar-link:hover,
.home-page .navbar-link.active {
    color: var(--hp-text);
}

.home-page .site-footer {
    background: var(--hp-bg);
    border-top: 1px solid var(--hp-border);
    color: var(--hp-muted);
}

.home-page .site-footer-tail {
    background: var(--hp-bg);
}

.home-page .site-footer-tail::before {
    background: radial-gradient(ellipse 75% 100% at 50% 0%, rgba(38, 65, 155, 0.26), transparent 72%);
}

.home-page .site-footer-inner {
    max-width: var(--hp-container);
    padding-inline: var(--hp-gutter);
}

.home-page .site-footer-bar {
    border-top-color: var(--hp-border);
}

.home-page .site-footer-quote {
    color: var(--hp-text);
}

.home-page .site-footer-bio {
    color: var(--hp-muted);
}

.home-page .site-footer-nav a:hover,
.home-page .site-footer-social a:hover {
    color: var(--hp-text);
}

.home-page .navbar-mobile-menu {
    background: var(--hp-bg);
    border-top-color: var(--hp-border);
}

.home-page .navbar-link.active::after {
    background: var(--hp-blue);
}
