/* ---------- TOKENS ---------- */
:root {
    /* A warm, analog, laboratory palette. No purple-on-white clichés. */
    --paper: #EFE8D8;
    /* aged parchment */
    --paper-2: #E6DEC8;
    /* deeper cream */
    --ink: #141712;
    /* near-black with green undertone */
    --ink-soft: #2A2E27;
    --mute: #6B6B60;
    --line: #1417121A;
    --emerald: #2F5D40;
    /* botanical deep green */
    --emerald-2: #1F3F2B;
    --moss: #8EA17A;
    --ember: #B96A3E;
    /* oxidised copper accent */
    --gold: #C3A55B;
    --white-s: #F7F2E3;

    --grain-opacity: .07;

    --f-display: "Instrument Serif", "Times New Roman", serif;
    --f-serif: "Fraunces", "Times New Roman", serif;
    --f-mono: "JetBrains Mono", ui-monospace, monospace;
    --f-ui: "Inter Tight", "Helvetica Neue", Arial, sans-serif;

    --ease-expo: cubic-bezier(.16, 1, .3, 1);
    --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: var(--paper)
}

body {
    font-family: var(--f-ui);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-size: 16px;
    overflow-x: hidden;
    cursor: none;
    /* custom cursor on desktop */
}

@media (max-width: 900px) {
    body {
        cursor: auto
    }
}

img {
    max-width: 100%;
    display: block;
    filter: saturate(.9) contrast(1.02)
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer
}

::selection {
    background: var(--emerald);
    color: var(--paper)
}

/* ---------- GLOBAL LAYERS ---------- */

/* Film grain overlay — gives that print / analog feel */
.grain {
    position: fixed;
    inset: -50%;
    z-index: 9998;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: var(--grain-opacity);
    mix-blend-mode: multiply;
    animation: grainShift 1.2s steps(6) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0)
    }

    20% {
        transform: translate(-2%, 1%)
    }

    40% {
        transform: translate(1%, -2%)
    }

    60% {
        transform: translate(-1%, -1%)
    }

    80% {
        transform: translate(2%, 2%)
    }

    100% {
        transform: translate(0, 0)
    }
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--paper);
    transition: transform .08s linear
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--paper);
    transition: transform .25s var(--ease-expo), width .25s var(--ease-expo), height .25s var(--ease-expo), opacity .25s
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    border-color: var(--paper)
}

@media (max-width: 900px) {

    .cursor-dot,
    .cursor-ring {
        display: none
    }
}

/* ---------- REUSABLES ---------- */
.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px
}

@media (max-width:700px) {
    .wrap {
        padding: 0 20px
    }
}

.eyebrow {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: currentColor;
    display: inline-block
}

.rule {
    height: 1px;
    background: var(--line);
    width: 100%
}

/* Reveal animation (orchestrated by IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease-expo), transform 1s var(--ease-expo)
}

.reveal.in {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .08s
}

.reveal-delay-2 {
    transition-delay: .16s
}

.reveal-delay-3 {
    transition-delay: .24s
}

.reveal-delay-4 {
    transition-delay: .32s
}

.reveal-delay-5 {
    transition-delay: .40s
}

/* Mask reveal for lines of text */
.line-mask {
    overflow: hidden;
    display: block
}

.line-mask>span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s var(--ease-expo)
}

.line-mask.in>span {
    transform: none
}

/* ---------- TICKER / PROMO BAR ---------- */
.ticker {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff10;
    overflow: hidden;
}

.ticker__track {
    display: flex;
    gap: 64px;
    padding: 10px 0;
    width: max-content;
    animation: ticker 38s linear infinite;
}

.ticker__track span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap
}

.ticker__track span i {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 55;
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    background: rgba(239, 232, 216, .72);
    border-bottom: 1px solid var(--line);
}

.nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-display);
    font-size: 22px;
    letter-spacing: .28em
}

.logo svg {
    width: 22px;
    height: 22px
}

.logo strong {
    font-weight: 400
}

.nav__menu {
    display: flex;
    gap: 36px;
    justify-content: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase
}

.nav__menu a {
    position: relative;
    color: var(--ink-soft)
}

.nav__menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width .5s var(--ease-expo);
}

.nav__menu a:hover::after {
    width: 100%
}

.nav__cta {
    justify-self: end
}

.btn {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color .6s var(--ease-expo);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform .6s var(--ease-expo);
    z-index: -1;
}

.btn:hover {
    color: var(--paper)
}

.btn:hover::before {
    transform: translateY(0)
}

.btn--filled {
    background: var(--ink);
    color: var(--paper)
}

.btn--filled::before {
    background: var(--emerald);
}

.btn--filled:hover {
    color: var(--paper)
}

@media (max-width:900px) {
    .nav__menu {
        display: none
    }

    .nav__inner {
        grid-template-columns: 1fr auto
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 180px 0 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(80% 60% at 80% 10%, #C8A96122 0%, transparent 60%),
        radial-gradient(60% 60% at 10% 90%, #2F5D4018 0%, transparent 60%),
        var(--paper);
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: .5;
    mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 60px;
    align-items: end;
}

.hero__index {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.hero h1 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(64px, 11vw, 180px);
    line-height: .92;
    letter-spacing: -.02em;
    color: var(--ink);
}

.hero h1 em {
    font-style: italic;
    color: var(--emerald);
    font-family: var(--f-display);
}

.hero h1 .amp {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--ember);
    padding: 0 .05em;
}

.hero__lede {
    font-family: var(--f-serif);
    font-weight: 350;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.55;
    max-width: 420px;
    color: var(--ink-soft);
}

.hero__lede strong {
    font-family: var(--f-serif);
    font-weight: 500;
    color: var(--ink)
}

.hero__meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

.hero__meta .row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 18px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
}

.hero__meta .row span:first-child {
    color: var(--mute)
}

.hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 42px;
    flex-wrap: wrap
}

.hero__figure {
    position: relative;
}

.hero__portrait {
    aspect-ratio: 4/5;
    width: 100%;
    background: #0b0d09;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px -30px #14171240, inset 0 0 0 1px #00000020;
}

.hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.25) contrast(1.05) saturate(.85);
    transform: scale(1.05);
    transition: transform 12s var(--ease-out);
}

.hero__portrait:hover img {
    transform: scale(1.1)
}

.hero__portrait .caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    color: var(--paper);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-shadow: 0 2px 8px #000a;
}

.hero__portrait .badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero__floater {
    position: absolute;
    left: -60px;
    bottom: -40px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 22px 24px;
    box-shadow: 0 20px 50px -20px #14171230;
    min-width: 240px;
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.hero__floater .k {
    font-family: var(--f-display);
    font-size: 56px;
    line-height: 1;
    color: var(--emerald)
}

.hero__floater .sub {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 6px
}

.hero__floater .detail {
    margin-top: 14px;
    font-family: var(--f-serif);
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.4
}

@media (max-width: 1000px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero__floater {
        position: static;
        margin-top: 30px
    }

    .hero {
        padding: 160px 0 60px
    }
}

/* ---------- MARQUEE CREDENTIALS ---------- */
.credentials {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
    overflow: hidden;
    background: var(--paper);
}

.credentials__track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    width: max-content;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 28px;
    color: var(--ink-soft)
}

.credentials__track span {
    display: inline-flex;
    align-items: center;
    gap: 40px
}

.credentials__track span::after {
    content: "✦";
    font-style: normal;
    color: var(--emerald);
    font-size: 18px
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ---------- MANIFESTO ---------- */
.manifesto {
    padding: 160px 0;
    position: relative
}

.manifesto__grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 80px;
    align-items: start
}

.manifesto h2 {
    font-family: var(--f-display);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -.01em;
    color: var(--ink);
    font-weight: 400;
}

.manifesto h2 em {
    color: var(--emerald);
    font-style: italic
}

.manifesto p.lede {
    font-family: var(--f-serif);
    font-weight: 350;
    font-size: clamp(18px, 1.6vw, 26px);
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 720px;
}

.manifesto p.lede::first-letter {
    font-family: var(--f-display);
    font-size: 5em;
    float: left;
    line-height: .9;
    padding-right: 16px;
    padding-top: 8px;
    color: var(--emerald);
}

.manifesto__small {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 20px;
}

@media (max-width: 900px) {
    .manifesto__grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .manifesto {
        padding: 100px 0
    }
}

/* ---------- DATA / CHART SECTION ---------- */
.data {
    background: var(--ink);
    color: var(--paper);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.data::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#ffffff08 1px, transparent 1px),
        linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 30% 30%, #000 30%, transparent 70%);
}

.data .eyebrow {
    color: var(--moss)
}

.data .eyebrow::before {
    background: var(--moss)
}

.data h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 88px);
    line-height: .98;
    letter-spacing: -.01em;
    max-width: 900px;
    margin: 18px 0 60px;
}

.data h2 em {
    font-style: italic;
    color: var(--gold)
}

.data__chart {
    position: relative;
    background: #0C0E0B;
    border: 1px solid #ffffff10;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: stretch;
}

.data__labels {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #ffffff80
}

.data__labels .big {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 72px;
    letter-spacing: -.02em;
    color: var(--paper);
    line-height: 1
}

.data__labels .big span {
    color: var(--moss);
    font-style: normal
}

.data__labels .sep {
    height: 1px;
    background: #ffffff18;
    margin: 6px 0
}

.chart {
    position: relative;
    width: 100%;
    height: 340px
}

.data__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px
}

.data__stat {
    border-top: 1px solid #ffffff1f;
    padding-top: 18px
}

.data__stat .num {
    font-family: var(--f-display);
    font-size: 64px;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--paper)
}

.data__stat .num em {
    color: var(--gold);
    font-style: italic
}

.data__stat .lab {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #ffffffa0;
    margin-top: 10px
}

@media (max-width:900px) {
    .data__chart {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .data__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .data__stat .num {
        font-size: 48px
    }
}

/* ---------- SPLIT / DISCOVERY ---------- */
.discovery {
    padding: 140px 0;
    background: var(--paper-2)
}

.discovery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.discovery__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden
}

.discovery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.04);
    transform: scale(1.02);
    transition: transform 1.8s var(--ease-out)
}

.discovery__image:hover img {
    transform: scale(1.08)
}

.discovery__image .label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--paper);
    padding: 8px 12px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.discovery__image .qr {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 64px;
    height: 64px;
    background: var(--paper);
    padding: 6px;
}

.discovery h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.01em;
    margin: 18px 0 22px
}

.discovery h2 em {
    color: var(--emerald);
    font-style: italic
}

.discovery p {
    font-family: var(--f-serif);
    font-weight: 350;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 18px;
    max-width: 560px
}

.discovery ul {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--line)
}

.discovery li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    align-items: baseline;
    font-family: var(--f-serif);
    font-size: 16px;
    color: var(--ink-soft);
}

.discovery li .k {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--emerald)
}

.discovery li .v {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--mute)
}

@media (max-width:900px) {
    .discovery__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .discovery {
        padding: 100px 0
    }
}

/* ---------- TIMELINE ---------- */
.timeline {
    padding: 140px 0;
    position: relative
}

.timeline__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap
}

.timeline h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -.01em;
    max-width: 720px
}

.timeline h2 em {
    color: var(--ember);
    font-style: italic
}

.timeline__list {
    position: relative;
    border-top: 1px solid var(--line)
}

.timeline__item {
    display: grid;
    grid-template-columns: 140px 1fr 1.2fr 40px;
    gap: 40px;
    align-items: baseline;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background .5s var(--ease-expo);
    position: relative;
}

.timeline__item:hover {
    background: #14171208
}

.timeline__item .yr {
    font-family: var(--f-display);
    font-size: 48px;
    font-style: italic;
    color: var(--emerald);
    line-height: 1
}

.timeline__item .tt {
    font-family: var(--f-display);
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.1;
    color: var(--ink);
    font-weight: 400
}

.timeline__item .ds {
    font-family: var(--f-serif);
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft)
}

.timeline__item .ar {
    font-family: var(--f-mono);
    font-size: 18px;
    color: var(--mute);
    transition: transform .5s var(--ease-expo), color .3s
}

.timeline__item:hover .ar {
    transform: translateX(8px);
    color: var(--ember)
}

@media (max-width:900px) {
    .timeline__item {
        grid-template-columns: 90px 1fr
    }

    .timeline__item .ds,
    .timeline__item .ar {
        grid-column: 1 / -1;
        margin-top: -10px
    }
}

/* ---------- PROTOCOL / METHOD ---------- */
.protocol {
    padding: 160px 0;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden
}

.protocol::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 100% 0%, #2F5D4025 0, transparent 60%), radial-gradient(60% 80% at 0% 100%, #B96A3E18 0, transparent 60%);
}

.protocol .eyebrow {
    color: var(--moss)
}

.protocol .eyebrow::before {
    background: var(--moss)
}

.protocol h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1;
    letter-spacing: -.01em;
    max-width: 820px;
    margin: 18px 0 70px
}

.protocol h2 em {
    font-style: italic;
    color: var(--gold)
}

.protocol__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ffffff1a;
    border: 1px solid #ffffff1a;
    position: relative
}

.proto-card {
    background: var(--ink);
    padding: 40px;
    min-height: 320px;
    position: relative;
    transition: background .5s
}

.proto-card:hover {
    background: #0C0E0B
}

.proto-card .n {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 20px;
    color: var(--moss)
}

.proto-card h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    margin: 40px 0 14px
}

.proto-card h3 em {
    font-style: italic;
    color: var(--gold)
}

.proto-card p {
    font-family: var(--f-serif);
    font-size: 15px;
    line-height: 1.55;
    color: #ffffffb8;
    max-width: 320px
}

.proto-card .icon {
    position: absolute;
    top: 36px;
    right: 36px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff30;
    border-radius: 50%;
    color: var(--moss);
}

@media (max-width:900px) {
    .protocol__grid {
        grid-template-columns: 1fr
    }

    .protocol {
        padding: 100px 0
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: 140px 0
}

.testimonials h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.01em;
    max-width: 780px;
    margin: 18px 0 60px
}

.testimonials h2 em {
    color: var(--emerald);
    font-style: italic
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

.t-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform .6s var(--ease-expo), box-shadow .6s var(--ease-expo);
}

.t-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -30px #14171230
}

.t-card .q {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink)
}

.t-card .q::before {
    content: "“";
    font-family: var(--f-display);
    font-size: 72px;
    color: var(--emerald);
    display: block;
    line-height: 0;
    margin: 24px 0 16px;
    font-style: normal
}

.t-card .person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto
}

.t-card .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd
}

.t-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.t-card .name {
    font-family: var(--f-display);
    font-size: 18px
}

.t-card .role {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--mute);
    margin-top: 3px
}

.t-card .hash {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--f-mono);
    font-size: 10px;
    color: var(--mute);
    letter-spacing: .22em
}

@media (max-width:900px) {
    .t-grid {
        grid-template-columns: 1fr
    }

    .testimonials {
        padding: 100px 0
    }
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 60px 0 140px
}

.gallery__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 40px;
    flex-wrap: wrap
}

.gallery h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1;
    letter-spacing: -.01em;
    max-width: 620px
}

.gallery h2 em {
    font-style: italic;
    color: var(--ember)
}

.gal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 120px;
    gap: 16px
}

.gal {
    position: relative;
    overflow: hidden;
    background: #00000010;
    cursor: none
}

.gal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s var(--ease-out);
    filter: contrast(1.05) saturate(.9)
}

.gal:hover img {
    transform: scale(1.08)
}

.gal .cap {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: var(--paper);
    padding: 6px 10px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase
}

.gal-1 {
    grid-column: span 7;
    grid-row: span 3
}

.gal-2 {
    grid-column: span 5;
    grid-row: span 2
}

.gal-3 {
    grid-column: span 5;
    grid-row: span 3
}

.gal-4 {
    grid-column: span 4;
    grid-row: span 2
}

.gal-5 {
    grid-column: span 3;
    grid-row: span 2
}

.gal-6 {
    grid-column: span 5;
    grid-row: span 2
}

@media (max-width:900px) {
    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px
    }

    .gal-1,
    .gal-3 {
        grid-column: span 2;
        grid-row: span 2
    }

    .gal-2,
    .gal-4,
    .gal-5,
    .gal-6 {
        grid-column: span 1;
        grid-row: span 1
    }
}

/* ---------- INVESTMENT TIERS ---------- */
.invest {
    padding: 140px 0;
    background: var(--paper-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.invest__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px
}

.invest h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -.01em;
    max-width: 700px
}

.invest h2 em {
    color: var(--emerald);
    font-style: italic
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.tier {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .7s var(--ease-expo);
}

.tier:hover {
    transform: translateY(-8px)
}

.tier.featured {
    background: var(--ink);
    color: var(--paper)
}

.tier.featured .eyebrow {
    color: var(--gold)
}

.tier.featured .eyebrow::before {
    background: var(--gold)
}

.tier .name {
    font-family: var(--f-display);
    font-size: 32px;
    font-weight: 400
}

.tier .name em {
    font-style: italic;
    color: var(--emerald)
}

.tier.featured .name em {
    color: var(--gold)
}

.tier .price {
    font-family: var(--f-display);
    font-size: 56px;
    line-height: 1;
    margin-top: 6px
}

.tier .price sub {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    vertical-align: super;
    color: var(--mute);
    margin-left: 6px
}

.tier.featured .price sub {
    color: #ffffff80
}

.tier ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 18px 0
}

.tier.featured ul {
    border-color: #ffffff20
}

.tier li {
    font-family: var(--f-serif);
    font-size: 15px;
    color: var(--ink-soft);
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.tier.featured li {
    color: #ffffffc8
}

.tier li::before {
    content: "—";
    color: var(--emerald);
    font-weight: 500
}

.tier.featured li::before {
    color: var(--gold)
}

.tier .sub {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--mute)
}

.tier.featured .sub {
    color: #ffffff80
}

@media (max-width:900px) {
    .tier-grid {
        grid-template-columns: 1fr
    }
}

/* ---------- FAQ ---------- */
.faq {
    padding: 140px 0
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start
}

.faq h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -.01em
}

.faq h2 em {
    color: var(--emerald);
    font-style: italic
}

.faq__list {
    border-top: 1px solid var(--line)
}

.faq__item {
    border-bottom: 1px solid var(--line)
}

.faq__q {
    width: 100%;
    text-align: left;
    padding: 26px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--f-display);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.2;
    color: var(--ink);
}

.faq__q .plus {
    font-family: var(--f-display);
    font-size: 28px;
    color: var(--emerald);
    transition: transform .5s var(--ease-expo)
}

.faq__item.open .faq__q .plus {
    transform: rotate(45deg)
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .7s var(--ease-expo)
}

.faq__a>div {
    padding: 0 0 26px;
    font-family: var(--f-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 680px
}

@media (max-width:900px) {
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .faq {
        padding: 100px 0
    }
}

/* ---------- CTA ---------- */
.cta {
    padding: 160px 0;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 70% at 50% 100%, #2F5D4025 0, transparent 70%);
}

.cta__wrap {
    position: relative;
    text-align: center;
    max-width: 980px;
    margin: 0 auto
}

.cta h2 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(48px, 7vw, 128px);
    line-height: .95;
    letter-spacing: -.02em
}

.cta h2 em {
    font-style: italic;
    color: var(--gold)
}

.cta p {
    font-family: var(--f-serif);
    font-size: 20px;
    line-height: 1.5;
    color: #ffffffb8;
    margin: 30px auto 40px;
    max-width: 620px
}

.cta form {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid #ffffff30
}

.cta input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 18px 22px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--paper);
    outline: none;
}

.cta input::placeholder {
    color: #ffffff60
}

.cta button[type=submit] {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 0 24px;
    cursor: pointer;
    transition: background .4s;
}

.cta button[type=submit]:hover {
    background: var(--paper)
}

/* ---------- FOOTER ---------- */
footer {
    padding: 80px 0 40px;
    background: var(--ink);
    color: var(--paper);
    border-top: 1px solid #ffffff1a
}

.foot__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px
}

.foot__brand .logo {
    font-family: var(--f-display);
    font-size: 40px;
    letter-spacing: .2em;
    color: var(--paper)
}

.foot__brand p {
    font-family: var(--f-serif);
    font-size: 15px;
    color: #ffffffa8;
    margin-top: 20px;
    max-width: 300px
}

.foot__col h4 {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 20px
}

.foot__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.foot__col a {
    color: #ffffffc8;
    font-family: var(--f-serif);
    font-size: 15px;
    transition: color .3s
}

.foot__col a:hover {
    color: var(--gold)
}

.foot__bottom {
    border-top: 1px solid #ffffff1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #ffffff80
}

.foot__super {
    font-family: var(--f-display);
    font-size: clamp(80px, 16vw, 260px);
    line-height: .85;
    letter-spacing: -.02em;
    color: #ffffff0a;
    margin: 60px 0 20px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    font-style: italic
}

@media (max-width:900px) {
    .foot__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--emerald);
    z-index: 100;
    width: 0;
    transition: width .1s linear
}

/* ---------- UTIL ---------- */
.italic {
    font-style: italic
}

.num-big {
    font-family: var(--f-display);
    font-size: clamp(80px, 14vw, 220px);
    line-height: .85;
    letter-spacing: -.03em;
    color: var(--ink)
}