/*
COPERNICUS SLIDESHOW CSS

Tabla de contenidos
1. Design tokens
2. Base
3. Deck shell
4. Slide layout
5. Controls
6. Solar visuals
7. Concept visuals
8. Responsive
*/

/* 1. Design tokens */
:root {
    --cp-color-space: #050605;
    --cp-color-space-soft: #10120e;
    --cp-color-ink: #ffffff;
    --cp-color-muted: rgba(255, 255, 255, 0.72);
    --cp-color-dim: rgba(255, 255, 255, 0.48);
    --cp-color-orange: #ff9414;
    --cp-color-orange-soft: rgba(255, 148, 20, 0.18);
    --cp-color-art: #c0392b;
    --cp-color-marketing: #4267b2;
    --cp-color-management: #9a8f7d;
    --cp-color-production: #5e8e3e;
    --cp-color-finance: #d8d2c4;
    --cp-color-line: rgba(255, 255, 255, 0.16);
    --cp-color-panel: rgba(255, 255, 255, 0.07);
    --cp-radius: 999px;
    --cp-font: 'Geist', system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --cp-font-serif: 'Instrument Serif', Georgia, serif;
    --cp-size-title: clamp(44px, 6.4vw, 82px);
    --cp-size-heading: clamp(36px, 4.8vw, 62px);
    --cp-size-copy: clamp(13.5px, 1.02vw, 15.5px);
    --cp-space-1: 8px;
    --cp-space-2: 14px;
    --cp-space-3: 22px;
    --cp-space-4: 34px;
    --cp-space-5: 54px;
}

/* 2. Base */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    margin: 0;
    font-family: var(--cp-font);
    color: var(--cp-color-ink);
    background:
        radial-gradient(ellipse at 50% 46%, rgba(255, 255, 255, 0.055), transparent 42%),
        radial-gradient(ellipse at 58% 54%, rgba(66, 103, 178, 0.10), transparent 34%),
        radial-gradient(ellipse at 42% 60%, rgba(94, 142, 62, 0.08), transparent 30%),
        radial-gradient(circle at 76% 24%, rgba(255, 148, 20, 0.18), transparent 26%),
        radial-gradient(circle at 22% 70%, rgba(255, 255, 255, 0.08), transparent 30%),
        var(--cp-color-space);
    overflow: hidden;
    user-select: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "ss01", "cv11";
}

body::before {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.7) 0 1px, transparent 1.5px),
        radial-gradient(circle at 35% 62%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.5px),
        radial-gradient(circle at 62% 30%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.5px),
        radial-gradient(circle at 82% 76%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px);
    background-size: 180px 180px, 260px 260px, 220px 220px, 300px 300px;
    content: "";
    opacity: 0.72;
}

body::after {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.4px),
        radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.3px),
        repeating-radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
    background-size: 110px 110px, 170px 170px, 7px 7px;
    content: "";
    mix-blend-mode: screen;
    opacity: 0.22;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

img {
    display: block;
}

/* Typography for moving orbital labels */
.planet span,
.satellite,
.planet-node,
.connector-system span,
.connector-planet,
.collision-core,
.collision-planet,
.decision-panel strong {
    font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", ui-monospace, monospace;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

/* 3. Deck shell */
.deck {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100vh;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: var(--cp-space-3);
    cursor: grab;
    touch-action: pan-y;
}

.deck::before {
    position: fixed;
    inset: 9vh 8vw 12vh;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    content: "";
    opacity: 0.9;
    pointer-events: none;
    transform: rotate(-18deg);
}

.deck::after {
    position: fixed;
    inset: 18vh 17vw 20vh;
    border: 1px dashed rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    content: "";
    opacity: 0.7;
    pointer-events: none;
    transform: rotate(12deg);
}

.deck.is-dragging {
    cursor: grabbing;
}

.deck-header,
.deck-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--cp-space-2);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.deck-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--cp-space-2);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.deck-brand img {
    width: 34px;
    height: 34px;
}

.deck-tools {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.deck-lang {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    min-height: 34px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.deck-lang a {
    display: grid;
    min-width: 31px;
    min-height: 26px;
    place-items: center;
    border-radius: 999px;
    color: var(--cp-color-dim);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.deck-lang a.is-active {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.deck-counter {
    position: absolute;
    right: 16px;
    bottom: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.34);
    font-family: "SFMono-Regular", "Roboto Mono", "IBM Plex Mono", ui-monospace, monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

/* 4. Slide layout */
.slide {
    display: none;
    min-height: 0;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(34px, 5vw, 82px);
    align-items: center;
    padding: var(--cp-space-4) 0;
}

.slide.is-active {
    display: grid;
    animation: slide-enter .65s cubic-bezier(.2,.7,.2,1) both;
}

.deck.is-dragging .slide.is-active {
    transform: translate3d(calc(var(--drag-shift, 0) * 1px), 0, 0) rotateZ(calc(var(--drag-shift, 0) * .015deg));
    transition: none;
}

.slide--close {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    text-align: center;
}

.slide--close::before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(72vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-18deg);
    animation: close-orbit 90s linear infinite;
}

.slide--close .slide-copy {
    margin: 0 auto;
    padding-left: 0;
}

.slide--close p {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.closing-copy {
    display: grid;
    gap: 8px;
}

.closing-copy mark {
    position: relative;
    display: inline-block;
    padding: 0 .08em;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
}

.closing-copy mark::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.24em;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 148, 20, 0.85), transparent);
    box-shadow: 0 0 18px rgba(255, 148, 20, 0.55);
    content: "";
    transform-origin: left center;
    animation: traction-glow 1.8s ease-out .45s both;
}

.slide-copy {
    max-width: 720px;
    padding-left: clamp(0px, 2vw, 26px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.58;
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 24px;
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 500;
    text-wrap: balance;
}

h1 {
    font-size: var(--cp-size-title);
}

h2 {
    font-size: var(--cp-size-heading);
}

h1 em,
h2 em {
    font-family: var(--cp-font-serif);
    font-style: italic;
    font-weight: 400;
}

p {
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--cp-size-copy);
    line-height: 1.62;
    max-width: 46ch;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.slide-copy__split {
    display: grid;
    gap: 12px;
}

.slide-copy__split strong {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 300;
}

.slide--satellites h2 {
    font-family: var(--cp-font);
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-transform: none;
}

.deck-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: var(--cp-space-2);
    padding: 0 var(--cp-space-3);
    border-radius: 999px;
    background: var(--cp-color-orange);
    color: #1c1308;
    font-weight: 500;
    text-decoration: none;
}

@keyframes slide-enter {
    from {
        opacity: 0;
        transform: translate3d(22px, 0, 0) scale(.985);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

/* 5. Controls */
.deck-controls {
    min-height: 54px;
    justify-content: center;
    pointer-events: none;
}

.deck-controls button {
    pointer-events: auto;
}

.deck-nav {
    display: grid;
    width: 44px;
    min-height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: transform .25s, background .25s, border-color .25s;
}

.deck-nav svg {
    width: 18px;
    height: 18px;
}

.deck-nav:hover {
    border-color: rgba(255, 148, 20, 0.54);
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-1px);
}

.deck-dots {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
}

.deck-dots button {
    width: 7px;
    min-height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    transition: width .25s, background .25s;
}

.deck-dots button.is-active {
    width: 24px;
    border-radius: 999px;
    background: var(--cp-color-orange);
}

/* 6. Solar visuals */
.solar-visual {
    position: relative;
    min-height: min(68vh, 680px);
    border: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(255, 148, 20, 0.14), transparent 24%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 62%),
        radial-gradient(ellipse at 50% 52%, rgba(255, 255, 255, 0.05), transparent 76%);
    overflow: visible;
    isolation: isolate;
}

.orbit,
.solar-core,
.orbit-rail,
.planet {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.orbit {
    border: 1px solid rgba(255, 148, 20, 0.36);
    border-radius: 50%;
    opacity: 0.72;
    animation: ring-rotate 120s linear infinite;
}

.orbit--one {
    width: 38%;
    aspect-ratio: 1;
    border-style: solid;
    animation-duration: 70s;
}

.orbit--two {
    width: 50%;
    aspect-ratio: 1;
    border-color: rgba(255, 255, 255, 0.18);
    animation-duration: 90s;
    animation-direction: reverse;
}

.orbit--three {
    width: 62%;
    aspect-ratio: 1;
    border-style: dashed;
    animation-duration: 110s;
}

.orbit--four {
    width: 74%;
    aspect-ratio: 1;
    border-color: rgba(255, 255, 255, 0.14);
    animation-duration: 130s;
    animation-direction: reverse;
}

.orbit--five {
    width: 88%;
    aspect-ratio: 1;
    border-style: dashed;
    animation-duration: 150s;
}

.solar-core {
    display: grid;
    width: clamp(96px, 10vw, 132px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 30%, rgba(255, 244, 214, 0.98) 0 10%, rgba(255, 181, 74, 0.96) 28%, rgba(255, 148, 20, 0.78) 52%, rgba(255, 108, 0, 0.28) 74%, transparent 100%);
    box-shadow:
        0 0 34px rgba(255, 180, 74, 0.52),
        0 0 96px rgba(255, 148, 20, 0.46),
        0 0 170px rgba(255, 108, 0, 0.24);
    z-index: 5;
    animation: sun-pulse 6s ease-in-out infinite;
}

.solar-core::before {
    position: absolute;
    inset: -42%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 148, 20, 0.28), rgba(255, 148, 20, 0.1) 42%, transparent 72%);
    content: "";
    filter: blur(12px);
    z-index: -1;
}

.solar-core img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.26));
    opacity: 0.95;
}

.orbit-rail {
    border-radius: 50%;
    pointer-events: none;
    animation: orbit-rotate var(--rail-dur, 80s) linear infinite;
    animation-delay: var(--rail-delay, 0s);
    animation-direction: var(--rail-dir, normal);
    will-change: transform;
}

.orbit-rail--art {
    width: 88%;
    aspect-ratio: 1;
    --rail-dur: 140s;
    --rail-delay: 0s;
}

.orbit-rail--marketing {
    width: 74%;
    aspect-ratio: 1;
    --rail-dur: 110s;
    --rail-dir: reverse;
    --rail-delay: -88s;
}

.orbit-rail--management {
    width: 62%;
    aspect-ratio: 1;
    --rail-dur: 90s;
    --rail-delay: -36s;
}

.orbit-rail--production {
    width: 50%;
    aspect-ratio: 1;
    --rail-dur: 70s;
    --rail-dir: reverse;
    --rail-delay: -28s;
}

.orbit-rail--finance {
    width: 38%;
    aspect-ratio: 1;
    --rail-dur: 55s;
    --rail-delay: -44s;
}

@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-counter {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes satellite-orbit {
    from { transform: rotate(0deg) translateX(var(--sat-radius, 66px)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--sat-radius, 66px)) rotate(-360deg); }
}

@keyframes sun-pulse {
    0%, 100% {
        box-shadow:
            0 0 34px rgba(255, 180, 74, 0.52),
            0 0 96px rgba(255, 148, 20, 0.46),
            0 0 170px rgba(255, 108, 0, 0.24);
    }
    50% {
        box-shadow:
            0 0 48px rgba(255, 210, 116, 0.68),
            0 0 126px rgba(255, 148, 20, 0.58),
            0 0 220px rgba(255, 108, 0, 0.32);
    }
}

.planet {
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 500;
    pointer-events: auto;
    z-index: 4;
    outline: 0;
    animation: orbit-counter var(--rail-dur, 80s) linear infinite;
    animation-delay: var(--rail-delay, 0s);
    animation-direction: var(--rail-dir, normal);
    will-change: transform;
}

.planet span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px 9px 9px;
    border: 1px solid var(--planet-line, rgba(255, 255, 255, 0.22));
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        var(--planet-bg, rgba(10, 11, 11, 0.78));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.36),
        0 0 30px var(--planet-glow, rgba(255, 255, 255, 0.08));
    font-size: 10.5px;
    white-space: nowrap;
}

.planet span::before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--planet-dot, rgba(255, 255, 255, 0.72));
    box-shadow: 0 0 16px var(--planet-glow, rgba(255, 255, 255, 0.08));
    content: "";
    flex: 0 0 auto;
}

.planet--art { --planet-color: var(--cp-color-art); --planet-bg: rgba(48, 14, 11, 0.72); --planet-line: rgba(192, 57, 43, 0.42); --planet-dot: rgba(192, 57, 43, 0.82); --planet-glow: rgba(192, 57, 43, 0.22); }
.planet--marketing { --planet-color: var(--cp-color-marketing); --planet-bg: rgba(15, 25, 54, 0.72); --planet-line: rgba(66, 103, 178, 0.42); --planet-dot: rgba(66, 103, 178, 0.86); --planet-glow: rgba(66, 103, 178, 0.24); }
.planet--management { --planet-color: var(--cp-color-management); --planet-bg: rgba(34, 31, 27, 0.74); --planet-line: rgba(154, 143, 125, 0.4); --planet-dot: rgba(154, 143, 125, 0.84); --planet-glow: rgba(154, 143, 125, 0.2); }
.planet--production { --planet-color: var(--cp-color-production); --planet-bg: rgba(18, 36, 18, 0.72); --planet-line: rgba(94, 142, 62, 0.42); --planet-dot: rgba(94, 142, 62, 0.86); --planet-glow: rgba(94, 142, 62, 0.22); }
.planet--finance { --planet-color: var(--cp-color-finance); --planet-bg: rgba(38, 37, 34, 0.72); --planet-line: rgba(216, 210, 196, 0.34); --planet-dot: rgba(216, 210, 196, 0.82); --planet-glow: rgba(216, 210, 196, 0.16); }

.satellite {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px 4px 5px;
    border: 1px solid var(--sat-line, rgba(255, 255, 255, 0.2));
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        var(--sat-bg, rgba(8, 9, 9, 0.68));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.84);
    font-size: 10.5px;
    font-style: normal;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transform-origin: 0 0;
    outline: 0;
    animation: satellite-orbit var(--sat-dur, 18s) linear infinite;
    animation-delay: var(--sat-delay, 0s);
    animation-direction: var(--sat-dir, normal);
    will-change: transform;
    z-index: -1;
}

.planet[data-tooltip]::after,
.satellite[data-tooltip]::after {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    width: max-content;
    max-width: min(250px, 34vw);
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(8, 8, 7, 0.82);
    color: rgba(255, 255, 255, 0.88);
    content: attr(data-tooltip);
    font-family: var(--cp-font);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.35;
    text-align: left;
    text-transform: none;
    white-space: normal;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .22s, transform .22s;
    z-index: 20;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.planet[data-tooltip]:hover::after,
.planet[data-tooltip]:focus-visible::after,
.satellite[data-tooltip]:hover::after,
.satellite[data-tooltip]:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.satellite::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sat-color, rgba(255, 255, 255, 0.62));
    content: "";
    flex: 0 0 auto;
}

.satellite--instagram {
    --sat-color: linear-gradient(45deg, #f58529, #dd2a7b 50%, #8134af);
    --sat-bg: rgba(40, 15, 35, 0.72);
    --sat-line: rgba(221, 42, 123, 0.38);
    --sat-dur: 18s;
    --sat-radius: 78px;
}

.satellite--meta {
    --sat-color: #4267b2;
    --sat-bg: rgba(15, 25, 54, 0.72);
    --sat-line: rgba(66, 103, 178, 0.38);
    --sat-dur: 22s;
    --sat-radius: 72px;
}

.satellite--analytics {
    --sat-color: #e37400;
    --sat-bg: rgba(42, 24, 8, 0.72);
    --sat-line: rgba(227, 116, 0, 0.34);
    --sat-dur: 16s;
    --sat-radius: 70px;
    --sat-delay: -4s;
}

.satellite--shopify {
    --sat-color: #5e8e3e;
    --sat-bg: rgba(18, 36, 18, 0.72);
    --sat-line: rgba(94, 142, 62, 0.38);
    --sat-dur: 20s;
    --sat-radius: 74px;
    --sat-dir: reverse;
}

.satellite--pos {
    --sat-color: #191a17;
    --sat-bg: rgba(35, 34, 31, 0.72);
    --sat-line: rgba(216, 210, 196, 0.26);
    --sat-dur: 16s;
    --sat-radius: 64px;
    --sat-delay: -8s;
}

/* 7. Concept visuals */
.concept-panel,
.planet-map,
.connector-system,
.gravity-field,
.collision-map,
.brand-universe,
.decision-panel {
    min-height: min(60vh, 560px);
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 148, 20, 0.16), transparent 30%),
        radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.08), transparent 22%);
    filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.28));
}

.concept-panel {
    display: grid;
    place-items: center;
    text-align: center;
    align-content: center;
    gap: 18px;
}

.concept-panel span {
    position: relative;
    display: grid;
    width: min(32vw, 220px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 30%, rgba(255, 244, 214, 0.98) 0 10%, rgba(255, 181, 74, 0.96) 28%, rgba(255, 148, 20, 0.78) 52%, rgba(255, 108, 0, 0.28) 74%, transparent 100%);
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow:
        0 0 48px rgba(255, 210, 116, 0.58),
        0 0 126px rgba(255, 148, 20, 0.5),
        0 0 220px rgba(255, 108, 0, 0.28);
    animation: visual-float 7s ease-in-out infinite;
}

.concept-panel span::before {
    position: absolute;
    inset: -42%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 148, 20, 0.28), rgba(255, 148, 20, 0.1) 42%, transparent 72%);
    content: "";
    filter: blur(12px);
    z-index: -1;
}

.concept-panel strong {
    color: var(--cp-color-muted);
    font-weight: 400;
}

.planet-map,
.connector-system,
.gravity-field,
.collision-map,
.brand-universe,
.decision-panel {
    position: relative;
    overflow: visible;
}

.planet-node,
.connector-system span,
.connector-planet,
.collision-core,
.collision-planet {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--body-color, rgba(255, 255, 255, 0.34));
    color: rgba(255, 255, 255, 0.86);
    font-weight: 500;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.planet-node {
    width: 110px;
    aspect-ratio: 1;
    --body-color: rgba(66, 103, 178, 0.52);
    padding: 10px;
    font-size: 11px;
    animation: visual-float 7s ease-in-out infinite;
}

.planet-node--large {
    width: 166px;
    font-size: 12px;
    left: 16%;
    top: 36%;
    --body-color: rgba(154, 143, 125, 0.58);
}

.planet-node:not(.planet-node--large):nth-child(2) {
    left: 54%;
    top: 14%;
    --body-color: rgba(66, 103, 178, 0.52);
    animation-delay: -1s;
}

.planet-node--small {
    width: 78px;
    left: 70%;
    top: 56%;
    --body-color: rgba(192, 57, 43, 0.5);
    animation-delay: -2s;
}

.planet-node:nth-child(4) {
    left: 28%;
    top: 68%;
    --body-color: rgba(94, 142, 62, 0.54);
    animation-delay: -3s;
}

.planet-node:nth-child(5) {
    left: 68%;
    top: 26%;
    --body-color: rgba(216, 210, 196, 0.42);
    animation-delay: -4s;
}

.connector-planet {
    width: 150px;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    --body-color: rgba(66, 103, 178, 0.52);
    padding: 14px;
    font-size: 11px;
    box-shadow: 0 0 80px rgba(66, 103, 178, 0.34);
}

.connector-system span {
    width: auto;
    min-width: 84px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 999px;
    font-size: 10.5px;
    animation: visual-float 6s ease-in-out infinite;
}

.connector-system span:nth-child(2) {
    left: 18%;
    top: 18%;
}

.connector-system span:nth-child(3) {
    right: 18%;
    top: 20%;
}

.connector-system span:nth-child(4) {
    left: 20%;
    bottom: 18%;
}

.connector-system span:nth-child(5) {
    right: 18%;
    bottom: 18%;
}

.gravity-field {
    display: grid;
    place-items: center;
}

.gravity-field span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 146px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.68);
    color: rgba(12, 13, 12, 0.84);
    font-size: 44px;
    font-weight: 500;
    box-shadow: 0 0 110px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.gravity-field i {
    position: absolute;
    border: 1px solid rgba(255, 148, 20, 0.32);
    border-radius: 50%;
    animation: ring-rotate-open 32s linear infinite;
}

.gravity-field i:nth-child(2) {
    width: 34%;
    aspect-ratio: 1;
}

.gravity-field i:nth-child(3) {
    width: 58%;
    aspect-ratio: 1;
}

.gravity-field i:nth-child(4) {
    width: 82%;
    aspect-ratio: 1;
}

.collision-core {
    width: 132px;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 38% 30%, #fff2d7, var(--cp-color-orange) 44%, #d96d00 100%);
    color: #1c1308;
    font-size: 11px;
    box-shadow: 0 0 100px rgba(255, 148, 20, 0.5);
}

.collision-planet {
    width: 112px;
    aspect-ratio: 1;
    padding: 12px;
    font-size: 10.5px;
    animation: visual-float 6s ease-in-out infinite;
}

.collision-planet--one {
    left: 30%;
    top: 38%;
}

.collision-planet--two {
    right: 28%;
    bottom: 32%;
}

.collision-line {
    position: absolute;
    left: 32%;
    top: 48%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 148, 20, 0.9), transparent);
    transform: rotate(-18deg);
    filter: blur(.2px);
}

.brand-system {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.9), var(--system-color, rgba(255, 255, 255, 0.56)) 48%, rgba(255, 255, 255, 0.08) 100%);
    box-shadow: 0 0 70px var(--system-glow, rgba(255, 255, 255, 0.22));
    animation: visual-float 8s ease-in-out infinite;
}

.brand-system::before,
.brand-system::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    content: "";
}

.brand-system::before {
    inset: -42%;
}

.brand-system::after {
    inset: -78%;
    border-color: var(--system-ring, rgba(255, 255, 255, 0.16));
    border-style: dashed;
}

.brand-system i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
    animation: mini-orbit 18s linear infinite;
}

.brand-system i:nth-child(2) {
    width: 8px;
    animation-duration: 24s;
    animation-direction: reverse;
    --mini-radius: 52px;
}

.brand-system i:nth-child(3) {
    width: 6px;
    animation-duration: 14s;
    --mini-radius: 72px;
}

.brand-system--main {
    width: 142px;
    aspect-ratio: 1;
    left: 12%;
    top: 42%;
    --system-color: rgba(154, 143, 125, 0.78);
    --system-glow: rgba(154, 143, 125, 0.24);
    --system-ring: rgba(154, 143, 125, 0.2);
}

.brand-system--bright {
    width: 176px;
    aspect-ratio: 1;
    right: 16%;
    top: 22%;
    --system-color: rgba(255, 148, 20, 0.9);
    --system-glow: rgba(255, 148, 20, 0.68);
    --system-ring: rgba(255, 148, 20, 0.24);
    box-shadow: 0 0 120px var(--system-glow);
    animation: universe-bright 6s ease-in-out infinite;
}

.brand-system--fading {
    width: 108px;
    aspect-ratio: 1;
    right: 34%;
    bottom: 20%;
    opacity: 0.34;
    filter: grayscale(.35);
    --system-color: rgba(216, 210, 196, 0.38);
    --system-glow: rgba(255, 255, 255, 0.14);
    --system-ring: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 32px var(--system-glow);
    animation: universe-fade 6s ease-in-out infinite;
}

.brand-system--small {
    width: 64px;
    aspect-ratio: 1;
    left: 44%;
    top: 18%;
    opacity: 0.72;
    --system-color: rgba(66, 103, 178, 0.72);
    --system-glow: rgba(66, 103, 178, 0.24);
    --system-ring: rgba(66, 103, 178, 0.16);
    animation-delay: -3s;
}

.brand-system--distant {
    width: 44px;
    aspect-ratio: 1;
    left: 64%;
    bottom: 12%;
    opacity: 0.52;
    --system-color: rgba(94, 142, 62, 0.62);
    --system-glow: rgba(94, 142, 62, 0.18);
    --system-ring: rgba(94, 142, 62, 0.14);
    animation-delay: -4.2s;
}

.consumer-path {
    position: absolute;
    left: 25%;
    top: 55%;
    width: 46%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), rgba(255, 148, 20, 0.82), transparent);
    transform: rotate(-20deg);
    filter: drop-shadow(0 0 18px rgba(255, 148, 20, 0.52));
}

.consumer-path::after {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.92);
    content: "";
    transform: translateY(-50%);
    animation: consumer-shift 3.8s ease-in-out infinite;
}

@keyframes mini-orbit {
    from { transform: rotate(0deg) translateX(var(--mini-radius, 42px)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--mini-radius, 42px)) rotate(-360deg); }
}

@keyframes consumer-shift {
    0%, 100% { right: 46%; opacity: .35; }
    55% { right: 8%; opacity: 1; }
}

.decision-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 4vw, 54px);
    align-items: center;
    justify-items: center;
    padding: 0;
    background: none;
    filter: none;
}

.decision-system {
    position: relative;
    width: min(34vw, 260px);
    aspect-ratio: 1;
    min-width: 230px;
}

.decision-system__orbit {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.decision-system__orbit::after {
    position: absolute;
    inset: 17%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    content: "";
}

.decision-system__sun {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 72px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 38% 30%, rgba(255, 244, 214, 0.98), rgba(255, 148, 20, 0.78) 50%, rgba(255, 108, 0, 0.18) 100%);
    box-shadow: 0 0 72px rgba(255, 148, 20, 0.38);
    transform: translate(-50%, -50%);
}

.decision-system i {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    animation: decision-orbit 16s linear infinite;
}

.decision-system i:nth-of-type(2) {
    width: 9px;
    animation-duration: 22s;
    animation-direction: reverse;
    --decision-radius: 92px;
}

.decision-system i:nth-of-type(3) {
    width: 7px;
    opacity: .62;
    animation-duration: 28s;
    --decision-radius: 112px;
}

.decision-system strong,
.decision-system small {
    position: absolute;
    left: 50%;
    width: min(220px, 100%);
    text-align: center;
    transform: translateX(-50%);
}

.decision-system strong {
    bottom: -34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.decision-system small {
    bottom: -58px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11.5px;
    line-height: 1.35;
    font-weight: 300;
}

.decision-system--stable {
    animation: visual-float 7s ease-in-out infinite;
}

.decision-system--hit {
    opacity: .88;
    filter: grayscale(.35);
    transform: translateY(10px) scale(.88);
}

.decision-system--hit .decision-system__orbit {
    inset: 16%;
    transform: rotate(-24deg) scale(.92);
    border-color: rgba(255, 255, 255, 0.18);
    border-style: dashed;
    clip-path: polygon(0 0, 70% 0, 70% 100%, 0 100%);
}

.decision-system--hit .decision-system__orbit::after {
    inset: -22%;
    border-color: rgba(255, 255, 255, 0.2);
    border-style: dashed;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 28% 100%);
    transform: rotate(68deg) scale(.84);
}

.decision-system--hit i {
    opacity: .48;
    background: rgba(255, 255, 255, 0.46);
    animation: broken-decision-orbit 18s linear infinite;
}

.decision-system--hit i:nth-of-type(2) {
    top: 67%;
    left: 62%;
    animation-duration: 26s;
}

.decision-system--hit i:nth-of-type(3) {
    left: 42%;
    top: 44%;
    width: 7px;
    opacity: .54;
    animation: chaos-decision-orbit 9s ease-in-out infinite;
    --decision-radius: 82px;
}

.decision-system--hit .decision-system__sun {
    width: 54px;
    background:
        radial-gradient(circle at 38% 30%, rgba(255, 255, 255, 0.62), rgba(142, 134, 118, 0.52) 48%, rgba(42, 43, 42, 0.24) 100%);
    box-shadow:
        0 0 28px rgba(255, 255, 255, 0.16),
        0 0 64px rgba(216, 210, 196, 0.12);
    animation: shrinking-decision-sun 7s ease-in-out infinite;
}

.decision-system--hit .decision-system__sun::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.34);
    content: "";
    transform: translate(-50%, -50%) rotate(-20deg);
}

.decision-system--hit strong {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.decision-system--hit small {
    color: rgba(255, 255, 255, 0.66);
}

@keyframes visual-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}

@keyframes traction-glow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    55% {
        opacity: 1;
        transform: scaleX(1.08);
    }
    100% {
        opacity: .82;
        transform: scaleX(1);
    }
}

@keyframes close-orbit {
    from { transform: translate(-50%, -50%) rotate(-18deg); }
    to { transform: translate(-50%, -50%) rotate(342deg); }
}

@keyframes universe-bright {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 0 90px rgba(255, 148, 20, 0.52);
    }
    50% {
        transform: translate3d(0, -10px, 0) scale(1.08);
        box-shadow: 0 0 150px rgba(255, 148, 20, 0.82);
    }
}

@keyframes universe-fade {
    0%, 100% {
        opacity: .42;
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        opacity: .18;
        transform: translate3d(0, 8px, 0) scale(.9);
    }
}

@keyframes decision-orbit {
    from { transform: rotate(0deg) translateX(var(--decision-radius, 70px)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--decision-radius, 70px)) rotate(-360deg); }
}

@keyframes broken-decision-orbit {
    from { transform: rotate(0deg) translateX(var(--decision-radius, 54px)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--decision-radius, 54px)) rotate(-360deg); }
}

@keyframes chaos-decision-orbit {
    0% { transform: rotate(0deg) translateX(42px) rotate(0deg) scale(1); }
    28% { transform: rotate(128deg) translateX(96px) rotate(-80deg) scale(.82); }
    48% { transform: rotate(210deg) translateX(26px) rotate(-160deg) scale(1.18); }
    68% { transform: rotate(276deg) translateX(88px) rotate(-240deg) scale(.72); }
    100% { transform: rotate(360deg) translateX(42px) rotate(-360deg) scale(1); }
}

@keyframes shrinking-decision-sun {
    0%, 100% {
        opacity: .88;
        transform: translate(-50%, -50%) scale(1);
    }
    54% {
        opacity: .62;
        transform: translate(-50%, -50%) scale(.76);
    }
}

@keyframes ring-rotate-open {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 8. Responsive */
@media (max-width: 900px) {
    body {
        overflow: hidden;
    }

    .deck {
        height: 100svh;
        max-height: 100svh;
        overflow: hidden;
    }

    .slide {
        grid-template-columns: 1fr;
        gap: var(--cp-space-2);
        align-content: start;
        padding: var(--cp-space-2) 0;
    }

    .slide-copy {
        max-width: 560px;
        padding-left: 0;
    }

    h1,
    h2 {
        margin-bottom: 14px;
    }

    p {
        max-width: 38ch;
        line-height: 1.46;
    }

    .eyebrow {
        margin-bottom: 11px;
    }

    .slide-copy__split {
        gap: 8px;
    }

    .slide--close {
        min-height: 100svh;
        align-content: center;
        justify-items: center;
        padding: 0;
    }

    .slide--close .slide-copy {
        display: grid;
        width: 100%;
        min-height: 100svh;
        place-content: center;
        justify-items: center;
        text-align: center;
    }

    .solar-visual,
    .concept-panel,
    .planet-map,
    .connector-system,
    .gravity-field,
    .collision-map,
    .brand-universe,
    .decision-panel {
        min-height: 380px;
    }
}

@media (max-width: 560px) {
    :root {
        --cp-size-title: 28px;
        --cp-size-heading: 25px;
        --cp-size-copy: 12.5px;
    }

    .deck {
        height: 100dvh;
        max-height: 100dvh;
        padding: 12px;
        grid-template-rows: auto minmax(0, 1fr) auto;
    }

    .deck-header {
        min-height: 30px;
    }

    .deck-brand {
        gap: 8px;
        font-size: 12px;
    }

    .deck-brand img {
        width: 26px;
        height: 26px;
    }

    .deck-lang {
        min-height: 28px;
        padding: 2px;
    }

    .deck-lang a {
        min-width: 27px;
        min-height: 22px;
        font-size: 9.5px;
    }

    .slide {
        gap: 10px;
        padding: 10px 0 2px;
    }

    .slide-copy {
        max-width: 31ch;
    }

    h1,
    h2 {
        margin-bottom: 9px;
        line-height: 1.05;
        letter-spacing: -0.018em;
    }

    p {
        max-width: 32ch;
        line-height: 1.38;
        letter-spacing: 0;
    }

    .eyebrow {
        gap: 7px;
        margin-bottom: 7px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .eyebrow::before {
        width: 16px;
    }

    .slide-copy__split {
        gap: 6px;
    }

    .slide--close {
        min-height: 100dvh;
    }

    .slide--close .slide-copy {
        width: 100vw;
        min-height: 100dvh;
        max-width: 100vw;
        padding: 0 22px;
    }

    .deck-controls {
        align-items: center;
    }

    .deck-nav {
        width: 40px;
        min-height: 40px;
        padding: 0 var(--cp-space-2);
    }

    .deck-dots {
        max-width: 180px;
    }

    .solar-visual,
    .concept-panel,
    .planet-map,
    .connector-system,
    .gravity-field,
    .collision-map,
    .brand-universe,
    .decision-panel {
        min-height: 330px;
    }

    .collision-map {
        min-height: 360px;
    }

    .collision-core {
        width: 102px;
    }

    .collision-planet {
        width: 82px;
        padding: 9px;
        font-size: 9px;
    }

    .collision-planet--one {
        left: 10%;
        top: 18%;
    }

    .collision-planet--two {
        right: 8%;
        bottom: 13%;
    }

    .collision-line {
        left: 18%;
        top: 50%;
        width: 64%;
        transform: rotate(-24deg);
    }

    .solar-core {
        width: 112px;
    }

    .planet {
        font-size: 11px;
    }

    .planet span {
        padding: 7px 10px 7px 7px;
    }

    .planet span::before {
        width: 11px;
        height: 11px;
    }

    .satellite {
        font-size: 9px;
        padding: 3px 7px 3px 4px;
    }

    .satellite--instagram,
    .satellite--meta,
    .satellite--analytics,
    .satellite--shopify,
    .satellite--pos {
        --sat-radius: 54px;
    }

    .decision-panel {
        grid-template-columns: 1fr;
    }
}
