/**
 * STRELA Ecosystem sphere — cyberpunk + brand gold.
 * Slide mode (?slide=1): clean phone-screen composition.
 */

:root {
    --eco-bg: #070B14;
    --eco-bg-2: #0C1220;
    --eco-surface: rgba(16, 24, 40, .72);
    --eco-line: rgba(245, 179, 1, .28);
    --eco-line-dim: rgba(148, 163, 184, .14);
    --eco-line-hot: rgba(245, 179, 1, .85);
    --eco-accent: #F5B301;
    --eco-accent-2: #FFC530;
    --eco-accent-deep: #E0A000;
    --eco-cyan: #38BDF8;
    --eco-mint: #34D399;
    --eco-text: #F8FAFC;
    --eco-text-2: #94A3B8;
    --eco-text-3: #64748B;
    --eco-node: #121A2B;
    --eco-node-border: rgba(245, 179, 1, .45);
    --eco-safe-t: env(safe-area-inset-top, 0px);
    --eco-safe-b: env(safe-area-inset-bottom, 0px);
    --eco-font: 'Manrope', system-ui, sans-serif;
    --eco-display: 'Orbitron', 'Ethnocentric RG', sans-serif;
    --eco-r: 16px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    min-height: 100%;
    background: var(--eco-bg);
    color: var(--eco-text);
    font-family: var(--eco-font);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.eco-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
}

/* Atmosphere */
.eco-scanlines,
.eco-grid,
.eco-glow {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 0;
}

.eco-scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, .08) 2px,
        rgba(0, 0, 0, .08) 4px
    );
    opacity: .35;
    mix-blend-mode: multiply;
}

.eco-grid {
    background-image:
        linear-gradient(rgba(245, 179, 1, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 179, 1, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 42%, #000 20%, transparent 75%);
}

.eco-glow--a {
    background: radial-gradient(ellipse 55% 40% at 50% 38%, rgba(245, 179, 1, .16), transparent 70%);
}

.eco-glow--b {
    background: radial-gradient(ellipse 40% 30% at 78% 72%, rgba(56, 189, 248, .08), transparent 70%),
                radial-gradient(ellipse 35% 28% at 18% 78%, rgba(52, 211, 153, .07), transparent 70%);
}

/* Header */
.eco-top {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: calc(10px + var(--eco-safe-t)) 16px 8px;
}

.eco-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.eco-brand-mark {
    width: 10px;
    height: 36px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--eco-accent-2), var(--eco-accent-deep));
    box-shadow: 0 0 18px rgba(245, 179, 1, .55);
    flex-shrink: 0;
}

.eco-brand-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.eco-brand-name {
    font-family: 'Ethnocentric RG', var(--eco-display);
    font-size: clamp(15px, 4.2vw, 18px);
    letter-spacing: .04em;
    line-height: 1.1;
    color: var(--eco-text);
    white-space: nowrap;
}

.eco-brand-name span {
    display: block;
    font-size: .52em;
    letter-spacing: .18em;
    color: var(--eco-accent);
    margin-top: 2px;
}

.eco-brand-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--eco-text-3);
}

/* Stage */
.eco-main {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 12px 8px;
}

.eco-stage {
    position: relative;
    flex: 1 1 auto;
    min-height: min(58vh, 520px);
    max-height: 640px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(245, 179, 1, .07), transparent 42%),
        linear-gradient(160deg, rgba(18, 26, 43, .9), rgba(7, 11, 20, .55));
    border: 1px solid rgba(245, 179, 1, .14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 0 0 1px rgba(0, 0, 0, .35),
        0 24px 60px rgba(0, 0, 0, .45);
    touch-action: none;
    cursor: grab;
    perspective: 900px;
}

.eco-stage.is-dragging { cursor: grabbing; }

.eco-hud {
    position: absolute;
    inset: 10px;
    z-index: 4;
    pointer-events: none;
}

.eco-hud-corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(245, 179, 1, .45);
    border-style: solid;
    border-width: 0;
}

.eco-hud-corner--tl { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.eco-hud-corner--tr { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.eco-hud-corner--bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.eco-hud-corner--br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

.eco-hud-tag {
    position: absolute;
    top: 6px;
    font-family: var(--eco-display);
    font-size: 8px;
    letter-spacing: .18em;
    color: rgba(245, 179, 1, .55);
}

.eco-hud-tag--l { left: 22px; }
.eco-hud-tag--r { right: 22px; }

.eco-orbit-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(245, 179, 1, .12);
    transform: translate(-50%, -50%) rotateX(62deg);
    box-shadow: 0 0 24px rgba(245, 179, 1, .05);
    pointer-events: none;
}

.eco-orbit-ring--1 { width: 38%; aspect-ratio: 1; animation: eco-ring-spin 28s linear infinite; }
.eco-orbit-ring--2 { width: 62%; aspect-ratio: 1; border-color: rgba(56, 189, 248, .12); animation: eco-ring-spin 42s linear infinite reverse; }
.eco-orbit-ring--3 { width: 84%; aspect-ratio: 1; border-style: dashed; border-color: rgba(148, 163, 184, .16); animation: eco-ring-spin 56s linear infinite; }

@keyframes eco-ring-spin {
    to { transform: translate(-50%, -50%) rotateX(62deg) rotateZ(360deg); }
}

.eco-core-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 179, 1, .35), transparent 70%);
    animation: eco-pulse 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes eco-pulse {
    0%, 100% { transform: scale(.85); opacity: .55; }
    50% { transform: scale(1.35); opacity: .15; }
}

.eco-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: visible;
    pointer-events: none;
}

.eco-link {
    fill: none;
    stroke: var(--eco-line-dim);
    stroke-width: 1.25;
    stroke-linecap: round;
    transition: stroke .25s, stroke-width .25s, opacity .25s;
    opacity: .7;
}

.eco-link.is-hot {
    stroke: var(--eco-line-hot);
    stroke-width: 2;
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(245, 179, 1, .65));
}

.eco-link.is-dim {
    opacity: .12;
}

.eco-sphere {
    position: absolute;
    inset: 0;
    z-index: 3;
    transform-style: preserve-3d;
    will-change: transform;
}

.eco-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border: 0;
    padding: 0;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(30, 41, 59, .95), rgba(15, 23, 42, .92));
    color: var(--eco-text);
    border: 1px solid var(--eco-node-border);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .4),
        0 8px 22px rgba(0, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: border-color .2s, box-shadow .2s, background .2s, opacity .2s, filter .2s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.eco-node i {
    font-size: 16px;
    color: var(--eco-accent);
    filter: drop-shadow(0 0 6px rgba(245, 179, 1, .45));
    line-height: 1;
}

.eco-node-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    color: var(--eco-text-2);
    max-width: 46px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.eco-node--core {
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 197, 48, .35), transparent 55%),
        linear-gradient(155deg, #1E293B, #0B1220);
    border-color: rgba(245, 179, 1, .75);
    box-shadow:
        0 0 0 1px rgba(245, 179, 1, .25),
        0 0 28px rgba(245, 179, 1, .35),
        0 12px 28px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .12);
    z-index: 10;
}

.eco-node--core i {
    font-size: 22px;
}

.eco-node--core .eco-node-label {
    font-family: var(--eco-display);
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--eco-accent-2);
    max-width: 64px;
}

.eco-node.is-active {
    border-color: var(--eco-accent-2);
    box-shadow:
        0 0 0 2px rgba(245, 179, 1, .35),
        0 0 28px rgba(245, 179, 1, .55),
        0 10px 24px rgba(0, 0, 0, .4);
    background: linear-gradient(155deg, rgba(245, 179, 1, .22), rgba(15, 23, 42, .95));
}

.eco-node.is-related {
    border-color: rgba(56, 189, 248, .55);
}

.eco-node.is-related i {
    color: var(--eco-cyan);
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, .5));
}

.eco-node.is-dim {
    opacity: .28;
    filter: grayscale(.4);
}

.eco-node:focus-visible {
    outline: 2px solid var(--eco-accent);
    outline-offset: 3px;
}

/* Panel */
.eco-panel {
    position: relative;
    z-index: 4;
    margin-top: 12px;
    padding: 14px 16px 16px;
    border-radius: var(--eco-r);
    background: var(--eco-surface);
    border: 1px solid rgba(245, 179, 1, .16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}

.eco-panel-kicker {
    margin: 0 0 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--eco-accent);
}

.eco-panel-title {
    margin: 0 0 6px;
    font-family: var(--eco-display);
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.15;
}

.eco-panel-desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--eco-text-2);
}

.eco-panel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.eco-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--eco-text);
    text-decoration: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: border-color .2s, background .2s, color .2s;
}

.eco-chip i { font-size: 10px; color: var(--eco-accent); }

.eco-chip:hover,
.eco-chip.is-primary {
    border-color: rgba(245, 179, 1, .45);
    background: rgba(245, 179, 1, .12);
    color: var(--eco-accent-2);
}

.eco-hint {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px calc(12px + var(--eco-safe-b));
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--eco-text-3);
}

.eco-hint-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--eco-accent);
    box-shadow: 0 0 10px rgba(245, 179, 1, .8);
    animation: eco-pulse 2s ease-in-out infinite;
}

/* Slide / embed: phone mockup composition */
body.is-slide,
body.is-embed {
    max-width: 430px;
    margin: 0 auto;
}

body.is-slide .eco-home,
body.is-embed .eco-home {
    display: none;
}

body.is-slide .eco-hint {
    opacity: .7;
}

body.is-slide .eco-stage {
    min-height: min(62vh, 560px);
    border-radius: 20px;
}

body.is-slide .eco-brand-sub {
    letter-spacing: .1em;
}

/* Desktop / tablet: wider sphere, side panel */
@media (min-width: 768px) {
    .eco-top {
        padding: calc(18px + var(--eco-safe-t)) 32px 10px;
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    .eco-main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 0 32px 16px;
        display: grid;
        grid-template-columns: 1.35fr .85fr;
        grid-template-rows: 1fr;
        gap: 20px;
        align-items: stretch;
    }

    .eco-stage {
        min-height: min(70vh, 640px);
        max-height: none;
        height: 100%;
    }

    .eco-panel {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 28px;
        border-radius: 22px;
    }

    .eco-panel-title {
        font-size: 28px;
    }

    .eco-panel-desc {
        font-size: 15px;
        line-height: 1.55;
    }

    .eco-node {
        width: 58px;
        height: 58px;
        margin: -29px 0 0 -29px;
        border-radius: 18px;
    }

    .eco-node i { font-size: 18px; }

    .eco-node-label {
        font-size: 9px;
        max-width: 52px;
    }

    .eco-node--core {
        width: 84px;
        height: 84px;
        margin: -42px 0 0 -42px;
    }

    .eco-node--core i { font-size: 26px; }

    .eco-hint {
        padding-bottom: 20px;
    }
}

@media (min-width: 1100px) {
    .eco-stage {
        min-height: 680px;
    }
}

/* Compact phones */
@media (max-width: 380px) {
    .eco-node {
        width: 46px;
        height: 46px;
        margin: -23px 0 0 -23px;
        border-radius: 14px;
    }

    .eco-node i { font-size: 14px; }

    .eco-node-label { font-size: 7px; max-width: 40px; }

    .eco-node--core {
        width: 64px;
        height: 64px;
        margin: -32px 0 0 -32px;
    }

    .eco-stage { min-height: 52vh; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .eco-orbit-ring,
    .eco-core-pulse,
    .eco-hint-dot {
        animation: none !important;
    }
}

/* Header actions + theme toggle */
.eco-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.eco-theme-btn,
.eco-home {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--eco-text);
    text-decoration: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: border-color .2s, background .2s, color .2s;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.eco-theme-btn:hover,
.eco-home:hover {
    border-color: var(--eco-node-border);
    color: var(--eco-accent);
    background: rgba(245, 179, 1, .08);
}

.eco-theme-ico { font-size: 15px; line-height: 1; }
.eco-theme-ico--sun { display: inline-block; }
.eco-theme-ico--moon { display: none; }

html[data-theme="light"] .eco-theme-ico--sun { display: none; }
html[data-theme="light"] .eco-theme-ico--moon { display: inline-block; }

/* ── Light theme ─────────────────────────────────────────── */
html[data-theme="light"] {
    --eco-bg: #F4F6F8;
    --eco-bg-2: #EEF1F5;
    --eco-surface: rgba(255, 255, 255, .86);
    --eco-line: rgba(224, 160, 0, .35);
    --eco-line-dim: rgba(71, 85, 105, .18);
    --eco-line-hot: #E0A000;
    --eco-accent: #D97706;
    --eco-accent-2: #F5B301;
    --eco-accent-deep: #B45309;
    --eco-cyan: #0284C7;
    --eco-mint: #059669;
    --eco-text: #0F172A;
    --eco-text-2: #475569;
    --eco-text-3: #64748B;
    --eco-node: #FFFFFF;
    --eco-node-border: rgba(217, 119, 6, .4);
}

html[data-theme="light"] body.eco-page {
    background: var(--eco-bg);
    color: var(--eco-text);
}

html[data-theme="light"] .eco-scanlines {
    opacity: .08;
    mix-blend-mode: multiply;
}

html[data-theme="light"] .eco-grid {
    background-image:
        linear-gradient(rgba(217, 119, 6, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217, 119, 6, .06) 1px, transparent 1px);
}

html[data-theme="light"] .eco-glow--a {
    background: radial-gradient(ellipse 55% 40% at 50% 38%, rgba(245, 179, 1, .22), transparent 70%);
}

html[data-theme="light"] .eco-glow--b {
    background: radial-gradient(ellipse 40% 30% at 78% 72%, rgba(2, 132, 199, .08), transparent 70%),
                radial-gradient(ellipse 35% 28% at 18% 78%, rgba(5, 150, 105, .07), transparent 70%);
}

html[data-theme="light"] .eco-brand-name {
    color: #0B1220;
}

html[data-theme="light"] .eco-brand-name span {
    color: var(--eco-accent-deep);
}

html[data-theme="light"] .eco-theme-btn,
html[data-theme="light"] .eco-home {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(15, 23, 42, .1);
    color: var(--eco-text);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}

html[data-theme="light"] .eco-theme-btn:hover,
html[data-theme="light"] .eco-home:hover {
    border-color: rgba(217, 119, 6, .45);
    color: var(--eco-accent-deep);
    background: #fff;
}

html[data-theme="light"] .eco-stage {
    background:
        radial-gradient(circle at 50% 48%, rgba(245, 179, 1, .12), transparent 42%),
        linear-gradient(160deg, #FFFFFF, #F1F5F9);
    border-color: rgba(217, 119, 6, .22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .9),
        0 0 0 1px rgba(15, 23, 42, .04),
        0 18px 48px rgba(15, 23, 42, .1);
}

html[data-theme="light"] .eco-orbit-ring {
    border-color: rgba(217, 119, 6, .2);
    box-shadow: 0 0 18px rgba(245, 179, 1, .08);
}

html[data-theme="light"] .eco-orbit-ring--2 {
    border-color: rgba(2, 132, 199, .18);
}

html[data-theme="light"] .eco-orbit-ring--3 {
    border-color: rgba(100, 116, 139, .28);
}

html[data-theme="light"] .eco-core-pulse {
    background: radial-gradient(circle, rgba(245, 179, 1, .4), transparent 70%);
}

html[data-theme="light"] .eco-hud-corner {
    border-color: rgba(217, 119, 6, .5);
}

html[data-theme="light"] .eco-hud-tag {
    color: rgba(180, 83, 9, .55);
}

html[data-theme="light"] .eco-link {
    stroke: var(--eco-line-dim);
}

html[data-theme="light"] .eco-link.is-hot {
    stroke: var(--eco-line-hot);
    filter: drop-shadow(0 0 3px rgba(224, 160, 0, .55));
}

html[data-theme="light"] .eco-node {
    background: linear-gradient(155deg, #FFFFFF, #F8FAFC);
    border-color: var(--eco-node-border);
    color: var(--eco-text);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, .04),
        0 6px 18px rgba(15, 23, 42, .1),
        inset 0 1px 0 rgba(255, 255, 255, .95);
}

html[data-theme="light"] .eco-node i {
    color: var(--eco-accent-deep);
    filter: drop-shadow(0 1px 2px rgba(245, 179, 1, .35));
}

html[data-theme="light"] .eco-node-label {
    color: var(--eco-text-2);
}

html[data-theme="light"] .eco-node--core {
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 197, 48, .45), transparent 55%),
        linear-gradient(155deg, #FFFBEB, #FFFFFF);
    border-color: rgba(217, 119, 6, .7);
    box-shadow:
        0 0 0 1px rgba(245, 179, 1, .3),
        0 0 24px rgba(245, 179, 1, .35),
        0 10px 24px rgba(15, 23, 42, .12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

html[data-theme="light"] .eco-node--core .eco-node-label {
    color: var(--eco-accent-deep);
}

html[data-theme="light"] .eco-node.is-active {
    border-color: var(--eco-accent);
    background: linear-gradient(155deg, rgba(245, 179, 1, .28), #FFFFFF);
    box-shadow:
        0 0 0 2px rgba(245, 179, 1, .35),
        0 0 22px rgba(245, 179, 1, .4),
        0 8px 20px rgba(15, 23, 42, .1);
}

html[data-theme="light"] .eco-node.is-related {
    border-color: rgba(2, 132, 199, .5);
}

html[data-theme="light"] .eco-node.is-related i {
    color: var(--eco-cyan);
    filter: drop-shadow(0 0 4px rgba(2, 132, 199, .35));
}

html[data-theme="light"] .eco-node.is-dim {
    opacity: .32;
    filter: grayscale(.25);
}

html[data-theme="light"] .eco-panel {
    background: var(--eco-surface);
    border-color: rgba(217, 119, 6, .2);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}

html[data-theme="light"] .eco-panel-kicker {
    color: var(--eco-accent-deep);
}

html[data-theme="light"] .eco-chip {
    background: rgba(15, 23, 42, .03);
    border-color: rgba(15, 23, 42, .1);
    color: var(--eco-text);
}

html[data-theme="light"] .eco-chip i {
    color: var(--eco-accent-deep);
}

html[data-theme="light"] .eco-chip:hover,
html[data-theme="light"] .eco-chip.is-primary {
    border-color: rgba(217, 119, 6, .45);
    background: rgba(245, 179, 1, .16);
    color: var(--eco-accent-deep);
}

html[data-theme="light"] .eco-hint {
    color: var(--eco-text-3);
}

html[data-theme="light"] .eco-hint-dot {
    background: var(--eco-accent);
    box-shadow: 0 0 10px rgba(245, 179, 1, .7);
}

