/* ===========================================
   TOKENS
   =========================================== */
:root {
    --bg: #FDFCFA;
    --text: #1C1917;
    --accent: #991B1B;
    --muted: #78716C;
    --light: #A8A29E;
    --border: #E7E5E4;
    --surface: #F5F5F4;

    --serif: 'Newsreader', Georgia, serif;
    --display: 'Space Grotesk', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --col: 720px;
    --page-w: 960px;
    --gutter: 48px;

    --pitch-size: 1rem;
    --pitch-weight: 400;
}

body[data-confidence="0"],
body[data-confidence="1"] {
    --pitch-size: 0.875rem;
    --pitch-weight: 300;
}

body[data-confidence="2"],
body[data-confidence="3"] {
    --pitch-size: 0.9375rem;
    --pitch-weight: 400;
}

body[data-confidence="7"],
body[data-confidence="8"] {
    --pitch-size: 1.0625rem;
    --pitch-weight: 500;
}

body[data-confidence="9"] {
    --pitch-size: 1.125rem;
    --pitch-weight: 500;
}

body[data-confidence="10"] {
    --pitch-size: 1.1875rem;
    --pitch-weight: 600;
    --accent: #DC2626;
}

/* ===========================================
   RESET
   =========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--serif);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    overflow-x: hidden;
}

::selection {
    background: rgba(153, 27, 27, 0.15);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light);
}

/* ===========================================
   READING PROGRESS
   =========================================== */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    z-index: 1000;
    width: 0%;
    pointer-events: none;
}

/* ===========================================
   LOADER
   =========================================== */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-tip {
    font-family: var(--serif);
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--muted);
    max-width: 320px;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 24px;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 1px;
    width: 0%;
    transition: width 0.55s ease;
}

/* ===========================================
   HERO — single column, centered
   =========================================== */
.opening {
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px var(--gutter) 80px;
    position: relative;
}

.dateline {
    font-family: var(--mono);
    font-size: 0.8125rem;
    color: var(--light);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.dateline.in {
    opacity: 1;
}

.returning {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    min-height: 1.2em;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}

.returning.in {
    opacity: 1;
}

.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.name {
    font-family: var(--display);
    font-size: clamp(4rem, 13vw, 10rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    filter: blur(16px);
    opacity: 0;
    transition: filter 1.2s ease, opacity 0.8s ease;
}

.name.in {
    filter: blur(0);
    opacity: 1;
}

/* Hero links — elegant pills */
.hero-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 12px;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.hero-links.in {
    opacity: 1;
}

.hero-links a {
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
    color: var(--muted);
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.2s ease;
}

.hero-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* Read time */
.read-time {
    font-family: var(--mono);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
}

.read-time.in {
    opacity: 1;
}

/* Scroll cue — absolute bottom, always visible */
.scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 24px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 100px;
    transition: opacity 0.4s, background 0.2s;
    z-index: 10;
}

.scroll-cue:hover {
    background: var(--surface);
}

.scroll-text {
    font-family: var(--mono);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--light);
}

.scroll-arrow {
    font-size: 1rem;
    color: var(--light);
    animation: bounce 2s ease-in-out infinite;
    line-height: 1;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(5px);
        opacity: 0.8;
    }
}

/* ===========================================
   SECTION LABELS
   =========================================== */
.section-label {
    font-family: var(--mono);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--light);
    margin-bottom: 40px;
}

/* ===========================================
   PITCH SECTION
   =========================================== */
.pitch-section {
    max-width: var(--page-w);
    margin: 0 auto;
    padding: 80px var(--gutter) 64px;
}

.slider-intro {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 480px;
}

.slider-zone {
    margin-bottom: 32px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.5625rem;
    color: var(--light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slider-track {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    pointer-events: none;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    cursor: grab;
    transition: transform 0.15s var(--ease);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
}

input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    border: none;
    cursor: grab;
}

/* Pitch box — position:relative container, text is absolute.
   This means changing pitch text never shifts elements below. */
.pitch-box {
    position: relative;
    min-height: 220px;
    margin-bottom: 8px;
}

.pitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-family: var(--serif);
    font-size: var(--pitch-size);
    font-weight: var(--pitch-weight);
    line-height: 1.85;
    color: var(--text);
    transition: font-size 0.4s var(--ease), font-weight 0.3s,
        opacity 0.2s, transform 0.2s var(--ease);
}

.pitch-hint {
    font-family: var(--mono);
    font-size: 0.625rem;
    color: var(--light);
    margin-top: 0;
    letter-spacing: 0.02em;
}

.pitch-hint kbd {
    padding: 2px 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-family: inherit;
    font-size: inherit;
}

body[data-confidence="10"] .pitch {
    animation: shake 0.25s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-1px);
    }

    75% {
        transform: translateX(1px);
    }
}

/* ===========================================
   STATS STRIP
   =========================================== */
.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: var(--page-w);
    padding: 48px var(--gutter);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.stats.in {
    opacity: 1;
}

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-num {
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    display: block;
}

.stat-label {
    font-family: var(--mono);
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--light);
    margin-top: 4px;
}

.stat-dot {
    color: var(--border);
    font-size: 0.875rem;
}

/* ===========================================
   BENTO GRID
   =========================================== */
.work {
    max-width: var(--page-w);
    margin: 0 auto;
    padding: 120px var(--gutter);
}

.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.card {
    padding: 32px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.card:hover {
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.card:nth-child(2n) {
    border-right: 1px solid var(--border);
}

.card-featured {
    grid-column: 1 / -1;
    padding: 40px;
}

.card-head {
    cursor: pointer;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-num {
    font-family: var(--mono);
    font-size: 0.625rem;
    color: var(--light);
    letter-spacing: 0.04em;
}

.card-year {
    font-family: var(--mono);
    font-size: 0.625rem;
    color: var(--light);
}

.card-title {
    font-family: var(--display);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-featured .card-title {
    font-size: 1.75rem;
}

.card-desc {
    font-family: var(--serif);
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.card-read {
    font-family: var(--mono);
    font-size: 0.625rem;
    color: var(--light);
    letter-spacing: 0.04em;
    transition: color 0.15s, letter-spacing 0.3s var(--ease);
}

.card:hover .card-read {
    color: var(--accent);
    letter-spacing: 0.1em;
}

.card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease), padding-top 0.4s var(--ease);
}

.card[data-open="true"] .card-body {
    max-height: 500px;
    padding-top: 16px;
}

.card[data-open="true"] .card-read {
    display: none;
}

.card[data-open="true"] {
    background: var(--surface);
}

.card-body p {
    font-family: var(--serif);
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 12px;
}

.card-link {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.6875rem;
    color: var(--accent);
    border-bottom: 1px solid rgba(153, 27, 27, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.15s;
}

.card-link:hover {
    border-color: var(--accent);
}

/* ===========================================
   CLOSE
   =========================================== */
.close {
    max-width: var(--col);
    margin: 0 auto;
    padding: 120px var(--gutter) 160px;
    text-align: center;
}

.close-quote {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--accent);
    line-height: 1.6;
    margin-bottom: 56px;
    padding: 0;
    position: relative;
    padding-left: 24px;
    text-align: left;
}

.close-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.close-line {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s var(--ease);
}

.close-line.in {
    opacity: 1;
    transform: none;
}

.close-email {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.875rem;
    color: var(--text);
    padding: 12px 32px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 0;
    transition: all 0.2s;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s var(--ease) 0.1s;
}

.close-email.in {
    opacity: 1;
    transform: none;
}

.close-email:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 27, 27, 0.15);
}

/* ===========================================
   FOOTER
   =========================================== */
.foot {
    max-width: var(--col);
    margin: 0 auto;
    padding: 24px var(--gutter) 48px;
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.5625rem;
    color: var(--light);
    opacity: 0.5;
}

.foot button {
    background: none;
    border: none;
    font-family: var(--mono);
    font-size: 0.5625rem;
    color: var(--light);
}

.foot button:hover {
    color: var(--muted);
}

/* ===========================================
   REVEALS
   =========================================== */
.reveal-section {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-section.in {
    opacity: 1;
    transform: none;
}

/* ===========================================
   PALETTE
   =========================================== */
.pal-bg {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
}

.pal-bg.open {
    display: flex;
}

.pal {
    background: var(--bg);
    width: 92%;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
    animation: pop 0.2s var(--ease);
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.pal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    font-family: var(--serif);
    font-size: 0.9375rem;
    color: var(--muted);
}

.pal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
}

.pal-close:hover {
    color: var(--text);
}

.pal-head kbd {
    font-family: var(--mono);
    font-size: 0.5rem;
    color: var(--light);
    opacity: 0.4;
}

.pal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 24px 24px;
}

.pal-pills button {
    padding: 10px 20px;
    font-family: var(--serif);
    font-size: 0.875rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--muted);
    transition: all 0.12s;
}

.pal-pills button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.pal-custom {
    display: none;
    gap: 8px;
    padding: 0 24px 20px;
}

.pal-custom input {
    flex: 1;
    padding: 10px 16px;
    font-family: var(--serif);
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: transparent;
    color: var(--text);
    outline: none;
}

.pal-custom input:focus {
    border-color: var(--accent);
}

.pal-custom button {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 100px;
}

.pal-out {
    padding: 0 24px 24px;
    font-family: var(--serif);
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--muted);
    max-height: 250px;
    overflow-y: auto;
}

.pal-out:empty {
    display: none;
}

.pal-out .gen::after {
    content: '';
    animation: dots 1.4s infinite steps(4);
}

@keyframes dots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }
}

.pal-retry {
    display: none;
    margin: 0 24px 24px;
    padding: 8px 18px;
    font-family: var(--serif);
    font-size: 0.75rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--light);
    transition: all 0.12s;
}

.pal-retry:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* FAB — mobile labeled pill */
.fab {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--accent);
    color: white;
    border: none;
    z-index: 200;
    font-family: var(--mono);
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(153, 27, 27, 0.25);
}

/* Overlays */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.2);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.overlay.open {
    display: flex;
}

.overlay-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 360px;
    padding: 48px;
    margin: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
    animation: pop 0.2s var(--ease);
    position: relative;
}

.overlay-x {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--light);
}

.overlay-x:hover {
    color: var(--text);
}

.overlay-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-style: italic;
    margin-bottom: 32px;
    text-align: center;
}

.overlay-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accent {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--serif);
    font-size: 0.875rem;
}

.btn-ghost {
    background: none;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--serif);
    font-size: 0.8125rem;
    color: var(--light);
}

.btn-ghost:hover {
    border-color: var(--muted);
    color: var(--muted);
}

.overlay-card h3 {
    font-family: var(--serif);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.overlay-card p {
    font-size: 0.8125rem;
    line-height: 1.7;
    margin-bottom: 6px;
    color: var(--muted);
}

.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--text);
    color: var(--bg);
    padding: 10px 24px;
    border-radius: 100px;
    font-family: var(--serif);
    font-size: 0.8125rem;
    font-style: italic;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 50;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 900px) {
    .stats {
        gap: 24px;
    }

    .stat-dot {
        display: none;
    }

    .pitch-box {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 24px;
    }

    .opening {
        padding: 40px var(--gutter) 88px;
    }

    .work {
        padding: 80px var(--gutter);
    }

    .close {
        padding: 80px var(--gutter) 120px;
    }

    .scroll-cue {
        bottom: 80px;
    }

    .name {
        margin-bottom: 32px;
    }

    .returning {
        margin-bottom: 12px;
    }

    .hero-links {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-links a {
        padding: 7px 16px;
        font-size: 0.625rem;
    }

    .slider-intro {
        font-size: 1.125rem;
    }

    .pitch-box {
        min-height: 180px;
    }

    .stats {
        gap: 24px;
        padding: 32px var(--gutter);
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .card:nth-child(2n) {
        border-right: none;
    }

    .card-featured {
        padding: 28px;
    }

    .card-featured .card-title {
        font-size: 1.5rem;
    }

    .fab {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .close-quote {
        font-size: 1.0625rem;
    }

    .scroll-text {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 20px;
    }

    .opening {
        padding: 40px var(--gutter) 88px;
    }

    .work {
        padding: 64px var(--gutter);
    }

    .close {
        padding: 64px var(--gutter) 120px;
    }

    .scroll-cue {
        bottom: 72px;
    }

    .dateline {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .returning {
        margin-bottom: 24px;
        font-size: 0.6875rem;
    }

    .name {
        font-size: clamp(4rem, 22vw, 8rem);
        margin-bottom: 32px;
        line-height: 1.05;
    }

    .hero-links {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-links a {
        padding: 7px 16px;
        font-size: 0.625rem;
    }

    .read-time {
        font-size: 0.5625rem;
    }

    .pitch-section {
        padding: 56px var(--gutter) 48px;
    }

    .slider-intro {
        font-size: 1.0625rem;
    }

    .pitch-box {
        min-height: 280px;
    }

    .pitch-hint {
        display: none;
    }

    .stats {
        gap: 32px;
        flex-direction: column;
        padding: 40px var(--gutter);
    }

    .stat {
        min-width: auto;
    }

    .stat-num {
        font-size: 1.375rem;
    }

    .card {
        padding: 24px;
    }

    .card-title {
        font-size: 1.125rem;
    }

    .close-line {
        font-size: 1.125rem;
    }

    .overlay-card {
        padding: 32px;
        margin: 16px;
    }
}