/* ============================================================
   Kinetic — iteration-phase overlay for landing + browse only.
   Loaded after style.css. When locked, becomes the new baseline.
   ============================================================ */

:root {
    --k-bg: #0a0a11;
    --k-surface: #13131b;
    --k-surface-1: #1b1b23;
    --k-surface-2: #23232d;
    --k-surface-3: #2f2f3a;
    --k-ink: #eceaf3;
    --k-ink-dim: #b4b4c6;
    --k-ink-faint: #86869c;
    --k-accent: #E8612A;
    --k-accent-rgb: 232, 97, 42;
    --k-accent-dim: #ef7f4f;
    --k-accent-deep: #b8431a;
    --k-accent-soft: rgba(232, 97, 42, 0.12);
    --k-data: #a3c9ff;
    --k-data-dim: #5c8bd4;
    --k-glow: 0 18px 40px rgba(255, 90, 31, 0.12);
    --k-lift: 0 12px 32px rgba(0, 0, 0, 0.55);
    --k-lift-lg: 0 28px 64px rgba(0, 0, 0, 0.65);
    --k-radius-sm: 0.375rem;
    --k-radius-md: 0.625rem;
    --k-radius-lg: 0.875rem;
    --k-radius-xl: 1.25rem;
    --k-radius-pill: 999px;
    --k-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
    --k-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --k-noise: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' 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.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    --k-dots: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
}

/* ---------- Base ---------- */
body {
    background: var(--k-bg);
    color: var(--k-ink);
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { color: var(--k-ink); }
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--k-ink);
    letter-spacing: -0.02em;
    font-weight: 700;
}

/* ---------- Nav ---------- */
.nav {
    background: rgba(10, 10, 17, 0.76);
    backdrop-filter: saturate(140%) blur(18px);
    -webkit-backdrop-filter: saturate(140%) blur(18px);
    border-bottom: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nav-inner { max-width: 1320px; padding: 14px 32px; }
.nav-links a {
    color: var(--k-ink-dim);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s var(--k-ease);
}
.nav-links a:hover { color: var(--k-ink); }

.nav-credits {
    background: var(--k-surface-2);
    border: none;
    color: var(--k-ink);
    border-radius: var(--k-radius-pill);
    padding: 6px 14px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.15s var(--k-ease);
}
.nav-credits:hover { background: var(--k-surface-3); }
.nav-credits-dot {
    background: var(--k-accent);
    box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.22);
}

.nav-avatar {
    background: var(--k-surface-2);
    border: none;
    transition: background 0.15s var(--k-ease);
}
.nav-avatar:hover { background: var(--k-surface-3); }
.nav-user-initial {
    color: var(--k-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--k-ink);
}
.logo-dot { color: var(--k-accent); font-weight: 600; }

.nav-login-btn.btn.btn-outline {
    background: var(--k-surface-2);
    border: none;
    color: var(--k-ink);
}
.nav-login-btn.btn.btn-outline:hover { background: var(--k-surface-3); }

/* ---------- Buttons ---------- */
.btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.005em;
    border: none !important;
    transition: transform 0.15s var(--k-ease), box-shadow 0.2s var(--k-ease), background 0.15s var(--k-ease);
}
.btn-primary {
    background: var(--k-accent);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(232, 97, 42, 0.28);
}
.btn-primary:hover {
    transform: translateY(-1px);
    background: var(--k-accent-dim);
    box-shadow: 0 12px 28px rgba(232, 97, 42, 0.4);
}
.btn-outline {
    background: var(--k-surface-2);
    color: var(--k-ink);
}
.btn-outline:hover { background: var(--k-surface-3); }
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; border-radius: var(--k-radius-lg); }
.hero-ctas .btn.btn-lg { padding: 13px 26px; font-size: 13px; border-radius: 6px; }
.hero-ctas .btn-primary {
    background: var(--k-accent);
    color: #fff;
    font-weight: 600;
    border: 0.5px solid var(--k-accent) !important;
}
.hero-ctas .btn-outline {
    background: transparent;
    border: 0.5px solid rgba(255, 255, 255, 0.22) !important;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    box-shadow: none;
}
.hero-ctas .btn-outline:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35) !important;
}
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; border-radius: var(--k-radius-md); }

/* ---------- Hero ---------- */
.hero {
    background: var(--k-bg);
    padding: 96px 32px 64px;
    position: relative;
    overflow: hidden;
    min-height: auto;
}
.hero.hero--centered { padding: 112px 32px 80px; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 75% 15%, rgba(255, 90, 31, 0.16), transparent 60%),
        radial-gradient(800px 500px at 12% 95%, rgba(163, 201, 255, 0.07), transparent 55%),
        linear-gradient(180deg, var(--k-bg) 0%, #0d0d15 100%);
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--k-noise);
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}
.hero-bg, .hero-grid-anim { display: none !important; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}
.hero-content--centered {
    max-width: 860px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content--centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-content--centered .hero-ctas { justify-content: center; }
.hero-content--centered .hero-stats { justify-content: center; width: 100%; }
.hero-content--centered .hero-live-strip { margin-top: 48px; width: 100%; }

/* ---- Hero text column (legacy split; retained for safety) ---- */
.hero-col--text { max-width: 620px; }

.hero-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
    padding: 0;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(3rem, 7.5vw, 5.75rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--k-ink);
    margin: 0 0 24px;
}
.hero-headline .headline-accent {
    color: var(--k-accent);
    background: none;
    -webkit-text-fill-color: var(--k-accent);
}
.hero-headline .headline-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--k-accent);
    margin-left: 3px;
    vertical-align: 3px;
}
.hero-sub {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink-dim);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 54ch;
    margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-top: 12px;
}
.hero-stat-rings {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, 0);
    pointer-events: none;
    z-index: 0;
}
.hero-stat-ring {
    position: absolute;
    inset: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0.5px solid rgba(232, 97, 42, 0.5);
    animation: hero-stat-pulse 2.8s ease-out infinite;
    box-sizing: border-box;
    transform-origin: center;
}
.hero-stat-ring:nth-child(2) { animation-delay: 1.4s; }
.hero-stat:nth-child(2) .hero-stat-ring:nth-child(1) { animation-delay: -0.93s; }
.hero-stat:nth-child(2) .hero-stat-ring:nth-child(2) { animation-delay: 0.47s; }
.hero-stat:nth-child(3) .hero-stat-ring:nth-child(1) { animation-delay: -1.87s; }
.hero-stat:nth-child(3) .hero-stat-ring:nth-child(2) { animation-delay: -0.47s; }
@keyframes hero-stat-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.2); opacity: 0; }
}
.hero-stat-num {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--k-ink);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    position: relative;
    z-index: 1;
}
.hero-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--k-ink-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
    z-index: 1;
}

/* ---- Hero visual column ---- */
.hero-col--visual {
    position: relative;
    min-height: 520px;
}
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-visual-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 90, 31, 0.32), transparent 70%);
    filter: blur(60px);
    z-index: 0;
}
.hero-visual-card {
    position: absolute;
    border-radius: var(--k-radius-xl);
    overflow: hidden;
    box-shadow: var(--k-lift-lg);
    background: var(--k-surface-1);
    pointer-events: auto;
    transition: transform 0.3s var(--k-ease-out);
}
.hero-visual-card--lead {
    top: 8%;
    left: 18%;
    width: 72%;
    aspect-ratio: 16 / 10;
    z-index: 3;
    transform: rotate(-2deg);
}
.hero-visual-card--b {
    top: 58%;
    left: 2%;
    width: 42%;
    aspect-ratio: 4 / 3;
    z-index: 2;
    transform: rotate(4deg);
}
.hero-visual-card--c {
    top: 0;
    right: -4%;
    width: 34%;
    aspect-ratio: 3 / 4;
    z-index: 1;
    transform: rotate(6deg);
}
.hero-visual-card:hover { transform: rotate(0deg) translateY(-4px); }

.hero-visual-thumb {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, hsl(var(--hue, 18), 70%, 30%) 0%, hsl(calc(var(--hue, 18) + 30), 55%, 14%) 100%),
        var(--k-dots) 0 0 / 14px 14px;
    background-blend-mode: normal, overlay;
}
.hero-visual-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--k-noise);
    opacity: 0.35;
    mix-blend-mode: overlay;
}
.hero-visual-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%);
}
.hero-visual-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 10, 17, 0.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--k-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--k-radius-pill);
    z-index: 2;
}
.hero-visual-tag--count {
    left: auto;
    right: 12px;
    text-transform: none;
    letter-spacing: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.72rem;
}
.hero-visual-tag--live { color: var(--k-accent); }
.hero-visual-tag--soon { color: var(--k-data); }
.hero-visual-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--k-accent);
    box-shadow: 0 0 8px rgba(255, 90, 31, 0.7);
    animation: k-pulse 1.8s var(--k-ease) infinite;
}
.hero-visual-body {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}
.hero-visual-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--k-ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
}
.hero-visual-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--k-ink);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.hero-visual-title-sm {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--k-ink);
    line-height: 1.2;
    letter-spacing: -0.005em;
}

/* ---- Hero live line (strip between nav and hero) ---- */
.hero-live-line {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    min-height: 36px;
    margin-top: 60px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.05);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
    background: var(--k-bg);
    font-family: 'DM Sans', sans-serif;
    overflow: hidden;
}
.hero-live-line-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--k-accent);
    animation: hero-live-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes hero-live-dot-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.hero-live-line-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--k-accent);
    font-weight: 600;
    flex-shrink: 0;
}
.hero-live-line-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.3;
    display: inline-block;
    opacity: 0;
    animation: hero-live-text-cycle 5s ease-in-out forwards;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@keyframes hero-live-text-cycle {
    0%   { opacity: 0; transform: translateY(6px); }
    12%  { opacity: 1; transform: translateY(0); }
    80%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-4px); }
}

/* Hero is below the live line now; shrink top padding */
.hero.hero--centered { padding-top: 72px; }

/* ---------- Section system ---------- */
.section {
    padding: clamp(56px, 7vw, 96px) 32px;
    background: var(--k-bg);
    position: relative;
    overflow: visible;
}
.section--dark { background: var(--k-surface); }
.section--accent { background: var(--k-surface-1); }
.section--accent::before { display: none; }

.section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--k-dots);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }

.container { max-width: 1320px; margin: 0 auto; padding: 0; }

.section-header { margin-bottom: 48px; text-align: left; }
.section-header--editorial {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--k-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.section-header h2, .section-header h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: clamp(1.875rem, 3.4vw, 2.875rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--k-ink);
    margin: 0;
    line-height: 1.05;
}
.section-header h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.015em; }
.section-sub {
    font-family: 'DM Sans', sans-serif;
    color: var(--k-ink-dim);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 62ch;
    margin: 0;
}

/* ---------- Discover toolbar ---------- */
.discover-toolbar { margin-bottom: 40px; }
.discover-search-wrap {
    position: relative;
    max-width: 560px;
}
.discover-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--k-ink-faint);
    pointer-events: none;
}
.discover-search {
    width: 100%;
    background: var(--k-surface-1);
    color: var(--k-ink);
    border: none;
    border-radius: var(--k-radius-lg);
    padding: 16px 20px 16px 48px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: box-shadow 0.15s var(--k-ease), background 0.15s var(--k-ease);
}
.discover-search::placeholder { color: var(--k-ink-faint); }
.discover-search:focus {
    outline: none;
    background: var(--k-surface-2);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.42), 0 12px 24px rgba(255, 90, 31, 0.08);
}

.discover-rail { margin-bottom: 64px; }
.discover-rail-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.discover-rail-header h3 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--k-ink);
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.discover-rail-header h3::before {
    content: "";
    width: 4px;
    height: 16px;
    background: var(--k-accent);
    border-radius: var(--k-radius-pill);
}
.discover-rail-header .section-sub { display: none; }

/* Compact rail (e.g. From Your Follows) — smaller cards to match platform cards */
.discover-rail--compact .node-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
@media (min-width: 900px) {
    .discover-rail--compact .node-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1280px) {
    .discover-rail--compact .node-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.discover-rail--compact .node-card.node-card--overlay {
    min-height: 0;
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    box-shadow: none;
    background: #141414;
}
.discover-rail--compact .node-card.node-card--overlay:hover {
    transform: none;
    box-shadow: 0 0 0 1px rgba(232, 97, 42, 0.4);
}
.discover-rail--compact .node-card .node-thumb {
    inset: 0;
    min-height: 0;
    border-radius: inherit;
}
.discover-rail--compact .node-card .node-overlay-body {
    padding: 12px 14px 14px;
}
.discover-rail--compact .node-card .node-kicker { display: none; }
.discover-rail--compact .node-card .node-sub { display: none; }
.discover-rail--compact .node-card .node-meta-row { display: none; }
.discover-rail--compact .node-card .node-title {
    font-size: 15px;
    line-height: 1.2;
    margin: 0;
}
.discover-rail--compact .node-card .node-pill {
    font-size: 9px;
    padding: 3px 6px;
}
.discover-rail--compact .node-card .node-pill-row {
    top: 10px;
    padding: 0;
}
.discover-rail--compact .node-card .node-pill-row--top { left: 10px; }
.discover-rail--compact .node-card .node-pill-row--top-right { right: 10px; }

/* ---------- Node grid (consistent sizing, graceful when sparse) ---------- */
.node-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.discover-rail .node-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    gap: 24px;
}
@media (min-width: 900px) {
    .node-grid,
    .discover-rail .node-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1280px) {
    .node-grid,
    .discover-rail .node-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.node-grid-loading {
    grid-column: 1 / -1;
    color: var(--k-ink-faint);
    font-family: 'DM Sans', sans-serif;
    padding: 64px 24px;
    text-align: center;
    background: var(--k-surface-1);
    border-radius: var(--k-radius-lg);
}

/* ---------- Node card — overlay pattern ---------- */
.node-card.node-card--overlay {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    width: 100%;
    border-radius: var(--k-radius-xl);
    overflow: hidden;
    background: var(--k-surface-1);
    box-shadow: var(--k-lift);
    text-decoration: none;
    transition: transform 0.25s var(--k-ease-out), box-shadow 0.3s var(--k-ease-out);
    isolation: isolate;
    padding: 0 !important;
    border: none !important;
}
.node-card.node-card--overlay:hover {
    transform: translateY(-4px);
    box-shadow: var(--k-lift-lg), var(--k-glow);
}
.node-card.node-card--overlay .node-thumb {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    margin: 0;
    padding: 0;
    background: var(--k-surface);
    aspect-ratio: auto;
}
.node-card.node-card--overlay .node-thumb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: hsl(var(--hue, 220), 35%, 18%);
    background-image: linear-gradient(135deg, hsl(var(--hue, 220), 55%, 26%) 0%, hsl(calc(var(--hue, 220) + 40), 45%, 12%) 100%);
    transition: transform 0.5s var(--k-ease-out), filter 0.3s var(--k-ease);
}
.node-card.node-card--overlay:hover .node-thumb-bg {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.05);
}
.node-card.node-card--overlay .node-thumb-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 17, 0.15) 0%, rgba(10, 10, 17, 0) 30%, rgba(10, 10, 17, 0.55) 65%, rgba(10, 10, 17, 0.96) 100%);
    pointer-events: none;
}

/* Pill rows */
.node-card .node-pill-row {
    position: absolute;
    top: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
    max-width: calc(100% - 28px);
}
.node-card .node-pill-row--top { left: 14px; }
.node-card .node-pill-row--top-right { right: 14px; left: auto; justify-content: flex-end; }

.node-card .node-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 10, 17, 0.68);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--k-ink);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: var(--k-radius-pill);
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.node-card .node-pill--live { color: var(--k-accent); }
.node-card .node-pill--pending { color: var(--k-data); }
.node-card .node-pill--offline { color: var(--k-ink-faint); }
.node-card .node-pill--event {
    background: rgba(255, 90, 31, 0.22);
    color: var(--k-ink);
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72rem;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.3);
}
.node-card .node-pill--meta {
    font-family: 'DM Sans', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--k-ink);
}
.node-card .node-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--k-accent);
    box-shadow: 0 0 10px rgba(255, 90, 31, 0.7);
    animation: k-pulse 1.8s var(--k-ease) infinite;
}
@keyframes k-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

/* Bottom overlay body */
.node-card .node-overlay-body {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.node-card .node-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--k-ink-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}
.node-card .node-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.015em;
    color: var(--k-ink);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.node-card .node-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--k-ink-dim);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 2px;
}
.node-card .node-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--k-ink);
    font-weight: 500;
}
.node-card .node-price {
    color: var(--k-ink);
    background: rgba(255, 90, 31, 0.14);
    padding: 3px 9px;
    border-radius: var(--k-radius-pill);
    font-weight: 600;
    font-size: 0.72rem;
    box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.24);
}
.node-card .node-queue {
    color: var(--k-ink-dim);
    font-size: 0.8rem;
}
.node-card .node-dot { display: none; }

/* Coming-soon card variant */
.node-card.node-card--overlay.node-card--coming-soon .node-thumb-bg {
    background-image: linear-gradient(135deg, rgba(255, 90, 31, 0.16) 0%, rgba(30, 30, 45, 0.88) 100%);
}
.node-card.node-card--coming-soon .node-kicker { color: var(--k-accent); }
.node-card.node-card--coming-soon .node-title { color: var(--k-ink); }

/* Ghost placeholder cards — keep rails feeling populated when sparse */
.node-card.node-card--overlay.node-card--ghost {
    box-shadow: none;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.08) !important;
    opacity: 0.55;
    transition: opacity 0.25s var(--k-ease-out), border-color 0.25s var(--k-ease-out);
}
.node-card.node-card--ghost .node-thumb-bg {
    background-image: linear-gradient(135deg, hsl(var(--hue, 220), 30%, 14%) 0%, hsl(calc(var(--hue, 220) + 20), 25%, 9%) 100%);
    filter: saturate(0.6);
}
.node-card.node-card--ghost .node-thumb-scrim {
    background: linear-gradient(180deg, rgba(10,10,17,0.2) 0%, rgba(10,10,17,0.55) 55%, rgba(10,10,17,0.88) 100%);
}
.node-card.node-card--ghost .node-kicker { color: var(--k-ink-faint); }
.node-card.node-card--ghost .node-title { color: var(--k-ink-dim); }
.node-card.node-card--ghost:hover {
    opacity: 0.9;
    border-color: rgba(255, 90, 31, 0.32) !important;
    transform: translateY(-2px);
}

/* ============================================================
   Landing sections — How It Works → Footer (ym-* namespace)
   ============================================================ */

/* ---------- How It Works ---------- */
.ym-how {
    padding: 72px 28px 88px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-how-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 56px;
}
.ym-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.ym-how-line {
    position: absolute;
    top: 28px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
    overflow: hidden;
}
.ym-how-line-fill {
    display: block;
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg,
        rgba(232, 97, 42, 0) 0%,
        rgba(232, 97, 42, 0.35) 25%,
        #E8612A 50%,
        rgba(232, 97, 42, 0.35) 75%,
        rgba(232, 97, 42, 0) 100%);
    animation: ym-how-slide 16s linear infinite;
    will-change: transform;
}
@keyframes ym-how-slide {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(320%); }
}

.ym-step {
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.ym-step:first-child { padding-left: 0; }
.ym-step:last-child { padding-right: 0; }

.ym-step-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    height: 56px;
    position: relative;
    z-index: 2;
}
.ym-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0a0a11;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px #0a0a11;
    animation: ym-step-dot-cycle 16s linear infinite;
}
.ym-step-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.55);
    animation: ym-step-name-cycle 16s linear infinite;
}
.ym-step-desc {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    animation: ym-step-desc-cycle 16s linear infinite;
}
.ym-step[data-step="2"] .ym-step-dot,
.ym-step[data-step="2"] .ym-step-name,
.ym-step[data-step="2"] .ym-step-desc { animation-delay: -4s; }
.ym-step[data-step="3"] .ym-step-dot,
.ym-step[data-step="3"] .ym-step-name,
.ym-step[data-step="3"] .ym-step-desc { animation-delay: -8s; }
.ym-step[data-step="4"] .ym-step-dot,
.ym-step[data-step="4"] .ym-step-name,
.ym-step[data-step="4"] .ym-step-desc { animation-delay: -12s; }

@keyframes ym-step-dot-cycle {
    0%, 3% { background: #0a0a11; border-color: rgba(255, 255, 255, 0.25); transform: scale(1); }
    8%, 22% { background: #E8612A; border-color: #E8612A; transform: scale(1.25); }
    27%, 100% { background: #0a0a11; border-color: rgba(255, 255, 255, 0.25); transform: scale(1); }
}
@keyframes ym-step-name-cycle {
    0%, 3% { color: rgba(255, 255, 255, 0.55); }
    8%, 22% { color: #fff; }
    27%, 100% { color: rgba(255, 255, 255, 0.55); }
}
@keyframes ym-step-desc-cycle {
    0%, 3% { color: rgba(255, 255, 255, 0.45); }
    8%, 22% { color: rgba(255, 255, 255, 0.8); }
    27%, 100% { color: rgba(255, 255, 255, 0.45); }
}

/* ---------- Card sections (Platform + More Than a Shot) ---------- */
.ym-cards-section {
    padding: 72px 28px 88px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-cards-head { margin-bottom: 48px; }
.ym-cards-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.1;
}
.ym-cards-sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.ym-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.ym-card {
    background: #111;
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 24px 20px;
}
.ym-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(232, 97, 42, 0.1);
    border: 0.5px solid rgba(232, 97, 42, 0.18);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8612A;
}
.ym-card-icon svg { width: 16px; height: 16px; display: block; }
.ym-card-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    line-height: 1.2;
}
.ym-card-desc {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.6;
    margin: 0;
}

/* ---------- For Operators ---------- */
.ym-operators {
    padding: 72px 28px 88px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-operators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.ym-operators-eyebrow {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #E8612A;
    margin-bottom: 16px;
}
.ym-operators-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 14px;
}
.ym-operators-body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin: 0 0 28px;
}
.ym-operators-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ym-operators-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}
.ym-operators-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E8612A;
    margin-top: 5px;
    flex-shrink: 0;
}
.ym-operators-cta {
    display: inline-block;
    background: #E8612A;
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s ease;
}
.ym-operators-cta:hover { background: #d45424; color: #fff; }

.ym-operators-card {
    background: #111;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}
.ym-opcard-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-opcard-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.01em;
}
.ym-opcard-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #E8612A;
}
.ym-opcard-live-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E8612A;
    animation: ym-live-pulse 1.6s ease-in-out infinite;
}
@keyframes ym-live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232, 97, 42, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232, 97, 42, 0); }
}
.ym-opcard-feed {
    height: 150px;
    background:
        radial-gradient(circle at 30% 40%, rgba(232, 97, 42, 0.12), transparent 55%),
        linear-gradient(135deg, #1a1410 0%, #0e0b09 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ym-opcard-feed-label {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.ym-opcard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-opcard-stat {
    padding: 14px 16px;
    border-left: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-opcard-stat:first-child { border-left: none; }
.ym-opcard-stat-num {
    display: block;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}
.ym-opcard-stat-label {
    display: block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.ym-opcard-foot {
    padding: 12px 16px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ym-opcard-operator {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}
.ym-opcard-growth {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    color: #E8612A;
    font-weight: 600;
}

/* ---------- Recent Highlights ---------- */
.ym-highlights {
    padding: 72px 28px 88px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}
.ym-highlights-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    gap: 16px;
}
.ym-highlights-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.1;
}
.ym-highlights-sub {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}
.ym-highlights-filters {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.ym-highlights-filter {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ym-highlights-filter:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.ym-highlights-filter.is-active {
    background: #E8612A;
    border-color: #E8612A;
    color: #fff;
    font-weight: 600;
}
.ym-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.ym-clip {
    display: block;
    text-decoration: none;
    color: #fff;
    background: #111;
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.ym-clip:hover {
    border-color: rgba(232, 97, 42, 0.4);
    transform: translateY(-2px);
}
.ym-clip-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
}
.ym-clip-thumb:not([style*="background-image"]) {
    background-image: linear-gradient(135deg, hsl(var(--hue, 18), 45%, 22%) 0%, hsl(calc(var(--hue, 18) + 20), 35%, 10%) 100%);
}
.ym-clip-duration {
    position: absolute;
    right: 6px;
    bottom: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 3px;
}
.ym-clip-featured {
    position: absolute;
    left: 6px;
    top: 6px;
    background: rgba(232, 97, 42, 0.9);
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 3px;
}
.ym-clip-info { padding: 10px 10px 12px; }
.ym-clip-node {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #E8612A;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.ym-clip-user {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}
.ym-clip-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ym-clip-time {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
}
.ym-clip-reactions {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.58);
}

/* ---------- Footer ---------- */
.footer {
    background: transparent;
    border-top: 0.5px solid rgba(255, 255, 255, 0.07);
    padding: 48px 28px;
    color: var(--k-ink-dim);
}
.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
.footer-brand { max-width: 220px; }
.footer-logo {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
}
.footer-logo-dot { color: #E8612A; }
.footer-tagline {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col h4 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.footer-col a {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-meta { color: rgba(255, 255, 255, 0.5); }
.footer-copy { color: rgba(255, 255, 255, 0.65); }

/* ---------- Featured Nodes (editorial full-bleed grid) ---------- */
.featured-nodes {
    background: #0b0b0b;
    padding: 72px 28px 80px;
    position: relative;
    z-index: 1;
}
.featured-nodes-head {
    max-width: 1320px;
    margin: 0 auto 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}
.featured-nodes-title {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.1;
}
.featured-nodes-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--k-accent);
    text-decoration: none;
    transition: color 0.15s ease, transform 0.15s ease;
    white-space: nowrap;
    letter-spacing: -0.005em;
}
.featured-nodes-link:hover { color: #ff7a3e; transform: translateX(2px); }

.featured-nodes-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    min-height: 420px;
}
.featured-nodes-grid[data-state="all-live"] {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
}
.featured-nodes-empty {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
}

.fnode {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    background: #141414;
    text-decoration: none;
    color: #fff;
    min-height: 190px;
    transition: transform 0.2s ease;
}
.fnode--primary {
    grid-row: 1 / 3;
    grid-column: 1;
    min-height: 420px;
}
.featured-nodes-grid[data-state="all-live"] .fnode--primary {
    grid-row: auto;
    grid-column: auto;
    min-height: 190px;
}
.fnode--offline { opacity: 0.6; }
.fnode-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}
.fnode-bg--fallback {
    background-image: linear-gradient(135deg, hsl(var(--fhue, 18), 55%, 28%) 0%, hsl(calc(var(--fhue, 18) + 30), 45%, 12%) 100%);
}
.fnode-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.1) 100%);
}
.fnode-hover-border {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(232, 97, 42, 0.35);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.fnode:hover .fnode-hover-border { opacity: 1; }

.fnode-top {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    z-index: 2;
}
.fnode-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
}
.fnode-badge--live {
    background: rgba(232, 97, 42, 0.9);
    color: #fff;
}
.fnode-badge--offline {
    background: rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.4);
    border: 0.5px solid rgba(255, 255, 255, 0.12);
}
.fnode-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}
.fnode-badge--live .fnode-badge-dot {
    animation: fnode-live-dot 1.8s ease-in-out infinite;
}
@keyframes fnode-live-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.fnode-viewers {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.fnode-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 97, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 2;
    pointer-events: none;
}
.fnode-play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 3px;
}
.fnode:hover .fnode-play { opacity: 1; }

.fnode-bottom {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fnode-name {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0;
}
.fnode--primary .fnode-name { font-size: 24px; }
.fnode-desc {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
    display: none;
}
.fnode--primary .fnode-desc { display: block; }

.fnode-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}
.fnode-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.fnode-operator {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fnode-cost {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fnode-cost-icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid currentColor;
    flex-shrink: 0;
}
.fnode-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--k-accent);
    align-self: flex-end;
    white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .featured-nodes-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .fnode--primary { grid-row: auto; grid-column: auto; min-height: 280px; }
}
@media (max-width: 1024px) {
    .ym-how-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
    .ym-how-line { display: none; }
    .ym-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .ym-highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .ym-operators-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
    .section { padding: 56px 20px; }
    .hero, .hero.hero--centered { padding: 88px 20px 40px; min-height: auto; }
    .hero-stats { gap: 28px; }
    .hero-stat-num { font-size: 2rem; }
    .node-grid, .discover-rail .node-grid { grid-template-columns: 1fr; }
    .nav-inner { padding: 12px 16px; }
    .featured-nodes { padding: 56px 20px 64px; }
    .featured-nodes-title { font-size: 22px; }
    .ym-how, .ym-cards-section, .ym-operators, .ym-highlights { padding: 56px 20px 64px; }
    .ym-how-grid { grid-template-columns: 1fr; row-gap: 32px; }
    .ym-cards-grid { grid-template-columns: 1fr; }
    .ym-highlights-grid { grid-template-columns: 1fr; }
    .ym-how-title, .ym-cards-title, .ym-highlights-title, .ym-operators-title { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer { padding: 40px 20px; }
}
