/* =========================================================================
   lotus.dev — biotech-botanical manifesto
   Palette:
     #0E1F17 understorey ink (bedrock)
     #1B3A2C moss vault (primary surface)
     #2F6B4A chlorophyll signal (mid-foliage anchor)
     #7BA689 leaf-light (mid-tone, hover)
     #D4E5C6 callus paper (off-white, hairlines)
     #E8FF5A biolume strike (futuristic accent — used sparingly)
     #5B2317 root iron (oxidation, only in noise grain)
   Fonts: Anton, Fraunces, Inter, JetBrains Mono
   ========================================================================= */

:root {
    --c-ink: #0E1F17;
    --c-moss: #1B3A2C;
    --c-chloro: #2F6B4A;
    --c-leaf: #7BA689;
    --c-paper: #D4E5C6;
    --c-biolume: #E8FF5A;
    --c-iron: #5B2317;

    --col-width: 720px;
    --bleed: 24px;
    --gutter: 88px;

    --ease-zoom: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    background-color: var(--c-ink);
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-ink);
    color: var(--c-paper);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    /* Background: layered moss vault over ink with iron noise grain */
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(47, 107, 74, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(27, 58, 44, 0.45) 0%, transparent 55%),
        linear-gradient(180deg, var(--c-ink) 0%, #11241a 100%);
    background-attachment: fixed;
}

/* =========================================================================
   Background grain — tileable noise via SVG data URI (root iron over ink, 6%)
   ========================================================================= */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='256' height='256'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.357  0 0 0 0 0.137  0 0 0 0 0.090  0 0 0 0.6 0'/></filter><rect width='256' height='256' filter='url(%23n)' opacity='0.6'/></svg>");
    background-size: 256px 256px;
}

/* Mulch paper tooth — secondary noise layer */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.831  0 0 0 0 0.898  0 0 0 0 0.776  0 0 0 0.4 0'/></filter><rect width='180' height='180' filter='url(%23n2)'/></svg>");
    background-size: 180px 180px;
}

/* =========================================================================
   Scanline ghost — 6 hairlines per 100px at 2% opacity
   ========================================================================= */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 30;
    opacity: 0.16;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 15px,
        rgba(212, 229, 198, 0.32) 15px,
        rgba(212, 229, 198, 0.32) 16px,
        transparent 16px,
        transparent 32px
    );
    mix-blend-mode: overlay;
}

/* =========================================================================
   Canopy noise — two noise frames cross-faded by JS at ~4fps
   ========================================================================= */
.canopy-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
    opacity: 0.10;
    transition: opacity 0.12s linear;
}
.canopy-noise-a {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n3'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.184  0 0 0 0 0.420  0 0 0 0 0.290  0 0 0 0.5 0'/></filter><rect width='220' height='220' filter='url(%23n3)'/></svg>");
    background-size: 220px 220px;
    opacity: 0.10;
}
.canopy-noise-b {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n4'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' seed='17' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.184  0 0 0 0 0.420  0 0 0 0 0.290  0 0 0 0.5 0'/></filter><rect width='220' height='220' filter='url(%23n4)'/></svg>");
    background-size: 220px 220px;
    opacity: 0;
}

/* =========================================================================
   Specimen badge — top-left circular emblem in hexagonal nut frame
   ========================================================================= */
.specimen-badge {
    position: fixed;
    top: 28px;
    left: 28px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
}

.badge-svg {
    width: 56px;
    height: 56px;
    display: block;
}

.badge-hex {
    fill: none;
    stroke: var(--c-paper);
    stroke-width: 1.2;
    opacity: 0.9;
}
.badge-hex-inner {
    fill: rgba(14, 31, 23, 0.6);
    stroke: var(--c-leaf);
    stroke-width: 0.5;
    opacity: 0.7;
}
.badge-lotus {
    fill: none;
    stroke: var(--c-paper);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.badge-dot {
    fill: var(--c-biolume);
    stroke: none;
}
.badge-bolt {
    fill: var(--c-paper);
    opacity: 0.7;
}

.badge-caption {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--c-paper);
    text-transform: uppercase;
    opacity: 0.78;
    white-space: nowrap;
}

/* =========================================================================
   Tick strip — vertical right-edge plate navigation
   ========================================================================= */
.tick-strip {
    position: fixed;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 22px;
    pointer-events: auto;
}

.tick {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-paper);
    transition: color 0.3s var(--ease-zoom), opacity 0.3s var(--ease-zoom);
    opacity: 0.55;
    cursor: pointer;
}

.tick-mark {
    display: block;
    width: 18px;
    height: 1px;
    background-color: var(--c-paper);
    transition: width 0.3s var(--ease-zoom), background-color 0.3s var(--ease-zoom), height 0.3s var(--ease-zoom);
}

.tick-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease-zoom);
}

.tick:hover {
    opacity: 1;
}
.tick:hover .tick-mark {
    width: 32px;
    background-color: var(--c-leaf);
}

.tick[data-active="true"] {
    opacity: 1;
}
.tick[data-active="true"] .tick-mark {
    width: 36px;
    height: 2px;
    background-color: var(--c-biolume);
}
.tick[data-active="true"] .tick-label {
    color: var(--c-biolume);
}

/* =========================================================================
   Scroll sigil — bottom-left progress indicator
   ========================================================================= */
.scroll-sigil {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 50;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--c-paper);
    text-transform: uppercase;
    opacity: 0.78;
    pointer-events: none;
}

.sigil-num {
    color: var(--c-biolume);
}

/* =========================================================================
   Spine — single-column architecture
   ========================================================================= */
.spine {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* =========================================================================
   Plate — full-viewport specimen plate
   ========================================================================= */
.plate {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px var(--gutter) 96px;
    border-bottom: 0.5px solid rgba(212, 229, 198, 0.18);
    overflow: hidden;
}

.plate-gutter {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    display: flex;
    flex-direction: row;
    gap: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--c-leaf);
    text-transform: uppercase;
    opacity: 0.6;
    white-space: nowrap;
}

.gutter-num {
    color: var(--c-paper);
}

.plate-header {
    width: 100%;
    max-width: var(--col-width);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    margin-bottom: 36px;
    border-bottom: 0.5px solid rgba(212, 229, 198, 0.28);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-leaf);
    flex-shrink: 0;
}

.plate-eyebrow {
    color: var(--c-paper);
}

.plate-meta {
    color: var(--c-leaf);
    opacity: 0.85;
}

.plate-content {
    width: 100%;
    max-width: var(--col-width);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    flex: 1;
    justify-content: center;
}

/* =========================================================================
   Display headlines — Anton, oversized, bleed left by 24px
   ========================================================================= */
.display-headline {
    font-family: 'Anton', 'Helvetica', sans-serif;
    font-weight: 400;
    font-size: clamp(7rem, 14vw, 18rem);
    line-height: 0.86;
    letter-spacing: -0.04em;
    color: var(--c-paper);
    text-transform: uppercase;
    margin-left: calc(-1 * var(--bleed));
    word-break: break-word;
    hyphens: manual;
}

.display-headline-mid {
    font-size: clamp(5rem, 11vw, 14rem);
}

.display-headline-quote {
    font-size: clamp(4.6rem, 9.5vw, 11rem);
    color: var(--c-paper);
    margin-bottom: 0.18em;
}
.display-headline-quote-2 {
    color: var(--c-leaf);
}

.display-headline-final {
    font-size: clamp(5rem, 11vw, 13rem);
}

.dot-biolume {
    color: var(--c-biolume);
    text-shadow: 0 0 14px rgba(232, 255, 90, 0.5);
}

/* =========================================================================
   Sub-display — Fraunces italic
   ========================================================================= */
.sub-display {
    font-family: 'Fraunces', 'Inter', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    line-height: 1.12;
    color: var(--c-paper);
    font-style: italic;
    letter-spacing: -0.005em;
    margin-top: 4px;
}

/* =========================================================================
   Manifesto paragraphs — Inter body
   ========================================================================= */
.manifesto-block {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.manifesto-para {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--c-paper);
    max-width: 56ch;
}

.manifesto-para em {
    color: var(--c-leaf);
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 400;
}

/* =========================================================================
   Datasheet line — Inter monospace-mood metadata
   ========================================================================= */
.datasheet {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--c-leaf);
    line-height: 1.5;
    padding-top: 12px;
    border-top: 0.5px solid rgba(212, 229, 198, 0.2);
}

.datasheet em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--c-paper);
}

/* =========================================================================
   Caption mono — JetBrains Mono small caps
   ========================================================================= */
.caption-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-leaf);
    line-height: 1.5;
}

/* =========================================================================
   Hero illustration containers — zoom-focus targets
   ========================================================================= */
.hero-illu,
.phyllotaxis-stage,
.canopy-strut {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    transform: scale(1.4);
    opacity: 0.62;
    transition: transform 0.6s var(--ease-zoom), opacity 0.6s var(--ease-zoom);
}

.hero-illu.zoomed-in,
.phyllotaxis-stage.zoomed-in,
.canopy-strut.zoomed-in {
    transform: scale(0.92);
    opacity: 1;
}

.illu-svg {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
}

/* =========================================================================
   Plate I: THE SEED illustration
   ========================================================================= */
.plate-1-content {
    align-items: stretch;
    text-align: left;
}

.hero-illu-seed {
    margin-bottom: -120px;
}

.seed-shell {
    fill: rgba(27, 58, 44, 0.45);
    stroke: var(--c-leaf);
    stroke-width: 1.2;
}
.seed-shell-2 {
    fill: rgba(47, 107, 74, 0.5);
    stroke: var(--c-paper);
    stroke-width: 0.6;
    opacity: 0.7;
}
.seed-crack {
    fill: none;
    stroke: var(--c-biolume);
    stroke-width: 0.8;
    opacity: 0.85;
    stroke-dasharray: 3 3;
}
.seed-tick {
    stroke: var(--c-paper);
    stroke-width: 0.7;
    opacity: 0.7;
}
.seed-anno {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    fill: var(--c-leaf);
    letter-spacing: 0.16em;
}

/* =========================================================================
   Plate II: GERMINATION illustration
   ========================================================================= */
.hero-illu-root {
    max-width: 360px;
    margin: 0 auto 18px;
    transform: scale(1.6);
}
.hero-illu-root.zoomed-in {
    transform: scale(1);
}

.root-main {
    fill: none;
    stroke: var(--c-paper);
    stroke-width: 2.2;
    stroke-linecap: round;
}
.root-branch {
    fill: none;
    stroke: var(--c-leaf);
    stroke-width: 1.4;
    stroke-linecap: round;
    opacity: 0.86;
}
.root-hair {
    fill: none;
    stroke: var(--c-leaf);
    stroke-width: 0.7;
    opacity: 0.6;
}
.seed-pod {
    fill: var(--c-moss);
    stroke: var(--c-paper);
    stroke-width: 1.4;
}
.seedling-shoot {
    fill: none;
    stroke: var(--c-biolume);
    stroke-width: 1.4;
    stroke-linecap: round;
}

.anno-line {
    stroke: var(--c-leaf);
    stroke-width: 0.6;
    stroke-dasharray: 2 3;
}
.anno-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    fill: var(--c-leaf);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* =========================================================================
   Plate III: PHYLLOTAXIS — Fibonacci spiral
   ========================================================================= */
.plate-3-content {
    align-items: center;
    text-align: center;
}

.phyllotaxis-stage {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.phyllotaxis-svg {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1 / 1;
    transition: transform 0.05s linear;
}

.phyllotaxis-rings circle {
    fill: none;
    stroke: var(--c-leaf);
    stroke-width: 0.4;
    opacity: 0.32;
}

.phyllotaxis-leaves circle {
    fill: var(--c-chloro);
    stroke: var(--c-paper);
    stroke-width: 0.5;
    opacity: 0.78;
}

.phyllotaxis-core {
    fill: var(--c-paper);
    stroke: none;
}
.phyllotaxis-biolume {
    fill: var(--c-biolume);
    stroke: none;
}

#phyllotaxis-readout {
    text-align: center;
    color: var(--c-leaf);
}

/* =========================================================================
   Plate IV: CROSS SECTION
   ========================================================================= */
.plate-4-content {
    text-align: left;
}
.hero-illu-petal {
    margin-bottom: -80px;
}

.petal-outline {
    fill: rgba(27, 58, 44, 0.4);
    stroke: var(--c-paper);
    stroke-width: 1.2;
}
.petal-vein {
    fill: none;
    stroke: var(--c-leaf);
    stroke-width: 1;
}
.petal-vein-side {
    fill: none;
    stroke: var(--c-leaf);
    stroke-width: 0.7;
    opacity: 0.78;
}
.petal-tooth {
    fill: none;
    stroke: var(--c-paper);
    stroke-width: 0.7;
}

.biolume-stroke {
    stroke: var(--c-biolume) !important;
    stroke-width: 0.8;
    opacity: 0.92;
    stroke-dasharray: 0;
}
.biolume-fill {
    fill: var(--c-biolume) !important;
}
.biolume-text {
    fill: var(--c-biolume) !important;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================================================================
   Plate V: CANOPY pull-quote
   ========================================================================= */
.plate-5-content {
    align-items: stretch;
    text-align: left;
}

.canopy-strut {
    margin-bottom: 12px;
}

.canopy-rule {
    stroke: var(--c-paper);
    stroke-width: 0.6;
    opacity: 0.6;
}
.canopy-rule-fine {
    stroke: var(--c-leaf);
    stroke-width: 0.4;
    opacity: 0.4;
    stroke-dasharray: 2 2;
}
.canopy-node {
    fill: var(--c-paper);
}
.canopy-node.biolume-fill {
    fill: var(--c-biolume);
    filter: drop-shadow(0 0 6px rgba(232, 255, 90, 0.6));
}

.pull-quote {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.quote-attribution {
    margin-top: 28px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--c-leaf);
    border-left: 2px solid var(--c-biolume);
    padding-left: 18px;
}

/* =========================================================================
   Plate VI: POLLEN — specimen cards in row
   ========================================================================= */
.plate-6-content {
    align-items: stretch;
    text-align: left;
}

.pollen-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 28px 0;
    border-top: 0.5px solid rgba(212, 229, 198, 0.2);
    border-bottom: 0.5px solid rgba(212, 229, 198, 0.2);
    transform: scale(1.05);
    opacity: 0.7;
    transition: transform 0.6s var(--ease-zoom), opacity 0.6s var(--ease-zoom);
}
.pollen-row.zoomed-in {
    transform: scale(1);
    opacity: 1;
}

.specimen-card {
    flex: 1 1 0;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-decoration: none;
    color: var(--c-paper);
    padding: 16px 12px;
    border: 0.5px solid rgba(212, 229, 198, 0.25);
    background-color: rgba(27, 58, 44, 0.35);
    transition: background-color 0.3s var(--ease-zoom), border-color 0.3s var(--ease-zoom), transform 0.3s var(--ease-zoom);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.specimen-card:hover {
    background-color: rgba(47, 107, 74, 0.45);
    border-color: var(--c-biolume);
    transform: translateY(-2px);
}

.specimen-glyph {
    width: 48px;
    height: 48px;
    margin-bottom: 4px;
}

.glyph-svg {
    width: 100%;
    height: 100%;
    display: block;
}
.glyph-outer {
    fill: none;
    stroke: var(--c-paper);
    stroke-width: 1;
    opacity: 0.8;
}
.glyph-core {
    fill: var(--c-leaf);
    stroke: none;
}
.glyph-spike {
    stroke: var(--c-paper);
    stroke-width: 1;
    opacity: 0.7;
}

.specimen-card:hover .glyph-core {
    fill: var(--c-biolume);
}
.specimen-card:hover .glyph-outer {
    stroke: var(--c-biolume);
}

.specimen-id {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--c-leaf);
    text-transform: uppercase;
}

.specimen-bin {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--c-paper);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease-zoom), color 0.3s var(--ease-zoom);
    padding-bottom: 2px;
}
.specimen-bin em {
    font-style: italic;
    color: var(--c-leaf);
}

.specimen-card:hover .specimen-bin {
    border-bottom-color: var(--c-biolume);
    color: var(--c-paper);
}

.specimen-coord {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--c-biolume);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s var(--ease-zoom), transform 0.3s var(--ease-zoom);
    text-transform: uppercase;
}
.specimen-card:hover .specimen-coord {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   Plate VII: SEED BANK — herbarium index cards
   ========================================================================= */
.plate-7-content {
    align-items: stretch;
    text-align: left;
}

.seed-bank-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 0.5px solid rgba(212, 229, 198, 0.3);
    transform: translateY(20px);
    opacity: 0.6;
    transition: transform 0.6s var(--ease-zoom), opacity 0.6s var(--ease-zoom);
}
.seed-bank-list.zoomed-in {
    transform: translateY(0);
    opacity: 1;
}

.cultivar-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px 22px;
    padding: 22px 0;
    border-bottom: 0.5px solid rgba(212, 229, 198, 0.18);
    align-items: baseline;
}

.cultivar-num {
    grid-row: 1 / span 3;
    grid-column: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    color: var(--c-leaf);
    letter-spacing: 0.06em;
    align-self: start;
    padding-top: 4px;
}

.cultivar-bin {
    grid-column: 2;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--c-paper);
}
.cultivar-bin em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--c-leaf);
    letter-spacing: 0;
}

.cultivar-meta {
    grid-column: 2;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--c-leaf);
    opacity: 0.86;
    text-transform: uppercase;
}

.cultivar-note {
    grid-column: 2;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--c-paper);
    opacity: 0.92;
    max-width: 56ch;
}
.cultivar-note em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--c-leaf);
}

/* =========================================================================
   Plate VIII: DEHISCENCE — closing manifesto
   ========================================================================= */
.plate-8-content {
    align-items: stretch;
    text-align: left;
}

.hero-illu-pod {
    margin-bottom: -40px;
}

.pod-shell {
    fill: rgba(27, 58, 44, 0.5);
    stroke: var(--c-paper);
    stroke-width: 1.2;
}
.pod-cell {
    fill: var(--c-moss);
    stroke: var(--c-leaf);
    stroke-width: 0.8;
}
.pod-anno {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    fill: var(--c-leaf);
    text-anchor: middle;
    letter-spacing: 0.1em;
}
.spore-line {
    stroke: var(--c-biolume);
    stroke-width: 0.6;
    stroke-dasharray: 2 3;
    opacity: 0.7;
}
.spore-dot {
    fill: var(--c-biolume);
    filter: drop-shadow(0 0 4px rgba(232, 255, 90, 0.6));
}

.dehiscence-footer {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 0.5px solid rgba(212, 229, 198, 0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dehiscence-footer .caption-mono em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--c-paper);
}

/* =========================================================================
   Reduced motion / responsive
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-illu,
    .phyllotaxis-stage,
    .canopy-strut,
    .pollen-row,
    .seed-bank-list {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    .canopy-noise-a,
    .canopy-noise-b {
        opacity: 0.05 !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 900px) {
    :root {
        --gutter: 32px;
    }
    .specimen-badge .badge-caption {
        display: none;
    }
    .tick-strip {
        right: 16px;
        gap: 14px;
    }
    .tick-label {
        display: none;
    }
    .scroll-sigil {
        bottom: 16px;
        left: 16px;
    }
    .pollen-row {
        flex-direction: column;
    }
    .specimen-card {
        flex: 1 1 100%;
    }
    .plate-header {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    .cultivar-card {
        grid-template-columns: 48px 1fr;
        gap: 4px 14px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    .display-headline {
        font-size: clamp(4.5rem, 18vw, 9rem);
    }
    .display-headline-mid {
        font-size: clamp(3.6rem, 14vw, 7rem);
    }
    .display-headline-quote {
        font-size: clamp(3rem, 12vw, 6rem);
    }
    .specimen-badge {
        top: 14px;
        left: 14px;
    }
    .badge-svg {
        width: 40px;
        height: 40px;
    }
}
