﻿@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap';

:root {
    --black: #050607;
    --panel: #0d1113;
    --panel-soft: #141a1d;
    --white: #f7f7f3;
    --muted: #9ba3a7;
    --gold: #daa520;
    --gold-soft: #f2cd63;
    --blue: cadetblue;
    --line: rgba(255, 255, 255, 0.12);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background: var(--black);
}

body {
    overflow-x: hidden;
    color: var(--white);
    background: var(--black);
}

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

.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand h1 {
    font-size: 3rem;
    text-transform: uppercase;
    color: white;
    letter-spacing: .04em;
}

    .brand h1 span {
        color: var(--gold);
    }

    .brand h1 span2 {
        color: var(--blue);
    }

#header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto 0;
    width: 100%;
}

    #header .header {
        min-height: 8vh;
        background: rgba(5, 6, 7, .5);
        backdrop-filter: blur(16px);
        transition: .3s ease background-color;
    }

    #header .nav-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1300px;
        padding: 0 20px;
    }

    #header .nav-list ul {
        list-style: none;
        position: absolute;
        background: rgba(5, 6, 7, .98);
        width: 100vw;
        height: 100vh;
        left: 100%;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
        overflow: hidden;
        transition: .5s ease left;
    }

        #header .nav-list ul.active {
            left: 0;
        }

        #header .nav-list ul a {
            font-size: 2.5rem;
            font-weight: 500;
            letter-spacing: .2rem;
            color: white;
            text-transform: uppercase;
            padding: 20px;
            display: block;
        }

            #header .nav-list ul a::after {
                content: attr(data-after);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%) scale(0);
                color: rgba(255,255,255,.025);
                font-size: 13rem;
                letter-spacing: 50px;
                z-index: -1;
                transition: .3s ease letter-spacing;
            }

        #header .nav-list ul li:hover a::after {
            transform: translate(-50%, -50%) scale(1);
            letter-spacing: initial;
        }

        #header .nav-list ul li:hover a {
            color: var(--gold);
        }

    #header .hamburger {
        height: 58px;
        width: 58px;
        border: 3px solid white;
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 100;
        cursor: pointer;
        transform: scale(.8);
    }

        #header .hamburger::after {
            position: absolute;
            content: '';
            inset: -3px;
            border-radius: 50%;
            border: 3px solid white;
            animation: hamburger_puls 1s ease infinite;
        }

        #header .hamburger .bar {
            height: 2px;
            width: 30px;
            position: relative;
            background: white;
            z-index: -1;
        }

            #header .hamburger .bar::before, #header .hamburger .bar::after {
                content: '';
                position: absolute;
                height: 100%;
                width: 100%;
                left: 0;
                background: white;
                transition: .3s ease;
            }

            #header .hamburger .bar::after {
                top: 8px;
            }

            #header .hamburger .bar::before {
                bottom: 8px;
            }

        #header .hamburger.active .bar::before {
            bottom: 0;
        }

        #header .hamburger.active .bar::after {
            top: 0;
        }

#trade-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 45%, rgba(95,158,160,.18), transparent 28%), radial-gradient(circle at 20% 20%, rgba(218,165,32,.12), transparent 25%), linear-gradient(135deg, #050607 0%, #0c1114 60%, #050607 100%);
}

    #trade-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .13;
        background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
        background-size: 54px 54px;
        mask-image: linear-gradient(to bottom, black, transparent 95%);
    }

.trade-hero {
    position: relative;
    max-width: 1250px;
    margin: auto;
    padding: 130px 30px 70px;
    justify-content: space-between;
    gap: 60px;
}

.hero-copy {
    width: min(680px, 100%);
    z-index: 2;
}

.eyebrow {
    color: var(--gold-soft);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .35rem;
    margin-bottom: 24px;
}

    .eyebrow.dark {
        color: #8b6a12;
    }

.hero-copy h1 {
    font-size: clamp(5.4rem, 8vw, 10rem);
    line-height: .98;
    font-weight: 300;
    letter-spacing: -.06em;
}

    .hero-copy h1 span {
        color: var(--blue);
        font-weight: 500;
    }

.hero-text {
    color: #c7cdcf;
    font-size: 1.7rem;
    line-height: 1.8;
    max-width: 570px;
    margin-top: 28px;
}

.cta {
    display: inline-block;
    padding: 16px 34px;
    color: white;
    border: 1px solid rgba(255,255,255,.65);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .18rem;
    margin-top: 34px;
    transition: .35s ease;
}

    .cta:hover {
        color: var(--black);
        background: var(--gold);
        border-color: var(--gold);
        transform: translateY(-3px);
    }

.hero-orbit {
    width: 390px;
    height: 390px;
    position: relative;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
}

.orbit-one {
    inset: 8%;
    animation: spin 20s linear infinite;
}

.orbit-two {
    inset: 24%;
    border-color: rgba(218,165,32,.42);
    animation: spin 12s linear infinite reverse;
}

.orbit-center {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(15px);
    color: var(--gold);
    font-size: 3.2rem;
    letter-spacing: .16em;
    box-shadow: inset 0 0 50px rgba(95,158,160,.12);
}

.orbit-dot {
    position: absolute;
    width: 11px;
    height: 11px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(218,165,32,.8);
}

.dot-one {
    top: 10%;
    left: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.dot-two {
    bottom: 19%;
    left: 16%;
    background: var(--blue);
}

.dot-three {
    right: 10%;
    top: 52%;
    width: 7px;
    height: 7px;
}

#market {
    background: #f3f2ed;
    color: #111;
    padding: 110px 24px;
}

.market-wrap, .domains-wrap {
    max-width: 1200px;
    margin: auto;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 65px;
}

    .section-heading .eyebrow {
        margin-bottom: 13px;
    }

.section-title {
    color: #101214;
    font-size: clamp(4rem, 6vw, 6.8rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08rem;
    line-height: 1.05;
}

    .section-title span {
        color: var(--gold);
    }

.section-heading > p:last-child {
    color: #62696c;
    font-size: 1.55rem;
    line-height: 1.7;
    margin-top: 17px;
}

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

.clock-card {
    min-height: 410px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15,20,23,.06);
    transition: .35s ease;
}

    .clock-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 70px rgba(15,20,23,.12);
    }

    .clock-card.featured {
        background: #101416;
        color: white;
    }

    .clock-card::after {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: var(--gold);
        opacity: .06;
        right: -70px;
        bottom: -70px;
    }

.clock-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.city-code {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .24em;
    color: #7a8083;
}

.featured .city-code {
    color: #bbc0c2;
}

.live-dot {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #387c5c;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e7f5ed;
}

.clock-face {
    width: 150px;
    height: 150px;
    margin: 28px auto 22px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.13);
    position: relative;
    background: radial-gradient(circle, rgba(218,165,32,.08), transparent 65%);
}

.featured .clock-face {
    border-color: rgba(255,255,255,.22);
}

.clock-ring {
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(0,0,0,.15);
    border-radius: 50%;
}

.featured .clock-ring {
    border-color: rgba(255,255,255,.17);
}

.clock-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: 50% 100%;
    border-radius: 10px;
}

.hour-hand {
    height: 38px;
    width: 4px;
    background: currentColor;
}

.minute-hand {
    height: 51px;
    width: 3px;
    background: currentColor;
}

.second-hand {
    height: 57px;
    width: 1px;
    background: var(--gold);
}

.clock-pin {
    position: absolute;
    width: 9px;
    height: 9px;
    background: var(--gold);
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}

.clock-card h3 {
    font-size: 2.2rem;
    font-weight: 500;
}

.digital-time {
    display: block;
    font-size: 3.6rem;
    letter-spacing: .08em;
    font-weight: 300;
    margin-top: 8px;
    font-variant-numeric: tabular-nums;
}

.local-date {
    color: #858b8e;
    font-size: 1.2rem;
    margin-top: 9px;
}

.featured .local-date {
    color: #aeb5b8;
}

.exchange-panel {
    margin-top: 38px;
    background: white;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15,20,23,.06);
}

.exchange-header {
    padding: 28px 32px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 1px solid #e6e7e4;
    gap: 24px;
}

    .exchange-header .eyebrow {
        margin-bottom: 7px;
    }

    .exchange-header h3 {
        font-size: 2.7rem;
        font-weight: 500;
    }

.legend {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 1.05rem;
    color: #6a7174;
}

    .legend span {
        display: flex;
        align-items: center;
        gap: 7px;
    }

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

    .legend-dot.open {
        background: #3f936b;
    }

    .legend-dot.closed {
        background: #9ba1a3;
    }

    .legend-dot.holiday {
        background: var(--gold);
    }

.exchange-row {
    display: grid;
    grid-template-columns: 2fr 1.05fr .8fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 32px;
    border-bottom: 1px solid #ecece8;
    transition: .25s ease;
}

    .exchange-row:hover {
        background: #fafaf7;
    }

.exchange-identity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.exchange-monogram {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #101416;
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.exchange-identity h4 {
    font-size: 1.45rem;
    font-weight: 600;
}

.exchange-identity p, .exchange-hours span, .exchange-local span {
    color: #8a9092;
    font-size: 1rem;
    margin-top: 5px;
}

.exchange-hours, .exchange-local {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .exchange-hours strong, .exchange-local strong {
        font-size: 1.25rem;
        font-weight: 600;
        font-variant-numeric: tabular-nums;
    }

.market-status {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.status-pill {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    background: #ecefee;
    color: #686e70;
}

    .status-pill.open {
        background: #e6f4ec;
        color: #337553;
    }

    .status-pill.holiday {
        background: #fbf1cf;
        color: #84630a;
    }

.holiday-note {
    color: #8c9294;
    font-size: .9rem;
    min-height: 1.1em;
}

.market-disclaimer {
    color: #8a9092;
    font-size: 1rem;
    line-height: 1.6;
    padding: 17px 32px 22px;
}

#domains {
    position: relative;
    overflow: hidden;
    padding: 120px 24px 145px;
    background: linear-gradient(135deg,#07090a,#111719 62%,#07090a);
}

    #domains::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(218,165,32,.11), transparent 25%), radial-gradient(circle at 80% 65%, rgba(95,158,160,.12), transparent 28%);
    }

.domains-wrap {
    position: relative;
    z-index: 1;
}

.section-heading.light .section-title {
    color: white;
}

.section-heading.light > p:last-child {
    color: #aeb5b8;
}

.domain-stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
    max-width: 980px;
    margin: auto;
}

.domain-card {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
}

    .domain-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.06), transparent 80%);
        transform: translateX(-100%);
        transition: .6s ease;
    }

    .domain-card:hover {
        transform: translateY(-9px);
        border-color: rgba(218,165,32,.65);
        background: rgba(255,255,255,.07);
    }

        .domain-card:hover::before {
            transform: translateX(100%);
        }

.domain-index {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: .18em;
}

.domain-card h3 {
    font-size: clamp(2.5rem,4vw,4.2rem);
    font-weight: 300;
    overflow-wrap: anywhere;
}

.domain-action {
    color: #aeb5b8;
    font-size: 1.1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.float-one {
    animation: floating 6s ease-in-out infinite;
}

.float-two {
    animation: floating 7s ease-in-out infinite 1s;
}

.float-three {
    animation: floating 6.5s ease-in-out infinite .4s;
}

.float-four {
    animation: floating 7.5s ease-in-out infinite 1.4s;
}

#trade-contact {
    background: #f3f2ed;
    color: #111;
}

.trade-contact {
    max-width: 1100px;
    min-height: 360px;
    margin: auto;
    justify-content: space-between;
    padding: 70px 30px;
    gap: 40px;
}

    .trade-contact h2 {
        font-size: clamp(3.5rem,6vw,6rem);
        font-weight: 300;
    }

.dark-cta {
    color: #111;
    border-color: #111;
    margin-top: 0;
    flex: 0 0 auto;
}

#footer {
    background: #000;
}

    #footer .footer {
        min-height: 300px;
        flex-direction: column;
        padding: 60px 20px 20px;
    }

    #footer h2 {
        color: black;
        background: white;
        font-weight: 500;
        font-size: 1.6rem;
        letter-spacing: .1rem;
        margin: 16px 0 22px;
        padding: 2px 5px;
    }

    #footer .social-icon {
        display: flex;
        margin-bottom: 26px;
        gap: 10px;
    }

    #footer .social-item {
        height: 48px;
        width: 48px;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 1.1rem;
        font-weight: 600;
        transition: .3s ease;
    }

        #footer .social-item:hover {
            background: var(--gold);
            color: #000;
            border-color: var(--gold);
            transform: translateY(-3px);
        }

    #footer p {
        color: white;
        font-size: 1.1rem;
        line-height: 1.8;
    }

@keyframes hamburger_puls {
    to {
        opacity: 0;
        transform: scale(1.4);
    }
}

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

@keyframes pulse {
    50% {
        transform: scale(1.6);
        opacity: .6;
    }
}

@keyframes floating {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {
    .hero-orbit {
        width: 290px;
        height: 290px;
    }

    .clock-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }

    .clock-card {
        min-height: 360px;
    }

    .exchange-row {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .market-status {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

@media (max-width: 720px) {
    .trade-hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        margin-inline: auto;
    }

    .hero-orbit {
        width: 230px;
        height: 230px;
    }

    .orbit-center {
        width: 85px;
        height: 85px;
        font-size: 2.3rem;
    }

    .exchange-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .exchange-row {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }

    .exchange-identity {
        grid-column: 1 / -1;
    }

    .market-status {
        grid-column: 1 / -1;
        justify-content: flex-start;
        align-items: center;
    }

    .domain-stage {
        grid-template-columns: 1fr;
    }

    .domain-card {
        min-height: 180px;
    }

    .trade-contact {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    #header .hamburger {
        display: none;
    }

    #header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background: transparent;
    }

        #header .nav-list ul li {
            display: inline-block;
        }

            #header .nav-list ul li a {
                font-size: 1.45rem;
            }

        #header .nav-list ul a::after {
            display: none;
        }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
