:root {
    --yellow: #ffd400;
    --yellow-dark: #e8bc00;
    --black: #090909;
    --dark: #111111;
    --grey: #686868;
    --light: #f6f6f3;
    --white: #ffffff;

    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: auto;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 82px;
    background: var(--black);
    color: white;
    position: relative;
    z-index: 20;
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    font-size: 15px;
    transform: skew(-8deg);
}

.logo-text {
    font-size: 17px;
    line-height: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo-text small {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    margin-top: 3px;
    color: var(--yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nz-badge {
    font-size: 12px;
    color: #cfcfcf;
}

.notify-btn {
    border: none;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    padding: 12px 19px;
    transition: 0.25s;
}

.notify-btn:hover {
    background: white;
    transform: translateY(-2px);
}


/* ================= HERO ================= */

.hero {
    position: relative;
    background: var(--black);
    color: white;
    min-height: 680px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image: linear-gradient(
        to bottom,
        black,
        transparent
    );
}

.hero-content {
    min-height: 680px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    position: relative;
    z-index: 2;
}

.hero-copy {
    padding: 80px 0;
}

.coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    background: rgba(255,212,0,0.1);
    color: var(--yellow);

    border: 1px solid rgba(255,212,0,0.35);

    padding: 9px 13px;

    margin-bottom: 25px;
}

.coming-badge span {
    width: 7px;
    height: 7px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.94;
    letter-spacing: -5px;
    max-width: 700px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-description {
    max-width: 540px;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    border: none;
    padding: 15px 22px;

    font-weight: 800;
    font-size: 13px;

    transition: 0.25s;
}

.primary-btn {
    background: var(--yellow);
    color: var(--black);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,212,0,0.2);
}

.secondary-btn {
    background: transparent;
    border: 1px solid #444;
    color: white;
}

.secondary-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.trust-row {
    display: flex;
    gap: 35px;
    margin-top: 55px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-item strong {
    color: var(--yellow);
    font-size: 12px;
}

.trust-item span {
    font-size: 11px;
    color: #8e8e8e;
}


/* ================= MARKETPLACE VISUAL ================= */

.marketplace-visual {
    height: 580px;
    position: relative;
    display: grid;
    place-items: center;
}

.visual-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    background: var(--yellow);
    opacity: 0.12;

    filter: blur(100px);
    border-radius: 50%;
}

.marketplace-circle {
    width: 320px;
    height: 320px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #292929 0%,
            #101010 60%,
            #050505 100%
        );

    border: 1px solid #333;

    display: grid;
    place-items: center;

    box-shadow:
        0 0 0 30px rgba(255,255,255,0.015),
        0 0 0 60px rgba(255,255,255,0.01);
}

.circle-inner {
    width: 180px;
    height: 180px;

    background: var(--yellow);

    color: var(--black);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: rotate(-7deg);

    box-shadow: 15px 15px 0 rgba(255,255,255,0.04);
}

.tt-symbol {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -6px;
}

.circle-inner span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.circle-inner small {
    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 4px;
    font-weight: 900;
}

.floating-card {
    position: absolute;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #171717;
    border: 1px solid #303030;

    padding: 13px 17px;

    min-width: 175px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.3);

    animation: float 5s ease-in-out infinite;
}

.floating-card strong {
    display: block;
    font-size: 12px;
}

.floating-card span {
    display: block;
    font-size: 9px;
    color: #777;
    margin-top: 3px;
}

.mini-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: var(--yellow);
    color: var(--black);
}

.mini-icon svg {
    width: 17px;
}

.card-one {
    top: 95px;
    left: 0;
}

.card-two {
    top: 35px;
    right: 20px;
    animation-delay: -1s;
}

.card-three {
    bottom: 90px;
    left: 25px;
    animation-delay: -2s;
}

.card-four {
    bottom: 25px;
    right: 5px;
    animation-delay: -3s;
}

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

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


/* ================= CATEGORIES ================= */

.categories {
    padding: 110px 0;
    background: var(--light);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 55px;
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 15px;
}

.section-heading h2,
.launch-box h2,
.notify-content h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 900;
}

.section-heading h2 span,
.launch-box h2 span,
.notify-content h2 span {
    color: var(--yellow-dark);
}

.section-heading > p {
    max-width: 400px;
    color: #707070;
    font-size: 14px;
    line-height: 1.7;
}


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

.category-card {
    min-height: 270px;
    background: white;

    border: 1px solid #e6e6e6;

    padding: 28px;

    position: relative;

    transition:
        transform 0.3s,
        background 0.3s,
        color 0.3s;

    cursor: pointer;
}

.category-card:hover {
    background: var(--black);
    color: white;
    transform: translateY(-8px);
}

.category-number {
    position: absolute;
    top: 25px;
    right: 25px;

    font-size: 10px;
    color: #aaa;
    font-weight: 800;
}

.category-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    background: var(--yellow);

    color: var(--black);

    margin-bottom: 55px;
}

.category-icon svg {
    width: 25px;
}

.category-card h3 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    max-width: 230px;
}

.category-card:hover p {
    color: #aaa;
}

.category-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid #ddd;

    transition: 0.25s;
}

.category-card:hover .category-arrow {
    border-color: var(--yellow);
    color: var(--yellow);
}


/* ================= LAUNCH ================= */

.launch-section {
    padding: 90px 0;
    background: var(--black);
}

.launch-box {
    min-height: 320px;

    background: var(--yellow);

    padding: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    position: relative;
    overflow: hidden;
}

.launch-box::after {
    content: "TT";

    position: absolute;

    right: -30px;
    bottom: -100px;

    font-size: 300px;
    font-weight: 900;

    color: rgba(0,0,0,0.04);
}

.launch-box .section-label {
    color: rgba(0,0,0,0.55);
}

.launch-box h2 span {
    color: white;
}

.launch-box p {
    margin-top: 20px;
    font-size: 13px;
    max-width: 380px;
    line-height: 1.6;
}

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

    position: relative;
    z-index: 2;
}

.time-box {
    text-align: center;
}

.time-box strong {
    display: block;

    font-size: clamp(35px, 5vw, 65px);
    line-height: 1;

    font-weight: 900;

    min-width: 75px;
}

.time-box span {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2px;
}

.time-separator {
    font-size: 35px;
    font-weight: 900;
}


/* ================= NOTIFY ================= */

.notify-section {
    padding: 110px 0;
    background: white;
}

.notify-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.notify-content .section-label {
    color: #777;
}

.notify-content p {
    margin: 25px auto;
    color: #777;
    font-size: 14px;
    max-width: 500px;
    line-height: 1.7;
}

.notify-form {
    display: flex;
    max-width: 650px;
    margin: 35px auto 0;
}

.email-wrapper {
    flex: 1;

    display: flex;
    align-items: center;
    gap: 12px;

    border: 1px solid #ddd;
    padding: 0 18px;
}

.email-wrapper svg {
    width: 18px;
    color: #888;
}

.email-wrapper input {
    width: 100%;
    height: 55px;

    border: none;
    outline: none;

    font-size: 13px;
}

.notify-form button {
    display: flex;
    align-items: center;
    gap: 10px;

    border: none;

    background: var(--black);
    color: white;

    padding: 0 25px;

    font-weight: 800;
}

.notify-form button:hover {
    background: var(--yellow);
    color: var(--black);
}

.privacy {
    display: block;
    margin-top: 12px;

    color: #aaa;
    font-size: 10px;
}

#formMessage {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 700;
}


/* ================= FOOTER ================= */

footer {
    background: #050505;
    color: white;
    padding: 30px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-inner p {
    color: #666;
    font-size: 10px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    color: white;
    border: 1px solid #333;

    transition: 0.2s;
}

.footer-social a:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

.footer-social svg {
    width: 15px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .hero-content {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-copy {
        padding: 30px 0;
    }

    .marketplace-visual {
        height: 450px;
    }

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

    .launch-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .navbar {
        height: 70px;
    }

    .nz-badge {
        display: none;
    }

    .notify-btn {
        padding: 10px 13px;
        font-size: 11px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn,
    .secondary-btn {
        justify-content: center;
    }

    .trust-row {
        gap: 18px;
    }

    .marketplace-circle {
        width: 250px;
        height: 250px;
    }

    .circle-inner {
        width: 140px;
        height: 140px;
    }

    .tt-symbol {
        font-size: 45px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .card-one {
        left: -20px;
    }

    .card-two {
        right: -20px;
    }

    .card-three {
        left: -20px;
    }

    .card-four {
        right: -20px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 240px;
    }

    .launch-box {
        padding: 35px 25px;
    }

    .countdown {
        width: 100%;
        justify-content: space-between;
        gap: 5px;
    }

    .time-box strong {
        min-width: 45px;
    }

    .time-separator {
        font-size: 20px;
    }

    .notify-form {
        flex-direction: column;
        gap: 10px;
    }

    .email-wrapper {
        height: 55px;
    }

    .notify-form button {
        height: 55px;
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

}