/* ---------------------------------------------------------------
   infra.day v2 — y2k-futurism, diagonal sections, aurora gradient,
   bubble-playful, skeleton loading, vintage-photography overlay,
   nostalgic-retro tone.
   --------------------------------------------------------------- */

:root {
    --c-canvas: #0E0F2A;
    --c-edge: #1B1D4D;
    --c-pink: #FF5FA2;
    --c-violet: #6B5BFF;
    --c-cyan: #4FE3FF;
    --c-amber: #FFD24F;
    --c-paper: #F5F2FF;
    --c-mist: #B7B3E0;

    --hair-soft: rgba(245, 242, 255, 0.16);
    --hair-strong: rgba(245, 242, 255, 0.32);

    --glass-bg: linear-gradient(180deg, rgba(27, 29, 77, 0.58), rgba(14, 15, 42, 0.55));
    --glass-blur: blur(12px) saturate(120%);

    --aurora: linear-gradient(120deg, #4FE3FF 0%, #6B5BFF 45%, #FF5FA2 80%, #FFD24F 100%);
    --aurora-soft: linear-gradient(120deg, rgba(79, 227, 255, 0.85) 0%, rgba(107, 91, 255, 0.85) 45%, rgba(255, 95, 162, 0.85) 80%, rgba(255, 210, 79, 0.85) 100%);

    --skew: 6deg;
    --maxw: 1240px;
    --pad-x: clamp(20px, 4.4vw, 64px);

    --f-display: "Fraunces", "Playfair Display", Georgia, serif;
    --f-body: "Space Grotesk", "Inter", system-ui, sans-serif;
    --f-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    background: var(--c-canvas);
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    color: var(--c-paper);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.65;
    font-size: clamp(15px, 1vw + 0.4rem, 17px);
    overflow-x: hidden;
    min-height: 100vh;
    background: transparent;
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* ===================== Background stack ===================== */

.bg-stack {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-radial {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse at 25% 18%, rgba(107, 91, 255, 0.30), transparent 60%),
        radial-gradient(ellipse at 78% 30%, rgba(79, 227, 255, 0.22), transparent 55%),
        radial-gradient(ellipse at 60% 88%, rgba(255, 95, 162, 0.20), transparent 60%),
        radial-gradient(ellipse at 50% 50%, #1B1D4D 0%, #0E0F2A 60%, #050616 100%);
}

.bg-veil {
    position: absolute;
    width: 70vmax;
    height: 38vmax;
    border-radius: 50%;
    filter: blur(120px) saturate(140%);
    mix-blend-mode: screen;
    opacity: 0.55;
    will-change: transform;
}

.bg-veil--cyan {
    top: -10vmax;
    left: -12vmax;
    background: radial-gradient(circle, rgba(79, 227, 255, 0.55), transparent 70%);
    animation: veilA 36s ease-in-out infinite alternate;
}

.bg-veil--violet {
    top: 30%;
    right: -18vmax;
    background: radial-gradient(circle, rgba(107, 91, 255, 0.55), transparent 70%);
    animation: veilB 44s ease-in-out infinite alternate;
}

.bg-veil--pink {
    bottom: -16vmax;
    left: 22%;
    background: radial-gradient(circle, rgba(255, 95, 162, 0.45), transparent 70%);
    animation: veilC 28s ease-in-out infinite alternate;
}

@keyframes veilA {
    from { transform: translate3d(-4vmax, -2vmax, 0) rotate(0deg); }
    to { transform: translate3d(8vmax, 6vmax, 0) rotate(36deg); }
}

@keyframes veilB {
    from { transform: translate3d(0, 0, 0) rotate(0deg); }
    to { transform: translate3d(-6vmax, 4vmax, 0) rotate(-24deg); }
}

@keyframes veilC {
    from { transform: translate3d(0, 0, 0) rotate(0deg); }
    to { transform: translate3d(4vmax, -6vmax, 0) rotate(18deg); }
}

.bg-grain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 50%, rgba(5, 6, 22, 0.7) 100%);
    pointer-events: none;
}

/* ===================== Top bar ===================== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 14px var(--pad-x);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    background: linear-gradient(180deg, rgba(14, 15, 42, 0.85), rgba(14, 15, 42, 0.55));
    border-bottom: 1px solid var(--hair-soft);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--c-paper);
    font-weight: 500;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 4px 14px rgba(255, 95, 162, 0.35));
}

.brand-text {
    font-family: var(--f-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.brand-name { color: var(--c-paper); }
.brand-dot { color: var(--c-amber); }
.brand-tld {
    color: transparent;
    background: var(--aurora);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: italic;
    font-variation-settings: "WONK" 1, "SOFT" 80;
}

.topnav {
    justify-self: center;
    display: inline-flex;
    gap: 28px;
}

.topnav a {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-mist);
    text-decoration: none;
    transition: color 200ms ease;
    position: relative;
    padding: 4px 0;
}

.topnav a:hover {
    color: var(--c-paper);
}

.topnav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--aurora);
    transition: width 240ms ease;
}

.topnav a:hover::after {
    width: 100%;
}

.topmeta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.status-pip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-mist);
    padding: 5px 10px;
    border: 1px solid var(--hair-soft);
    border-radius: 100px;
    background: rgba(20, 22, 56, 0.4);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 0 0 rgba(79, 227, 255, 0.6);
    animation: statusPulse 2.4s ease-out infinite;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 227, 255, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(79, 227, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 227, 255, 0); }
}

.topclock {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-amber);
    letter-spacing: 0.12em;
}

/* ===================== Section heads ===================== */

.section-head {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.kicker {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-cyan);
    margin-bottom: 18px;
    padding: 4px 12px;
    border: 1px solid rgba(79, 227, 255, 0.35);
    border-radius: 100px;
    background: rgba(79, 227, 255, 0.06);
}

.section-title {
    font-family: var(--f-display);
    font-weight: 350;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    color: var(--c-paper);
}

.section-sub {
    color: var(--c-mist);
    font-size: clamp(15px, 1vw + 0.3rem, 17px);
    line-height: 1.65;
    margin: 0;
    max-width: 60ch;
    margin-inline: auto;
}

/* ===================== Hero ===================== */

.hero {
    position: relative;
    min-height: 110vh;
    padding: clamp(140px, 14vh, 200px) var(--pad-x) clamp(100px, 12vh, 160px);
    overflow: visible;
}

.hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--c-mist);
    text-transform: uppercase;
    margin: 0 0 28px;
    padding: 6px 14px;
    border: 1px solid var(--hair-soft);
    border-radius: 100px;
    background: rgba(20, 22, 56, 0.4);
}

.eyebrow-tick {
    width: 6px;
    height: 6px;
    background: var(--c-amber);
    display: inline-block;
}

.eyebrow-cycle {
    color: var(--c-amber);
}

.hero-title {
    font-family: var(--f-display);
    font-weight: 350;
    font-size: clamp(40px, 6.4vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.027em;
    margin: 0 0 30px;
}

.hero-title .hl {
    display: block;
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.25, 1);
}

.hero-title .hl em {
    font-style: italic;
    color: var(--c-amber);
    font-variation-settings: "WONK" 1, "SOFT" 100;
}

.grad-word {
    background: var(--aurora);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-variation-settings: "WONK" 1, "SOFT" 80;
}

.is-ready .hero-title .hl-1 { opacity: 1; transform: none; transition-delay: 200ms; }
.is-ready .hero-title .hl-2 { opacity: 1; transform: none; transition-delay: 450ms; }
.is-ready .hero-title .hl-3 { opacity: 1; transform: none; transition-delay: 700ms; }
.is-ready .hero-title .hl-4 { opacity: 1; transform: none; transition-delay: 950ms; }

.lede {
    color: var(--c-mist);
    font-family: var(--f-display);
    font-size: clamp(16px, 1.1vw + 0.4rem, 19px);
    font-weight: 300;
    line-height: 1.65;
    max-width: 52ch;
    margin: 0 0 32px;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 800ms ease 1200ms, transform 800ms cubic-bezier(0.2, 0.8, 0.25, 1) 1200ms;
}

.is-ready .lede {
    opacity: 1;
    transform: none;
}

.meter {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 36px;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 700ms ease 1500ms, transform 700ms ease 1500ms;
}

.is-ready .meter {
    opacity: 1;
    transform: none;
}

.meter-row {
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

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

.meter-bar {
    height: 8px;
    background: rgba(245, 242, 255, 0.07);
    border: 1px solid var(--hair-soft);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.meter-fill {
    height: 100%;
    width: 0%;
    background: var(--aurora);
    border-radius: 100px;
    box-shadow: 0 0 18px rgba(107, 91, 255, 0.55);
    transition: width 1.4s cubic-bezier(0.2, 0.8, 0.25, 1) 1.5s;
}

.is-ready .meter-fill {
    width: var(--w);
}

.meter-value {
    font-family: var(--f-mono);
    font-size: 14px;
    color: var(--c-amber);
    letter-spacing: 0.05em;
    text-align: right;
    min-width: 80px;
}

.meter-unit {
    color: var(--c-mist);
    font-size: 11px;
    margin-left: 2px;
}

.cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 700ms ease 1800ms, transform 700ms ease 1800ms;
}

.is-ready .cta-row {
    opacity: 1;
    transform: none;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 100px;
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: var(--c-paper);
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    transition: transform 350ms cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 350ms ease;
    position: relative;
    overflow: hidden;
}

.cta-pill {
    background: linear-gradient(135deg, #FF5FA2 0%, #6B5BFF 60%, #4FE3FF 100%);
    color: #0B0B22;
    font-weight: 600;
    box-shadow:
        0 8px 28px rgba(107, 91, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.cta-pill::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 35%);
    pointer-events: none;
}

.cta-pill-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 95, 162, 0.55), transparent 70%);
    filter: blur(8px);
    top: -30px;
    left: -10%;
    animation: ctaGlow 4s linear infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(220%); }
}

.cta-pill:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow:
        0 18px 42px rgba(255, 95, 162, 0.4),
        0 0 40px rgba(79, 227, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.cta-arrow {
    font-family: var(--f-mono);
    font-size: 14px;
    transition: transform 350ms ease;
    position: relative;
    z-index: 1;
}

.cta-pill:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-label {
    position: relative;
    z-index: 1;
}

.cta-ghost {
    border: 1px solid var(--hair-strong);
    color: var(--c-paper);
    background: rgba(20, 22, 56, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-ghost:hover {
    transform: translate3d(0, -3px, 0);
    border-color: var(--c-cyan);
    box-shadow: 0 0 24px rgba(79, 227, 255, 0.25);
}

/* ===================== Hero bubble cluster ===================== */

.hero-right {
    position: relative;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.bubble-stage {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transition: transform 200ms ease;
    will-change: transform;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(245, 242, 255, 0.16);
    pointer-events: none;
}

.orbit-a {
    inset: 8%;
    border-style: dashed;
    border-color: rgba(79, 227, 255, 0.35);
    animation: orbitSpin 60s linear infinite;
}

.orbit-b {
    inset: 22%;
    border-color: rgba(107, 91, 255, 0.35);
    animation: orbitSpin 38s linear infinite reverse;
}

.orbit-c {
    inset: 36%;
    border-style: dotted;
    border-color: rgba(255, 95, 162, 0.45);
    animation: orbitSpin 24s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    box-shadow:
        inset 0 0 22px rgba(255, 255, 255, 0.15),
        inset 8px 8px 22px rgba(255, 255, 255, 0.45),
        inset -10px -12px 28px rgba(0, 0, 0, 0.4),
        0 22px 60px rgba(0, 0, 0, 0.45);
    will-change: transform;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 1.2s ease 600ms, transform 1.2s cubic-bezier(0.18, 0.9, 0.3, 1.1) 600ms;
}

.is-ready .bubble {
    opacity: 1;
    transform: scale(1);
}

.bubble::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 14%;
    left: 16%;
    width: 36%;
    height: 24%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.bubble-1 {
    top: 8%; left: 12%;
    width: 28%; height: 28%;
    background: radial-gradient(circle at 35% 30%, #F5F2FF 0%, #4FE3FF 35%, #1B1D4D 100%);
}

.bubble-2 {
    top: 4%; right: 10%;
    width: 22%; height: 22%;
    background: radial-gradient(circle at 35% 30%, #F5F2FF 0%, #FF5FA2 35%, #1B1D4D 100%);
}

.bubble-3 {
    top: 36%; right: 18%;
    width: 18%; height: 18%;
    background: radial-gradient(circle at 35% 30%, #FFF7DC 0%, #FFD24F 35%, #1B1D4D 100%);
}

.bubble-4 {
    bottom: 8%; right: 4%;
    width: 24%; height: 24%;
    background: radial-gradient(circle at 35% 30%, #F5F2FF 0%, #6B5BFF 35%, #1B1D4D 100%);
}

.bubble-5 {
    bottom: 6%; left: 8%;
    width: 20%; height: 20%;
    background: radial-gradient(circle at 35% 30%, #F5F2FF 0%, #4FE3FF 35%, #1B1D4D 100%);
}

.bubble-6 {
    bottom: 38%; left: 6%;
    width: 14%; height: 14%;
    background: radial-gradient(circle at 35% 30%, #F5F2FF 0%, #FF5FA2 35%, #1B1D4D 100%);
}

.bubble-core {
    top: 36%; left: 36%;
    width: 28%; height: 28%;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.7) 0%, rgba(245, 242, 255, 0.18) 24%, rgba(107, 91, 255, 0.25) 60%, rgba(27, 29, 77, 0.55) 100%);
    border: 1px solid rgba(245, 242, 255, 0.45);
    backdrop-filter: blur(2px);
    box-shadow:
        inset 0 0 24px rgba(255, 255, 255, 0.2),
        inset 12px 12px 30px rgba(255, 255, 255, 0.35),
        inset -10px -14px 28px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(255, 95, 162, 0.35),
        0 0 90px rgba(79, 227, 255, 0.25);
}

.bubble-halo {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 210, 79, 0.22), rgba(255, 95, 162, 0.18) 45%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
}

.hero-floor {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: 0;
    height: 14vh;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(20, 22, 56, 0.0) 0%, rgba(14, 15, 42, 0.5) 60%, rgba(11, 11, 34, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===================== Section: manifest ===================== */

.manifest {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(11, 11, 34, 0.8) 50%, rgba(14, 15, 42, 0.0) 100%);
    clip-path: polygon(0 6vh, 100% 0, 100% calc(100% - 6vh), 0 100%);
}

.manifest::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 11, 34, 0.6), rgba(14, 15, 42, 0.85)),
        radial-gradient(ellipse at 30% 20%, rgba(107, 91, 255, 0.18), transparent 60%),
        radial-gradient(ellipse at 75% 78%, rgba(255, 95, 162, 0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.manifest > * {
    position: relative;
    z-index: 2;
}

.manifest-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--maxw);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.manifest-item {
    position: relative;
    padding: 32px 28px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 28px 80px 28px 80px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow:
        inset 0 1px 0 rgba(245, 242, 255, 0.12),
        0 22px 50px rgba(5, 6, 22, 0.45);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 350ms ease;
}

.manifest-item.visible {
    opacity: 1;
    transform: none;
}

.manifest-item:nth-child(2n) {
    border-radius: 80px 28px 80px 28px;
}

.manifest-item::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(245, 242, 255, 0.5) 0%, rgba(245, 242, 255, 0) 35%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    opacity: 0.5;
}

.manifest-item::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(245, 242, 255, 0.06) 45%, transparent 70%);
    transform: translateX(120%);
    transition: transform 1200ms cubic-bezier(0.2, 0.8, 0.25, 1) 200ms;
    pointer-events: none;
}

.manifest-item.visible::after {
    transform: translateX(-220%);
}

.manifest-item[data-tint="cyan"] { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.12), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 0 rgba(79, 227, 255, 0); }
.manifest-item[data-tint="violet"] { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.12), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 0 rgba(107, 91, 255, 0); }
.manifest-item[data-tint="pink"] { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.12), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 0 rgba(255, 95, 162, 0); }
.manifest-item[data-tint="amber"] { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.12), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 0 rgba(255, 210, 79, 0); }

.manifest-item[data-tint="cyan"]:hover { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.2), 0 28px 60px rgba(5, 6, 22, 0.55), 0 0 32px rgba(79, 227, 255, 0.3); }
.manifest-item[data-tint="violet"]:hover { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.2), 0 28px 60px rgba(5, 6, 22, 0.55), 0 0 32px rgba(107, 91, 255, 0.3); }
.manifest-item[data-tint="pink"]:hover { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.2), 0 28px 60px rgba(5, 6, 22, 0.55), 0 0 32px rgba(255, 95, 162, 0.3); }
.manifest-item[data-tint="amber"]:hover { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.2), 0 28px 60px rgba(5, 6, 22, 0.55), 0 0 32px rgba(255, 210, 79, 0.3); }

.manifest-item:hover {
    transform: translate3d(0, -4px, 0);
}

.manifest-num {
    display: inline-block;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-amber);
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 210, 79, 0.35);
    border-radius: 100px;
    background: rgba(255, 210, 79, 0.06);
}

.manifest-h {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    color: var(--c-paper);
}

.manifest-p {
    color: var(--c-mist);
    line-height: 1.62;
    font-size: 15px;
    margin: 0;
}

/* ===================== Section: today (skeleton feed) ===================== */

.today {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    clip-path: polygon(0 0, 100% 6vh, 100% 100%, 0 calc(100% - 6vh));
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(20, 22, 56, 0.7) 50%, rgba(14, 15, 42, 0.0) 100%);
}

.feed {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 920px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feed-row {
    position: relative;
    padding: 22px 26px;
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 16px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.08), 0 12px 32px rgba(5, 6, 22, 0.4);
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition: opacity 600ms ease, transform 600ms ease;
}

.feed-row.visible {
    opacity: 1;
    transform: none;
}

.feed-row[data-state="loaded"] .skeleton {
    display: none;
}

.feed-row[data-state="loading"] .row-content {
    display: none;
}

.skeleton {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skel-bar {
    height: 12px;
    background: linear-gradient(90deg, rgba(245, 242, 255, 0.06) 0%, rgba(245, 242, 255, 0.16) 50%, rgba(245, 242, 255, 0.06) 100%);
    background-size: 200% 100%;
    border-radius: 6px;
    animation: skeletonShimmer 1.4s linear infinite;
}

.skel-bar--short { width: 22%; height: 10px; }
.skel-bar--mid { width: 70%; }
.skel-bar--long { width: 92%; height: 10px; }

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.row-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.row-time {
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-amber);
    letter-spacing: 0.1em;
    min-width: 70px;
}

.row-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.row-title {
    font-family: var(--f-display);
    font-size: 17px;
    color: var(--c-paper);
    line-height: 1.25;
    margin: 0;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.row-detail {
    color: var(--c-mist);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.row-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(245, 242, 255, 0.05);
    border: 1px solid var(--hair-soft);
    color: var(--c-mist);
    white-space: nowrap;
}

.row-pill.pill-power { color: var(--c-amber); border-color: rgba(255, 210, 79, 0.35); }
.row-pill.pill-water { color: var(--c-cyan); border-color: rgba(79, 227, 255, 0.35); }
.row-pill.pill-data { color: var(--c-violet); border-color: rgba(107, 91, 255, 0.45); }
.row-pill.pill-transport { color: var(--c-pink); border-color: rgba(255, 95, 162, 0.45); }
.row-pill.pill-sky { color: var(--c-cyan); border-color: rgba(79, 227, 255, 0.45); }
.row-pill.pill-cold { color: var(--c-paper); border-color: rgba(245, 242, 255, 0.35); }
.row-pill.pill-post { color: var(--c-amber); border-color: rgba(255, 210, 79, 0.45); }
.row-pill.pill-sound { color: var(--c-pink); border-color: rgba(255, 95, 162, 0.35); }

.row-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.feed-foot {
    text-align: center;
    margin-top: 28px;
    color: var(--c-mist);
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feed-foot-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-cyan);
    box-shadow: 0 0 8px var(--c-cyan);
    animation: statusPulse 2.4s ease-out infinite;
}

#feedSeed {
    color: var(--c-amber);
}

/* ===================== Section: atlas ===================== */

.atlas {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    clip-path: polygon(0 6vh, 100% 0, 100% calc(100% - 6vh), 0 100%);
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(11, 11, 34, 0.8) 50%, rgba(14, 15, 42, 0.0) 100%);
}

.atlas-frame {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45);
    position: relative;
}

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

.atlas-edges line {
    stroke: url(#edgeGrad);
    stroke-width: 1.4;
    opacity: 0.32;
    transition: opacity 350ms ease, stroke-width 350ms ease;
}

.atlas-edges line.active {
    opacity: 1;
    stroke-width: 2.4;
    stroke: var(--c-pink);
    filter: drop-shadow(0 0 6px rgba(255, 95, 162, 0.85));
}

.atlas-nodes circle {
    cursor: pointer;
    transition: transform 280ms cubic-bezier(0.2, 0.8, 0.25, 1), filter 280ms ease;
    transform-box: fill-box;
    transform-origin: center;
    filter: drop-shadow(0 6px 16px rgba(5, 6, 22, 0.55));
}

.atlas-nodes circle.hovered,
.atlas-nodes circle.locked {
    transform: scale(1.18);
    filter: drop-shadow(0 0 18px rgba(255, 95, 162, 0.6));
}

.atlas-nodes circle.shine {
    pointer-events: none;
}

.atlas-labels text {
    font-family: var(--f-mono);
    font-size: 11px;
    fill: var(--c-mist);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: fill 250ms ease;
}

.atlas-labels text.active {
    fill: var(--c-paper);
}

.atlas-tooltip {
    position: absolute;
    pointer-events: none;
    padding: 10px 14px;
    background: rgba(14, 15, 42, 0.92);
    border: 1px solid var(--hair-strong);
    border-radius: 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-paper);
    transform: translate3d(-50%, -120%, 0);
    opacity: 0;
    transition: opacity 200ms ease;
    z-index: 4;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.atlas-tooltip.visible {
    opacity: 1;
}

.atlas-tooltip-tier {
    color: var(--c-cyan);
    letter-spacing: 0.15em;
    font-size: 10px;
    text-transform: uppercase;
}

.atlas-tooltip-name {
    font-family: var(--f-display);
    font-size: 16px;
    color: var(--c-paper);
    letter-spacing: -0.01em;
    text-transform: none;
}

.atlas-tooltip-role {
    color: var(--c-mist);
    font-size: 11px;
    text-transform: none;
    line-height: 1.4;
}

.atlas-legend {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-mist);
}

.atlas-legend li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.5), 0 0 8px currentColor;
}

.legend-cyan { background: radial-gradient(circle at 30% 30%, #F5F2FF, #4FE3FF 60%, #1B1D4D 100%); color: var(--c-cyan); }
.legend-violet { background: radial-gradient(circle at 30% 30%, #F5F2FF, #6B5BFF 60%, #1B1D4D 100%); color: var(--c-violet); }
.legend-pink { background: radial-gradient(circle at 30% 30%, #F5F2FF, #FF5FA2 60%, #1B1D4D 100%); color: var(--c-pink); }
.legend-amber { background: radial-gradient(circle at 30% 30%, #FFF7DC, #FFD24F 60%, #1B1D4D 100%); color: var(--c-amber); }

/* ===================== Section: signal ===================== */

.signal {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    clip-path: polygon(0 0, 100% 6vh, 100% 100%, 0 calc(100% - 6vh));
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(20, 22, 56, 0.7) 50%, rgba(14, 15, 42, 0.0) 100%);
    overflow: hidden;
}

.signal-scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(245, 242, 255, 0.04) 0 1px, transparent 1px 4px);
    opacity: 0.65;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.signal > * {
    position: relative;
    z-index: 1;
}

.quotes {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.quote {
    margin: 0;
    padding: 36px 32px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 24px 64px 24px 64px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45);
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.25, 1);
    position: relative;
}

.quote.visible {
    opacity: 1;
    transform: none;
}

.quote-violet { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 60px rgba(107, 91, 255, 0.18); }
.quote-cyan { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 60px rgba(79, 227, 255, 0.16); }
.quote-pink { box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45), 0 0 60px rgba(255, 95, 162, 0.16); }

.quote blockquote {
    margin: 0 0 22px;
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 350;
    font-size: 19px;
    line-height: 1.45;
    color: var(--c-paper);
    letter-spacing: -0.005em;
    font-variation-settings: "WONK" 1, "SOFT" 80;
}

.quote figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.qattr-name {
    font-family: var(--f-mono);
    color: var(--c-cyan);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.qattr-role {
    font-family: var(--f-body);
    color: var(--c-mist);
    font-size: 13px;
}

/* ===================== Section: ledger ===================== */

.ledger {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    clip-path: polygon(0 6vh, 100% 0, 100% calc(100% - 6vh), 0 100%);
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(11, 11, 34, 0.8) 50%, rgba(14, 15, 42, 0.0) 100%);
}

.ledger-frame {
    max-width: var(--maxw);
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: inset 0 1px 0 rgba(245, 242, 255, 0.1), 0 22px 50px rgba(5, 6, 22, 0.45);
    overflow: hidden;
}

.ledger-head,
.ledger-row {
    display: grid;
    grid-template-columns: 90px minmax(140px, 1fr) minmax(220px, 2fr) 130px;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
}

.ledger-head {
    background: rgba(11, 11, 34, 0.6);
    border-bottom: 1px solid var(--hair-soft);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--c-mist);
    text-transform: uppercase;
}

.ledger-rows {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ledger-row {
    border-bottom: 1px solid var(--hair-soft);
    transition: background 250ms ease;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition-property: background, opacity, transform;
    transition-duration: 250ms, 700ms, 700ms;
    transition-timing-function: ease, ease, cubic-bezier(0.2, 0.8, 0.25, 1);
}

.ledger-row.visible {
    opacity: 1;
    transform: none;
}

.ledger-row:last-child {
    border-bottom: none;
}

.ledger-row:hover {
    background: rgba(255, 210, 79, 0.06);
}

.ledger-row > span:first-child {
    font-family: var(--f-mono);
    color: var(--c-amber);
    font-size: 13px;
    letter-spacing: 0.06em;
}

.ledger-row > span:nth-child(2) {
    font-family: var(--f-display);
    color: var(--c-paper);
    font-size: 15px;
    letter-spacing: -0.005em;
}

.ledger-row > span:nth-child(3) {
    color: var(--c-mist);
    font-size: 14px;
    line-height: 1.4;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    justify-self: end;
}

.status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
}

.status-ok {
    color: var(--c-cyan);
    background: rgba(79, 227, 255, 0.08);
    border: 1px solid rgba(79, 227, 255, 0.32);
}

.status-warn {
    color: var(--c-amber);
    background: rgba(255, 210, 79, 0.08);
    border: 1px solid rgba(255, 210, 79, 0.32);
}

/* ===================== Section: signup ===================== */

.signup {
    position: relative;
    padding: clamp(110px, 14vh, 180px) var(--pad-x);
    margin-top: -6vh;
    clip-path: polygon(0 0, 100% 6vh, 100% 100%, 0 calc(100% - 6vh));
    background:
        linear-gradient(180deg, rgba(14, 15, 42, 0.0) 0%, rgba(20, 22, 56, 0.7) 50%, rgba(14, 15, 42, 0.0) 100%);
}

.signup-frame {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 56px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 56px);
    background: var(--glass-bg);
    border: 1px solid var(--hair-soft);
    border-radius: 24px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow:
        inset 0 1px 0 rgba(245, 242, 255, 0.12),
        0 22px 50px rgba(5, 6, 22, 0.45),
        0 0 80px rgba(107, 91, 255, 0.12);
    position: relative;
}

.signup-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: var(--aurora);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    pointer-events: none;
}

.signup-copy .kicker {
    margin-bottom: 18px;
}

.signup-copy .section-title {
    text-align: left;
    margin-bottom: 18px;
    font-size: clamp(28px, 3vw, 40px);
}

.signup-copy .section-sub {
    text-align: left;
    margin-left: 0;
}

.signup-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-bullets li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--c-mist);
    font-size: 14px;
}

.bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #F5F2FF, #4FE3FF 60%, #1B1D4D 100%);
    box-shadow: 0 0 10px rgba(79, 227, 255, 0.5);
    flex-shrink: 0;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.field input,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(11, 11, 34, 0.6);
    border: 1px solid var(--hair-soft);
    border-radius: 10px;
    color: var(--c-paper);
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
    resize: vertical;
}

.field input:hover,
.field textarea:hover {
    border-color: rgba(245, 242, 255, 0.3);
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--c-cyan);
    box-shadow: 0 0 0 3px rgba(79, 227, 255, 0.18);
    background: rgba(14, 15, 42, 0.85);
}

.cta-submit {
    margin-top: 6px;
    align-self: flex-start;
}

.form-status {
    margin: 6px 0 0;
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--c-mist);
    letter-spacing: 0.1em;
    transition: color 250ms ease;
}

.form-status[data-state="error"] {
    color: var(--c-pink);
}

.form-status[data-state="loading"] {
    color: var(--c-amber);
}

.form-status[data-state="success"] {
    color: var(--c-cyan);
}

/* ===================== Footer ===================== */

.footer {
    position: relative;
    padding: clamp(80px, 10vh, 140px) var(--pad-x) clamp(40px, 6vh, 70px);
    margin-top: -6vh;
    clip-path: polygon(0 6vh, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(11, 11, 34, 0.0) 0%, rgba(5, 6, 22, 0.85) 60%, rgba(5, 6, 22, 1) 100%);
}

.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 28px;
    align-items: center;
}

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

.footer-brand .brand-text {
    font-size: 17px;
}

.footer-meta {
    color: var(--c-mist);
    font-size: 13px;
    line-height: 1.55;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-meta p {
    margin: 0;
}

.footer-clock {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    color: var(--c-amber);
    font-size: 14px;
    letter-spacing: 0.12em;
    padding: 10px 16px;
    border: 1px solid rgba(255, 210, 79, 0.35);
    border-radius: 100px;
    background: rgba(255, 210, 79, 0.05);
}

.footer-clock-label {
    color: var(--c-mist);
    font-size: 11px;
    letter-spacing: 0.18em;
}

.footer-dots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4), 0 0 12px currentColor;
}

.dot-cyan { background: radial-gradient(circle at 30% 30%, #F5F2FF, #4FE3FF 60%, #1B1D4D 100%); color: var(--c-cyan); }
.dot-violet { background: radial-gradient(circle at 30% 30%, #F5F2FF, #6B5BFF 60%, #1B1D4D 100%); color: var(--c-violet); }
.dot-pink { background: radial-gradient(circle at 30% 30%, #F5F2FF, #FF5FA2 60%, #1B1D4D 100%); color: var(--c-pink); }

/* ===================== Responsive ===================== */

@media (max-width: 1100px) {
    .topnav {
        gap: 18px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 18px;
    }
}

@media (max-width: 880px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-right {
        max-width: 460px;
        margin: 0 auto;
    }
    .meter-row {
        grid-template-columns: 130px 1fr auto;
        gap: 10px;
    }
    .signup-frame {
        grid-template-columns: 1fr;
    }
    .ledger-head,
    .ledger-row {
        grid-template-columns: 70px 1fr;
        gap: 6px 14px;
    }
    .ledger-head > span:nth-child(3),
    .ledger-head > span:nth-child(4) {
        display: none;
    }
    .ledger-row > span:nth-child(3) {
        grid-column: 1 / -1;
        font-size: 13px;
    }
    .ledger-row > span:nth-child(4) {
        grid-column: 2;
        justify-self: start;
    }
    .topbar {
        grid-template-columns: auto auto;
        gap: 12px;
    }
    .topnav {
        display: none;
    }
}

@media (max-width: 620px) {
    .topmeta .topclock { display: none; }
    .row-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .row-time {
        order: -1;
    }
    .row-pill {
        justify-self: start;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .hero-floor,
    .manifest,
    .today,
    .atlas,
    .signal,
    .ledger,
    .signup,
    .footer {
        clip-path: none;
    }
}

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