/* ============================================
   continua.st — Inflated Tech Playground
   ============================================ */

/* --- Color Variables --- */
:root {
    --primary-burnt-orange: #E8742A;
    --secondary-amber: #D4943E;
    --dark-base: #1A0E0A;
    --deep-charcoal: #1C1210;
    --warm-cream: #F2D6B8;
    --neon-accent: #FF9132;
    --circuit-dim: #5A3520;
    --highlight-glow: #FFB366;
    --pure-dark: #110A06;
    --muted-amber: #D4843A;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--dark-base);
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.72;
    letter-spacing: 0.005em;
    color: var(--warm-cream);
    background-color: var(--dark-base);
    overflow-x: hidden;
}

/* --- Main Scroll Container --- */
#main-scroll {
    scroll-snap-type: y proximity;
    overflow-y: auto;
    height: 100vh;
    position: relative;
}

/* --- Spread Base --- */
.spread {
    min-height: 100vh;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* --- Navigation Strip --- */
#spread-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.nav-trace-line {
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.nav-pulse-line {
    animation: navPulse 3s ease-in-out infinite;
}

@keyframes navPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--circuit-dim) 70%);
    box-shadow:
        inset -2px -2px 4px rgba(0,0,0,0.4),
        inset 1px 1px 3px rgba(255,179,102,0.2),
        0 0 8px rgba(232,116,42,0.2);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.nav-dot.active {
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--primary-burnt-orange) 60%);
    box-shadow:
        inset -2px -2px 4px rgba(0,0,0,0.3),
        inset 1px 1px 3px rgba(255,179,102,0.4),
        0 0 20px rgba(255,145,50,0.5),
        0 0 40px rgba(255,145,50,0.2);
    transform: scale(1.2);
}

.nav-dot:hover {
    box-shadow:
        inset -2px -2px 4px rgba(0,0,0,0.3),
        inset 1px 1px 3px rgba(255,179,102,0.3),
        0 0 15px rgba(255,145,50,0.4),
        0 0 30px rgba(255,145,50,0.15);
}

/* ============================================
   SPREAD 1: The Cover
   ============================================ */
#spread-1 {
    background: radial-gradient(ellipse at center, var(--deep-charcoal) 0%, var(--dark-base) 60%, var(--pure-dark) 100%);
}

.circuit-starburst {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.circuit-starburst.visible {
    opacity: 1;
}

.circuit-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 0.8s ease-out;
}

.circuit-starburst.visible .circuit-path {
    stroke-dashoffset: 0;
}

.solder-pad {
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
}

.circuit-starburst.visible .solder-pad {
    opacity: 1;
}

.cover-perspective {
    perspective: 1200px;
    z-index: 2;
}

.cover-wordmark {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-stretch: 140%;
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--primary-burnt-orange);
    letter-spacing: -0.02em;
    text-shadow:
        0 0 40px rgba(232,116,42,0.5),
        0 0 80px rgba(232,116,42,0.2);
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 8s ease-in-out infinite, glow-pulse 4s ease-in-out infinite;
    animation-play-state: paused;
    user-select: none;
}

.cover-wordmark.inflated {
    opacity: 1;
    transform: scale(1);
    animation-play-state: running;
}

@keyframes float {
    0%, 100% { transform: rotateY(-3deg); }
    50% { transform: rotateY(3deg); }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow:
            0 0 30px rgba(232,116,42,0.5),
            0 0 60px rgba(232,116,42,0.2);
    }
    50% {
        text-shadow:
            0 0 60px rgba(232,116,42,0.6),
            0 0 100px rgba(232,116,42,0.3),
            0 0 140px rgba(232,116,42,0.1);
    }
}

.cover-chevron {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: chevron-bob 2s ease-in-out infinite;
    opacity: 0.6;
    z-index: 2;
}

@keyframes chevron-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Spread Dividers
   ============================================ */
.spread-divider {
    height: 4px;
    width: 100%;
    position: relative;
}

.divider-trace {
    width: 100%;
    height: 4px;
}

.divider-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 0.8s ease-out;
}

.spread-divider.visible .divider-line {
    stroke-dashoffset: 0;
}

/* ============================================
   SPREAD 2: The Concept Spread
   ============================================ */
#spread-2 {
    background: var(--dark-base);
}

.concept-layout {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    position: relative;
}

.concept-left {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-burnt-orange) 0%, #C4601E 50%, var(--secondary-amber) 100%);
    position: relative;
    overflow: hidden;
}

.concept-divider-trace {
    flex: 0 0 4px;
    position: relative;
    z-index: 5;
}

.concept-divider-trace svg {
    width: 4px;
    height: 100%;
}

.vert-trace {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 1s ease-out;
}

.vert-trace-glow {
    opacity: 0;
    animation: vert-pulse 3s ease-in-out infinite;
}

@keyframes vert-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}

#spread-2.in-view .vert-trace {
    stroke-dashoffset: 0;
}

#spread-2.in-view .vert-trace-glow {
    opacity: 0.5;
}

.concept-right {
    flex: 0 0 calc(40% - 4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background: var(--deep-charcoal);
}

.spread-heading {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-stretch: 140%;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    color: var(--primary-burnt-orange);
    letter-spacing: -0.02em;
    text-shadow:
        0 0 40px rgba(232,116,42,0.5),
        0 0 80px rgba(232,116,42,0.2);
    margin-bottom: 24px;
}

.body-text {
    color: var(--warm-cream);
    margin-bottom: 20px;
    max-width: 520px;
}

/* --- Inflated Torus (Concept Spread) --- */
.concept-shape-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
}

.inflated-torus {
    width: 100%;
    height: 100%;
    position: relative;
    animation: breathe 6s ease-in-out infinite;
}

.torus-core {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255,179,102,0.3), transparent 60%);
    border: 30px solid transparent;
    background-clip: padding-box;
}

.torus-ring {
    position: absolute;
    border-radius: 50%;
}

.torus-ring-1 {
    width: 260px;
    height: 260px;
    top: 10px;
    left: 10px;
    border: 40px solid transparent;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--primary-burnt-orange) 50%, #8B4513 85%, var(--circuit-dim)) padding-box;
    border-radius: 50%;
    box-shadow:
        inset -15px -15px 30px rgba(0,0,0,0.5),
        inset 10px 10px 20px rgba(255,179,102,0.2),
        0 0 50px rgba(232,116,42,0.4),
        0 8px 25px rgba(0,0,0,0.5);
    mask: radial-gradient(circle at center, transparent 30%, black 32%);
    -webkit-mask: radial-gradient(circle at center, transparent 30%, black 32%);
}

.torus-ring-2 {
    width: 220px;
    height: 220px;
    top: 30px;
    left: 30px;
    background: radial-gradient(circle at 30% 25%, rgba(255,179,102,0.15), transparent 50%);
    box-shadow: inset 0 0 30px rgba(232,116,42,0.1);
    mask: radial-gradient(circle at center, transparent 40%, black 45%, black 85%, transparent 90%);
    -webkit-mask: radial-gradient(circle at center, transparent 40%, black 45%, black 85%, transparent 90%);
}

.torus-ring-3 {
    width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    box-shadow: 0 0 60px rgba(232,116,42,0.2);
}

/* ============================================
   SPREAD 3: The Feature Grid
   ============================================ */
#spread-3 {
    background: radial-gradient(ellipse at center, var(--deep-charcoal) 0%, var(--dark-base) 70%);
    padding: 60px 40px;
}

.grid-heading {
    margin-bottom: 40px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2px;
    width: min(900px, 90vw);
    position: relative;
}

.grid-traces {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.grid-trace-line {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    transition: stroke-dashoffset 1s ease-out;
}

#spread-3.in-view .grid-trace-line {
    stroke-dashoffset: 0;
}

.grid-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    background: rgba(26,14,10,0.6);
    position: relative;
    z-index: 1;
    transition: background 0.3s ease;
}

.grid-cell:hover {
    background: rgba(36,20,14,0.8);
}

.grid-label {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-amber);
    opacity: 0.7;
    margin-top: 16px;
}

/* --- Inflated Shapes (Feature Grid) --- */
.inflated-sphere {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--primary-burnt-orange) 40%, #8B4513 80%, var(--circuit-dim) 100%);
    box-shadow:
        inset -20px -20px 40px rgba(0,0,0,0.4),
        inset 15px 15px 30px rgba(255,179,102,0.25),
        0 0 60px rgba(232,116,42,0.4),
        0 10px 30px rgba(0,0,0,0.5);
}

.inflated-cube {
    width: 100px;
    height: 100px;
    border-radius: 30%;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--secondary-amber) 45%, #8B4513 80%, var(--circuit-dim) 100%);
    box-shadow:
        inset -18px -18px 35px rgba(0,0,0,0.45),
        inset 12px 12px 25px rgba(255,179,102,0.2),
        0 0 50px rgba(212,148,62,0.35),
        0 8px 25px rgba(0,0,0,0.5);
    transform: rotate(15deg);
}

.inflated-torus-small {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--neon-accent) 40%, #B85A1E 75%, var(--circuit-dim) 100%);
    box-shadow:
        inset -15px -15px 30px rgba(0,0,0,0.4),
        inset 10px 10px 20px rgba(255,179,102,0.3),
        0 0 55px rgba(255,145,50,0.4),
        0 8px 25px rgba(0,0,0,0.5);
    position: relative;
}

.inflated-torus-small::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--dark-base) 60%, #8B4513 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.6);
}

.inflated-cylinder {
    width: 80px;
    height: 120px;
    border-radius: 40px / 20px;
    background: radial-gradient(ellipse at 35% 25%, var(--highlight-glow), var(--primary-burnt-orange) 45%, #8B4513 80%, var(--circuit-dim) 100%);
    box-shadow:
        inset -15px -15px 30px rgba(0,0,0,0.45),
        inset 10px 10px 20px rgba(255,179,102,0.2),
        0 0 50px rgba(232,116,42,0.35),
        0 8px 25px rgba(0,0,0,0.5);
}

.inflated-cone {
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-bottom: 120px solid var(--primary-burnt-orange);
    border-radius: 0 0 10px 10px;
    filter: drop-shadow(0 0 30px rgba(232,116,42,0.4));
    position: relative;
}

.inflated-cone::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -35px;
    width: 70px;
    height: 100px;
    background: radial-gradient(ellipse at 40% 20%, rgba(255,179,102,0.4), transparent 60%);
    border-radius: 50%;
}

.inflated-dodecahedron {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--neon-accent) 35%, var(--primary-burnt-orange) 55%, #8B4513 80%, var(--circuit-dim) 100%);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 95%, 50% 100%, 20% 95%, 0% 70%, 0% 35%, 20% 10%);
    box-shadow: 0 0 50px rgba(255,145,50,0.4);
    position: relative;
}

.inflated-dodecahedron::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: radial-gradient(circle at 35% 30%, rgba(255,179,102,0.3), transparent 60%);
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 95%, 50% 100%, 20% 95%, 0% 70%, 0% 35%, 20% 10%);
}

/* --- Breathing Animation --- */
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.shape-breathe {
    animation: breathe 6s ease-in-out infinite;
}

.grid-cell:nth-child(2) .shape-breathe { animation-delay: -1s; }
.grid-cell:nth-child(3) .shape-breathe { animation-delay: -2s; }
.grid-cell:nth-child(4) .shape-breathe { animation-delay: -0.5s; }
.grid-cell:nth-child(5) .shape-breathe { animation-delay: -3s; }
.grid-cell:nth-child(6) .shape-breathe { animation-delay: -1.5s; }
.grid-cell:nth-child(7) .shape-breathe { animation-delay: -2.5s; }

/* ============================================
   SPREAD 4: The Narrative Spread
   ============================================ */
#spread-4 {
    background: var(--pure-dark);
}

.narrative-circuit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.narrative-circuit-svg {
    width: 100%;
    height: 100%;
}

.narrative-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 40px;
}

.narrative-text {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    line-height: 1.8;
    color: var(--warm-cream);
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.narrative-text.inflated {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   SPREAD 5: The Closer
   ============================================ */
#spread-5 {
    background: radial-gradient(ellipse at center, var(--deep-charcoal) 0%, var(--dark-base) 60%, var(--pure-dark) 100%);
}

.closer-constellation {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
}

.orbit-1 { animation: orbit 20s linear infinite; }
.orbit-2 { animation: orbit 25s linear infinite reverse; }
.orbit-3 { animation: orbit 18s linear infinite; animation-delay: -5s; }
.orbit-4 { animation: orbit 22s linear infinite reverse; animation-delay: -8s; }
.orbit-5 { animation: orbit 30s linear infinite; animation-delay: -3s; }
.orbit-6 { animation: orbit 16s linear infinite reverse; animation-delay: -10s; }
.orbit-7 { animation: orbit 24s linear infinite; animation-delay: -7s; }
.orbit-8 { animation: orbit 28s linear infinite reverse; animation-delay: -12s; }

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}

.orbit-2, .orbit-4 {
    animation-name: orbit-2;
}

@keyframes orbit-2 {
    0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    100% { transform: rotate(-360deg) translateX(120px) rotate(360deg); }
}

.orbit-5, .orbit-7 {
    animation-name: orbit-3;
}

@keyframes orbit-3 {
    0% { transform: rotate(0deg) translateX(190px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(190px) rotate(-360deg); }
}

.orbit-6, .orbit-8 {
    animation-name: orbit-4;
}

@keyframes orbit-4 {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(-360deg) translateX(140px) rotate(360deg); }
}

.mini-sphere {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--primary-burnt-orange) 50%, #8B4513 90%);
    box-shadow:
        inset -3px -3px 6px rgba(0,0,0,0.4),
        inset 2px 2px 4px rgba(255,179,102,0.3),
        0 0 12px rgba(232,116,42,0.4);
    animation: breathe 5s ease-in-out infinite;
}

.mini-sphere.s2 { width: 12px; height: 12px; animation-delay: -1s; }
.mini-sphere.s3 { width: 20px; height: 20px; animation-delay: -2s; }
.mini-sphere.s4 { width: 10px; height: 10px; animation-delay: -3s; }

.mini-cube {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: radial-gradient(circle at 35% 30%, var(--highlight-glow), var(--secondary-amber) 50%, #8B4513 90%);
    box-shadow:
        inset -2px -2px 4px rgba(0,0,0,0.4),
        inset 1px 1px 3px rgba(255,179,102,0.2),
        0 0 10px rgba(212,148,62,0.4);
    animation: breathe 6s ease-in-out infinite;
    animation-delay: -0.5s;
}

.mini-cube.s2 { width: 10px; height: 10px; border-radius: 3px; animation-delay: -1.5s; }
.mini-cube.s3 { width: 18px; height: 18px; border-radius: 5px; animation-delay: -2.5s; }
.mini-cube.s4 { width: 8px; height: 8px; border-radius: 2px; animation-delay: -3.5s; }

.closer-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.closer-wordmark {
    font-family: 'Anybody', sans-serif;
    font-weight: 800;
    font-stretch: 140%;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--primary-burnt-orange);
    letter-spacing: -0.02em;
    text-shadow:
        0 0 40px rgba(232,116,42,0.5),
        0 0 80px rgba(232,116,42,0.2);
    animation: glow-pulse 4s ease-in-out infinite;
    margin-bottom: 16px;
}

.closer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--warm-cream);
    opacity: 0.8;
    margin-bottom: 20px;
}

.closer-trace-underline {
    width: 200px;
    margin: 0 auto;
}

.closer-trace-underline svg {
    width: 100%;
    height: 4px;
}

.closer-trace-glow {
    opacity: 0;
    animation: vert-pulse 3s ease-in-out infinite;
}

/* ============================================
   Reveal Animations
   ============================================ */
.reveal-element {
    opacity: 0;
    transform: scale(0) translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ============================================
   Dot Pattern Background
   ============================================ */
.spread::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(90,53,32,0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

#spread-1::before, #spread-4::before {
    opacity: 0.5;
}

/* ============================================
   Responsive / Mobile
   ============================================ */
@media (max-width: 768px) {
    #spread-nav {
        position: fixed;
        right: auto;
        top: auto;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 16px;
    }

    .nav-trace-line {
        display: none;
    }

    .concept-layout {
        flex-direction: column;
    }

    .concept-left {
        flex: none;
        height: 50vh;
    }

    .concept-divider-trace {
        display: none;
    }

    .concept-right {
        flex: none;
        padding: 40px 24px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .inflated-sphere,
    .inflated-cube,
    .inflated-torus-small,
    .inflated-cylinder,
    .inflated-dodecahedron {
        transform: scale(0.8);
    }

    .inflated-cone {
        border-left-width: 40px;
        border-right-width: 40px;
        border-bottom-width: 90px;
    }

    .closer-constellation {
        width: 300px;
        height: 300px;
    }

    .narrative-content {
        padding: 60px 24px;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .concept-shape-wrapper {
        width: 200px;
        height: 200px;
    }

    .closer-constellation {
        width: 240px;
        height: 240px;
    }
}
