@font-face {
    font-family: 'OpenDyslexic';
    src: url('https://cdn.jsdelivr.net/gh/antijingoist/opendyslexic@master/compiled/OpenDyslexic-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'OpenDyslexic';
    src: url('https://cdn.jsdelivr.net/gh/antijingoist/opendyslexic@master/compiled/OpenDyslexic-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeueLTStd-BdCn';
    src: url('/fonts/HelveticaNeueLTStd-BdCn.woff2') format('woff2'),
         url('/fonts/HelveticaNeueLTStd-BdCn.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-blue: #162f7a;
    --yellow: #fdd20d;
    --white: #ffffff;
    --nav-height: 64px;
    --font-scale-factor: 1;
}

html {
    scroll-behavior: smooth;
    font-size: calc(16px * var(--font-scale-factor));
}

body {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-blue);
    color: var(--white);
    overflow: hidden;
}

body.morphed {
    overflow-x: hidden;
    overflow-y: visible;
}

/* ========================================
   NAVIGATION — hidden initially, fades in
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    z-index: 100;
    background-color: var(--bg-blue);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s,
                transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s;
}

.morphed .nav {
    opacity: 1;
    transform: translateY(0);
}

.nav__logo {
    text-decoration: none;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    cursor: pointer;
}

.nav__logo .logo-i {
    color: var(--yellow);
    font-weight: 300;
}

.nav__logo .logo-tb {
    color: var(--white);
    font-weight: 300;
}

/* Center group — nav links + CTA */
.nav__center {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__links {
    display: flex;
    gap: 0.15rem;
    list-style: none;
    align-items: center;
}

.nav__links a {
    text-decoration: none;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    transition: color 0.25s ease;
    cursor: pointer;
    position: relative;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__links a.active {
    color: var(--white);
}

.nav__links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--yellow);
    border-radius: 1px;
}

/* Access CTA — separate from nav links */
.nav__cta {
    text-decoration: none;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--bg-blue);
    background-color: var(--yellow);
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    margin-left: 0.6rem;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.nav__cta:hover {
    background-color: #e6c00c;
    box-shadow: 0 4px 12px rgba(253, 210, 13, 0.25);
}

/* A11y toggle — icon only, no border on desktop */
.a11y-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.a11y-toggle:hover {
    color: rgba(255, 255, 255, 0.7);
}

.chart-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   PAGE VISIBILITY
   ======================================== */
.page-view {
    display: none;
}

.page-view.active {
    display: block;
}

/* ========================================
   HOME — MAIN CONTAINER
   ======================================== */
.main {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: padding-top 1.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                justify-content 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.morphed .main {
    justify-content: center;
    padding-top: var(--nav-height);
    padding-bottom: 2rem;
    min-height: 100vh;
    min-height: 100dvh;
}

/* ========================================
   HOME — TITLE BLOCK
   ======================================== */
.title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
    transition: transform 1.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                margin-bottom 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-bottom: 0;
}

.morphed .title-block {
    margin-bottom: 2rem;
}

.morphed .title-block .the,
.morphed .title-block .impact,
.morphed .title-block .thesis,
.morphed .title-block .blueprint {
    opacity: 1;
    animation: none;
}

.title-block .the {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.1em;
    transition: font-size 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.title-block .impact {
    font-family: 'HelveticaNeueLTStd-BdCn', 'Helvetica Neue LT Std', 'HelveticaNeue-CondensedBold', sans-serif;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 0.88;
    letter-spacing: 0.04em;
    margin-bottom: 0.05em;
    transition: font-size 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.title-block .thesis {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 0.15em;
    transition: font-size 1.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                letter-spacing 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.title-block .blueprint {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    transition: font-size 1.8s cubic-bezier(0.25, 0.1, 0.25, 1),
                letter-spacing 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* --- LARGE (cover) sizes --- */
.title-block .the       { font-size: 4vw; }
.title-block .impact    { font-size: 15vw; }
.title-block .thesis    { font-size: 6.5vw; }
.title-block .blueprint { font-size: 6.5vw; }

/* --- MORPHED (page) sizes — min() caps for short viewports --- */
.morphed .title-block .the       { font-size: min(2.9vw, 4.5vh); }
.morphed .title-block .impact    { font-size: min(11.5vw, 18vh); }
.morphed .title-block .thesis    { font-size: min(4.8vw, 7.5vh); }
.morphed .title-block .blueprint { font-size: min(4.8vw, 7.5vh); }

.morphed .title-block .the,
.morphed .title-block .impact,
.morphed .title-block .thesis,
.morphed .title-block .blueprint {
    opacity: 1;
    animation: none;
}

/* Entrance animations */
.title-block .the       { opacity: 0; -webkit-animation: fadeSlideDown 0.8s ease-out 0.2s forwards; animation: fadeSlideDown 0.8s ease-out 0.2s forwards; }
.title-block .impact    { opacity: 0; -webkit-animation: fadeScaleIn 0.9s ease-out 0.5s forwards; animation: fadeScaleIn 0.9s ease-out 0.5s forwards; }
.title-block .thesis    { opacity: 0; -webkit-animation: fadeSlideUp 0.8s ease-out 0.9s forwards; animation: fadeSlideUp 0.8s ease-out 0.9s forwards; }
.title-block .blueprint { opacity: 0; -webkit-animation: fadeSlideUp 0.8s ease-out 1.2s forwards; animation: fadeSlideUp 0.8s ease-out 1.2s forwards; }

/* ========================================
   HOME — CONTENT (hidden until morph)
   ======================================== */
.content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s,
                transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s;
    text-align: center;
    max-width: 800px;
    width: 100%;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.morphed .content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
    overflow: visible;
}

.content__subtitle {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 1.55rem;
    color: var(--white);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto min(3rem, 4vh);
    text-wrap: balance;
}

.content__buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   HOME — BELOW FOLD (hidden until morph)
   ======================================== */
.below-fold {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1.4s;
}

.morphed .below-fold {
    opacity: 1;
    height: auto;
    overflow: visible;
}

/* ========================================
   SHARED — BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
    background-color: var(--white);
    color: var(--bg-blue);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #f0f2f7;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
}

.btn:active {
    transform: scale(0.97);
    box-shadow: none;
    transition: all 0.1s ease;
}

/* About page button override */
.about-btn {
    min-width: 200px;
    background-color: var(--white);
}

.about-btn:hover {
    background-color: #e8ecf5;
}

/* Frosted glass button */
.btn--frosted {
    background: rgba(255, 255, 255, 0.12);
    color: var(--yellow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 280px;
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.btn--frosted:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   SHARED — FOOTER
   ======================================== */
.divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
    margin: 3.5rem auto 0;
}

.divider--tight {
    margin-top: 0;
}

.footer {
    background-color: var(--bg-blue);
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
}

.footer--about {
    padding: 0;
}

.footer__contact {
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    padding: 4rem 2.5rem;
}

.footer__contact-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

.footer__contact-text {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    text-wrap: balance;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer__divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 0 auto;
}

.footer__brand {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    padding-top: 2.5rem;
}

.footer__brand .yellow {
    color: var(--yellow);
}

.footer__tagline {
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.footer__initiative {
    font-weight: 200;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer__initiative a {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__initiative a:hover {
    color: #fee444;
}

.footer__legal {
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    padding-bottom: 2rem;
}

/* ========================================
   ABOUT — PAGE WRAPPER
   ======================================== */
.about-page {
    padding-top: var(--nav-height);
}

/* ========================================
   ABOUT — HERO
   ======================================== */
.hero {
    text-align: center;
    padding: 4rem 2.5rem;
}

.hero__eyebrow {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 1.75rem;
    opacity: 0;
    -webkit-animation: fadeSlideDown 0.6s ease-out 0.1s forwards;
    animation: fadeSlideDown 0.6s ease-out 0.1s forwards;
}

.hero__hook {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 1.5rem;
    opacity: 0;
    -webkit-animation: fadeScaleIn 0.9s ease-out 0.2s forwards;
    animation: fadeScaleIn 0.9s ease-out 0.2s forwards;
    text-wrap: balance;
}

.hero__hook em {
    font-style: normal;
    color: var(--yellow);
}

.hero__resolve {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    -webkit-animation: fadeSlideUp 0.8s ease-out 0.55s forwards;
    animation: fadeSlideUp 0.8s ease-out 0.55s forwards;
    text-wrap: balance;
}

.hero__scroll {
    display: block;
    margin: 2.5rem auto 0;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 1s forwards;
    transition: opacity 0.5s ease;
}

.hero__cta {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease-out 0.8s forwards;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.hero__scroll.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.hero__scroll svg {
    width: 20px;
    height: 20px;
    animation: scrollBob 2.4s ease-in-out infinite;
}

@keyframes scrollBob {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(6px); opacity: 0.7; }
}

/* ========================================
   ABOUT — SECTIONS
   ======================================== */
.section {
    padding: 4rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.section-divider--strong {
    background-color: rgba(255, 255, 255, 0.18);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* §2 — wider to let the Venn breathe */
.section--system {
    max-width: 960px;
}

/* §3 — the payoff, more breathing room */
.section--journey {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* ========================================
   ABOUT — TYPOGRAPHIC HERO (Mission/Goal)
   — White background overrides
   ======================================== */
.type-hero {
    text-align: center;
    padding: 3rem 2.5rem;
    max-width: 780px;
    margin: 0 auto;
}

.type-hero__mission {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.type-hero__goal {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    text-wrap: balance;
}

.origin-link {
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--yellow);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.origin-link:hover {
    color: #fee444;
}

.origin-link__arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.origin-link:hover .origin-link__arrow {
    transform: translateX(3px);
}

/* ========================================
   ABOUT — FRAMEWORK
   ======================================== */
.framework__intro {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    text-align: center;
    max-width: 640px;
    margin: 0.25rem auto 0;
    text-wrap: balance;
}

/* Venn Diagram — SVG */
.venn {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.venn.visible {
    opacity: 1;
}

.venn svg {
    width: 100%;
    height: auto;
    display: block;
}

.venn__svg-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 22px;
}

.venn__svg-desc {
    font-family: 'Source Serif 4', serif;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
}

.venn__svg-blueprint {
    font-family: 'HelveticaNeueLTStd-BdCn', 'Helvetica Neue LT Std', 'HelveticaNeue-CondensedBold', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Mobile Venn — separate SVG shown only on small screens */
.venn-mobile-svg {
    display: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.venn-mobile-svg.visible {
    opacity: 1;
}

.venn-mobile-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

.venn-mobile__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.venn-mobile__blueprint {
    font-family: 'HelveticaNeueLTStd-BdCn', 'Helvetica Neue LT Std', 'HelveticaNeue-CondensedBold', 'Arial Narrow', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ========================================
   ABOUT — AUDIENCE CHART
   ======================================== */
.chart-wrapper {
    width: 100%;
    max-width: 860px;
    margin: 2rem auto 0;
}

.chart-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}

.chart-label {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.chart-axis-label {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Mobile Chart — separate SVG shown only on small screens */
.chart-wrapper-mobile {
    display: none;
    width: 100%;
    max-width: 380px;
    margin: 2rem auto 0;
}

.chart-wrapper-mobile svg {
    width: 100%;
    height: auto;
    display: block;
}
.section__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    position: sticky;
    top: var(--nav-height);
    background-color: var(--bg-blue);
    z-index: 10;
    padding: 1.25rem 0 1rem;
    margin-top: -1.25rem;
}

.section__header--center {
    justify-content: center;
    text-align: center;
}

.section__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.section__icon svg {
    width: 44px;
    height: 44px;
}

.section__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.section__eyebrow {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* ========================================
   ABOUT — AUDIENCE
   ======================================== */
.audience__intro {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    text-wrap: balance;
}

.audience__intro--after-chart {
    margin-top: 2.5rem;
}

.audience__intro--second {
    margin-top: -0.75rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem 1.75rem;
}

.audience-card__icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.audience-card__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.audience-card__text {
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

/* ========================================
   ABOUT — INLINE TENETS (interactive)
   ======================================== */
/* ========================================
   ABOUT — FORMAT CARDS (What You Get)
   ======================================== */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 840px;
    margin: 0 auto;
}

.formats-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
}

.format-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.format-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.format-card:hover {
    border-color: rgba(253, 210, 13, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.format-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
}

.format-card__icon svg {
    width: 48px;
    height: 48px;
}

.format-card__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--yellow);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.format-card__desc {
    font-weight: 400;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    text-wrap: balance;
    margin-bottom: 1.25rem;
}

.format-card__badge {
    display: inline-block;
    margin-top: auto;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--bg-blue);
    background-color: var(--yellow);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.format-card__btn {
    display: inline-block;
    margin-top: auto;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--bg-blue);
    background-color: var(--yellow);
    border: none;
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s, box-shadow 0.2s;
}

.format-card--link:hover .format-card__btn {
    background-color: #e6c00c;
    box-shadow: 0 4px 12px rgba(253, 210, 13, 0.25);
}

.formats-intro {
    text-align: center;
    font-family: 'Fira Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.06em;
    margin-top: 3rem;
    margin-bottom: 1.75rem;
}

/* Paper airplane easter egg */
.print-egg {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .print-egg {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1.25rem auto 0;
    }
}

.print-egg > svg {
    width: 100%;
    height: 100%;
    opacity: 0.18;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.print-egg:hover > svg {
    opacity: 0.55;
    transform: scale(1.12);
}

.print-egg__popover {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    background: #0a1535;
    border: 1px solid rgba(253, 210, 13, 0.3);
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    width: 240px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.print-egg__popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 12px;
    border: 6px solid transparent;
    border-top-color: #0a1535;
}

.print-egg__popover.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.print-egg__title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--yellow);
    margin-bottom: 0.4rem;
}

.print-egg__text {
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #d0d4e0;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.print-egg__link {
    font-family: 'Fira Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--yellow);
    text-decoration: none;
    border-bottom: 1px solid rgba(253, 210, 13, 0.4);
    cursor: pointer;
}

.print-egg__link:hover {
    border-bottom-color: var(--yellow);
}

/* ========================================
   ABOUT — ORIGIN TIMELINE
   ======================================== */
.origin-timeline {
    width: 100%;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.origin-timeline svg {
    width: 100%;
    height: auto;
    display: block;
}

.origin-timeline-mobile {
    display: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 2rem;
}

.origin-timeline-mobile svg {
    width: 100%;
    height: auto;
    display: block;
}

.origin__resolution {
    font-weight: 400;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.85;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
    text-wrap: balance;
}

/* ========================================
   ABOUT — FOUNDER
   ======================================== */
.founder {
    text-align: center;
    padding: 5.5rem 2.5rem 4rem;
    max-width: 860px;
    margin: 0 auto;
}

.founder__header {
    margin-bottom: 3rem;
    position: sticky;
    top: var(--nav-height);
    background-color: var(--bg-blue);
    z-index: 10;
    padding: 1.25rem 0 1rem;
    margin-top: -1.25rem;
}

.founder__eyebrow {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
}

.founder__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--white);
}

.founder__title em {
    font-style: normal;
    color: var(--yellow);
}

.founder__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.founder__monogram {
    width: 72px;
    height: 72px;
    border: 1.5px solid rgba(253, 210, 13, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.founder__monogram::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(253, 210, 13, 0.1);
}

.founder__initials {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    color: var(--yellow);
}

.founder__name {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.founder__role {
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
}

.founder__role a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.founder__role a:hover {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.35);
}

.founder__bio {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.founder__bio p {
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    text-wrap: balance;
}

.founder__bio p + p {
    margin-top: 1.25rem;
}

.founder__bio .founder__reveal {
    margin-top: 1.75rem;
    font-weight: 400;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
}

.founder__publication {
    margin-top: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid rgba(253, 210, 13, 0.3);
    border-radius: 100px;
    transition: all 0.25s ease;
}

.founder__publication:hover {
    border-color: rgba(253, 210, 13, 0.55);
    background-color: rgba(253, 210, 13, 0.06);
}

.founder__publication a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(253, 210, 13, 0.5);
    padding-bottom: 1px;
    transition: all 0.2s ease;
}

.founder__publication a:hover {
    color: #fee444;
    border-bottom-color: rgba(253, 210, 13, 0.8);
}

.founder__publication .pub-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    font-size: 0.95rem;
    color: var(--yellow);
}

.founder__publication:hover .pub-arrow {
    transform: translateX(3px);
}

.founder__pub-context {
    margin-top: 0.75rem;
    font-weight: 300;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
    font-style: italic;
    text-align: center;
}

/* ========================================
   ABOUT — CONTACT BAND
   ======================================== */
/* ========================================
   ABOUT — FADE IN ON SCROLL
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 18, 50, 0.85);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
}

.modal {
    background-color: #1a357f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 680px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    padding: 0.25rem 0.4rem;
    z-index: 10;
}

.modal__close:hover {
    color: var(--white);
}

.modal__title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-align: center;
}

.modal__title .yellow {
    color: var(--yellow);
}

.modal__body p {
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.modal__body .modal__body-opener {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.85;
    margin-bottom: 0.75rem;
}

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

.modal__subtitle {
    font-weight: 400;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--yellow);
    margin-bottom: 2rem;
    text-align: center;
}

.modal__section-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--yellow);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
}

.modal__list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.modal__list li {
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.85;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.modal__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--yellow);
}

.modal__list li strong {
    font-weight: 600;
    color: var(--yellow);
}

.modal__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 2.5rem 0;
}

.modal__closing {
    text-align: left;
    margin-bottom: 2rem;
}

.modal__body .modal__tagline {
    font-weight: 600;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--yellow);
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.modal__body .modal__tagline--light {
    font-weight: 400;
    font-style: normal;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.35rem;
}

.modal__signature {
    text-align: left;
}

.modal__signature p {
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 0.15rem;
}

.modal__signature__links {
    margin-top: 1.25rem;
}

.modal__signature__links p {
    margin-bottom: 0.15rem;
}

.modal__signature a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal__signature a:hover {
    color: #fee444;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal__inline-link {
    color: var(--yellow);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.modal__inline-link:hover {
    color: #fee444;
}

/* Modal scroll fade indicator */
.modal::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 40px;
    margin-top: -40px;
    background: linear-gradient(to top, #1a357f 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.scrolled-bottom::after {
    opacity: 0;
}

/* Modal scrollbar */
.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-track {
    background: transparent;
}

.modal::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

@media (max-width: 600px) {
    .modal {
        padding: 2rem 1.25rem;
        max-height: 85vh;
        border-radius: 10px;
    }

    .modal__title {
        font-size: 1.3rem;
        padding-right: 2rem;
    }

    .modal__body p {
        font-size: 1rem;
    }

    .modal__list li {
        font-size: 1rem;
    }

    .modal__section-title {
        font-size: 1.05rem;
    }

    .modal__close {
        top: 1rem;
        right: 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* ========================================
   COVER FADE OVERLAY
   ======================================== */
.page-curl-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    background-color: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out;
}

.page-curl-overlay .cover-title {
    transition: opacity 0.5s ease-out;
}

.page-curl-overlay.revealing .cover-title {
    opacity: 0;
}

.page-curl-overlay.fading {
    opacity: 0;
}

.page-curl-overlay.done {
    display: none;
}

/* Cover title — mirrors large title sizes */
.cover-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    user-select: none;
    padding: 2rem;
}

.cover-title .c-the {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.1em;
    font-size: 4vw;
    opacity: 0;
    -webkit-animation: fadeSlideDown 0.8s ease-out 0.2s forwards;
    animation: fadeSlideDown 0.8s ease-out 0.2s forwards;
}

.cover-title .c-impact {
    font-family: 'HelveticaNeueLTStd-BdCn', 'Helvetica Neue LT Std', 'HelveticaNeue-CondensedBold', sans-serif;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    line-height: 0.88;
    letter-spacing: 0.04em;
    margin-bottom: 0.05em;
    font-size: 15vw;
    opacity: 0;
    -webkit-animation: fadeScaleIn 0.9s ease-out 0.5s forwards;
    animation: fadeScaleIn 0.9s ease-out 0.5s forwards;
}

.cover-title .c-thesis {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 300;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    margin-bottom: 0.15em;
    font-size: 6.5vw;
    opacity: 0;
    -webkit-animation: fadeSlideUp 0.8s ease-out 0.9s forwards;
    animation: fadeSlideUp 0.8s ease-out 0.9s forwards;
}

.cover-title .c-blueprint {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 200;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 6.5vw;
    opacity: 0;
    -webkit-animation: fadeSlideUp 0.8s ease-out 1.2s forwards;
    animation: fadeSlideUp 0.8s ease-out 1.2s forwards;
}

/* Instant morph — skip transitions on homepage elements only */
body.instant-morph .nav,
body.instant-morph .main,
body.instant-morph .title-block,
body.instant-morph .title-block *,
body.instant-morph .content,
body.instant-morph .below-fold {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    -webkit-animation-duration: 0s !important;
    animation-duration: 0s !important;
    -webkit-animation-delay: 0s !important;
    animation-delay: 0s !important;
}

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); -webkit-transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); }
}

@keyframes fadeScaleIn {
    from { opacity: 0; transform: scale(0.92); -webkit-transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); -webkit-transform: scale(1); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); -webkit-transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); }
}

@-webkit-keyframes fadeSlideDown {
    from { opacity: 0; -webkit-transform: translateY(-20px); }
    to   { opacity: 1; -webkit-transform: translateY(0); }
}

@-webkit-keyframes fadeScaleIn {
    from { opacity: 0; -webkit-transform: scale(0.92); }
    to   { opacity: 1; -webkit-transform: scale(1); }
}

@-webkit-keyframes fadeSlideUp {
    from { opacity: 0; -webkit-transform: translateY(20px); }
    to   { opacity: 1; -webkit-transform: translateY(0); }
}

/* ========================================
   RESPONSIVE — LARGE SCREENS
   ======================================== */
@media (min-width: 1600px) {
    .title-block .the       { font-size: 3.5rem; }
    .title-block .impact    { font-size: 14rem; }
    .title-block .thesis    { font-size: 6rem; }
    .title-block .blueprint { font-size: 6rem; }

    .cover-title .c-the       { font-size: 3.5rem; }
    .cover-title .c-impact    { font-size: 14rem; }
    .cover-title .c-thesis    { font-size: 6rem; }
    .cover-title .c-blueprint { font-size: 6rem; }

    .morphed .title-block .the       { font-size: min(2.5rem, 4.5vh); }
    .morphed .title-block .impact    { font-size: min(10.5rem, 18vh); }
    .morphed .title-block .thesis    { font-size: min(4.5rem, 7.5vh); }
    .morphed .title-block .blueprint { font-size: min(4.5rem, 7.5vh); }

    .content__subtitle { font-size: 1.65rem; }
    .hero__title { font-size: 4.2rem; }
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
    .title-block .the       { font-size: 4.5vw; }
    .title-block .impact    { font-size: 17vw; }
    .title-block .thesis    { font-size: 7vw; }
    .title-block .blueprint { font-size: 7vw; }

    .cover-title .c-the       { font-size: 4.5vw; }
    .cover-title .c-impact    { font-size: 17vw; }
    .cover-title .c-thesis    { font-size: 7vw; }
    .cover-title .c-blueprint { font-size: 7vw; }

    .morphed .title-block .the       { font-size: min(3.2vw, 4.5vh); }
    .morphed .title-block .impact    { font-size: min(13vw, 18vh); }
    .morphed .title-block .thesis    { font-size: min(5.4vw, 7.5vh); }
    .morphed .title-block .blueprint { font-size: min(5.4vw, 7.5vh); }

    .content__subtitle { font-size: 1.35rem; }
    .venn { max-width: 580px; }
    .audience-grid { grid-template-columns: 1fr; }
}

/* ========================================
   RESPONSIVE — TABLET ABOUT PAGE
   ======================================== */
@media (max-width: 768px) {
    .venn { display: none; }
    .venn-mobile-svg { display: block; max-width: 380px; }
    .origin-timeline { display: none; }
    .origin-timeline-mobile { display: block; }
    .chart-wrapper { display: none; }
    .chart-wrapper-mobile { display: block; }

    .type-hero { padding: 2.5rem 2rem; }
    .section { padding: 3.5rem 2rem; }
    .section--journey { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .framework__intro { font-size: 1.05rem; }
    .audience__intro { font-size: 1.05rem; }
    .origin__resolution { font-size: 1.1rem; }
    .section__title { font-size: 1.5rem; }
    .founder { padding: 5rem 2rem 3.5rem; }
    .founder__bio p + p { margin-top: 1.4rem; }
    .founder__bio .founder__reveal { margin-top: 1.85rem; }
    .formats-grid { gap: 1.5rem; }
    .format-card { padding: 1.75rem 1.25rem; }
}

/* ========================================
   RESPONSIVE — PHONE
   ======================================== */
@media (max-width: 600px) {
    .nav { padding: 0 1rem; }
    .nav__center { gap: 0.5rem; }
    .nav__links { gap: 0.25rem; }
    .nav__links a { font-size: 0.82rem; padding: 0.6rem 0.75rem; min-height: 44px; display: flex; align-items: center; }
    .nav__cta { font-size: 0.82rem; padding: 0.6rem 1rem; min-height: 44px; display: flex; align-items: center; margin-left: 0.15rem; }
    .a11y-toggle { display: none; }

    .main { padding: 1.5rem; }
    .morphed .main { padding-top: var(--nav-height); }

    .title-block .the       { font-size: 7vw; letter-spacing: 0.12em; }
    .title-block .impact    { font-size: 22vw; letter-spacing: 0.02em; }
    .title-block .thesis    { font-size: 10vw; letter-spacing: 0.22em; }
    .title-block .blueprint { font-size: 10vw; letter-spacing: 0.22em; }

    .cover-title .c-the       { font-size: 7vw; letter-spacing: 0.12em; }
    .cover-title .c-impact    { font-size: 22vw; letter-spacing: 0.02em; }
    .cover-title .c-thesis    { font-size: 10vw; letter-spacing: 0.22em; }
    .cover-title .c-blueprint { font-size: 10vw; letter-spacing: 0.22em; }

    .morphed .title-block .the       { font-size: min(5vw, 4.5vh); }
    .morphed .title-block .impact    { font-size: min(18vw, 18vh); }
    .morphed .title-block .thesis    { font-size: min(8vw, 7.5vh); letter-spacing: 0.22em; }
    .morphed .title-block .blueprint { font-size: min(8vw, 7.5vh); letter-spacing: 0.22em; }

    .content__subtitle {
        font-size: 1.15rem;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .content__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        min-width: unset;
    }

    .about-btn {
        width: auto;
        max-width: none;
    }

    .hero { padding: 3.5rem 1.5rem; }
    .hero__hook { font-size: 1.85rem; }
    .hero__resolve { font-size: 1rem; }

    .type-hero { padding: 2.5rem 1.5rem; }
    .type-hero__mission { font-size: 1.3rem; }
    .type-hero__goal { font-size: 1rem; }

    .section { padding: 3.5rem 1.5rem; }
    .section--journey { padding-top: 4rem; padding-bottom: 4rem; }
    .section__title { font-size: 1.4rem; }

    .framework__intro { font-size: 1rem; }
    .venn-mobile-svg { max-width: 340px; }
    .audience__intro { font-size: 1rem; }
    .origin__resolution { font-size: 1rem; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { padding: 1.5rem 1.25rem; }

    .founder { padding: 4.5rem 1.5rem 3.5rem; }

    .footer__contact { padding: 3.5rem 1.5rem; }
    .footer__contact-title { font-size: 1.4rem; }
    .formats-grid { grid-template-columns: 1fr; max-width: 340px; }
    .format-card { padding: 1.5rem 1.25rem; }
    .founder__title { font-size: 1.4rem; }
    .founder__monogram { width: 60px; height: 60px; }
    .founder__monogram::before { inset: -5px; }
    .founder__initials { font-size: 1.3rem; }
    .founder__name { font-size: 1.25rem; }
    .founder__bio p { font-size: 1rem; line-height: 1.9; }
    .founder__bio p + p { margin-top: 1.5rem; }
    .founder__bio .founder__reveal { font-size: 1rem; margin-top: 2rem; }
    .founder__publication { margin-top: 2.25rem; padding: 0.6rem 1.25rem; }
    .founder__publication a { font-size: 0.9rem; }

    .footer { padding: 2rem 1.5rem; }
    .footer--about { padding: 0; }
    .footer--about .footer__brand { padding-top: 2rem; }
}

/* ========================================
   RESPONSIVE — SMALL PHONE
   ======================================== */
@media (max-width: 380px) {
    .title-block .the       { font-size: 7.5vw; }
    .title-block .impact    { font-size: 24vw; }
    .title-block .thesis    { font-size: 11vw; letter-spacing: 0.18em; }
    .title-block .blueprint { font-size: 11vw; letter-spacing: 0.18em; }

    .cover-title .c-the       { font-size: 7.5vw; }
    .cover-title .c-impact    { font-size: 24vw; }
    .cover-title .c-thesis    { font-size: 11vw; letter-spacing: 0.18em; }
    .cover-title .c-blueprint { font-size: 11vw; letter-spacing: 0.18em; }

    .morphed .title-block .impact    { font-size: min(20vw, 18vh); }
    .morphed .title-block .thesis    { font-size: min(9vw, 7.5vh); }
    .morphed .title-block .blueprint { font-size: min(9vw, 7.5vh); }

    .content__subtitle { font-size: 1.05rem; }
}

/* ========================================
   RESPONSIVE — LANDSCAPE PHONE
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .title-block .the       { font-size: 5vh; }
    .title-block .impact    { font-size: 22vh; }
    .title-block .thesis    { font-size: 10vh; }
    .title-block .blueprint { font-size: 10vh; }

    .cover-title .c-the       { font-size: 5vh; }
    .cover-title .c-impact    { font-size: 22vh; }
    .cover-title .c-thesis    { font-size: 10vh; }
    .cover-title .c-blueprint { font-size: 10vh; }

    .title-block .thesis,
    .title-block .blueprint { letter-spacing: 0.2em; }

    .cover-title .c-thesis,
    .cover-title .c-blueprint { letter-spacing: 0.2em; }

    .morphed .title-block .the       { font-size: 4vh; }
    .morphed .title-block .impact    { font-size: 16vh; }
    .morphed .title-block .thesis    { font-size: 7vh; }
    .morphed .title-block .blueprint { font-size: 7vh; }
}

@media (prefers-reduced-motion: reduce) {
    .title-block .the,
    .title-block .impact,
    .title-block .thesis,
    .title-block .blueprint,
    .cover-title .c-the,
    .cover-title .c-impact,
    .cover-title .c-thesis,
    .cover-title .c-blueprint,
    .hero__title,
    .hero__tagline {
        opacity: 1;
        -webkit-animation: none;
        animation: none;
        transform: none;
        -webkit-transform: none;
    }

    .title-block .the,
    .title-block .impact,
    .title-block .thesis,
    .title-block .blueprint,
    .nav,
    .content,
    .below-fold,
    .main,
    .fade-in {
        transition: none;
    }

    .venn {
        opacity: 1;
        transition: none;
    }

    .page-curl-overlay {
        animation: none;
        transition: opacity 0.4s ease-out;
    }

    .page-curl-overlay .cover-title {
        transition: opacity 0.3s ease-out;
    }

    .page-curl-overlay .cover-title .c-the,
    .page-curl-overlay .cover-title .c-impact,
    .page-curl-overlay .cover-title .c-thesis,
    .page-curl-overlay .cover-title .c-blueprint {
        opacity: 1;
        -webkit-animation: none;
        animation: none;
    }
}
/* ========================================
   ACCESSIBILITY TOGGLE + PANEL
   ======================================== */

/* Floating a11y button — mobile only */
.a11y-fab {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    padding-bottom: env(safe-area-inset-bottom, 0);
    width: 44px;
    height: 44px;
    background: rgba(14, 25, 60, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    z-index: 200;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.a11y-fab:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .a11y-fab { display: flex; }
}

/* ── PIV Accessibility Tool ── */
.piv-a11y-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 300;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}
.piv-a11y-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4); }
.piv-a11y-fab.active { background: rgba(255, 255, 255, 0.15); color: var(--white); }
.piv-a11y-fab__icon { width: 22px; height: 22px; }

.piv-a11y-panel {
    position: fixed;
    bottom: calc(1.5rem + 48px + 0.75rem);
    right: 1.5rem;
    width: 300px;
    background: rgba(14, 25, 60, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    z-index: 300;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.piv-a11y-panel.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.piv-a11y-panel__header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem; padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.piv-a11y-panel__title { font-family: 'Fira Sans', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--white); }
.piv-a11y-panel__close {
    background: none; border: none; color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem; cursor: pointer; padding: 0.15rem 0.35rem;
    border-radius: 4px; line-height: 1; transition: color 0.15s, background 0.15s;
}
.piv-a11y-panel__close:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

.piv-a11y-option-group {
    margin-bottom: 1.1rem; padding-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.piv-a11y-option-group--last { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.piv-a11y-label {
    font-family: 'Fira Sans', sans-serif; font-weight: 500;
    font-size: 0.82rem; color: rgba(255, 255, 255, 0.9); display: block; cursor: default;
}

.piv-a11y-font-row { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.6rem; }

.piv-a11y-zoom-btn {
    width: 32px; height: 32px; border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.15s;
}
.piv-a11y-zoom-btn:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); color: var(--white); }

.piv-a11y-slider {
    -webkit-appearance: none; appearance: none; flex: 1;
    height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.12); outline: none; margin: 0;
}
.piv-a11y-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
    background: var(--yellow); cursor: pointer; border: 2px solid var(--bg-blue);
}
.piv-a11y-slider::-moz-range-thumb {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--yellow); cursor: pointer; border: 2px solid var(--bg-blue);
}

.piv-a11y-reset {
    background: none; border: none; color: var(--yellow);
    font-family: 'Fira Sans', sans-serif; font-size: 0.72rem; font-weight: 400;
    cursor: pointer; padding: 0; margin-top: 0.4rem; opacity: 0.75; transition: opacity 0.15s;
}
.piv-a11y-reset:hover { opacity: 1; text-decoration: underline; }

.piv-a11y-switch-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.piv-a11y-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.piv-a11y-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.piv-a11y-switch__slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.12); border-radius: 12px; transition: background 0.25s;
}
.piv-a11y-switch__slider::before {
    content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px;
    background: rgba(255, 255, 255, 0.65); border-radius: 50%; transition: transform 0.25s, background 0.25s;
}
.piv-a11y-switch input:checked + .piv-a11y-switch__slider { background: var(--yellow); }
.piv-a11y-switch input:checked + .piv-a11y-switch__slider::before { transform: translateX(18px); background: var(--bg-blue); }

.piv-a11y-reset-all { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.piv-a11y-reset-all__btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.65rem 1rem; border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04); color: rgba(255, 255, 255, 0.7);
    font-family: 'Fira Sans', sans-serif; font-size: 0.8rem; font-weight: 400;
    cursor: pointer; transition: all 0.15s;
}
.piv-a11y-reset-all__btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2); color: var(--white); }

/* ========================================
   ACCESSIBILITY MODES
   ======================================== */

/* Accessibility wrapper */
.a11y-wrap {
    min-height: 100vh;
    background-color: var(--bg-blue);
}

/* Grayscale */
.a11y-grayscale {
    filter: grayscale(100%);
}
body.a11y-grayscale {
    filter: none;
    background-color: #2a2a30;
}

/* High Contrast */
.a11y-high-contrast {
    filter: contrast(1.35);
}
body.a11y-high-contrast {
    filter: none;
}

.a11y-high-contrast .content,
.a11y-high-contrast .footer__contact-text,
.a11y-high-contrast .footer__tagline,
.a11y-high-contrast .footer__legal,
.a11y-high-contrast .footer__initiative,
.a11y-high-contrast .audience-card__text,
.a11y-high-contrast .framework__intro,
.a11y-high-contrast .audience__intro,
.a11y-high-contrast .origin__resolution,
.a11y-high-contrast .founder__bio p,
.a11y-high-contrast .format-card__desc,
.a11y-high-contrast .type-hero__goal {
    color: rgba(255, 255, 255, 0.95);
}

/* Highlight Links */
.a11y-highlight-links a {
    text-decoration: underline !important;
    text-decoration-color: var(--yellow) !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
}

/* Dyslexia Friendly Font */
.a11y-dyslexia-font,
.a11y-dyslexia-font * {
    font-family: 'OpenDyslexic', 'Fira Sans', sans-serif !important;
}

/* a11y panel is outside wrapper, no filter override needed */

@media (max-width: 600px) {
    .piv-a11y-panel {
        width: 260px;
    }
}


/* ========================================
   MULTI-PAGE NAV — always visible on inner pages
   ======================================== */
.nav--active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
}

/* ========================================
   NAV — RESOURCES DROPDOWN
   ======================================== */
.nav__dropdown {
    position: relative;
    list-style: none;
}
.nav__dropdown-trigger {
    display: inline-flex;
    align-items: center;
}
.nav__dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(14, 25, 60, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    list-style: none;
    margin: 0;
    z-index: 110;
}
.nav__dropdown.open .nav__dropdown-menu {
    display: block;
}
.nav__dropdown-menu li {
    margin: 0;
    list-style: none;
}
.nav__dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav__dropdown-menu li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}
.nav__dropdown-menu li a.active {
    color: var(--yellow);
}
.nav__dropdown-menu li a.active::after {
    display: none;
}
