@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

:root {
    --red: #e00000;
    --red-bright: #ff1717;
    --red-dark: #680000;
    --black: #050505;
    --panel: #0b0b0b;
    --line: rgba(255,255,255,.10);
    --muted: #747474;
    --white: #f5f5f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
    font-family: "Barlow Condensed", Arial, sans-serif;
}

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

.world {
    position: fixed;
    inset: 0;
    z-index: -20;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(130,0,0,.15), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(80,0,0,.13), transparent 30%),
        #050505;
}

.grid {
    position: absolute;
    inset: -10%;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 70px 70px;
    transform: perspective(600px) rotateX(62deg) scale(1.8) translateY(22%);
    transform-origin: center bottom;
}

.noise {
    position: absolute;
    inset: 0;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
    pointer-events: none;
}

.red-orbit {
    position: absolute;
    border: 1px solid rgba(255,0,0,.13);
    border-radius: 50%;
    transform: rotate(-22deg);
    box-shadow: 0 0 45px rgba(180,0,0,.06);
}

.orbit-1 {
    width: 900px;
    height: 260px;
    right: -300px;
    top: 18%;
}

.orbit-2 {
    width: 700px;
    height: 190px;
    left: -280px;
    bottom: 12%;
}

.orbit-3 {
    width: 520px;
    height: 140px;
    right: 8%;
    top: 58%;
    opacity: .45;
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: rgba(255,0,0,.4);
}

.corner-tl {
    top: 85px;
    left: 4%;
    border-top: 1px solid;
    border-left: 1px solid;
}

.corner-tr {
    top: 85px;
    right: 4%;
    border-top: 1px solid;
    border-right: 1px solid;
}

.corner-bl {
    bottom: 25px;
    left: 4%;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.corner-br {
    bottom: 25px;
    right: 4%;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5,5,5,.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 4px;
}

.brand-red {
    color: var(--red);
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #606060;
    font: 10px "Space Mono", monospace;
    letter-spacing: 1px;
}

.nav-center i {
    width: 5px;
    height: 5px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--red);
}

.back-link {
    font: 10px "Space Mono", monospace;
    letter-spacing: 2px;
    color: #aaa;
}

.back-link span {
    color: var(--red);
    font-size: 15px;
}

main {
    position: relative;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 9vw 100px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 65%;
    left: 9vw;
    top: 17%;
    background: linear-gradient(transparent, var(--red), transparent);
    opacity: .7;
}

.hero-index {
    position: absolute;
    top: 125px;
    left: 9vw;
    color: #454545;
    font: 10px "Space Mono", monospace;
    letter-spacing: 3px;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 650px;
}

.eyebrow,
.section-code,
.mini-label {
    color: var(--red);
    font: 10px "Space Mono", monospace;
    letter-spacing: 3px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.pulse {
    width: 7px;
    height: 7px;
    background: var(--red-bright);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,0,0,.5);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 10px rgba(255,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,0,0,0);
    }
}

.hero h1 {
    font-size: clamp(100px, 17vw, 250px);
    line-height: .72;
    font-weight: 900;
    letter-spacing: -10px;
    text-transform: uppercase;
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 2px #777;
}

.hero p {
    max-width: 440px;
    margin-top: 45px;
    color: #8a8a8a;
    font-size: 18px;
    line-height: 1.3;
}

.hero-mark {
    position: absolute;
    width: min(45vw, 650px);
    height: min(45vw, 650px);
    right: -8vw;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.mark-ring {
    position: absolute;
    border: 1px solid rgba(255,0,0,.18);
    border-radius: 50%;
    inset: 0;
}

.ring-a {
    transform: rotate(18deg) scaleY(.34);
    animation: orbitA 12s linear infinite;
}

.ring-b {
    transform: rotate(-18deg) scaleY(.48);
    animation: orbitB 18s linear infinite reverse;
}

.ring-c {
    transform: rotate(55deg) scaleY(.68);
    animation: orbitA 22s linear infinite;
}

@keyframes orbitA {
    from { transform: rotate(0deg) scaleY(.34); }
    to { transform: rotate(360deg) scaleY(.34); }
}

@keyframes orbitB {
    from { transform: rotate(0deg) scaleY(.48); }
    to { transform: rotate(360deg) scaleY(.48); }
}

.mark-core {
    position: absolute;
    inset: 28%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(230,0,0,.3), rgba(70,0,0,.05) 50%, transparent 70%);
    color: rgba(255,255,255,.85);
    font-size: clamp(45px, 8vw, 105px);
    font-weight: 900;
    letter-spacing: -6px;
    text-shadow: 0 0 35px rgba(255,0,0,.25);
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 9vw;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4e4e4e;
    font: 9px "Space Mono", monospace;
    letter-spacing: 2px;
}

.hero-scroll b {
    width: 50px;
    height: 1px;
    background: var(--red);
}

.social-hub {
    max-width: 1500px;
    margin: auto;
    padding: 140px 7vw;
}

.section-intro {
    max-width: 800px;
    margin-bottom: 65px;
}

.section-intro h2 {
    margin: 18px 0 25px;
    font-size: clamp(50px, 7vw, 100px);
    line-height: .82;
    letter-spacing: -3px;
}

.section-intro h2 em {
    color: var(--red);
    font-style: normal;
}

.section-intro p {
    max-width: 450px;
    color: #737373;
    font-size: 16px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.social-card {
    min-height: 500px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: rgba(10,10,10,.82);
    border: 1px solid rgba(255,255,255,.11);
    transition: transform .5s cubic-bezier(.2,.8,.2,1), border-color .3s;
}

.social-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,0,0,.09), transparent 35%),
        linear-gradient(315deg, rgba(255,255,255,.025), transparent 45%);
    pointer-events: none;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,0,0,.6);
}

.social-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    bottom: -80px;
    border: 1px solid rgba(255,0,0,.3);
    border-radius: 50%;
    box-shadow:
        0 0 0 25px rgba(255,0,0,.025),
        0 0 0 50px rgba(255,0,0,.018),
        0 0 0 75px rgba(255,0,0,.012);
    transition: .6s;
}

.social-card:hover::after {
    transform: scale(1.35) rotate(30deg);
}

.card-top,
.card-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-number {
    color: #555;
    font: 10px "Space Mono", monospace;
}

.card-status {
    color: #666;
    font: 8px "Space Mono", monospace;
    letter-spacing: 2px;
}

.card-symbol {
    position: absolute;
    top: 95px;
    right: 45px;
    font-size: 100px;
    line-height: 1;
    color: rgba(255,255,255,.055);
    transition: .5s;
}

.social-card:hover .card-symbol {
    color: rgba(255,0,0,.18);
    transform: scale(1.12) rotate(-8deg);
}

.card-content {
    position: absolute;
    left: 30px;
    bottom: 90px;
    z-index: 3;
}

.platform {
    color: var(--red);
    font: 10px "Space Mono", monospace;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.card-content h3 {
    font-size: clamp(48px, 6vw, 78px);
    line-height: .78;
    letter-spacing: -2px;
    font-weight: 900;
}

.card-content p {
    max-width: 330px;
    margin-top: 22px;
    color: #777;
    font-size: 14px;
    line-height: 1.35;
}

.card-bottom {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: #666;
    font: 9px "Space Mono", monospace;
    letter-spacing: 2px;
}

.card-bottom strong {
    color: var(--red);
    font-size: 20px;
    font-weight: 400;
}

.card-scan {
    position: absolute;
    left: -20%;
    right: -20%;
    height: 1px;
    top: 45%;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,.35), transparent);
    opacity: 0;
}

.social-card:hover .card-scan {
    animation: scan 1.2s ease-out;
}

@keyframes scan {
    0% {
        top: 10%;
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        top: 90%;
        opacity: 0;
    }
}

.statement {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    max-width: 1500px;
    margin: auto;
    padding: 120px 7vw;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.statement-line {
    position: absolute;
    left: 7vw;
    right: 7vw;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,0,0,.35), transparent);
}

.statement-number {
    position: relative;
    color: #292929;
    font-size: 90px;
    font-weight: 900;
}

.statement-main {
    position: relative;
    justify-self: center;
    max-width: 760px;
}

.statement-main h2 {
    margin: 20px 0 28px;
    font-size: clamp(65px, 9vw, 125px);
    line-height: .75;
    letter-spacing: -5px;
}

.statement-main h2 span {
    color: var(--red);
}

.statement-main p {
    max-width: 480px;
    color: #777;
    font-size: 17px;
}

.statement-side {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: #4c4c4c;
    font: 9px "Space Mono", monospace;
    letter-spacing: 3px;
}

.quick-links {
    max-width: 1500px;
    margin: auto;
    padding: 130px 7vw;
}

.quick-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.quick-head span {
    color: var(--red);
    font: 10px "Space Mono", monospace;
    letter-spacing: 2px;
}

.quick-head h2 {
    font-size: clamp(55px, 7vw, 95px);
    line-height: .8;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.quick-card {
    min-height: 130px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #777;
    transition: .35s;
}

.quick-card span {
    font: 10px "Space Mono", monospace;
    letter-spacing: 1px;
}

.quick-card b {
    color: var(--red);
    font-size: 24px;
    font-weight: 400;
}

.quick-card:hover {
    color: #fff;
    background: rgba(130,0,0,.12);
}

footer {
    padding: 55px 7vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
}

.footer-logo {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 4px;
}

.footer-logo span {
    color: var(--red);
}

.footer-meta {
    color: #555;
    font: 9px "Space Mono", monospace;
    letter-spacing: 1px;
}

.footer-meta span {
    color: var(--red);
    padding: 0 8px;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-center {
        display: none;
    }

    .hero {
        padding-left: 7vw;
    }

    .hero h1 {
        font-size: clamp(90px, 19vw, 180px);
    }

    .hero-mark {
        opacity: .35;
        right: -25vw;
    }

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

    .social-card {
        min-height: 450px;
    }

    .statement {
        grid-template-columns: 60px 1fr;
    }

    .statement-side {
        display: none;
    }

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

@media (max-width: 600px) {

    .topbar {
        height: 62px;
        padding: 0 6vw;
    }

    .brand {
        font-size: 20px;
    }

    .back-link {
        font-size: 8px;
    }

    .hero {
        min-height: 90vh;
        padding: 120px 7vw 80px;
    }

    .hero::before,
    .hero-index {
        display: none;
    }

    .hero h1 {
        font-size: clamp(80px, 25vw, 135px);
        letter-spacing: -6px;
    }

    .hero h1 span {
        -webkit-text-stroke: 1px #777;
    }

    .hero-mark {
        width: 500px;
        height: 500px;
        right: -300px;
        opacity: .25;
    }

    .hero p {
        font-size: 16px;
    }

    .social-hub,
    .quick-links {
        padding: 90px 6vw;
    }

    .section-intro h2 {
        font-size: 60px;
    }

    .social-card {
        min-height: 430px;
        padding: 22px;
    }

    .card-content {
        left: 22px;
        bottom: 80px;
    }

    .card-bottom {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .card-content h3 {
        font-size: 58px;
    }

    .statement {
        min-height: 550px;
        grid-template-columns: 1fr;
        padding: 90px 7vw;
    }

    .statement-number {
        font-size: 55px;
        margin-bottom: 35px;
    }

    .statement-main h2 {
        font-size: 70px;
        letter-spacing: -3px;
    }

    .quick-head {
        display: block;
    }

    .quick-head h2 {
        margin-top: 18px;
    }

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

    footer {
        display: block;
    }

    .footer-meta {
        margin-top: 20px;
        line-height: 2;
    }
}

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