/* UnlockPool Landing V10.5 */

:root {
    --bg: #050911;
    --panel: #0a111d;
    --panel-2: #0d1625;
    --line: #172338;
    --text: #f8fafc;
    --muted: #77859b;
    --cyan: #67e8f9;
    --blue: #3b82f6;
    --green: #22c55e;
    --amber: #f59e0b;
    --danger: #ef4444;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 80% 7%, rgba(56, 189, 248, 0.06), transparent 24%),
        radial-gradient(circle at 5% 33%, rgba(37, 99, 235, 0.05), transparent 25%),
        var(--bg);
    font-family:
        Inter, "Noto Sans Thai", "Noto Sans Arabic",
        "Noto Sans JP", "Noto Sans SC",
        system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.boot-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(56, 189, 248, 0.09), transparent 34%),
        #04070d;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.boot-complete {
    visibility: hidden;
    opacity: 0;
}

.boot-card {
    width: min(440px, calc(100vw - 40px));
    text-align: center;
}

.boot-logo {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, #f59e0b, #ea580c);
    box-shadow: 0 0 45px rgba(245, 158, 11, 0.24);
    font-size: 37px;
    font-weight: 900;
}

.boot-card > span,
.boot-card > strong,
.boot-card > small {
    display: block;
}

.boot-card > span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.24em;
}

.boot-card > strong {
    margin-top: 9px;
    font-size: 24px;
    letter-spacing: 0.08em;
}

.boot-card > small {
    margin-top: 12px;
    color: var(--muted);
}

.boot-progress {
    height: 7px;
    margin-top: 25px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--line);
}

.boot-progress i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.35);
    transition: width 0.18s ease;
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ambient span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.25);
    animation: particle 15s linear infinite;
}

.ambient span:nth-child(1) { left: 8%; top: 18%; animation-delay: -2s; }
.ambient span:nth-child(2) { left: 21%; top: 72%; animation-delay: -8s; }
.ambient span:nth-child(3) { left: 39%; top: 35%; animation-delay: -4s; }
.ambient span:nth-child(4) { left: 51%; top: 82%; animation-delay: -11s; }
.ambient span:nth-child(5) { left: 64%; top: 12%; animation-delay: -6s; }
.ambient span:nth-child(6) { left: 76%; top: 57%; animation-delay: -13s; }
.ambient span:nth-child(7) { left: 88%; top: 24%; animation-delay: -9s; }
.ambient span:nth-child(8) { left: 95%; top: 86%; animation-delay: -1s; }

@keyframes particle {
    0% { transform: translate3d(0, 0, 0); opacity: 0.12; }
    50% { transform: translate3d(28px, -48px, 0); opacity: 0.52; }
    100% { transform: translate3d(-12px, -95px, 0); opacity: 0.06; }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 78px;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(29, 42, 64, 0.8);
    background: rgba(5, 9, 17, 0.78);
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(145deg, #f59e0b, #ea580c);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
    font-size: 22px;
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 14px;
    letter-spacing: 0.12em;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.site-nav a {
    color: #a7b2c2;
    font-size: 12px;
}

.site-nav a:hover {
    color: var(--cyan);
}

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

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 38px;
    padding: 0 9px;
    border: 1px solid #26344c;
    border-radius: 10px;
    background: rgba(13, 22, 37, 0.88);
}

.language-selector select {
    max-width: 120px;
    border: 0;
    outline: 0;
    color: #cbd5e1;
    background: transparent;
}

.language-selector option {
    color: #111827;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 10px;
    color: #e0f2fe;
    background: rgba(8, 47, 73, 0.25);
    font-size: 11px;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: 40px;
    width: min(1500px, 92vw);
    min-height: calc(100vh - 78px);
    margin: 0 auto;
    padding: 70px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #89d8e7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.08);
}

.hero h1 {
    display: grid;
    margin: 24px 0 0;
    font-size: clamp(58px, 7vw, 112px);
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
    display: block;
}

.hero h1 em {
    color: transparent;
    background: linear-gradient(90deg, #f8fafc 0%, #67e8f9 58%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-style: normal;
}

.hero-copy > p {
    max-width: 700px;
    margin: 30px 0 0;
    color: #9aa7ba;
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-width: 220px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 800;
}

.button-primary {
    color: #02111a;
    background: linear-gradient(90deg, var(--cyan), #38bdf8);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.16);
}

.button-secondary {
    border: 1px solid #2a3850;
    color: #dbeafe;
    background: rgba(13, 22, 37, 0.7);
}

.ai-ribbon {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    max-width: 680px;
    margin-top: 25px;
    padding: 12px 14px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 12px;
    background: rgba(8, 14, 24, 0.78);
}

.ai-orb {
    position: relative;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(103, 232, 249, 0.35);
    border-radius: 50%;
}

.ai-orb::before {
    content: "";
    position: absolute;
    width: 44px;
    height: 18px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    border-radius: 50%;
    animation: orbit 3s linear infinite;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.ai-orb i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(103, 232, 249, 0.65);
    animation: core-pulse 1.7s ease-in-out infinite;
}

@keyframes core-pulse {
    50% { transform: scale(1.5); opacity: 0.62; }
}

.ai-ribbon span,
.ai-ribbon strong {
    display: block;
}

.ai-ribbon span {
    color: var(--cyan);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ai-ribbon strong {
    margin-top: 3px;
    overflow: hidden;
    color: #dbeafe;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ai-ribbon em {
    padding: 4px 8px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(22, 101, 52, 0.22);
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
}

.network-galaxy {
    position: relative;
    aspect-ratio: 1 / 1;
    width: min(600px, 100%);
    justify-self: center;
}

.galaxy-ring {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(56, 189, 248, 0.13);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-a {
    width: 38%;
    height: 38%;
    animation: ring-spin 18s linear infinite;
}

.ring-b {
    width: 64%;
    height: 64%;
    border-style: dashed;
    animation: ring-spin 28s linear infinite reverse;
}

.ring-c {
    width: 90%;
    height: 90%;
    animation: ring-spin 36s linear infinite;
}

@keyframes ring-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.galaxy-core {
    --health-glow: 0.9;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(103, 232, 249, 0.42);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(8, 47, 73, 0.44), rgba(5, 9, 17, 0.96) 67%);
    box-shadow:
        0 0 calc(48px * var(--health-glow)) rgba(56, 189, 248, 0.18),
        inset 0 0 34px rgba(56, 189, 248, 0.06);
    transform: translate(-50%, -50%);
    animation: galaxy-breathe 3.5s ease-in-out infinite;
}

@keyframes galaxy-breathe {
    50% { transform: translate(-50%, -50%) scale(1.035); }
}

.galaxy-core small,
.galaxy-core strong,
.galaxy-core span {
    display: block;
}

.galaxy-core small {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.galaxy-core strong {
    font-size: 45px;
}

.galaxy-core span {
    color: var(--muted);
    font-size: 8px;
}

.galaxy-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.galaxy-lines line {
    stroke: rgba(56, 189, 248, 0.19);
    stroke-width: 1;
    stroke-dasharray: 5 9;
    animation: line-dash 8s linear infinite;
}

@keyframes line-dash {
    to { stroke-dashoffset: -140; }
}

.orbit-peer {
    position: absolute;
    z-index: 5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.07), 0 0 18px rgba(34, 197, 94, 0.34);
    animation: peer-pulse 2.2s ease-in-out infinite;
}

.peer-1 { left: 18%; top: 18%; animation-delay: -0.2s; }
.peer-2 { right: 17%; top: 19%; animation-delay: -0.8s; }
.peer-3 { right: 7%; top: 52%; animation-delay: -1.4s; }
.peer-4 { right: 21%; bottom: 14%; animation-delay: -2s; }
.peer-5 { left: 20%; bottom: 15%; animation-delay: -0.5s; }
.peer-6 { left: 6%; top: 49%; animation-delay: -1.1s; }
.peer-7 { left: 48%; top: 7%; animation-delay: -1.7s; }
.peer-8 { left: 48%; bottom: 6%; animation-delay: -2.3s; }

@keyframes peer-pulse {
    50% { transform: scale(1.65); opacity: 0.5; }
}

.metrics-ribbon {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(1500px, 92vw);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(9, 16, 28, 0.88);
}

.metrics-ribbon article {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.metrics-ribbon article:last-child {
    border-right: 0;
}

.metrics-ribbon span,
.metrics-ribbon strong,
.metrics-ribbon em {
    display: block;
}

.metrics-ribbon span {
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.09em;
}

.metrics-ribbon strong {
    margin-top: 7px;
    font-size: 22px;
}

.metrics-ribbon em {
    margin-top: 5px;
    color: #5f7189;
    font-size: 8px;
    font-style: normal;
}

.section {
    width: min(1500px, 92vw);
    margin: 0 auto;
    padding: 120px 0 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
}

.section-label span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #2a3850;
    border-radius: 8px;
    color: var(--cyan);
    font-size: 9px;
}

.section-label strong {
    color: #a9b7ca;
    font-size: 10px;
    letter-spacing: 0.13em;
}

.ai-brief-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(380px, 0.7fr);
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.19);
    border-radius: 16px;
    background:
        radial-gradient(circle at 9% 22%, rgba(56, 189, 248, 0.08), transparent 28%),
        linear-gradient(145deg, rgba(13, 22, 37, 0.98), rgba(6, 11, 20, 0.98));
}

.ai-brief-copy {
    min-height: 290px;
    padding: 45px;
    border-right: 1px solid var(--line);
}

.ai-brief-copy > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.ai-brief-copy h2 {
    max-width: 850px;
    margin: 18px 0 0;
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.05;
}

.ai-brief-copy p {
    max-width: 820px;
    margin-top: 22px;
    color: #9aa7ba;
    line-height: 1.8;
}

.ai-brief-stats {
    display: grid;
}

.ai-brief-stats div {
    padding: 26px 30px;
    border-bottom: 1px solid var(--line);
}

.ai-brief-stats div:last-child {
    border-bottom: 0;
}

.ai-brief-stats span,
.ai-brief-stats strong {
    display: block;
}

.ai-brief-stats span {
    color: var(--muted);
    font-size: 9px;
}

.ai-brief-stats strong {
    margin-top: 8px;
    font-size: 17px;
}

.status-good { color: #86efac; }
.status-warning { color: #fde68a; }
.status-danger { color: #fca5a5; }

.flow-diagram {
    display: grid;
    grid-template-columns:
        minmax(120px, 1fr) 80px
        minmax(120px, 1fr) 80px
        minmax(120px, 1fr) 80px
        minmax(120px, 1fr) 80px
        minmax(120px, 1fr);
    align-items: center;
    padding: 45px 35px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(9, 16, 28, 0.78);
}

.flow-diagram article {
    padding: 24px 15px;
    border: 1px solid #26344c;
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(7, 12, 20, 0.98));
    text-align: center;
}

.flow-diagram article > i,
.flow-diagram article > span,
.flow-diagram article > strong {
    display: block;
}

.flow-diagram article > i {
    color: var(--cyan);
    font-size: 25px;
    font-style: normal;
}

.flow-diagram article > span {
    margin-top: 11px;
    color: #e2e8f0;
    font-size: 12px;
}

.flow-diagram article > strong {
    margin-top: 7px;
    color: #86efac;
    font-size: 9px;
}

.flow-diagram > b {
    position: relative;
    height: 2px;
    overflow: hidden;
    background: rgba(56, 189, 248, 0.14);
}

.flow-diagram > b i {
    position: absolute;
    top: -2px;
    left: -8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(103, 232, 249, 0.7);
    animation: packet 2.1s linear infinite;
}

.flow-diagram > b i:nth-child(2) {
    animation-delay: -1.05s;
}

@keyframes packet {
    to { left: calc(100% + 8px); }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-grid article {
    min-height: 270px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(13, 22, 37, 0.92), rgba(7, 12, 20, 0.92));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-grid article:hover {
    border-color: rgba(56, 189, 248, 0.34);
    transform: translateY(-4px);
}

.service-grid article > span {
    color: #394a63;
    font-size: 10px;
}

.service-grid h3 {
    margin: 48px 0 0;
    font-size: 21px;
}

.service-grid p {
    min-height: 68px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.service-grid article > strong {
    display: inline-flex;
    margin-top: 16px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(22, 101, 52, 0.22);
    font-size: 8px;
}

.features-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 45px;
    align-items: center;
}

.feature-copy > span,
.roadmap-section > div:first-child > span {
    color: var(--cyan);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.feature-copy h2,
.roadmap-section h2 {
    margin: 17px 0 0;
    font-size: clamp(37px, 4.5vw, 68px);
    line-height: 1;
}

.feature-copy p {
    margin-top: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.feature-grid article {
    min-height: 150px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(10, 17, 29, 0.82);
}

.feature-grid i,
.feature-grid strong,
.feature-grid span {
    display: block;
}

.feature-grid i {
    color: var(--cyan);
    font-size: 21px;
    font-style: normal;
}

.feature-grid strong {
    margin-top: 24px;
}

.feature-grid span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 11px;
}

.roadmap-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 45px;
    align-items: end;
    padding-bottom: 120px;
}

.roadmap-items {
    display: grid;
    gap: 10px;
}

.roadmap-items article {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 15px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(10, 17, 29, 0.75);
}

.roadmap-items span {
    color: var(--cyan);
    font-size: 9px;
}

.roadmap-items strong {
    font-size: 12px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 30px;
    padding: 35px 4vw;
    border-top: 1px solid var(--line);
    background: rgba(5, 9, 17, 0.9);
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer strong {
    letter-spacing: 0.12em;
}

.site-footer span,
.site-footer small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.site-footer nav {
    display: flex;
    gap: 20px;
    color: #9aa7ba;
    font-size: 11px;
}

[dir="rtl"] .hero-copy,
[dir="rtl"] .ai-brief-copy,
[dir="rtl"] .feature-copy,
[dir="rtl"] .roadmap-section > div {
    text-align: right;
}

@media (max-width: 1180px) {
    .site-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .network-galaxy {
        width: min(570px, 80vw);
    }

    .metrics-ribbon {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metrics-ribbon article:nth-child(3) {
        border-right: 0;
    }

    .metrics-ribbon article:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .ai-brief-grid,
    .features-section,
    .roadmap-section {
        grid-template-columns: 1fr;
    }

    .ai-brief-copy {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .flow-diagram {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .flow-diagram > b {
        width: 2px;
        height: 40px;
        justify-self: center;
    }

    .flow-diagram > b i {
        top: -8px;
        left: -2px;
        animation-name: packet-vertical;
    }

    @keyframes packet-vertical {
        to { top: calc(100% + 8px); }
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: 68px;
        padding: 0 18px;
    }

    .header-cta {
        display: none;
    }

    .brand small {
        display: none;
    }

    .hero {
        width: calc(100% - 30px);
        padding: 55px 0;
    }

    .hero h1 {
        font-size: clamp(48px, 17vw, 76px);
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .network-galaxy {
        width: min(470px, 94vw);
    }

    .galaxy-core {
        width: 130px;
        height: 130px;
    }

    .galaxy-core strong {
        font-size: 34px;
    }

    .metrics-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: calc(100% - 30px);
    }

    .metrics-ribbon article {
        border-bottom: 1px solid var(--line);
    }

    .metrics-ribbon article:nth-child(2n) {
        border-right: 0;
    }

    .section {
        width: calc(100% - 30px);
        padding-top: 80px;
    }

    .ai-brief-copy {
        min-height: 0;
        padding: 28px 22px;
    }

    .ai-brief-stats div {
        padding: 18px 22px;
    }

    .service-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
