/* Soul-Dash: Eternal Light — landing page
   Palette derived from the AerelonTech mark:
     #000000 void · #74DEED inner light · #FFFFFF mortal flame
*/

:root {
    --void: #050608;
    --void-2: #0b0d11;
    --void-3: #14171d;
    --shadow: rgba(0, 0, 0, 0.6);

    --light: #74DEED;          /* primary brand cyan */
    --light-soft: #b6ecf5;
    --light-deep: #2d575d;
    --light-glow: rgba(116, 222, 237, 0.55);
    --light-faint: rgba(116, 222, 237, 0.12);

    --ink: #e9eef2;
    --ink-mute: #9aa3ac;
    --ink-faint: #5a6168;
    --rule: rgba(255, 255, 255, 0.07);

    --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino", "Georgia", serif;
    --sans:  "Inter", "Helvetica Neue", "Segoe UI", system-ui, -apple-system, sans-serif;

    --max: 1180px;
    --gap: clamp(16px, 2.4vw, 28px);
}

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--void);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    background:
        radial-gradient(1200px 700px at 80% -10%, rgba(116, 222, 237, 0.08), transparent 60%),
        radial-gradient(900px 600px at -10% 30%, rgba(116, 222, 237, 0.05), transparent 65%),
        var(--void);
}

img { max-width: 100%; display: block; }

a {
    color: var(--light);
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}
a:hover { color: var(--light-soft); }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: .005em;
    color: #fff;
    margin: 0 0 .5em;
    line-height: 1.15;
}

h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 17px; letter-spacing: .04em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; color: var(--light-soft); }

p { margin: 0 0 1em; color: var(--ink); }

/* ---------- header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 40px);
    background: rgba(5, 6, 8, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rule);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
}

.brand img {
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(116, 222, 237, 0.25), 0 0 18px rgba(116, 222, 237, 0.25);
}

.site-nav {
    display: flex;
    gap: clamp(10px, 1.8vw, 22px);
    margin-left: auto;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--ink-mute);
    font-size: 14px;
    letter-spacing: .04em;
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
}

.site-nav a:hover {
    color: #fff;
    border-bottom-color: var(--light);
}

.site-nav a.nav-cta {
    color: var(--light);
    border: 1px solid var(--light-deep);
    border-radius: 999px;
    padding: 6px 14px;
    background: rgba(116, 222, 237, 0.06);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
}

.site-nav a.nav-cta:hover {
    background: rgba(116, 222, 237, 0.18);
    color: #fff;
    border-color: var(--light);
    box-shadow: 0 0 18px rgba(116, 222, 237, 0.35);
}

.wip-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--light-deep);
    color: var(--light-soft);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(116, 222, 237, 0.06);
}

@media (max-width: 720px) {
    .site-header { flex-wrap: wrap; }
    .wip-pill { order: 3; margin-left: auto; }
    .site-nav { order: 4; flex-basis: 100%; justify-content: flex-start; padding-top: 8px; }
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    min-height: 92vh;
    padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 56px) clamp(60px, 10vh, 120px);
    overflow: hidden;
    isolation: isolate;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(116, 222, 237, 0.18), transparent 55%),
        radial-gradient(ellipse at 70% 80%, rgba(116, 222, 237, 0.08), transparent 60%),
        linear-gradient(180deg, #06080b 0%, #020203 100%);
}

.hero-rays {
    position: absolute;
    inset: -10% -10% 0 -10%;
    z-index: -1;
    background:
        conic-gradient(from 220deg at 50% 0%,
            transparent 0deg,
            rgba(116, 222, 237, 0.10) 12deg,
            transparent 22deg,
            rgba(116, 222, 237, 0.06) 38deg,
            transparent 60deg,
            rgba(116, 222, 237, 0.10) 90deg,
            transparent 110deg,
            transparent 360deg);
    filter: blur(28px);
    opacity: .9;
    animation: rays 24s linear infinite;
    transform-origin: 50% 0%;
}

@keyframes rays {
    0%   { transform: rotate(0deg);   }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
}

.eyebrow {
    color: var(--light);
    font-size: 13px;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: .9;
}

.title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(56px, 10vw, 132px);
    line-height: .95;
    margin: 0 0 28px;
    letter-spacing: -.01em;
}

.title-line { display: block; color: #fff; }

.title-line.glow {
    color: var(--light);
    text-shadow:
        0 0 18px rgba(116, 222, 237, 0.55),
        0 0 60px rgba(116, 222, 237, 0.35);
    animation: pulse 4.5s ease-in-out infinite;
    font-style: italic;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { text-shadow: 0 0 18px rgba(116, 222, 237, 0.55), 0 0 60px rgba(116, 222, 237, 0.30); }
    50%      { text-shadow: 0 0 28px rgba(116, 222, 237, 0.75), 0 0 90px rgba(116, 222, 237, 0.45); }
}

.lede {
    max-width: 640px;
    font-size: clamp(17px, 1.6vw, 20px);
    color: #cdd5dc;
    margin-bottom: 36px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    will-change: transform;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--light);
    color: #04141a;
    box-shadow: 0 0 0 1px rgba(116, 222, 237, 0.4), 0 12px 36px -10px rgba(116, 222, 237, 0.6);
}

.btn-primary:hover {
    background: var(--light-soft);
    color: #04141a;
    box-shadow: 0 0 0 1px rgba(116, 222, 237, 0.6), 0 16px 48px -10px rgba(116, 222, 237, 0.8);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
    border-color: var(--light);
    color: var(--light);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    margin: 0;
    padding: 0;
    background: var(--rule);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    max-width: 940px;
}

.quick-stats > div {
    background: var(--void);
    padding: 18px 18px;
}

.quick-stats dt {
    color: var(--ink-faint);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.quick-stats dd {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* ---------- generic section ---------- */

.section {
    padding: clamp(72px, 11vh, 120px) clamp(20px, 5vw, 56px);
    position: relative;
}

.section-dark {
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4)),
        var(--void-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.section-feature {
    background:
        radial-gradient(900px 600px at 80% 30%, rgba(116, 222, 237, 0.12), transparent 60%),
        radial-gradient(700px 500px at 10% 80%, rgba(116, 222, 237, 0.06), transparent 60%),
        var(--void-2);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.section-inner {
    max-width: var(--max);
    margin: 0 auto;
}

.kicker {
    color: var(--light);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin: 0 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--light);
    box-shadow: 0 0 10px var(--light-glow);
}

.kicker.accent {
    color: #fff;
}
.kicker.accent::before {
    background: #fff;
    box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

.section-lede {
    max-width: 720px;
    color: var(--ink-mute);
    font-size: 18px;
    margin-bottom: 40px;
}

.prose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 28px;
    color: var(--ink-mute);
}
.prose-grid p { font-size: 17px; }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}
.two-col > div h2 + p,
.two-col > div h3 + p { margin-top: 14px; }

@media (max-width: 820px) {
    .two-col { grid-template-columns: 1fr; }
}

.boss-title {
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--light);
    text-shadow: 0 0 24px var(--light-glow);
}

.boss-meta {
    margin-top: 18px;
    color: var(--ink-faint);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ---------- characters ---------- */

.card-grid {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    padding: 24px 22px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(360px 120px at 50% -10%, rgba(116, 222, 237, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(116, 222, 237, 0.35);
    box-shadow: 0 22px 50px -25px rgba(116, 222, 237, 0.45);
}
.card:hover::after { opacity: 1; }

.card-art {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 18px;
    background:
        radial-gradient(180px 90px at 50% 100%, rgba(116, 222, 237, 0.35), transparent 60%),
        linear-gradient(180deg, #0b1014, #04060a);
    border: 1px solid var(--rule);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.card-glyph {
    font-family: var(--serif);
    font-size: 84px;
    font-style: italic;
    color: var(--light);
    text-shadow: 0 0 30px var(--light-glow);
    line-height: 1;
}

.card h3 { margin-bottom: 4px; }

.card-role {
    color: var(--light-soft);
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.card p { font-size: 15px; color: var(--ink-mute); }

.card-tag {
    margin-top: 10px;
    display: inline-block;
    color: var(--light);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-top: 1px solid var(--rule);
    padding-top: 12px;
    width: 100%;
}

.future-roster {
    margin-top: 32px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.02);
}

.future-roster summary {
    cursor: pointer;
    color: var(--light);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 0;
}

.tag-list {
    list-style: none;
    padding: 12px 0 8px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list li {
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 6px 14px;
    color: var(--ink-mute);
    font-size: 13px;
}

/* ---------- ages ---------- */

.ages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.age {
    border: 1px solid var(--rule);
    border-radius: 14px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(116, 222, 237, 0.04), transparent 70%);
    position: relative;
}

.age header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 16px;
}

.age-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 36px;
    color: var(--light);
    text-shadow: 0 0 18px var(--light-glow);
    line-height: 1;
}

.age h3 { margin: 0; }

.age ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.age li {
    color: var(--ink);
    padding: 8px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 15px;
}

.age li:last-child { border-bottom: none; }

.age-boss {
    color: var(--light-soft);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 0;
}

/* ---------- mechanic ---------- */

.big-title {
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 28px;
}

.big-title .vs {
    color: var(--ink-faint);
    font-style: italic;
    font-weight: 400;
    margin: 0 .15em;
    font-size: .65em;
}

.mech-grid {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
}

.mech-grid li {
    background: var(--void-2);
    padding: 26px 24px;
}

.mech-grid h4 {
    color: var(--light);
    margin-bottom: 10px;
}

.mech-grid p { color: var(--ink-mute); font-size: 15px; margin: 0; }

.reference-line {
    margin-top: 28px;
    color: var(--ink-faint);
    font-style: italic;
    font-size: 15px;
}

/* ---------- features ---------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.feature {
    border-top: 1px solid var(--light-deep);
    padding-top: 18px;
}

.feature h4 { margin-bottom: 12px; }

.feature ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature li {
    padding: 6px 0;
    color: var(--ink);
    font-size: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.feature li:last-child { border-bottom: none; }

/* ---------- timeline ---------- */

.timeline {
    list-style: none;
    padding: 0;
    margin: 36px 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    counter-reset: ts;
}

.timeline li {
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 22px;
    background: rgba(255,255,255,0.015);
    position: relative;
    transition: border-color .2s ease, transform .2s ease;
}

.timeline li:hover { border-color: rgba(116, 222, 237, 0.35); transform: translateY(-2px); }

.timeline li.post {
    border-style: dashed;
    background: rgba(116, 222, 237, 0.04);
}

.ts-month {
    display: inline-block;
    color: var(--light);
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    letter-spacing: .04em;
    margin-bottom: 8px;
}

.timeline h4 { margin-bottom: 6px; color: #fff; text-transform: none; letter-spacing: 0; font-family: var(--serif); font-weight: 600; font-size: 19px; }
.timeline p { margin: 0; color: var(--ink-mute); font-size: 14px; }

.success-line {
    margin-top: 24px;
    padding: 18px 22px;
    border-left: 2px solid var(--light);
    background: rgba(116, 222, 237, 0.05);
    color: var(--ink);
    border-radius: 4px;
}

.success-line strong { color: var(--light); letter-spacing: .12em; text-transform: uppercase; font-size: 13px; margin-right: 8px; }

/* ---------- waitlist ---------- */

.waitlist-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

@media (max-width: 880px) {
    .waitlist-inner { grid-template-columns: 1fr; }
}

.waitlist-copy { padding-top: 4px; }

.waitlist-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    gap: 10px;
}

.waitlist-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink);
    font-size: 15px;
}

.waitlist-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 14px;
    height: 1px;
    background: var(--light);
    box-shadow: 0 0 10px var(--light-glow);
}

.waitlist-fallback {
    margin-top: 12px;
    color: var(--ink-faint);
    font-size: 13px;
    letter-spacing: .04em;
}

.waitlist-frame {
    position: relative;
    border-radius: 16px;
    padding: 8px;
    background:
        linear-gradient(180deg, rgba(116, 222, 237, 0.18), rgba(116, 222, 237, 0.04) 40%, transparent 80%);
    border: 1px solid var(--rule);
    box-shadow:
        0 0 0 1px rgba(116, 222, 237, 0.18),
        0 30px 80px -30px rgba(116, 222, 237, 0.45),
        inset 0 0 60px rgba(116, 222, 237, 0.06);
    overflow: hidden;
}

.waitlist-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(400px 120px at 50% -10%, rgba(116, 222, 237, 0.25), transparent 65%);
}

.waitlist-frame iframe {
    display: block;
    width: 100%;
    min-height: 920px;
    border: 0;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 520px) {
    .waitlist-frame iframe { min-height: 1080px; }
}

/* ---------- inspiration ---------- */

.inspo-grid {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.inspo-grid li {
    padding: 22px;
    border: 1px solid var(--rule);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(255,255,255,0.02);
    transition: border-color .2s ease, background .2s ease;
}

.inspo-grid li:hover {
    border-color: rgba(116, 222, 237, 0.35);
    background: rgba(116, 222, 237, 0.04);
}

.inspo-grid strong {
    color: #fff;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: .01em;
}

.inspo-grid span {
    color: var(--ink-faint);
    font-size: 13px;
    letter-spacing: .06em;
}

/* ---------- concept art gallery ---------- */

#concept-art {
    background:
        radial-gradient(800px 500px at 90% 10%, rgba(116, 222, 237, 0.06), transparent 60%),
        radial-gradient(700px 500px at 0% 90%, rgba(116, 222, 237, 0.05), transparent 60%),
        var(--void);
    border-top: 1px solid var(--rule);
}

.gallery {
    list-style: none;
    padding: 0;
    margin: 36px 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 28px);
}

.gallery-item { margin: 0; }

.gallery-wide { grid-column: 1 / -1; }

@media (max-width: 720px) {
    .gallery { grid-template-columns: 1fr; }
}

.frame {
    margin: 0;
    padding: clamp(14px, 2vw, 22px);
    background:
        linear-gradient(180deg, #0c1014 0%, #06080b 100%);
    border: 1px solid var(--rule);
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 30px 60px -30px rgba(0, 0, 0, 0.9);
    position: relative;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(420px 140px at 50% -10%, rgba(116, 222, 237, 0.18), transparent 65%);
    opacity: .6;
    transition: opacity .3s ease;
}

.frame:hover {
    transform: translateY(-3px);
    border-color: rgba(116, 222, 237, 0.35);
    box-shadow:
        inset 0 0 0 1px rgba(116, 222, 237, 0.12),
        0 28px 70px -25px rgba(116, 222, 237, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.9);
}

.frame:hover::before { opacity: 1; }

.frame-inner {
    position: relative;
    background:
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.012) 0 2px,
            transparent 2px 6px),
        #02040a;
    border: 1px solid rgba(116, 222, 237, 0.18);
    border-radius: 8px;
    padding: clamp(10px, 1.6vw, 18px);
    overflow: hidden;
}

.frame-inner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    border-radius: 4px;
    background: transparent;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.gallery-item:not(.gallery-wide) .frame-inner img {
    max-height: 460px;
}

.frame-caption {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: clamp(10px, 2vw, 18px);
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    color: var(--ink-mute);
    font-size: 13px;
}

.cap-no {
    font-family: var(--serif);
    font-style: italic;
    color: var(--light);
    font-size: 16px;
    letter-spacing: .04em;
}

.cap-title {
    color: #fff;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.2;
}

.cap-meta {
    color: var(--ink-faint);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-align: right;
}

@media (max-width: 520px) {
    .frame-caption {
        grid-template-columns: auto 1fr;
        row-gap: 4px;
    }
    .cap-meta { grid-column: 1 / -1; text-align: left; }
}

.gallery-disclaimer {
    margin: 24px 0 0;
    color: var(--ink-faint);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
}

/* ---------- footer ---------- */

.site-footer {
    border-top: 1px solid var(--rule);
    background: #020203;
    padding: 48px clamp(20px, 5vw, 56px);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(116, 222, 237, 0.3), 0 0 24px rgba(116, 222, 237, 0.3);
}

.footer-title {
    margin: 0;
    color: #fff;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
}

.footer-sub {
    margin: 2px 0 0;
    color: var(--ink-faint);
    font-size: 13px;
    letter-spacing: .08em;
}

.copy {
    color: var(--ink-faint);
    font-size: 13px;
    margin: 0;
    text-align: right;
}

@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr; }
    .copy { text-align: left; }
}

/* ---------- a11y / motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

::selection {
    background: rgba(116, 222, 237, 0.35);
    color: #fff;
}
