/* infra.limited v2 — ethereal / retro-futuristic / aurora-lights
   Palette anchors:
     Deep navy    #0B1628   (dark canvas)
     Indigo edge  #14233F
     Aurora teal  #4FE0C2
     Aurora viol. #A47BFF
     Aurora pink  #FF7BB8
     Amber gold   #F4C76F
     Cream paper  #F5EFE2
     Mid mist     #6B7494
*/

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

:root {
    --c-navy: #0B1628;
    --c-edge: #14233F;
    --c-teal: #4FE0C2;
    --c-violet: #A47BFF;
    --c-pink: #FF7BB8;
    --c-gold: #F4C76F;
    --c-cream: #F5EFE2;
    --c-mist: #6B7494;
    --c-line: rgba(245, 239, 226, 0.16);
    --c-line-strong: rgba(245, 239, 226, 0.32);

    --f-display: 'Fraunces', 'Cormorant Garamond', serif;
    --f-body: 'Space Grotesk', 'Inter', sans-serif;
    --f-mono: 'JetBrains Mono', 'Space Mono', monospace;

    --pad-x: clamp(24px, 5vw, 96px);
}

html, body {
    background: var(--c-navy);
    color: var(--c-cream);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--c-violet); color: var(--c-cream); }

/* ---------- Aurora background ---------- */
#aurora-stage {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(120% 70% at 50% 0%, #1A2A4A 0%, #0B1628 55%, #06101F 100%);
}

#aurora-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    mix-blend-mode: screen;
}

.aurora-veil {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
    opacity: 0.55;
    pointer-events: none;
}
.veil-1 {
    width: 70vw;
    height: 60vh;
    left: -10vw;
    top: 10vh;
    background: radial-gradient(circle at 50% 50%, rgba(79,224,194,0.55), transparent 60%);
    animation: veilDrift1 22s ease-in-out infinite alternate;
}
.veil-2 {
    width: 60vw;
    height: 55vh;
    right: -8vw;
    top: 30vh;
    background: radial-gradient(circle at 50% 50%, rgba(164,123,255,0.55), transparent 60%);
    animation: veilDrift2 28s ease-in-out infinite alternate;
}
.veil-3 {
    width: 80vw;
    height: 50vh;
    left: 10vw;
    bottom: -10vh;
    background: radial-gradient(circle at 50% 50%, rgba(244,199,111,0.42), transparent 60%);
    animation: veilDrift3 34s ease-in-out infinite alternate;
}

@keyframes veilDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8vw, 4vh) scale(1.15); }
}
@keyframes veilDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-6vw, 6vh) scale(1.2); }
}
@keyframes veilDrift3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4vw, -3vh) scale(1.1); }
}

.grain-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.65 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(6,16,31,0.65) 100%);
}

/* ---------- Floating abstract shapes ---------- */
#shape-stage {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    width: 220px;
    height: 220px;
    opacity: 0.55;
    will-change: transform;
}

.shape-orbit  { top:  6vh;  right: 4vw; color: var(--c-gold);   width: 260px; height: 260px; opacity: 0.45; animation: float-a 28s ease-in-out infinite alternate; }
.shape-blob   { top: 70vh;  left:  6vw; color: var(--c-violet); width: 240px; height: 240px; opacity: 0.5;  animation: float-b 32s ease-in-out infinite alternate; }
.shape-ring   { top: 145vh; right: 8vw; color: var(--c-teal);   width: 180px; height: 180px; opacity: 0.55; animation: float-c 36s ease-in-out infinite alternate; }
.shape-prism  { top: 215vh; left: 12vw; color: var(--c-pink);   width: 180px; height: 180px; opacity: 0.42; animation: float-a 30s ease-in-out infinite alternate-reverse; }
.shape-arc    { top: 290vh; right: 6vw; color: var(--c-cream);  width: 220px; height: 220px; opacity: 0.32; animation: float-b 26s ease-in-out infinite alternate; }

@keyframes float-a {
    0%   { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(-30px, 24px) rotate(28deg); }
}
@keyframes float-b {
    0%   { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(34px, -28px) rotate(-22deg); }
}
@keyframes float-c {
    0%   { transform: translate(0,0) rotate(0deg); }
    100% { transform: translate(-22px, -32px) rotate(40deg); }
}

/* ---------- Top navigation ---------- */
#topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(20px, 4vw, 64px);
    padding: 22px var(--pad-x);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: linear-gradient(180deg, rgba(11,22,40,0.78) 0%, rgba(11,22,40,0.35) 80%, transparent 100%);
    border-bottom: 1px solid var(--c-line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-cream);
    font-family: var(--f-display);
}

.brand-mark {
    display: inline-flex;
    width: 32px; height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--c-line-strong);
    border-radius: 50%;
    color: var(--c-gold);
    background: radial-gradient(circle at 30% 30%, rgba(244,199,111,0.18), transparent 65%);
}

.brand-word {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.005em;
}
.brand-word em {
    color: var(--c-gold);
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 36px);
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: var(--c-mist);
}
.nav-links a {
    position: relative;
    padding: 6px 2px;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--c-teal);
    transition: width 0.4s ease;
}
.nav-links a:hover {
    color: var(--c-cream);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-mist);
    letter-spacing: 0.03em;
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c-teal);
    box-shadow: 0 0 12px var(--c-teal);
    animation: dotPulse 2.6s ease-in-out infinite;
}
.status-label strong { color: var(--c-gold); font-weight: 500; }

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.25); }
}

/* ---------- Layout ---------- */
main {
    padding-top: 88px;
}

section {
    padding: clamp(80px, 12vh, 140px) var(--pad-x);
    position: relative;
}

.section-head {
    max-width: 920px;
    margin-bottom: clamp(40px, 5vh, 64px);
}
.section-tag {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-teal);
    margin-bottom: 14px;
}
.section-head h2 {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--c-cream);
}
.section-head h2 em {
    font-style: italic;
    color: var(--c-gold);
    font-variation-settings: "SOFT" 100, "WONK" 1;
}
.section-sub {
    margin-top: 12px;
    color: var(--c-mist);
    max-width: 640px;
    font-size: 16px;
}

/* ---------- HERO ---------- */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
    padding-top: clamp(80px, 12vh, 140px);
    padding-bottom: clamp(80px, 10vh, 120px);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-teal);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 28px;
}
.eyebrow-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: var(--c-teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-teal);
}

.hero-title {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    color: var(--c-cream);
    margin-bottom: 36px;
}
.title-line {
    display: block;
    opacity: 0;
    transform: translateY(28px);
}
.title-line.line-b {
    font-style: italic;
    color: var(--c-gold);
    font-size: 0.62em;
    padding-left: 1.2em;
    font-variation-settings: "SOFT" 100, "WONK" 1;
}
.title-line.line-c {
    background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-violet) 50%, var(--c-pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 400;
    font-style: italic;
}
.title-line.line-d {
    font-size: 0.86em;
}

body.is-ready .title-line {
    animation: titleRise 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
body.is-ready .title-line.line-a { animation-delay: 0.20s; }
body.is-ready .title-line.line-b { animation-delay: 0.45s; }
body.is-ready .title-line.line-c { animation-delay: 0.70s; }
body.is-ready .title-line.line-d { animation-delay: 0.95s; }

@keyframes titleRise {
    to { opacity: 1; transform: translateY(0); }
}

.hero-lede {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.65;
    color: var(--c-cream);
    max-width: 560px;
    margin-bottom: 42px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 1.2s, transform 0.9s ease 1.2s;
}
.hero-lede strong {
    font-weight: 500;
    color: var(--c-gold);
}
body.is-ready .hero-lede {
    opacity: 1;
    transform: translateY(0);
}

.hero-meter {
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding: 18px 0;
    margin-bottom: 40px;
    display: grid;
    gap: 12px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 1.5s, transform 0.9s ease 1.5s;
}
body.is-ready .hero-meter {
    opacity: 1;
    transform: translateY(0);
}
.meter-row {
    display: grid;
    grid-template-columns: 200px 1fr 60px;
    align-items: center;
    gap: 16px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.meter-label { color: var(--c-mist); }
.meter-bar {
    height: 4px;
    background: var(--c-edge);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.meter-fill {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--c-teal), var(--c-violet));
    border-radius: 2px;
    transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 1.7s;
}
.meter-value {
    color: var(--c-gold);
    text-align: right;
    font-size: 13px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 1.8s, transform 0.9s ease 1.8s;
}
body.is-ready .hero-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--c-teal), var(--c-violet));
    color: var(--c-navy);
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(79,224,194,0.35);
}
.cta-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,123,184,0.45), transparent 60%);
    opacity: 0.6;
    z-index: -1;
    animation: ctaShimmer 4s linear infinite;
}
@keyframes ctaShimmer {
    0%   { transform: translateX(-30%); }
    100% { transform: translateX(30%); }
}

.cta-ghost {
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid var(--c-line-strong);
    color: var(--c-cream);
    font-size: 14px;
    transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cta-ghost:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

/* Hero glyph */
.hero-glyph {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}
body.is-ready .hero-glyph {
    opacity: 1;
    transform: scale(1);
}
.hero-glyph svg {
    width: clamp(280px, 32vw, 460px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(244,199,111,0.18));
}
.glyph-rings {
    transform-origin: 160px 160px;
    animation: ringSpin 60s linear infinite;
}
@keyframes ringSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.glyph-core {
    transform-origin: 160px 160px;
    animation: coreSpin 90s linear infinite reverse;
}
@keyframes coreSpin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glyph-caption {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--c-mist);
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-mist);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.cue-line {
    display: inline-block;
    width: 60px; height: 1px;
    background: linear-gradient(90deg, var(--c-mist), transparent);
    position: relative;
    overflow: hidden;
}
.cue-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
    animation: cueSweep 2.4s ease-in-out infinite;
}
@keyframes cueSweep {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ---------- Manifest ---------- */
.manifest-list {
    list-style: none;
    counter-reset: manifest;
    display: grid;
    gap: 0;
    max-width: 1100px;
}
.manifest-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: clamp(20px, 3vw, 48px);
    padding: 32px 0;
    border-top: 1px solid var(--c-line);
    align-items: start;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.manifest-list li.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.manifest-list li:last-child { border-bottom: 1px solid var(--c-line); }

.m-num {
    font-family: var(--f-mono);
    color: var(--c-gold);
    font-size: 14px;
    letter-spacing: 0.04em;
    padding-top: 10px;
}
.manifest-list h3 {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(22px, 2.4vw, 34px);
    color: var(--c-cream);
    margin-bottom: 10px;
    line-height: 1.2;
}
.manifest-list p {
    color: var(--c-mist);
    font-size: 16px;
    max-width: 720px;
}

/* ---------- Practice cards ---------- */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2vw, 28px);
}

.practice-card {
    position: relative;
    padding: 28px 24px 32px;
    border: 1px solid var(--c-line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(20,35,63,0.55) 0%, rgba(11,22,40,0.55) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    opacity: 0;
    transform: translateY(28px);
}
.practice-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}
.practice-card:hover {
    transform: translateY(-6px);
    border-color: var(--c-line-strong);
    box-shadow: 0 22px 60px rgba(11,22,40,0.65);
}
.practice-card header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--c-line);
}
.card-num {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-gold);
    letter-spacing: 0.06em;
}
.practice-card h3 {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--c-cream);
}
.card-duration {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-teal);
    letter-spacing: 0.06em;
}
.practice-card p {
    color: var(--c-cream);
    opacity: 0.85;
    font-size: 15px;
    margin-bottom: 18px;
}
.card-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.card-tags li {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.02em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--c-line);
    color: var(--c-mist);
    background: rgba(11,22,40,0.4);
}
.card-glow {
    position: absolute;
    inset: -40% -10% auto auto;
    width: 220px; height: 220px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.6s ease;
}
.practice-card[data-card="observe"]  .card-glow { background: radial-gradient(circle, rgba(79,224,194,0.45), transparent 60%); }
.practice-card[data-card="diagnose"] .card-glow { background: radial-gradient(circle, rgba(164,123,255,0.45), transparent 60%); }
.practice-card[data-card="build"]    .card-glow { background: radial-gradient(circle, rgba(255,123,184,0.45), transparent 60%); }
.practice-card[data-card="leave"]    .card-glow { background: radial-gradient(circle, rgba(244,199,111,0.45), transparent 60%); }
.practice-card:hover .card-glow { opacity: 0.9; }

/* ---------- Engagements ledger ---------- */
.ledger {
    border: 1px solid var(--c-line);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20,35,63,0.4), rgba(11,22,40,0.4));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ledger-row {
    display: grid;
    grid-template-columns: 90px 220px 1fr 1fr;
    gap: 20px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--c-line);
    align-items: baseline;
    transition: background 0.4s ease;
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row[data-row] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, background 0.4s ease;
}
.ledger-row[data-row].is-visible {
    opacity: 1;
    transform: translateY(0);
}
.ledger-row[data-row]:hover {
    background: linear-gradient(90deg, rgba(244,199,111,0.06), transparent 70%);
}

.ledger-head {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-mist);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(20,35,63,0.55);
}

.lc-year {
    font-family: var(--f-mono);
    color: var(--c-gold);
    font-size: 14px;
}
.lc-sector {
    font-family: var(--f-display);
    font-size: 17px;
    color: var(--c-cream);
}
.lc-brief {
    color: var(--c-cream);
    opacity: 0.85;
    font-size: 14px;
    line-height: 1.5;
}
.lc-outcome {
    color: var(--c-mist);
    font-size: 14px;
    line-height: 1.5;
}
.lc-outcome em {
    color: var(--c-teal);
    font-style: italic;
}

/* ---------- Voices ---------- */
.voices-stage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 2vw, 28px);
}
.voice-card {
    position: relative;
    padding: 32px 26px;
    border-radius: 18px;
    border: 1px solid var(--c-line);
    background: linear-gradient(180deg, rgba(20,35,63,0.6), rgba(11,22,40,0.55));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.5s ease, border-color 0.5s ease;
    opacity: 0;
    transform: translateY(24px);
}
.voice-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.5s ease;
}
.voice-card:hover {
    transform: translateY(-4px);
    border-color: var(--c-gold);
}
.voice-card p {
    font-family: var(--f-display);
    font-weight: 300;
    font-style: italic;
    font-size: 19px;
    line-height: 1.55;
    color: var(--c-cream);
    margin-bottom: 20px;
}
.voice-card footer {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-teal);
    letter-spacing: 0.05em;
}

/* ---------- Contact ---------- */
.contact-frame {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    padding: clamp(32px, 4vw, 56px);
    border: 1px solid var(--c-line-strong);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(20,35,63,0.85), rgba(11,22,40,0.85));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.contact-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(79,224,194,0.4), rgba(164,123,255,0.3) 50%, rgba(244,199,111,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.contact-copy h2 {
    font-family: var(--f-display);
    font-weight: 300;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    color: var(--c-cream);
    margin: 14px 0 24px;
}
.contact-copy h2 em {
    font-style: italic;
    color: var(--c-gold);
    font-variation-settings: "SOFT" 100, "WONK" 1;
}
.contact-copy p {
    color: var(--c-mist);
    font-size: 15px;
    max-width: 380px;
}

.contact-form {
    display: grid;
    gap: 18px;
}
.field {
    display: grid;
    gap: 6px;
}
.field-wide { grid-column: 1 / -1; position: relative; }
.field-label {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.field input,
.field textarea {
    background: rgba(11,22,40,0.6);
    border: 1px solid var(--c-line);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--f-body);
    font-size: 15px;
    color: var(--c-cream);
    width: 100%;
    transition: border-color 0.3s ease, background 0.3s ease;
    resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
    color: rgba(107,116,148,0.85);
    font-style: italic;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-teal);
    background: rgba(11,22,40,0.85);
}

.field-counter {
    position: absolute;
    right: 14px; bottom: 10px;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-mist);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.form-submit {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--c-gold), var(--c-pink));
    color: var(--c-navy);
    font-family: var(--f-body);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(244,199,111,0.3);
}
.submit-arrow { transition: transform 0.3s ease; }
.form-submit:hover .submit-arrow { transform: translateX(4px); }

.form-status {
    grid-column: 1 / -1;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-teal);
    min-height: 16px;
    letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
#site-footer {
    margin-top: 60px;
    padding: 56px var(--pad-x) 28px;
    border-top: 1px solid var(--c-line);
    background: linear-gradient(180deg, transparent 0%, rgba(6,16,31,0.6) 100%);
}
.footer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) auto;
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-line);
}
.footer-brand .brand-word {
    font-family: var(--f-display);
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}
.footer-byline {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-mist);
    letter-spacing: 0.06em;
}
.footer-meta {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: var(--c-cream);
}
.footer-meta strong {
    font-family: var(--f-mono);
    font-weight: 400;
    color: var(--c-teal);
    margin-right: 6px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}
.footer-clock {
    text-align: right;
    font-family: var(--f-mono);
}
.clock-label {
    display: block;
    font-size: 10px;
    color: var(--c-mist);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.clock-value {
    display: block;
    font-size: 28px;
    color: var(--c-gold);
    margin-top: 4px;
    letter-spacing: 0.04em;
}
.clock-zone {
    display: block;
    font-size: 10px;
    color: var(--c-mist);
    letter-spacing: 0.2em;
}

.footer-strip {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--c-mist);
    letter-spacing: 0.04em;
}
.strip-marks { display: flex; gap: 6px; }
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.dot-a { background: var(--c-teal); }
.dot-b { background: var(--c-violet); }
.dot-c { background: var(--c-gold); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    #topnav {
        grid-template-columns: 1fr auto;
        gap: 16px;
    }
    .nav-links {
        display: none;
    }
    #hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-glyph {
        order: -1;
    }
    .meter-row {
        grid-template-columns: 1fr 1fr 60px;
    }
    .ledger-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px 20px;
    }
    .ledger-row .lc-brief,
    .ledger-row .lc-outcome {
        grid-column: 1 / -1;
    }
    .ledger-head {
        display: none;
    }
    .contact-frame {
        grid-template-columns: 1fr;
    }
    .footer-row {
        grid-template-columns: 1fr;
    }
    .footer-clock {
        text-align: left;
    }
}

@media (max-width: 560px) {
    section {
        padding: 64px var(--pad-x);
    }
    .hero-title {
        font-size: clamp(44px, 12vw, 80px);
    }
    .nav-status {
        display: none;
    }
}
