/* ============================================================
   MONOPOLE.STUDIO — Swiss Precision Observatory
   Palette:
     Deep Navy:    #1A2030 — headings
     Navy Grey:    #3A4050 — body text
     Steel:        #6A7080 — UI labels, metadata
     Swiss White:  #F6F8FA — primary background
     Border Cool:  #C0C8D0 — panel borders
     Aurora Blue:  #A0C8E0 — gradient start
     Aurora Violet: #C8A0D0 — gradient middle
     Aurora Gold:  #E0C8A0 — gradient end
   Fonts: Cormorant Garamond, Source Sans 3, Space Grotesk
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #F6F8FA;
    color: #1A2030;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.85;
    color: #3A4050;
    background-color: #F6F8FA;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

::selection {
    background: rgba(200, 160, 208, 0.2);
    color: #1A2030;
}

/* --- Paper Texture Overlay --- */
#paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(26, 32, 48, 0.04) 2px,
            rgba(26, 32, 48, 0.04) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(26, 32, 48, 0.02) 3px,
            rgba(26, 32, 48, 0.02) 5px
        );
    background-size: 4px 4px, 5px 5px;
}

/* --- Aurora Gradient Background --- */
#aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.aurora-wash {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0;
    will-change: transform, opacity;
}

.aurora-wash-1 {
    width: 650px;
    height: 650px;
    top: -12%;
    right: -6%;
    background: radial-gradient(circle, #A0C8E0 0%, transparent 70%);
    opacity: 0.08;
    animation: auroraFloat1 24s ease-in-out infinite;
}

.aurora-wash-2 {
    width: 550px;
    height: 550px;
    bottom: 8%;
    left: -10%;
    background: radial-gradient(circle, #C8A0D0 0%, transparent 70%);
    opacity: 0.08;
    animation: auroraFloat2 28s ease-in-out infinite;
}

.aurora-wash-3 {
    width: 480px;
    height: 480px;
    top: 38%;
    left: 28%;
    background: radial-gradient(circle, #E0C8A0 0%, transparent 70%);
    opacity: 0.06;
    animation: auroraFloat3 26s ease-in-out infinite;
}

@keyframes auroraFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 20px) scale(1.06); }
    50% { transform: translate(-50px, 40px) scale(1.12); }
    75% { transform: translate(10px, -10px) scale(0.97); }
}

@keyframes auroraFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(35px, -45px) scale(1.08); }
    66% { transform: translate(-25px, 25px) scale(1.04); }
}

@keyframes auroraFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-35px, -25px) scale(1.1); }
    70% { transform: translate(15px, 10px) scale(0.96); }
}

/* --- HUD: Top Status Bar --- */
#hud-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(246, 248, 250, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid #C0C8D0;
    z-index: 1000;
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #6A7080;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#hud-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.status-left, .status-center, .status-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C0C8D0;
    transition: background-color 0.3s ease;
}

.status-dot.active {
    background: #A0C8E0;
    box-shadow: 0 0 8px rgba(160, 200, 224, 0.5);
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 6px rgba(160, 200, 224, 0.4); }
    50% { box-shadow: 0 0 12px rgba(160, 200, 224, 0.7); }
}

.status-label {
    color: #1A2030;
    font-weight: 500;
}

.status-text {
    color: #6A7080;
}

/* --- HUD: Left Navigation --- */
#hud-left {
    position: fixed;
    top: 40px;
    left: 0;
    bottom: 32px;
    width: 160px;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    background: rgba(246, 248, 250, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid #C0C8D0;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

#hud-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.nav-header, .nav-footer {
    padding: 0 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
}

.nav-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-rule, .meta-rule {
    flex: 1;
    height: 1px;
    background: #C0C8D0;
    opacity: 0.5;
}

.nav-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #6A7080;
    text-transform: uppercase;
    border-left: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
    color: #1A2030;
    border-left-color: #A0C8E0;
    background-color: rgba(160, 200, 224, 0.06);
}

.nav-link.active {
    color: #1A2030;
    border-left-color: #C8A0D0;
    background-color: rgba(200, 160, 208, 0.04);
}

.nav-index {
    color: #C0C8D0;
    font-size: 10px;
    min-width: 16px;
    transition: color 0.2s ease;
}

.nav-link:hover .nav-index {
    color: #A0C8E0;
}

.nav-link.active .nav-index {
    color: #C8A0D0;
}

/* --- HUD: Right Metadata Panel --- */
#hud-right {
    position: fixed;
    top: 40px;
    right: 0;
    bottom: 32px;
    width: 160px;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background: rgba(246, 248, 250, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid #C0C8D0;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

#hud-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.meta-header {
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-block {
    margin-bottom: 20px;
}

.meta-key {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.meta-value {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #3A4050;
    line-height: 1.4;
}

.meta-status {
    color: #A0C8E0;
    font-weight: 500;
}

.meta-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-label {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 100%;
    height: 2px;
    background: rgba(192, 200, 208, 0.4);
    border-radius: 1px;
    overflow: hidden;
}

.scroll-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #A0C8E0, #C8A0D0, #E0C8A0);
    border-radius: 1px;
    transition: width 0.15s ease-out;
}

/* --- HUD: Bottom Status Bar --- */
#hud-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(246, 248, 250, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #C0C8D0;
    z-index: 1000;
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #6A7080;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

#hud-bottom.visible {
    opacity: 1;
    transform: translateY(0);
}

.bottom-left, .bottom-center, .bottom-right {
    display: flex;
    align-items: center;
}

.bottom-label {
    color: #6A7080;
    transition: color 0.2s ease;
}

.bottom-center .bottom-label {
    color: #3A4050;
}

/* --- Main Content Area --- */
#content {
    margin-top: 40px;
    margin-left: 160px;
    margin-right: 160px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 60px;
}

.section-inner {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.hero-inner {
    max-width: 720px;
}

/* --- Section Markers --- */
.section-marker {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marker-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
}

.marker-line {
    width: 40px;
    height: 1px;
    background: #C0C8D0;
}

/* --- Section Headers --- */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-index {
    font-family: 'Space Grotesk', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #C8A0D0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #1A2030;
    letter-spacing: -0.01em;
}

.section-rule {
    flex: 1;
    height: 1px;
    background: #C0C8D0;
}

/* --- Hero Section --- */
#hero {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-eyebrow.visible {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: #C8A0D0;
}

.eyebrow-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #6A7080;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #1A2030;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.title-line.visible {
    opacity: 1;
    transform: translateY(0);
}

.title-dot {
    display: inline-block;
    color: #C8A0D0;
    opacity: 0;
    transition: opacity 0.6s ease;
    font-size: 1.1em;
}

.title-dot.visible {
    opacity: 1;
}

.hero-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #6A7080;
    line-height: 1.85;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-coordinates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #C0C8D0;
    opacity: 0;
    transition: opacity 1s ease 1.2s;
}

.hero-coordinates.visible {
    opacity: 1;
}

.coord-item {
    transition: color 0.2s ease;
}

.coord-item:hover {
    color: #6A7080;
}

.coord-divider {
    color: #C8A0D0;
}

/* --- Work Section --- */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.work-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.work-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-frame {
    border: 1px solid #C0C8D0;
    background: rgba(246, 248, 250, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: default;
}

.card-frame:hover {
    border-color: #A0C8E0;
    box-shadow: 0 8px 40px rgba(160, 200, 224, 0.12);
}

.card-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(246, 248, 250, 0.3) 100%);
    pointer-events: none;
}

.card-frame:hover .card-gradient {
    transform: scale(1.05);
}

.gradient-a {
    background: linear-gradient(135deg, #A0C8E0 0%, #C8A0D0 50%, #E0C8A0 100%);
}

.gradient-b {
    background: linear-gradient(135deg, #E0C8A0 0%, #A0C8E0 50%, #C8A0D0 100%);
}

.gradient-c {
    background: linear-gradient(135deg, #C8A0D0 0%, #E0C8A0 50%, #A0C8E0 100%);
}

.gradient-d {
    background: linear-gradient(135deg, #1A2030 0%, #3A4050 40%, #A0C8E0 100%);
}

.gradient-e {
    background: linear-gradient(135deg, #A0C8E0 0%, #E0C8A0 40%, #C8A0D0 100%);
}

.gradient-f {
    background: linear-gradient(135deg, #3A4050 0%, #C8A0D0 50%, #A0C8E0 100%);
}

.card-info {
    padding: 24px;
}

.card-year {
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #C0C8D0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #1A2030;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.card-frame:hover .card-title {
    color: #3A4050;
}

.card-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #6A7080;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-tag {
    display: inline-block;
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #6A7080;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 1px solid #C0C8D0;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.card-frame:hover .card-tag {
    border-color: #A0C8E0;
    color: #3A4050;
}

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    padding: 32px 24px;
    border: 1px solid transparent;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    border-color: #C0C8D0;
    background-color: rgba(246, 248, 250, 0.8);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #C8A0D0;
    margin-bottom: 16px;
    opacity: 0.6;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    color: #C8A0D0;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1A2030;
    margin-bottom: 12px;
}

.step-desc {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #6A7080;
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #C8A0D0, transparent);
    opacity: 0.3;
    transition: opacity 0.2s ease, width 0.3s ease;
}

.process-step:hover .step-line {
    opacity: 0.7;
}

/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #1A2030;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-body {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #3A4050;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 8px;
}

.stat-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #C0C8D0;
    transition: border-color 0.2s ease;
}

.stat-item:hover {
    border-bottom-color: #A0C8E0;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2.4rem;
    color: #1A2030;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #6A7080;
    text-transform: uppercase;
}

/* --- Contact Section --- */
.contact-lead {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #1A2030;
    line-height: 1.6;
    margin-bottom: 48px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-block {
    padding: 24px;
    border: 1px solid #C0C8D0;
    transition: border-color 0.2s ease, background-color 0.3s ease;
}

.contact-block:hover {
    border-color: #A0C8E0;
    background-color: rgba(160, 200, 224, 0.04);
}

.contact-key {
    display: block;
    font-family: 'Space Grotesk', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: #C0C8D0;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-value {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #3A4050;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
    color: #1A2030;
    border-bottom-color: #A0C8E0;
}

/* --- Animations: Reveal on Scroll --- */
.about-text, .about-stats, .contact-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text.visible, .about-stats.visible, .contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Aurora Pulse (opening sequence) --- */
@keyframes auroraPulse {
    0% { opacity: 0; }
    40% { opacity: 0.2; }
    100% { opacity: 0.08; }
}

.aurora-wash.pulse {
    animation: auroraPulse 3s ease-out forwards;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    #hud-left {
        width: 120px;
    }
    #hud-right {
        width: 120px;
    }
    #content {
        margin-left: 120px;
        margin-right: 120px;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    #hud-left, #hud-right {
        display: none;
    }
    #content {
        margin-left: 0;
        margin-right: 0;
    }
    .content-section {
        padding: 60px 32px;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: row;
        gap: 24px;
    }
    .stat-item {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid #C0C8D0;
        padding-bottom: 0;
        padding-right: 24px;
    }
    .stat-item:last-child {
        border-right: none;
    }
}

@media (max-width: 600px) {
    .content-section {
        padding: 40px 20px;
    }
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #C0C8D0;
        padding-right: 0;
        padding-bottom: 24px;
    }
    .section-header {
        gap: 12px;
        margin-bottom: 40px;
    }
    .section-marker {
        bottom: 20px;
        right: 20px;
    }
}
