/* ============================================================
   MONOPOLE.DESIGN - Memphis-Celestial Observatory Stylesheet
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
    --terracotta-wash: #c4876b;
    --desert-sage: #8a9a72;
    --charcoal-soot: #2a2a28;
    --bleached-linen: #f0e6d8;
    --dusty-rose: #c98a8a;
    --burnt-sienna: #a0522d;
    --mustard-ochre: #c8a84e;
    --obsidian: #1a1a16;
    --bone-white: #ede4d4;

    --font-mono: 'Share Tech Mono', monospace;
    --font-serif: 'Lora', serif;
    --font-handwritten: 'Caveat', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--terracotta-wash);
    color: var(--obsidian);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.72;
    overflow-x: hidden;
    cursor: none;
}

/* Zigzag background pattern on body */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 12px,
        rgba(200, 168, 78, 0.12) 12px,
        rgba(200, 168, 78, 0.12) 14px
    );
    pointer-events: none;
    z-index: 0;
}

/* Terrazzo decoration container */
#terrazzo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* --- INTRO OVERLAY --- */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--charcoal-soot);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: transform 800ms cubic-bezier(0.65, 0, 0.35, 1);
}

#intro-overlay.slide-up {
    transform: translateY(-100vh);
}

#intro-overlay.hidden {
    display: none;
}

#intro-constellation {
    position: absolute;
    opacity: 0;
    transition: opacity 300ms ease;
}

#intro-constellation.visible {
    opacity: 1;
}

.constellation-center {
    opacity: 0;
    transition: opacity 300ms ease;
}

.constellation-center.visible {
    opacity: 1;
}

.constellation-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 200ms ease;
}

.constellation-line.drawn {
    stroke-dashoffset: 0;
}

.constellation-node {
    opacity: 0;
    transition: opacity 200ms ease;
}

.constellation-node.visible {
    opacity: 1;
}

#intro-text {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 20px;
}

#intro-title {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--bone-white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#intro-cursor {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--dusty-rose);
    animation: blink-cursor 600ms step-end infinite;
}

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

#intro-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--mustard-ochre);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 400ms ease;
}

#intro-subtitle.visible {
    opacity: 1;
}

/* --- CUSTOM CURSOR --- */
#custom-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 200ms ease;
}

#custom-cursor.visible {
    opacity: 1;
}

.starburst-cursor::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--mustard-ochre);
    clip-path: polygon(
        50% 0%, 62% 30%, 100% 30%, 68% 52%,
        80% 82%, 50% 62%, 20% 82%, 32% 52%,
        0% 30%, 38% 30%
    );
    animation: rotate-starburst 15s linear infinite;
}

#custom-cursor.on-dark .starburst-cursor::before,
#custom-cursor.on-dark::before {
    background-color: var(--bone-white);
}

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

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 9998;
    background-color: var(--mustard-ochre);
    clip-path: polygon(
        50% 0%, 62% 30%, 100% 30%, 68% 52%,
        80% 82%, 50% 62%, 20% 82%, 32% 52%,
        0% 30%, 38% 30%
    );
    animation: trail-fade 600ms ease-out forwards;
    transform: translate(-50%, -50%);
}

.cursor-trail.on-dark {
    background-color: var(--bone-white);
}

@keyframes trail-fade {
    from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}

/* --- SIDE NAVIGATION --- */
#side-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    padding: 16px 0;
    opacity: 0;
    transition: opacity 400ms ease;
}

#side-nav.visible {
    opacity: 1;
}

.nav-medallion {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: none;
    overflow: visible;
}

.medallion-inner {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--charcoal-soot);
    border: 2px solid var(--mustard-ochre);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone-white);
    transition: all 300ms ease;
    position: relative;
    z-index: 2;
}

.nav-medallion::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--dusty-rose);
    opacity: 0.5;
}

.nav-medallion.active .medallion-inner {
    background-color: var(--dusty-rose);
    border-color: var(--dusty-rose);
}

.nav-medallion:hover .medallion-inner {
    background-color: var(--desert-sage);
    border-color: var(--desert-sage);
    transform: scale(1.15);
}

.nav-label {
    position: absolute;
    left: 44px;
    white-space: nowrap;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal-soot);
    background-color: var(--bleached-linen);
    padding: 4px 10px;
    border: 1px solid var(--charcoal-soot);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 200ms ease;
    pointer-events: none;
}

.nav-medallion:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

/* --- TELEMETRY BAR --- */
#telemetry-bar {
    position: fixed;
    top: 0;
    left: 48px;
    right: 0;
    height: 8vh;
    min-height: 48px;
    max-height: 72px;
    background-color: var(--charcoal-soot);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 900;
    border-bottom: 2px solid var(--mustard-ochre);
    opacity: 0;
    transition: opacity 400ms ease;
}

#telemetry-bar.visible {
    opacity: 1;
}

.telemetry-title {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    color: var(--bone-white);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.telemetry-section-indicator {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    color: var(--dusty-rose);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.telemetry-stars {
    display: flex;
    gap: 8px;
    align-items: center;
}

.star-wrapper {
    width: 20px;
    height: 20px;
}

.star-shape {
    width: 20px;
    height: 20px;
    position: relative;
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%,
        79% 91%, 50% 70%, 21% 91%, 32% 57%,
        2% 35%, 39% 35%
    );
    background-color: rgba(237, 228, 212, 0.2);
}

.star-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--mustard-ochre);
    transition: height 300ms ease;
}

.star-shape.filled .star-fill {
    height: 100%;
}

/* --- MAIN CONTENT --- */
#main-content {
    position: relative;
    margin-left: 48px;
    padding-top: 8vh;
    z-index: 1;
    opacity: 0;
    transition: opacity 600ms ease;
}

#main-content.visible {
    opacity: 1;
}

/* --- DASHBOARD GRID --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding: 24px;
    min-height: calc(100vh - 8vh);
    position: relative;
}

/* --- MODULE BASE --- */
.module {
    position: relative;
    opacity: 0;
    transform: scale(0.85) rotate(-3deg);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.module.animate-in {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.module-label {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
}

.module-label-sub {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
}

.module-heading {
    font-family: var(--font-mono);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 16px;
}

.module-body {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    line-height: 1.72;
    max-width: 58ch;
}

.module-list {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    list-style: none;
    margin-top: 12px;
}

.module-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(42, 42, 40, 0.15);
}

.module-list li:last-child {
    border-bottom: none;
}

/* --- CIRCLE MODULE --- */
.module-circle {
    grid-column: 1;
    grid-row: 1;
    width: min(20vw, 200px);
    height: min(20vw, 200px);
    border-radius: 50%;
    background-color: var(--dusty-rose);
    border: 4px solid var(--charcoal-soot);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--charcoal-soot);
    justify-self: center;
    align-self: center;
    z-index: 2;
}

.module-circle.animate-in {
    animation: circle-pop 400ms ease-out forwards;
}

@keyframes circle-pop {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.module-circle:hover {
    animation: medallion-cycle 600ms ease infinite;
}

@keyframes medallion-cycle {
    0% { border-color: var(--dusty-rose); }
    33% { border-color: var(--mustard-ochre); }
    66% { border-color: var(--desert-sage); }
    100% { border-color: var(--dusty-rose); }
}

.module-circle-small {
    grid-column: 4;
    grid-row: 2;
    width: min(14vw, 140px);
    height: min(14vw, 140px);
    background-color: var(--burnt-sienna);
    color: var(--bone-white);
}

.module-year {
    font-family: var(--font-mono);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 0.12em;
    display: block;
}

/* --- TRAPEZOID MODULE --- */
.module-trapezoid {
    grid-column: 2 / 4;
    grid-row: 1;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    background-color: var(--bleached-linen);
    padding: 40px 32px 32px;
    transition: clip-path 300ms ease, opacity 500ms ease-out, transform 500ms ease-out;
    /* Dot grid pattern */
    background-image: radial-gradient(circle, #2a2a28 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    background-color: var(--bleached-linen);
}

.module-trapezoid .module-inner {
    position: relative;
    z-index: 1;
}

.module-trapezoid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bleached-linen);
    opacity: 0.92;
}

.module-trapezoid .module-heading {
    color: var(--charcoal-soot);
}

.module-trapezoid .module-body {
    color: var(--obsidian);
}

.module-trapezoid:hover {
    clip-path: polygon(12% 0%, 88% 0%, 98% 100%, 2% 100%);
}

.module-trapezoid-alt {
    grid-column: 1 / 3;
    grid-row: 2;
    background-color: var(--charcoal-soot);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    background-image: none;
}

.module-trapezoid-alt::before {
    background-color: var(--charcoal-soot);
}

.module-trapezoid-alt .module-heading {
    color: var(--bone-white);
}

.module-trapezoid-alt .module-body {
    color: var(--bone-white);
    opacity: 0.85;
}

.module-trapezoid-alt:hover {
    clip-path: polygon(12% 0%, 88% 0%, 98% 100%, 2% 100%);
}

/* --- STEPPED MODULE --- */
.module-stepped {
    grid-column: 4;
    grid-row: 1;
    background-color: var(--bleached-linen);
    border: 4px solid var(--charcoal-soot);
    position: relative;
    padding: 24px;
    padding-left: 48px;
    overflow: hidden;
}

.stepped-steps {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 24px;
    display: flex;
    flex-direction: column;
}

.step {
    flex: 1;
    background-color: var(--mustard-ochre);
    transition: transform 300ms ease;
}

.step:nth-child(1) { width: 24px; }
.step:nth-child(2) { width: 20px; margin-left: 4px; }
.step:nth-child(3) { width: 16px; margin-left: 8px; }
.step:nth-child(4) { width: 12px; margin-left: 12px; }
.step:nth-child(5) { width: 8px; margin-left: 16px; }

.module-stepped:hover .step:nth-child(1) { transform: translateX(4px); transition-delay: 0ms; }
.module-stepped:hover .step:nth-child(2) { transform: translateX(4px); transition-delay: 60ms; }
.module-stepped:hover .step:nth-child(3) { transform: translateX(4px); transition-delay: 120ms; }
.module-stepped:hover .step:nth-child(4) { transform: translateX(4px); transition-delay: 180ms; }
.module-stepped:hover .step:nth-child(5) { transform: translateX(4px); transition-delay: 240ms; }

.module-stepped .module-label {
    color: var(--burnt-sienna);
    margin-bottom: 8px;
}

/* --- ARCH MODULE --- */
.module-arch {
    grid-column: 3 / 5;
    grid-row: 2;
    border-radius: 50% 50% 0 0;
    background-color: var(--desert-sage);
    border: 4px solid var(--charcoal-soot);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.arch-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dome-svg {
    max-width: 280px;
    opacity: 0.7;
}

.module-arch .module-label {
    color: var(--bone-white);
    margin-top: 12px;
    text-align: center;
}

/* --- STARBURST DECORATIONS --- */
.starburst-decoration {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--mustard-ochre);
    clip-path: polygon(
        50% 0%, 62% 30%, 100% 30%, 68% 52%,
        80% 82%, 50% 62%, 20% 82%, 32% 52%,
        0% 30%, 38% 30%
    );
    z-index: 10;
    pointer-events: none;
}

.starburst-1 { top: 50%; left: 33%; }
.starburst-2 { top: 50%; left: 66%; }
.starburst-3 { top: 0; left: 50%; transform: translateX(-50%); margin-top: 12px; }

/* --- OBSERVATION PLATES --- */
.observation-plate {
    position: relative;
    min-height: 80vh;
    margin: 4vh 0;
    border: 4px solid var(--charcoal-soot);
    background-color: var(--bleached-linen);
    overflow: visible;
}

.plate-corner-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 60px solid var(--burnt-sienna);
    border-bottom: 60px solid transparent;
    z-index: 5;
}

.plate-number {
    position: absolute;
    top: 8px;
    left: -52px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--bone-white);
    letter-spacing: 0.12em;
    transform: rotate(-45deg);
    white-space: nowrap;
}

.plate-grid {
    display: grid;
    gap: 0;
    min-height: 80vh;
}

.plate-left .plate-grid {
    grid-template-columns: 3fr 2fr;
}

.plate-right .plate-grid {
    grid-template-columns: 2fr 3fr;
}

.plate-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.plate-heading {
    font-family: var(--font-mono);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-soot);
    margin-bottom: 24px;
    position: relative;
}

.plate-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--mustard-ochre);
    margin-top: 12px;
}

.plate-text {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.72;
    max-width: 58ch;
    color: var(--obsidian);
    margin-bottom: 20px;
}

.plate-text code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background-color: rgba(42, 42, 40, 0.08);
    border-bottom: 2px solid var(--mustard-ochre);
    padding: 2px 6px;
}

.plate-text em {
    font-style: italic;
    font-weight: 600;
}

.plate-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 24px;
}

.botanical-svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    overflow: visible;
}

.saguaro-svg {
    max-width: 300px;
}

/* SVG drawing animations */
.svg-stroke-draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1500ms ease;
}

.observation-plate.in-view .svg-stroke-draw {
    stroke-dashoffset: 0;
}

.svg-fill-reveal {
    opacity: 0;
    transition: opacity 400ms ease 1500ms;
}

.observation-plate.in-view .svg-fill-reveal {
    opacity: 1;
}

/* Ensure fill-reveal elements with set opacity restore to their inline opacity */
.observation-plate.in-view .svg-fill-reveal[opacity] {
    opacity: unset;
}

/* Plate annotations */
.plate-annotation {
    font-family: var(--font-handwritten);
    font-size: clamp(0.85rem, 1.4vw, 1.1rem);
    color: var(--burnt-sienna);
    transform: rotate(-2deg);
    display: inline-block;
    margin-top: 12px;
}

.annotation-1 { margin-left: 20px; }
.annotation-2 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
}
.annotation-3 { margin-left: 40px; margin-top: 16px; }

/* --- CONSTELLATION BACKGROUNDS --- */
.observation-plate:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease;
}

.observation-plate.in-view:nth-child(odd)::after {
    opacity: 0.3;
}

/* --- CONTACT BLOCK --- */
.contact-block {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 16px;
    border-left: 3px solid var(--mustard-ochre);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burnt-sienna);
}

.contact-value {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--charcoal-soot);
}

/* --- FOOTER --- */
#site-footer {
    background-color: var(--charcoal-soot);
    border-top: 4px solid var(--mustard-ochre);
    padding: 48px 24px;
    margin-top: 4vh;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-mark {
    font-family: var(--font-mono);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    color: var(--bone-white);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-year {
    font-family: var(--font-mono);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    color: var(--dusty-rose);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-note {
    font-family: var(--font-handwritten);
    font-size: clamp(0.9rem, 1.4vw, 1.1rem);
    color: var(--mustard-ochre);
    transform: rotate(-1deg);
    display: inline-block;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    #side-nav {
        display: none;
    }

    #main-content {
        margin-left: 0;
    }

    #telemetry-bar {
        left: 0;
    }

    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 16px;
        padding: 16px;
    }

    .module-circle {
        grid-column: 1;
        grid-row: 1;
    }

    .module-trapezoid {
        grid-column: 2;
        grid-row: 1;
    }

    .module-stepped {
        grid-column: 1;
        grid-row: 2;
    }

    .module-arch {
        grid-column: 2;
        grid-row: 2;
    }

    .module-trapezoid-alt {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .module-circle-small {
        grid-column: 1;
        grid-row: 4;
        justify-self: center;
    }

    .plate-left .plate-grid,
    .plate-right .plate-grid {
        grid-template-columns: 1fr;
    }

    .plate-content {
        padding: 40px 24px;
    }

    .plate-illustration {
        padding: 24px;
        min-height: 300px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    body {
        cursor: auto;
    }

    #custom-cursor,
    .cursor-trail {
        display: none;
    }
}

@media (max-width: 600px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .module-circle {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .module-trapezoid {
        grid-column: 1;
        grid-row: 2;
        clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    }

    .module-stepped {
        grid-column: 1;
        grid-row: 3;
    }

    .module-arch {
        grid-column: 1;
        grid-row: 4;
        min-height: 250px;
    }

    .module-trapezoid-alt {
        grid-column: 1;
        grid-row: 5;
        clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    }

    .module-circle-small {
        grid-column: 1;
        grid-row: 6;
    }
}
