/* ============================================================
   Shared inner-page primitives (technical / pilots / finance / results / play)
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
    position: relative;
    padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 4vw, 4.5rem);
    background: var(--paper-2);
    border-bottom: 1px solid var(--paper-line);
    overflow: hidden;
    isolation: isolate;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60rem 32rem at 110% -10%, var(--accent-glow), transparent 60%),
        radial-gradient(40rem 22rem at -10% 120%, rgba(33, 37, 41, 0.06), transparent 60%);
    z-index: -1;
}
.page-hero__inner {
    width: var(--container);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: clamp(2rem, 4vw, 3.5rem);
}
.page-hero__copy {
    max-width: 56ch;
}
.page-hero__eyebrow {
    margin-bottom: 1.2rem;
}
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--t-h1);
    line-height: 1.06;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 1.1rem;
}
.page-hero__title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 700;
}
.page-hero__lede {
    font-size: var(--t-lede);
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0;
    font-weight: 300;
    max-width: 56ch;
}

/* Right-side meta block (chip rail) */
.page-hero__rail {
    display: grid;
    gap: 0.6rem;
    justify-items: flex-end;
}
.page-hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--paper-line);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
}
.page-hero__chip--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}
.page-hero__chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.page-hero__chip--accent .page-hero__chip-dot {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

@media (max-width: 760px) {
    .page-hero__inner { grid-template-columns: 1fr; }
    .page-hero__rail { justify-items: flex-start; }
}

/* ---------- PROSE / CONTENT ---------- */
.page-content {
    padding: clamp(3rem, 5vw, 5rem) 0;
}
.page-content__inner {
    width: var(--container);
    margin-inline: auto;
}
.page-content--narrow .page-content__inner {
    max-width: 76ch;
}

.prose {
    font-size: var(--t-body);
    line-height: 1.7;
    color: var(--ink);
    font-weight: 400;
}
.prose p { margin: 0 0 1.1em; }
.prose p:last-child { margin-bottom: 0; }
.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.prose a:hover { color: var(--accent-deep); }
.prose strong { font-weight: 700; color: var(--ink); }
.prose ul, .prose ol {
    margin: 0 0 1.4em;
    padding-left: 1.4em;
}
.prose li {
    margin-bottom: 0.45em;
    line-height: 1.65;
}
.prose ul li::marker { color: var(--accent); }
.prose h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--t-h3);
    line-height: 1.25;
    margin: 2em 0 0.75em;
    color: var(--ink);
}

/* Lede paragraph variant — larger, lighter */
.prose__lede {
    font-size: var(--t-lede);
    line-height: 1.55;
    color: var(--ink-soft);
    font-weight: 300;
    margin-bottom: 1.4em;
}

/* ---------- INTRO BLOCK with floating figure ---------- */
.intro-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.intro-block__figure {
    margin: 0;
    border: 1px solid var(--paper-line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}
.intro-block__figure img {
    width: 100%;
    height: auto;
}
.intro-block__caption {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--ink-muted);
    padding: 0.7rem 1rem;
    border-top: 1px solid var(--paper-line);
    background: var(--paper-2);
    letter-spacing: 0.02em;
}

@media (min-width: 880px) {
    .intro-block--with-figure {
        grid-template-columns: 1.4fr 1fr;
        align-items: start;
    }
}

/* ---------- PLACEHOLDER (sections in preparation) ---------- */
.page-placeholder {
    padding: clamp(3rem, 5vw, 5rem) 0 clamp(5rem, 8vw, 8rem);
    background: var(--paper);
}
.page-placeholder__inner {
    width: var(--container);
    margin-inline: auto;
}
.page-placeholder p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: var(--t-small);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
}
