@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --black: #050504;
    --black-soft: #090908;
    --panel: rgba(11, 10, 8, .82);

    --parchment: #d1c8b8;
    --parchment-bright: #eee7db;
    --muted: #817a6e;
    --dim: #504b43;

    --border: rgba(209, 200, 184, .17);
    --border-bright: rgba(209, 200, 184, .42);

    --accent: #9c8e7b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--parchment);
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

#atmosphere {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    pointer-events: none;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: .045;
    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            #fff 1px,
            transparent 2px
        );
    background-size: 5px 5px;
}

.vignette {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at center,
            transparent 20%,
            rgba(0, 0, 0, .3) 65%,
            rgba(0, 0, 0, .85) 100%
        );
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;

    height: 78px;
    padding: 0 clamp(22px, 4vw, 64px);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    border-bottom: 1px solid rgba(209, 200, 184, .08);

    background:
        linear-gradient(
            to bottom,
            rgba(4, 4, 3, .94),
            rgba(4, 4, 3, .65)
        );

    backdrop-filter: blur(12px);
}

.header-brand {
    justify-self: start;

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    font-family: Cinzel, serif;
    font-size: 12px;
    letter-spacing: .25em;
}

.header-brand img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: sepia(.2);
}

.desktop-nav {
    display: flex;
    gap: clamp(22px, 2.8vw, 44px);
}

.desktop-nav a {
    position: relative;

    padding: 30px 0 27px;

    text-decoration: none;

    font-family: Cinzel, serif;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(209, 200, 184, .55);

    transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--parchment-bright);
}

.desktop-nav a.active::after {
    content: '';

    position: absolute;
    left: 0;
    right: .18em;
    bottom: 19px;

    height: 1px;

    background: var(--parchment);

    box-shadow:
        0 0 10px rgba(209, 200, 184, .5);
}

.account-button {
    justify-self: end;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 9px 13px;

    border: 1px solid rgba(209, 200, 184, .18);

    background: rgba(0, 0, 0, .25);

    color: rgba(209, 200, 184, .65);

    cursor: pointer;

    font-family: Cinzel, serif;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;

    transition: .2s ease;
}

.account-button:hover {
    border-color: var(--border-bright);
    color: var(--parchment);
}

.account-icon {
    font-size: 13px;
}

.mobile-toggle {
    display: none;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 120px 24px 80px;

    overflow: hidden;
}

.hero::after {
    content: '';

    position: absolute;
    left: 50%;
    bottom: -200px;

    width: min(900px, 90vw);
    height: 450px;

    transform: translateX(-50%);

    background:
        radial-gradient(
            ellipse,
            rgba(156, 142, 123, .12),
            transparent 70%
        );

    pointer-events: none;
}

.hero-mark {
    position: absolute;

    width: min(620px, 78vw);
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    opacity: .055;

    animation: heroMarkReveal 3s ease both;
}

.hero-mark img {
    width: 67%;
    height: 67%;

    object-fit: contain;

    animation: slowSpin 90s linear infinite;
}

.mark-ring {
    position: absolute;

    border: 1px solid rgba(209, 200, 184, .35);
    border-radius: 50%;
}

.ring-one {
    inset: 5%;
}

.ring-two {
    inset: 16%;

    border-style: dashed;

    animation: reverseSpin 70s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 3;

    text-align: center;
}

.eyebrow,
.section-kicker {
    display: block;

    font-family: Cinzel, serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .38em;
    text-transform: uppercase;

    color: rgba(209, 200, 184, .52);
}

.deadwood-title {
    margin: 20px 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: Cinzel, serif;
    font-size: clamp(54px, 10vw, 142px);
    font-weight: 500;
    line-height: .9;
    letter-spacing: .02em;

    color: var(--parchment-bright);

    text-shadow:
        0 0 30px rgba(209, 200, 184, .08);
}

.deadwood-title > span {
    display: inline-block;

    opacity: 0;

    transform: translateY(18px);

    animation: titleReveal .9s ease forwards;
}

.deadwood-title > span:nth-child(1) {
    animation-delay: .25s;
}

.deadwood-title > span:nth-child(2) {
    animation-delay: .31s;
}

.deadwood-title > span:nth-child(3) {
    animation-delay: .37s;
}

.deadwood-title > span:nth-child(4) {
    animation-delay: .43s;
}

.deadwood-title > span:nth-child(5) {
    animation-delay: .49s;
}

.deadwood-title > span:nth-child(6) {
    animation-delay: .55s;
}

.deadwood-title > span:nth-child(7) {
    animation-delay: .61s;
}

.deadwood-title > span:nth-child(8) {
    animation-delay: .67s;
}

.title-o {
    position: absolute;
    visibility: hidden;
}

.ouroboros-letter {
    width: .82em;
    height: .82em;

    display: inline-grid !important;
    place-items: center;

    margin: 0 -.01em;
}

.ouroboros-letter img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        grayscale(1)
        sepia(.15)
        brightness(1.35);

    animation:
        titleOuroborosSpin 28s linear infinite;
}

.hero-rule {
    width: min(610px, 75vw);

    margin: 27px auto 20px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;

    opacity: 0;

    animation:
        fadeReveal 1.4s 1s ease forwards;
}

.hero-rule span {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(209, 200, 184, .45)
        );
}

.hero-rule span:last-child {
    transform: scaleX(-1);
}

.hero-rule i {
    width: 5px;
    height: 5px;

    border: 1px solid var(--parchment);

    transform: rotate(45deg);
}

.hero h2 {
    margin: 0;

    font-family: Cinzel, serif;
    font-size: clamp(15px, 2vw, 24px);
    font-weight: 400;
    letter-spacing: .42em;
    text-transform: uppercase;

    color: rgba(209, 200, 184, .78);

    opacity: 0;

    animation:
        fadeReveal 1s 1.15s ease forwards;
}

.hero-copy {
    margin: 25px 0 0;

    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;

    color: rgba(209, 200, 184, .38);

    opacity: 0;

    animation:
        fadeReveal 1s 1.35s ease forwards;
}

.hero-actions {
    margin-top: 38px;

    display: flex;
    justify-content: center;
    gap: 14px;

    opacity: 0;

    animation:
        fadeReveal 1s 1.55s ease forwards;
}

.button {
    min-width: 180px;
    min-height: 46px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 12px 23px;

    border: 1px solid var(--border-bright);

    text-decoration: none;

    font-family: Cinzel, serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.button.primary {
    color: #090807;

    background: var(--parchment);
}

.button.primary:hover {
    background: var(--parchment-bright);

    box-shadow:
        0 0 28px rgba(209, 200, 184, .18);

    transform: translateY(-2px);
}

.button.secondary {
    color: var(--parchment);

    background: rgba(0, 0, 0, .35);
}

.button.secondary:hover {
    border-color: var(--parchment);

    background: rgba(209, 200, 184, .06);

    transform: translateY(-2px);
}

.button.disabled {
    opacity: .4;
    cursor: default;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    font-family: Cinzel, serif;
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;

    color: rgba(209, 200, 184, .3);
}

.scroll-hint div {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            var(--parchment),
            transparent
        );

    animation:
        scrollPulse 2s ease infinite;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    position: relative;

    width: min(1320px, calc(100% - 48px));

    margin: 0 auto;

    padding: 150px 0;
}

.section::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(209, 200, 184, .16),
            transparent
        );
}

.section-heading {
    display: grid;

    grid-template-columns:
        auto
        minmax(260px, .8fr)
        1fr;

    gap: 35px;

    align-items: end;

    margin-bottom: 60px;
}

.section-number {
    align-self: start;

    font-family: Cinzel, serif;
    font-size: 10px;
    letter-spacing: .18em;

    color: rgba(209, 200, 184, .28);
}

.section-heading h2,
.about-section h2,
.join-content h2 {
    margin: 8px 0 0;

    font-family: Cinzel, serif;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: .04em;

    color: var(--parchment-bright);
}

.section-heading > p {
    max-width: 560px;

    margin: 0;

    justify-self: end;

    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;

    color: rgba(209, 200, 184, .5);
}


/* =========================================================
   BAZAAR
   ========================================================= */

.bazaar-grid {
    display: grid;

    grid-template-columns:
        1.25fr
        1fr
        1fr;

    gap: 16px;
}

.listing-card {
    min-height: 300px;

    display: flex;
    flex-direction: column;

    padding: 28px;

    border: 1px solid var(--border);

    background:
        linear-gradient(
            145deg,
            rgba(209, 200, 184, .035),
            rgba(0, 0, 0, .18)
        );

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.listing-card:hover {
    border-color:
        rgba(209, 200, 184, .34);

    background:
        rgba(209, 200, 184, .045);

    transform:
        translateY(-3px);
}

.listing-card.featured {
    border-color:
        rgba(209, 200, 184, .28);
}

.listing-top {
    display: flex;

    justify-content: space-between;
    align-items: center;
}

.listing-type {
    font-family: Cinzel, serif;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;
}

.listing-type.sell {
    color: #a6b794;
}

.listing-type.buy {
    color: #c4ae8d;
}

.listing-type.service {
    color: #a9a6b7;
}

.listing-time {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;

    color:
        rgba(209, 200, 184, .28);
}

.listing-card h3 {
    margin: 50px 0 14px;

    font-family: Cinzel, serif;
    font-size: 20px;
    font-weight: 500;

    color:
        var(--parchment-bright);
}

.listing-card p {
    margin: 0;

    font-size: 13px;
    line-height: 1.75;

    color:
        rgba(209, 200, 184, .5);
}

.listing-meta {
    margin-top: auto;

    padding-top: 30px;

    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.listing-meta span {
    padding: 6px 8px;

    border:
        1px solid
        rgba(209, 200, 184, .11);

    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;

    color:
        rgba(209, 200, 184, .38);
}

.text-action {
    margin-top: 20px;

    align-self: flex-start;

    border: none;

    background: none;

    padding: 0;

    color: var(--parchment);

    font-family: Cinzel, serif;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;

    cursor: pointer;
}

.section-footer-action {
    margin-top: 35px;

    text-align: center;
}


/* =========================================================
   TERMINALS
   ========================================================= */

.operation-terminal,
.market-terminal {
    border:
        1px solid
        rgba(209, 200, 184, .18);

    background:
        linear-gradient(
            145deg,
            rgba(15, 14, 12, .92),
            rgba(5, 5, 4, .96)
        );

    box-shadow:
        0 35px 80px
        rgba(0, 0, 0, .4);
}

.terminal-header {
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border-bottom:
        1px solid
        rgba(209, 200, 184, .12);

    font-family: Cinzel, serif;
    font-size: 8px;
    letter-spacing: .18em;

    color:
        rgba(209, 200, 184, .4);
}

.terminal-header > div {
    display: flex;

    align-items: center;

    gap: 10px;
}

.status-light {
    width: 6px;
    height: 6px;

    display: inline-block;

    border-radius: 50%;

    background: #889d75;

    box-shadow:
        0 0 9px
        rgba(136, 157, 117, .6);
}

.terminal-body {
    min-height: 350px;

    display: grid;

    place-items: center;
}

.terminal-empty {
    text-align: center;

    padding: 50px;
}

.terminal-symbol {
    display: block;

    margin-bottom: 18px;

    font-size: 32px;

    color:
        rgba(209, 200, 184, .22);
}

.terminal-empty h3 {
    margin: 0;

    font-family: Cinzel, serif;

    font-weight: 400;

    letter-spacing: .08em;

    color:
        rgba(209, 200, 184, .8);
}

.terminal-empty p {
    max-width: 450px;

    margin:
        15px auto
        25px;

    font-size: 12px;

    line-height: 1.7;

    color:
        rgba(209, 200, 184, .38);
}

.terminal-note,
.data-label {
    font-family: Cinzel, serif;

    font-size: 8px;

    letter-spacing: .18em;

    color:
        rgba(209, 200, 184, .25);
}


/* =========================================================
   MARKET
   ========================================================= */

.market-search {
    margin: 35px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 18px;

    border:
        1px solid
        rgba(209, 200, 184, .14);
}

.market-search div {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.market-search span {
    font-size: 7px;

    letter-spacing: .18em;

    color:
        rgba(209, 200, 184, .3);
}

.market-search strong {
    font-family: Cinzel, serif;

    font-size: 13px;
    font-weight: 400;

    color:
        rgba(209, 200, 184, .62);
}

.market-search button {
    border:
        1px solid
        rgba(209, 200, 184, .22);

    background: transparent;

    padding: 10px 17px;

    color:
        rgba(209, 200, 184, .55);

    font-family: Cinzel, serif;

    font-size: 8px;

    letter-spacing: .15em;

    cursor: pointer;
}

.market-columns {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr
        auto
        1fr;

    padding:
        10px
        35px
        45px;
}

.market-block {
    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
}

.market-block strong {
    margin-top: 16px;

    font-family: Cinzel, serif;

    font-size: 15px;
    font-weight: 400;

    letter-spacing: .1em;

    color:
        rgba(209, 200, 184, .72);
}

.market-block small {
    margin-top: 9px;

    font-size: 10px;

    color:
        rgba(209, 200, 184, .3);
}

.market-divider {
    width: 1px;

    background:
        linear-gradient(
            transparent,
            rgba(209, 200, 184, .14),
            transparent
        );
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    text-align: center;
}

.about-emblem {
    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    margin:
        0 auto
        35px;

    border:
        1px solid
        rgba(209, 200, 184, .14);

    border-radius: 50%;
}

.about-emblem img {
    width: 70%;
    height: 70%;

    object-fit: contain;

    opacity: .65;
}

.about-section h2 {
    margin-top: 15px;

    font-size:
        clamp(
            40px,
            5vw,
            70px
        );
}

.about-section h2 em {
    font-style: normal;

    color:
        rgba(209, 200, 184, .38);
}

.about-section > p {
    max-width: 700px;

    margin:
        35px auto
        70px;

    font-size: 14px;
    font-weight: 300;

    line-height: 1.9;

    color:
        rgba(209, 200, 184, .5);
}

.about-values {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid
        rgba(209, 200, 184, .12);

    border-bottom:
        1px solid
        rgba(209, 200, 184, .12);
}

.about-values > div {
    padding: 35px 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.about-values > div + div {
    border-left:
        1px solid
        rgba(209, 200, 184, .12);
}

.about-values strong {
    font-family: Cinzel, serif;

    font-size: 10px;

    letter-spacing: .2em;

    color:
        rgba(209, 200, 184, .8);
}

.about-values span {
    font-size: 10px;

    color:
        rgba(209, 200, 184, .3);
}


/* =========================================================
   JOIN
   ========================================================= */

.join-section {
    position: relative;

    min-height: 620px;

    display: grid;

    place-items: center;

    padding:
        100px
        24px;

    overflow: hidden;

    border-top:
        1px solid
        rgba(209, 200, 184, .1);

    background:
        radial-gradient(
            ellipse at center,
            rgba(156, 142, 123, .07),
            transparent 65%
        );
}

.join-background {
    position: absolute;

    width:
        min(
            700px,
            80vw
        );

    opacity: .025;

    animation:
        slowSpin 100s
        linear infinite;
}

.join-content {
    position: relative;

    z-index: 2;

    max-width: 720px;

    text-align: center;
}

.join-content p {
    max-width: 620px;

    margin:
        25px auto;

    font-size: 14px;

    line-height: 1.8;

    color:
        rgba(209, 200, 184, .48);
}

.join-actions {
    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 14px;
}

.join-content small {
    display: block;

    margin-top: 25px;

    font-size: 9px;

    letter-spacing: .08em;

    color:
        rgba(209, 200, 184, .25);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    min-height: 130px;

    padding:
        35px
        clamp(
            24px,
            5vw,
            70px
        );

    display: flex;

    justify-content: space-between;
    align-items: center;

    border-top:
        1px solid
        rgba(209, 200, 184, .09);
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 13px;
}

.footer-brand img {
    width: 36px;
    height: 36px;

    object-fit: contain;

    opacity: .55;
}

.footer-brand div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.footer-brand strong {
    font-family: Cinzel, serif;

    font-size: 11px;

    letter-spacing: .2em;
}

.footer-brand span,
.footer-copy {
    font-size: 8px;

    letter-spacing: .13em;

    color:
        rgba(209, 200, 184, .28);
}


/* =========================================================
   ACCOUNT MODAL
   ========================================================= */

.account-modal {
    position: fixed;

    z-index: 500;

    inset: 0;

    display: grid;

    place-items: center;

    padding: 20px;

    background:
        rgba(0, 0, 0, .78);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    visibility: hidden;

    transition: .25s ease;
}

.account-modal.open {
    opacity: 1;

    visibility: visible;
}

.account-panel {
    position: relative;

    width:
        min(
            470px,
            100%
        );

    padding: 50px;

    text-align: center;

    border:
        1px solid
        rgba(209, 200, 184, .25);

    background: #090908;
}

.account-panel > img {
    width: 65px;

    margin-bottom: 25px;

    opacity: .7;
}

.account-panel h2 {
    margin:
        10px
        0
        15px;

    font-family: Cinzel, serif;

    font-size: 28px;

    font-weight: 400;
}

.account-panel p {
    margin:
        0
        0
        30px;

    font-size: 12px;

    line-height: 1.8;

    color:
        rgba(209, 200, 184, .45);
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    border: none;

    background: none;

    color:
        rgba(209, 200, 184, .4);

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.mobile-nav {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .site-header {
        grid-template-columns:
            1fr
            auto
            auto;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;

        margin-left: 10px;

        border: none;

        background: transparent;

        color: var(--parchment);

        font-size: 20px;

        cursor: pointer;
    }

    .mobile-nav {
        position: fixed;

        z-index: 90;

        top: 78px;
        left: 0;
        right: 0;

        padding:
            20px
            25px;

        flex-direction: column;

        background:
            rgba(5, 5, 4, .97);

        border-bottom:
            1px solid
            var(--border);

        transform:
            translateY(-130%);

        transition:
            transform .25s ease;
    }

    .mobile-nav.open {
        display: flex;

        transform:
            translateY(0);
    }

    .mobile-nav a {
        padding:
            13px
            0;

        border-bottom:
            1px solid
            rgba(209, 200, 184, .08);

        text-decoration: none;

        font-family: Cinzel, serif;

        font-size: 10px;

        letter-spacing: .18em;

        text-transform: uppercase;
    }

    .section-heading {
        grid-template-columns:
            auto
            1fr;
    }

    .section-heading > p {
        grid-column: 2;

        justify-self: start;
    }

    .bazaar-grid {
        grid-template-columns: 1fr;
    }

    .market-columns {
        grid-template-columns: 1fr;
    }

    .market-divider {
        width: 100%;
        height: 1px;
    }

    .about-values {
        grid-template-columns:
            1fr
            1fr;
    }

    .about-values > div:nth-child(3) {
        border-left: none;

        border-top:
            1px solid
            rgba(209, 200, 184, .12);
    }

    .about-values > div:nth-child(4) {
        border-top:
            1px solid
            rgba(209, 200, 184, .12);
    }
}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 600px) {

    .account-text {
        display: none;
    }

    .account-button {
        min-width: 38px;

        justify-content: center;
    }

    .hero-actions,
    .join-actions {
        flex-direction: column;

        align-items: center;
    }

    .button {
        width:
            min(
                300px,
                100%
            );
    }

    .section {
        width:
            min(
                calc(100% - 30px),
                1320px
            );

        padding:
            100px
            0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .section-number {
        display: none;
    }

    .section-heading > p {
        grid-column: 1;

        justify-self: start;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-values > div + div {
        border-left: none;

        border-top:
            1px solid
            rgba(209, 200, 184, .12);
    }

    .market-search {
        margin: 20px;

        gap: 20px;
    }

    .market-columns {
        padding:
            0
            20px
            25px;
    }

    footer {
        flex-direction: column;

        gap: 25px;

        text-align: center;
    }
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes titleReveal {
    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes fadeReveal {
    to {
        opacity: 1;
    }
}

@keyframes heroMarkReveal {
    from {
        opacity: 0;

        transform:
            scale(.88);
    }
}

@keyframes titleOuroborosSpin {
    to {
        transform:
            rotate(360deg);
    }
}

@keyframes slowSpin {
    to {
        transform:
            rotate(360deg);
    }
}

@keyframes reverseSpin {
    to {
        transform:
            rotate(-360deg);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .2;

        transform:
            scaleY(.6);

        transform-origin: top;
    }

    50% {
        opacity: .8;

        transform:
            scaleY(1);
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            .001ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;
    }
}