/* ==========================================================================
   moot.ing - hexagonal pixel-art communication platform
   Palette: pastel-cool, violet-rose chromatic axis
   ========================================================================== */

:root {
    --bg-primary:     #F0F4FF; /* honeydew mist */
    --bg-secondary:   #EDE4F7; /* lavender cream */
    --accent-primary: #5B4FCF; /* violet pulse */
    --accent-rose:    #E85D75; /* rose petal */
    --accent-mint:    #7DDFB8; /* mint fizz */
    --accent-peach:   #FFB88C; /* peach glow */
    --accent-sky:     #89CFF0; /* sky bubble */
    --text-primary:   #3D3270; /* deep indigo */
    --text-secondary: #6B6199; /* slate violet */
    --hex-wire:       #C8BFE8; /* hex wire */

    --hex-clip: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    --hex-clip-soft: polygon(28% 2%, 72% 2%, 98% 50%, 72% 98%, 28% 98%, 2% 50%);

    --cell: 200px;
    --cell-h: 173.2px; /* 200 * sin(60deg) */
    --cell-half: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(ellipse at 20% 10%, rgba(137,207,240,0.18), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(232,93,117,0.12), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(125,223,184,0.16), transparent 60%),
        var(--bg-primary);
    min-height: 100vh;
}

/* --------------------------------------------------------------------------
   Floating hex bubble particles
   -------------------------------------------------------------------------- */
.hex-bubbles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.hex-bubble {
    position: absolute;
    width: 22px;
    height: 19px;
    clip-path: var(--hex-clip);
    opacity: 0.55;
    box-shadow: 0 0 12px rgba(91,79,207,0.15);
    will-change: transform;
}

@keyframes drift {
    0%   { transform: translate3d(0,0,0) rotate(0deg); }
    25%  { transform: translate3d(20px,-30px,0) rotate(15deg); }
    50%  { transform: translate3d(-15px,-60px,0) rotate(-10deg); }
    75%  { transform: translate3d(25px,-30px,0) rotate(20deg); }
    100% { transform: translate3d(0,0,0) rotate(0deg); }
}

/* --------------------------------------------------------------------------
   Section indicator
   -------------------------------------------------------------------------- */
.section-indicator {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 50;
}
.indicator-dot {
    width: 18px;
    height: 16px;
    display: block;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.indicator-dot svg {
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: var(--text-secondary);
    stroke-width: 8;
}
.indicator-dot.active svg {
    fill: var(--accent-primary);
    stroke: var(--accent-primary);
}
.indicator-dot:hover {
    transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   Generic sections / shared
   -------------------------------------------------------------------------- */
.hive-stage {
    position: relative;
    z-index: 2;
}
.hive-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.section-banner {
    text-align: center;
    margin-bottom: 32px;
    z-index: 3;
}
.section-title {
    font-family: 'Bungee', 'Nunito', sans-serif;
    font-size: clamp(40px, 7vw, 88px);
    color: var(--accent-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 14px;
    text-shadow:
        2px 2px 0 var(--hex-wire),
        4px 4px 0 rgba(91,79,207,0.12);
}
.section-sub {
    font-family: 'Righteous', 'Nunito', sans-serif;
    font-size: clamp(18px, 2vw, 32px);
    color: var(--accent-rose);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   SECTION 1: THE HIVE GATE
   -------------------------------------------------------------------------- */
.hive-gate {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4), transparent 65%),
        var(--bg-primary);
}

.ambient-comb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
    opacity: 0.55;
}
.ambient-row {
    display: flex;
    gap: 8px;
}
.ambient-row-b {
    margin-left: 100px;
}
.ambient-cell {
    width: 110px;
    height: 95px;
    clip-path: var(--hex-clip);
    background: transparent;
    border: 0;
    position: relative;
}
.ambient-cell::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: var(--hex-wire);
}
.ambient-cell::after {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: var(--hex-clip);
    background: var(--bg-primary);
}
.ambient-cell {
    animation: pulse 3.4s ease-in-out infinite;
}
.ambient-row:nth-child(2) .ambient-cell { animation-delay: 0.3s; }
.ambient-row:nth-child(3) .ambient-cell { animation-delay: 0.6s; }
.ambient-row:nth-child(4) .ambient-cell { animation-delay: 0.9s; }
.ambient-row:nth-child(5) .ambient-cell { animation-delay: 1.2s; }

@keyframes pulse {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 0.85; }
}

.gate-cluster {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 40px 60px;
}

.pixel-title {
    display: grid;
    gap: 2px;
    margin: 0 auto;
    /* number of columns set in JS */
    width: max-content;
    filter: drop-shadow(4px 4px 0 rgba(91,79,207,0.18));
}
.pixel-row {
    display: flex;
    gap: 2px;
}
.pixel-hex {
    width: 14px;
    height: 12px;
    clip-path: var(--hex-clip);
    background: transparent;
    transition: background-color 0.4s ease;
}
.pixel-hex.on {
    background: var(--accent-primary);
}
.pixel-hex.glow {
    background: var(--accent-rose);
    box-shadow: 0 0 6px rgba(232,93,117,0.6);
}
.pixel-hex.dot {
    background: var(--accent-peach);
}

@media (max-width: 720px) {
    .pixel-hex { width: 10px; height: 9px; }
}
@media (max-width: 480px) {
    .pixel-hex { width: 7px; height: 6px; }
}

.gate-tagline {
    margin-top: 36px;
    font-family: 'Righteous', sans-serif;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-secondary);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.tag-word {
    color: var(--text-primary);
}
.tag-dot {
    width: 14px;
    height: 12px;
    clip-path: var(--hex-clip);
    background: var(--accent-rose);
    display: inline-block;
}

.gate-shake {
    animation: shake 0.45s ease;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-5px); }
    40%      { transform: translateX(5px); }
    60%      { transform: translateX(-3px); }
    80%      { transform: translateX(3px); }
}

.hex-arrow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 52px;
    cursor: pointer;
    text-decoration: none;
    z-index: 4;
    animation: arrowBob 2.4s ease-in-out infinite;
}
.hex-arrow svg {
    width: 100%;
    height: 100%;
    fill: var(--accent-primary);
    transition: fill 0.3s;
}
.hex-arrow:hover svg {
    fill: var(--accent-rose);
}
.hex-arrow .arrow-glyph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-family: 'Bungee', sans-serif;
    font-size: 22px;
    pointer-events: none;
}
.hex-arrow .arrow-glyph::before {
    content: "v";
    transform: scaleX(1.4);
}

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

/* --------------------------------------------------------------------------
   SECTION 2: THE CRYSTALLIZATION CHAMBER
   -------------------------------------------------------------------------- */
.crystallization {
    background:
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding-top: 100px;
    padding-bottom: 100px;
}

.crystal-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-top: 24px;
    padding: 0 12px;
}
.cgrid-row {
    display: flex;
    gap: 8px;
}
.crow-2 {
    margin-left: 110px;
}
.cgrid-cell {
    --fc: transparent;
    --tx: var(--text-primary);
    width: 200px;
    height: 173px;
    clip-path: var(--hex-clip);
    position: relative;
    background: var(--hex-wire);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s;
    cursor: pointer;
}
.cgrid-cell::before {
    content: "";
    position: absolute;
    inset: 3px;
    clip-path: var(--hex-clip);
    background: var(--bg-primary);
    transition: background-color 0.7s ease;
}
.cgrid-cell[data-fill="1"]::before {
    background: var(--fc);
}
.cgrid-cell[data-fill="0"] {
    background: var(--hex-wire);
    opacity: 0.5;
}
.cgrid-cell[data-fill="0"]::before {
    background: var(--bg-primary);
}
.cgrid-cell .cell-text,
.cgrid-cell .cell-glyph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.cgrid-cell .cell-text {
    color: var(--tx);
    font-family: 'Righteous', sans-serif;
    font-size: 18px;
    text-transform: lowercase;
    text-align: center;
    padding: 0 30px;
}
.cgrid-cell .cell-text.big {
    font-family: 'Bungee', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cgrid-cell .cell-glyph {
    width: 70%;
    height: 70%;
    margin: auto;
}
.cgrid-cell:hover {
    filter: brightness(1.06) saturate(1.1);
    transform: translateY(-3px) scale(1.03);
}

.cgrid-cell.popping {
    animation: bubblePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cgrid-cell .pop-ring {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(91,79,207,0.4) 65%, transparent 75%);
    pointer-events: none;
    animation: popRing 0.55s ease-out forwards;
    z-index: 3;
}

@keyframes bubblePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.15); }
    70%  { transform: scale(0.97); }
    100% { transform: scale(1); }
}
@keyframes popRing {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.blob-to-hex {
    width: 70%;
    height: 70%;
    margin: auto;
    position: relative;
}
.blob {
    position: absolute;
    inset: 0;
    background: var(--accent-primary);
    border-radius: 50% 60% 40% 50%;
    animation: blobMorph 4s ease-in-out infinite;
}
@keyframes blobMorph {
    0%   { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: rotate(0deg) scale(0.95); }
    25%  { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; }
    50%  { border-radius: 28% 72% 28% 72% / 50% 50% 50% 50%; transform: rotate(60deg) scale(1.05);
           clip-path: var(--hex-clip);
    }
    75%  { border-radius: 40% 60% 50% 50% / 50% 50% 50% 50%; }
    100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; transform: rotate(0deg) scale(0.95); }
}

.chamber-narrative {
    margin-top: 50px;
    max-width: 640px;
    text-align: center;
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.7;
    padding: 0 24px;
    z-index: 3;
}
.chamber-narrative p::first-letter {
    font-family: 'Bungee', sans-serif;
    font-size: 36px;
    color: var(--accent-rose);
    margin-right: 4px;
    float: left;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   SECTION 3: THE HEX MOSAIC
   -------------------------------------------------------------------------- */
.hex-mosaic {
    background:
        radial-gradient(circle at 30% 20%, rgba(125,223,184,0.16), transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(232,93,117,0.14), transparent 55%),
        var(--bg-primary);
}

.mosaic-grid {
    --m-cell: 130px;
    --m-cell-h: 113px;
    --m-cell-half: 65px;
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 540px;
    margin: 0 auto;
}
.mosaic-cell {
    position: absolute;
    width: var(--m-cell);
    height: var(--m-cell-h);
    clip-path: var(--hex-clip);
    background: var(--accent-primary);
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
                background-color 0.32s ease,
                box-shadow 0.32s ease;
    cursor: pointer;
    will-change: transform;
}
.mosaic-cell::before {
    content: "";
    position: absolute;
    inset: 3px;
    clip-path: var(--hex-clip);
    background: var(--mfill, var(--bg-secondary));
    transition: background-color 0.5s ease;
}
.mosaic-cell .mosaic-glyph {
    position: absolute;
    inset: 0;
    width: 70%;
    height: 70%;
    margin: auto;
    z-index: 2;
}
.mosaic-cell .mosaic-label {
    position: absolute;
    bottom: 18%;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 3;
}
.mosaic-cell:hover {
    transform: scale(1.95);
    z-index: 20;
    box-shadow: 0 6px 28px rgba(91,79,207,0.28);
}
.mosaic-cell:hover .mosaic-label {
    font-size: 12px;
}

.mosaic-cell.shake-near {
    animation: shake 0.32s ease;
}
.mosaic-cell.shake-far {
    animation: shake 0.45s ease;
}

@keyframes mosaic-border-cycle {
    0%   { background: var(--accent-primary); }
    20%  { background: var(--accent-rose); }
    40%  { background: var(--accent-peach); }
    60%  { background: var(--accent-mint); }
    80%  { background: var(--accent-sky); }
    100% { background: var(--accent-primary); }
}
.mosaic-cell {
    animation: mosaic-border-cycle 12s linear infinite;
}

.mosaic-hint {
    margin-top: 36px;
    font-family: 'Righteous', sans-serif;
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: lowercase;
}

/* --------------------------------------------------------------------------
   SECTION 4: THE DEBATE FLOOR
   -------------------------------------------------------------------------- */
.debate-floor {
    background: var(--bg-secondary);
    padding-top: 120px;
    padding-bottom: 100px;
}

.debate-stage {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
}

.debate-cluster {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cluster-left { align-items: flex-end; }
.cluster-right { align-items: flex-start; }

.dcluster-row {
    display: flex;
    gap: 8px;
}
.dcluster-row.drow-b {
    margin-left: 75px;
}
.cluster-right .dcluster-row.drow-b {
    margin-left: 0;
    margin-right: 75px;
    transform: translateX(75px);
}

.dcell {
    --fc: var(--accent-primary);
    --tx: var(--text-primary);
    width: 150px;
    height: 130px;
    clip-path: var(--hex-clip);
    background: var(--hex-wire);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}
.dcell::before {
    content: "";
    position: absolute;
    inset: 3px;
    clip-path: var(--hex-clip);
    background: var(--fc);
}
.dcell .cell-glyph {
    position: absolute;
    inset: 0;
    width: 65%;
    height: 65%;
    margin: auto;
    z-index: 2;
}
.dcell.d-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dcell.d-text span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx);
    font-family: 'Righteous', sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
    text-transform: lowercase;
}
.dcell:hover { transform: scale(1.06); }
.dcell.d-shake { animation: shake 0.4s ease; }

.bridge-zone {
    width: 220px;
    height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.bridge-cell {
    width: 90px;
    height: 78px;
    clip-path: var(--hex-clip);
    background: var(--hex-wire);
    position: relative;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bridge-cell::before {
    content: "";
    position: absolute;
    inset: 2px;
    clip-path: var(--hex-clip);
    background: var(--bfc, var(--accent-mint));
}
.bridge-cell.even {
    margin-left: 50px;
}
.bridge-cell.appear {
    opacity: 1;
    transform: scale(1);
}
.bridge-cell::after {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    box-shadow: inset 0 0 16px rgba(91,79,207,0.2);
}

.debate-caption {
    margin-top: 50px;
    font-family: 'Righteous', sans-serif;
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .debate-stage {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bridge-zone {
        flex-direction: row;
        height: 100px;
        width: 100%;
        max-width: 480px;
    }
    .bridge-cell.even { margin-left: 0; margin-top: 30px; }
    .cluster-left, .cluster-right { align-items: center; }
    .dcluster-row.drow-b { margin-left: 75px; }
    .cluster-right .dcluster-row.drow-b { transform: none; margin-right: 0; }
}

/* --------------------------------------------------------------------------
   SECTION 5: THE RESOLUTION
   -------------------------------------------------------------------------- */
.resolution {
    background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4), transparent 60%),
        var(--bg-primary);
    padding-top: 120px;
    padding-bottom: 80px;
}

.resolution-frame {
    position: relative;
    width: min(80vw, 880px);
    height: min(80vw, 880px);
    max-height: 70vh;
    margin: 0 auto;
}
.frame-cycle {
    position: absolute;
    inset: 0;
    clip-path: var(--hex-clip);
    background: conic-gradient(
        from 0deg,
        var(--accent-primary),
        var(--accent-rose),
        var(--accent-peach),
        var(--accent-mint),
        var(--accent-sky),
        var(--accent-primary)
    );
    animation: spinFrame 18s linear infinite;
}
.frame-inner {
    position: absolute;
    inset: 8px;
    clip-path: var(--hex-clip);
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
}
@keyframes spinFrame {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.resolution-comb {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0.55;
}
.rcomb-row {
    display: flex;
    gap: 6px;
}
.rcomb-row.even {
    margin-left: 36px;
}
.rcomb-cell {
    width: 60px;
    height: 52px;
    clip-path: var(--hex-clip);
    background: var(--hex-wire);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rcomb-cell.appear {
    opacity: 0.85;
    transform: scale(1);
}

.resolution-text {
    text-align: center;
    z-index: 3;
    position: relative;
}
.resolution-title {
    font-family: 'Bungee', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    color: var(--accent-primary);
    letter-spacing: 0.04em;
    text-transform: lowercase;
    line-height: 1;
    margin-bottom: 22px;
    text-shadow:
        3px 3px 0 var(--hex-wire),
        6px 6px 0 rgba(91,79,207,0.18);
}
.resolution-line {
    font-family: 'Righteous', sans-serif;
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--text-primary);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.resolution-line.alt {
    color: var(--accent-rose);
    margin-bottom: 24px;
}
.resolution-marks {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 16px;
}
.rmark {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    padding: 6px;
    clip-path: var(--hex-clip);
}

.hive-foot {
    margin-top: 40px;
    font-family: 'Nunito', sans-serif;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    display: flex;
    gap: 12px;
    align-items: center;
}
.foot-mark {
    color: var(--text-primary);
}
.foot-sep {
    color: var(--accent-rose);
    font-family: 'Bungee', sans-serif;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .ambient-cell { width: 80px; height: 70px; }
    .ambient-row-b { margin-left: 70px; }
    .cgrid-cell { width: 140px; height: 121px; }
    .crow-2 { margin-left: 75px; }
    .cgrid-cell .cell-text { font-size: 14px; padding: 0 16px; }
    .cgrid-cell .cell-text.big { font-size: 20px; }
    .mosaic-grid { --m-cell: 100px; --m-cell-h: 87px; --m-cell-half: 50px; height: 460px; }
    .dcell { width: 110px; height: 95px; }
    .dcell.d-text span { font-size: 12px; padding: 0 12px; }
    .dcluster-row.drow-b { margin-left: 55px; }
    .cluster-right .dcluster-row.drow-b { transform: translateX(55px); }
}

@media (max-width: 560px) {
    .ambient-cell { width: 60px; height: 52px; }
    .ambient-row-b { margin-left: 52px; }
    .cgrid-cell { width: 100px; height: 87px; }
    .crow-2 { margin-left: 54px; }
    .cgrid-cell .cell-text { font-size: 11px; padding: 0 10px; }
    .cgrid-cell .cell-text.big { font-size: 16px; }
    .mosaic-grid { --m-cell: 76px; --m-cell-h: 66px; --m-cell-half: 38px; height: 380px; }
    .dcell { width: 90px; height: 78px; }
    .dcell.d-text span { font-size: 11px; padding: 0 8px; }
    .resolution-frame { width: 92vw; height: 92vw; }
    .frame-inner { padding: 24px 22px; }
    .section-indicator { right: 10px; }
    .indicator-dot { width: 14px; height: 12px; }
}
