/* ============================================
   paraligm.com - Pixel Art Split-Screen Design
   ============================================
   Palette:
     Left BG:      #F5F0E8 (Off-White Cream)
     Right BG:     #1A1A2E (Deep Charcoal)
     Text Light:   #2D2B35 (Warm Black)
     Text Dark:    #EDEDED (Bright White)
     Accent:       #00D4AA (Pixel Teal)
     Secondary:    #FF6B6B (Coral Punch)
     Tertiary:     #FFD93D (Pixel Gold)
     Grid Light:   #C8C4BC (Grid Gray)
     Grid Dark:    #2E2E4A (Grid Blue-Gray)
   Fonts:
     Commissioner (400, 600, 700) - Headlines & Body
     Silkscreen (400, 700) - Accent / Code / Labels
   ============================================ */

/* --- CSS Custom Properties for Counter Animations --- */
@property --counter-hero {
    syntax: '<integer>';
    inherits: false;
    initial-value: 0;
}

@property --counter-p1 {
    syntax: '<integer>';
    inherits: false;
    initial-value: 0;
}

@property --counter-p2 {
    syntax: '<integer>';
    inherits: false;
    initial-value: 0;
}

@property --counter-p3 {
    syntax: '<integer>';
    inherits: false;
    initial-value: 0;
}

@property --counter-conv {
    syntax: '<integer>';
    inherits: false;
    initial-value: 0;
}

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

html {
    font-size: 16px;
    scroll-behavior: auto;
    overflow: hidden;
    height: 100%;
}

body {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #F5F0E8;
}

/* --- Pixel Grid Overlay (16x16 intervals) --- */
.pixel-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    background:
        repeating-linear-gradient(
            to right,
            transparent,
            transparent 15px,
            rgba(200, 196, 188, 0.08) 15px,
            rgba(200, 196, 188, 0.08) 16px
        ),
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 15px,
            rgba(200, 196, 188, 0.08) 15px,
            rgba(200, 196, 188, 0.08) 16px
        );
    transition: opacity 0ms;
}

.pixel-grid-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background:
        repeating-linear-gradient(
            to right,
            transparent,
            transparent 15px,
            rgba(46, 46, 74, 0.12) 15px,
            rgba(46, 46, 74, 0.12) 16px
        ),
        repeating-linear-gradient(
            to bottom,
            transparent,
            transparent 15px,
            rgba(46, 46, 74, 0.12) 15px,
            rgba(46, 46, 74, 0.12) 16px
        );
}

/* --- Center Divider (dashed, animated flow) --- */
.center-divider {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    z-index: 200;
    overflow: hidden;
}

.divider-line {
    width: 100%;
    height: 200%;
    background: repeating-linear-gradient(
        to bottom,
        #00D4AA 0px,
        #00D4AA 8px,
        transparent 8px,
        transparent 16px
    );
    animation: divider-flow 2s linear infinite;
}

@keyframes divider-flow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-16px); }
}

/* --- Center Divider Dissolve (Convergence) --- */
.center-divider.dissolving .divider-line {
    animation: divider-dissolve 1200ms steps(6) forwards;
}

@keyframes divider-dissolve {
    0% { opacity: 1; }
    33% { opacity: 0.5; }
    66% { opacity: 0.1; }
    83% { opacity: 0; }
    100% { opacity: 1; }
}

/* --- Split Container --- */
.split-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* --- Panels --- */
.panel {
    width: 50%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.panel::-webkit-scrollbar {
    display: none;
}

.panel-left {
    background: #F5F0E8;
    color: #2D2B35;
}

.panel-right {
    background: #1A1A2E;
    color: #EDEDED;
}

/* --- Frames (100vh sections) --- */
.frame {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 48px;
    position: relative;
    opacity: 0;
    transition: opacity 400ms steps(4);
}

.frame.visible {
    opacity: 1;
}

.frame-content {
    max-width: 480px;
    width: 100%;
    position: relative;
}

/* --- Hero Section --- */
.hero-title {
    font-family: 'Commissioner', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #2D2B35;
}

.accent-teal {
    color: #00D4AA;
}

.hero-subtitle {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #C8C4BC;
    margin-bottom: 48px;
    max-width: 38ch;
    line-height: 1.65;
}

/* --- Counters (Silkscreen pixel font) --- */
.hero-counter-wrap,
.convergence-counter-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 32px;
}

.counter-label {
    font-family: 'Silkscreen', cursive;
    font-size: 12px;
    text-transform: uppercase;
    color: #00D4AA;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

.hero-counter,
.convergence-counter {
    font-family: 'Silkscreen', cursive;
    font-size: 48px;
    color: #00D4AA;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
    letter-spacing: 0.05em;
}

.paradigm-label {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.paradigm-counter {
    font-family: 'Silkscreen', cursive;
    font-size: 16px;
    color: #00D4AA;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: unset;
}

/* --- Concept Sections --- */
.concept-title {
    font-family: 'Commissioner', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    color: #2D2B35;
}

.panel-right .concept-title {
    color: #EDEDED;
}

.concept-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    max-width: 38ch;
    margin-bottom: 32px;
    color: #2D2B35;
}

.panel-right .concept-text {
    color: #EDEDED;
}

/* --- Pixel Art Icons (CSS box-shadow technique) --- */
.pixel-icon {
    width: 32px;
    height: 32px;
    position: relative;
    margin-bottom: 32px;
}

/* Pixel Heart (Coral on light panel) */
.pixel-heart::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF6B6B;
    box-shadow:
        4px 0 0 #FF6B6B,
        8px 0 0 #FF6B6B,
        16px 0 0 #FF6B6B,
        20px 0 0 #FF6B6B,
        24px 0 0 #FF6B6B,
        0 4px 0 #FF6B6B,
        4px 4px 0 #FF6B6B,
        8px 4px 0 #FF6B6B,
        12px 4px 0 #FF6B6B,
        16px 4px 0 #FF6B6B,
        20px 4px 0 #FF6B6B,
        24px 4px 0 #FF6B6B,
        28px 4px 0 #FF6B6B,
        0 8px 0 #FF6B6B,
        4px 8px 0 #FF6B6B,
        8px 8px 0 #FF6B6B,
        12px 8px 0 #FF6B6B,
        16px 8px 0 #FF6B6B,
        20px 8px 0 #FF6B6B,
        24px 8px 0 #FF6B6B,
        28px 8px 0 #FF6B6B,
        4px 12px 0 #FF6B6B,
        8px 12px 0 #FF6B6B,
        12px 12px 0 #FF6B6B,
        16px 12px 0 #FF6B6B,
        20px 12px 0 #FF6B6B,
        24px 12px 0 #FF6B6B,
        8px 16px 0 #FF6B6B,
        12px 16px 0 #FF6B6B,
        16px 16px 0 #FF6B6B,
        20px 16px 0 #FF6B6B,
        12px 20px 0 #FF6B6B,
        16px 20px 0 #FF6B6B;
}

/* Pixel Star (Gold on light panel) */
.pixel-star::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFD93D;
    box-shadow:
        12px 0 0 #FFD93D,
        12px 4px 0 #FFD93D,
        4px 8px 0 #FFD93D,
        8px 8px 0 #FFD93D,
        12px 8px 0 #FFD93D,
        16px 8px 0 #FFD93D,
        20px 8px 0 #FFD93D,
        0 12px 0 #FFD93D,
        4px 12px 0 #FFD93D,
        8px 12px 0 #FFD93D,
        12px 12px 0 #FFD93D,
        16px 12px 0 #FFD93D,
        20px 12px 0 #FFD93D,
        24px 12px 0 #FFD93D,
        4px 16px 0 #FFD93D,
        8px 16px 0 #FFD93D,
        12px 16px 0 #FFD93D,
        16px 16px 0 #FFD93D,
        20px 16px 0 #FFD93D,
        8px 20px 0 #FFD93D,
        12px 20px 0 #FFD93D,
        16px 20px 0 #FFD93D,
        4px 24px 0 #FFD93D,
        8px 24px 0 #FFD93D,
        16px 24px 0 #FFD93D,
        20px 24px 0 #FFD93D;
}

/* Pixel Arrow (Coral on light panel) */
.pixel-arrow::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF6B6B;
    box-shadow:
        12px 0 0 #FF6B6B,
        16px 4px 0 #FF6B6B,
        0 8px 0 #FF6B6B,
        4px 8px 0 #FF6B6B,
        8px 8px 0 #FF6B6B,
        12px 8px 0 #FF6B6B,
        16px 8px 0 #FF6B6B,
        20px 8px 0 #FF6B6B,
        24px 8px 0 #FF6B6B,
        0 12px 0 #FF6B6B,
        4px 12px 0 #FF6B6B,
        8px 12px 0 #FF6B6B,
        12px 12px 0 #FF6B6B,
        16px 12px 0 #FF6B6B,
        20px 12px 0 #FF6B6B,
        24px 12px 0 #FF6B6B,
        16px 16px 0 #FF6B6B,
        12px 20px 0 #FF6B6B;
}

/* Pixel Gear (Coral on light panel) */
.pixel-gear::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF6B6B;
    box-shadow:
        8px 0 0 #FF6B6B,
        16px 0 0 #FF6B6B,
        4px 4px 0 #FF6B6B,
        8px 4px 0 #FF6B6B,
        12px 4px 0 #FF6B6B,
        16px 4px 0 #FF6B6B,
        20px 4px 0 #FF6B6B,
        0 8px 0 #FF6B6B,
        4px 8px 0 #FF6B6B,
        8px 8px 0 #FF6B6B,
        16px 8px 0 #FF6B6B,
        20px 8px 0 #FF6B6B,
        24px 8px 0 #FF6B6B,
        0 12px 0 #FF6B6B,
        4px 12px 0 #FF6B6B,
        20px 12px 0 #FF6B6B,
        24px 12px 0 #FF6B6B,
        0 16px 0 #FF6B6B,
        4px 16px 0 #FF6B6B,
        8px 16px 0 #FF6B6B,
        16px 16px 0 #FF6B6B,
        20px 16px 0 #FF6B6B,
        24px 16px 0 #FF6B6B,
        4px 20px 0 #FF6B6B,
        8px 20px 0 #FF6B6B,
        12px 20px 0 #FF6B6B,
        16px 20px 0 #FF6B6B,
        20px 20px 0 #FF6B6B,
        8px 24px 0 #FF6B6B,
        16px 24px 0 #FF6B6B;
}

/* --- Pixel Cursor (classic pointer, CSS box-shadow) --- */
.pixel-cursor {
    width: 4px;
    height: 4px;
    position: relative;
    margin-bottom: 32px;
}

.pixel-cursor::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2D2B35;
    box-shadow:
        0 4px 0 #2D2B35,
        0 8px 0 #2D2B35,
        0 12px 0 #2D2B35,
        0 16px 0 #2D2B35,
        0 20px 0 #2D2B35,
        0 24px 0 #2D2B35,
        0 28px 0 #2D2B35,
        4px 4px 0 #2D2B35,
        4px 8px 0 #2D2B35,
        8px 8px 0 #2D2B35,
        8px 12px 0 #2D2B35,
        12px 12px 0 #2D2B35,
        12px 16px 0 #2D2B35,
        16px 16px 0 #2D2B35,
        4px 20px 0 #2D2B35,
        8px 24px 0 #2D2B35,
        4px 28px 0 #2D2B35;
}

/* --- Pixel Blinking Underscore (section separator) --- */
.pixel-underscore {
    width: 32px;
    height: 4px;
    background: #00D4AA;
    margin-top: 48px;
    animation: blink-underscore 1s steps(1) infinite;
}

@keyframes blink-underscore {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* --- Progress Bar (RPG health-bar style) --- */
.progress-bar {
    display: flex;
    gap: 4px;
}

.progress-filled,
.progress-empty {
    width: 16px;
    height: 16px;
    border: 2px solid #C8C4BC;
}

.progress-filled {
    background: #00D4AA;
    border-color: #00D4AA;
}

.progress-empty {
    background: transparent;
}

.panel-right .progress-filled {
    border-color: #00D4AA;
}

.panel-right .progress-empty {
    border-color: #2E2E4A;
}

/* --- Geometric Grid (Hero Right Panel, 12x12) --- */
.geo-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 32px;
}

.geo-grid .geo-cell {
    aspect-ratio: 1 / 1;
    opacity: 0;
    transition: opacity 0ms;
}

.geo-grid .geo-cell.active {
    opacity: 1;
}

.geo-grid .geo-cell.blink {
    animation: cell-blink 1s steps(1) infinite;
}

@keyframes cell-blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* --- Geometric Compositions (Right Panel Concepts) --- */
.geo-composition {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    position: relative;
    margin: 0 auto;
}

/* Composition 1 - Stacked Blocks (Construct) */
.geo-comp-1 .geo-block-a {
    position: absolute;
    width: 40%;
    height: 40%;
    top: 0;
    left: 0;
    background: #00D4AA;
}

.geo-comp-1 .geo-block-b {
    position: absolute;
    width: 25%;
    height: 25%;
    top: 0;
    right: 0;
    background: #FF6B6B;
}

.geo-comp-1 .geo-block-c {
    position: absolute;
    width: 55%;
    height: 15%;
    top: 45%;
    left: 10%;
    background: #FFD93D;
}

.geo-comp-1 .geo-block-d {
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 0;
    right: 10%;
    background: #00D4AA;
}

.geo-comp-1 .geo-block-e {
    position: absolute;
    width: 20%;
    height: 50%;
    top: 25%;
    right: 0;
    background: #2E2E4A;
    border: 2px solid #00D4AA;
}

.geo-comp-1 .geo-block-f {
    position: absolute;
    width: 15%;
    height: 15%;
    bottom: 10%;
    left: 0;
    background: #FF6B6B;
}

.geo-comp-1 .geo-block-g {
    position: absolute;
    width: 35%;
    height: 8%;
    bottom: 35%;
    left: 5%;
    background: #EDEDED;
}

.geo-comp-1 .geo-block-h {
    position: absolute;
    width: 10%;
    height: 10%;
    top: 10%;
    left: 50%;
    background: #FFD93D;
}

/* Composition 2 - Concentric Rings (Parallel) */
.geo-comp-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-ring {
    position: absolute;
    border: 3px solid;
    border-radius: 0;
}

.geo-ring-outer {
    width: 80%;
    height: 80%;
    border-color: #00D4AA;
}

.geo-ring-mid {
    width: 55%;
    height: 55%;
    border-color: #FF6B6B;
}

.geo-ring-inner {
    width: 30%;
    height: 30%;
    border-color: #FFD93D;
}

.geo-comp-2 .geo-block-center {
    position: absolute;
    width: 12%;
    height: 12%;
    background: #00D4AA;
}

.geo-bar-h {
    position: absolute;
    width: 90%;
    height: 3px;
    background: #2E2E4A;
    border-top: 1px solid #00D4AA;
}

.geo-bar-v {
    position: absolute;
    width: 3px;
    height: 90%;
    background: #2E2E4A;
    border-left: 1px solid #00D4AA;
}

/* Composition 3 - Triangles / Shift */
.geo-tri {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-tri-1 {
    top: 5%;
    left: 10%;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #00D4AA;
}

.geo-tri-2 {
    top: 30%;
    right: 10%;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 80px solid #FF6B6B;
}

.geo-tri-3 {
    bottom: 15%;
    left: 25%;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #FFD93D;
}

.geo-tri-4 {
    bottom: 5%;
    right: 20%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid #EDEDED;
}

.geo-comp-3 .geo-block-shift {
    position: absolute;
    width: 20%;
    height: 20%;
    top: 40%;
    left: 5%;
    background: #2E2E4A;
    border: 2px solid #FFD93D;
}

.geo-comp-3 .geo-block-shift-2 {
    position: absolute;
    width: 15%;
    height: 40%;
    top: 10%;
    right: 5%;
    background: #2E2E4A;
    border: 2px solid #00D4AA;
}

/* --- Circuit Traces (1px right-angle connections) --- */
.circuit-trace {
    position: absolute;
    top: 50%;
    left: 0;
    width: 48px;
    height: 1px;
    background: #2E2E4A;
}

.circuit-trace::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00D4AA;
    opacity: 0.5;
}

.circuit-trace::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 32px;
    background: #00D4AA;
    opacity: 0.5;
}

.circuit-trace-2 {
    top: 30%;
    left: auto;
    right: 0;
}

.circuit-trace-2::after {
    left: 0;
    right: auto;
    height: 48px;
    top: auto;
    bottom: 0;
}

.circuit-trace-3 {
    top: 70%;
}

/* --- Convergence Section --- */
.convergence-title {
    font-family: 'Commissioner', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.panel-left .convergence-title {
    color: #2D2B35;
}

.panel-right .convergence-title {
    color: #EDEDED;
}

.convergence-text {
    font-family: 'Commissioner', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    max-width: 38ch;
    margin-bottom: 32px;
}

.panel-left .convergence-text {
    color: #2D2B35;
}

.panel-right .convergence-text {
    color: #EDEDED;
}

/* --- Convergence Particles (dissolve & reassemble) --- */
.convergence-composition {
    width: 100%;
    max-width: 400px;
    height: 200px;
    position: relative;
    margin: 0 auto 32px;
}

.convergence-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    opacity: 0;
}

.convergence-particle:nth-child(2) { background: #FF6B6B; }
.convergence-particle:nth-child(3) { background: #FFD93D; }
.convergence-particle:nth-child(4) { background: #EDEDED; }
.convergence-particle:nth-child(5) { background: #00D4AA; }
.convergence-particle:nth-child(6) { background: #FF6B6B; }
.convergence-particle:nth-child(7) { background: #FFD93D; }
.convergence-particle:nth-child(8) { background: #00D4AA; }
.convergence-particle:nth-child(9) { background: #EDEDED; }
.convergence-particle:nth-child(10) { background: #FF6B6B; }
.convergence-particle:nth-child(11) { background: #FFD93D; }
.convergence-particle:nth-child(12) { background: #00D4AA; }
.convergence-particle:nth-child(13) { background: #FF6B6B; }
.convergence-particle:nth-child(14) { background: #FFD93D; }
.convergence-particle:nth-child(15) { background: #EDEDED; }
.convergence-particle:nth-child(16) { background: #00D4AA; }

.convergence-particle.animate {
    animation: particle-assemble 800ms steps(4) forwards;
}

@keyframes particle-assemble {
    0% {
        opacity: 0;
        transform: translate(var(--start-x, 0), var(--start-y, 0));
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate(var(--end-x, 0), var(--end-y, 0));
    }
}

/* --- Loading Indicator (spinning pixel square) --- */
.loading-indicator {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0ms;
}

.loading-indicator.active {
    opacity: 1;
}

.loading-square {
    width: 16px;
    height: 16px;
    background: #00D4AA;
    animation: spin-square 800ms steps(4) infinite;
}

@keyframes spin-square {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Right Panel Text Colors --- */
.panel-right .counter-label {
    color: #00D4AA;
}

.panel-right .hero-counter,
.panel-right .convergence-counter {
    color: #00D4AA;
}

.panel-right .paradigm-counter {
    color: #00D4AA;
}

/* --- Hover Effects: Instant Swap (pixel-art 2-frame paradigm) --- */
.panel-left .concept-title:hover {
    color: #00D4AA;
}

.panel-right .concept-title:hover {
    color: #00D4AA;
}

.panel-right .geo-block:hover {
    filter: brightness(1.3);
}

.progress-filled:hover {
    background: #FF6B6B;
    border-color: #FF6B6B;
}

/* --- Responsive: Tablet (768px) --- */
@media (max-width: 768px) {
    html {
        overflow: auto;
    }

    body {
        overflow: auto;
    }

    .split-container {
        flex-direction: column;
        height: auto;
    }

    .panel {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .panel-right {
        border-top: 2px solid #2E2E4A;
    }

    .center-divider {
        display: none;
    }

    .pixel-grid-overlay::after {
        left: 0;
        width: 100%;
    }

    .frame {
        min-height: 100vh;
        padding: 48px 32px;
    }

    .geo-grid {
        max-width: 300px;
    }

    .geo-composition {
        max-width: 300px;
    }
}

/* --- Responsive: Mobile (480px) --- */
@media (max-width: 480px) {
    .frame {
        padding: 32px 16px;
    }

    .hero-counter,
    .convergence-counter {
        font-size: 32px;
    }

    .geo-grid {
        max-width: 240px;
    }

    .geo-composition {
        max-width: 240px;
    }

    .geo-tri-1 {
        border-left-width: 40px;
        border-right-width: 40px;
        border-bottom-width: 70px;
    }

    .geo-tri-2 {
        border-left-width: 35px;
        border-right-width: 35px;
        border-top-width: 55px;
    }

    .geo-tri-3 {
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 45px;
    }

    .geo-tri-4 {
        border-left-width: 20px;
        border-right-width: 20px;
        border-top-width: 35px;
    }
}
