:root {
    --gold: #f3b21a;
    --gold-light: #ffd86a;
    --gold-deep: #a85e00;
    --orange: #ff7600;
    --black: #050505;
    --black-soft: #0b0b0c;
    --graphite: #121214;
    --panel: rgba(18, 18, 20, 0.78);
    --panel-solid: #111113;
    --white: #ffffff;
    --text: #f4f4f5;
    --muted: #a7a7ad;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.16);
    --line-gold: rgba(243, 178, 26, 0.36);
    --success: #6be27a;
    --danger: #ef6a6a;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    --radius: 22px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--gold-deep) #09090a;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(243, 178, 26, 0.08), transparent 30%),
        radial-gradient(circle at 88% 25%, rgba(255, 118, 0, 0.07), transparent 28%),
        #060607;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

svg {
    display: block;
}

::selection {
    color: #171006;
    background: var(--gold-light);
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.64'/%3E%3C/svg%3E");
}

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.72;
}

.ambient {
    position: fixed;
    z-index: -3;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(135px);
    pointer-events: none;
}

.ambient-left {
    left: -210px;
    top: 32%;
    background: rgba(243, 178, 26, 0.13);
}

.ambient-right {
    right: -220px;
    bottom: 4%;
    background: rgba(255, 118, 0, 0.11);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light), var(--orange));
    box-shadow: 0 0 16px rgba(243, 178, 26, 0.75);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    box-shadow: 0 0 15px rgba(243, 178, 26, 0.8);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 216, 106, 0.52);
    transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
    opacity: 1;
}

body.cursor-hover .cursor-ring {
    width: 58px;
    height: 58px;
    border-color: rgba(255, 216, 106, 0.9);
    background: rgba(243, 178, 26, 0.07);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 86px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 6, 7, 0.72);
    backdrop-filter: blur(22px);
    transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
    height: 72px;
    background: rgba(5, 5, 6, 0.94);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 216, 106, 0.55);
    background:
        linear-gradient(145deg, rgba(243, 178, 26, 0.3), rgba(255, 118, 0, 0.05)),
        #111;
    transform: rotate(45deg);
    box-shadow: 0 0 28px rgba(243, 178, 26, 0.12);
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.38), transparent 65%);
    animation: brandShine 5.2s ease-in-out infinite;
}

.brand-mark > span {
    position: relative;
    z-index: 1;
    color: var(--gold-light);
    font-size: 1.7rem;
    font-weight: 900;
    transform: rotate(-45deg);
    text-shadow: 0 0 18px rgba(243, 178, 26, 0.45);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: 0.22em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.55rem;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: #c9c9ce;
    font-size: 0.89rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.68rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.server-ip,
.top-shop,
.mobile-menu-button {
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.server-ip:hover,
.top-shop:hover,
.mobile-menu-button:hover {
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.07);
    transform: translateY(-1px);
}

.server-ip {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0.58rem 0.86rem;
    border-radius: 12px;
}

.server-status-dot,
.pulse-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.server-status-dot.online,
.pulse-dot.online {
    background: var(--success);
    box-shadow: 0 0 14px rgba(107, 226, 122, 0.75);
}

.server-status-dot.offline,
.pulse-dot.offline {
    background: var(--danger);
    box-shadow: 0 0 14px rgba(239, 106, 106, 0.62);
}

.server-status-dot.pending,
.pulse-dot.pending {
    background: var(--gold);
    box-shadow: 0 0 14px rgba(243, 178, 26, 0.66);
    animation: pulseDot 1.8s ease-in-out infinite;
}

.server-ip-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.server-ip-copy small {
    color: var(--muted);
    font-size: 0.56rem;
    letter-spacing: 0.12em;
}

.server-ip-copy strong {
    font-size: 0.8rem;
}

.top-shop {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 1rem;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 800;
}

.top-shop svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: 0.25s ease;
}

.hero {
    position: relative;
    min-height: 940px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: 3rem;
    padding: 150px 7vw 105px;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: -4%;
    z-index: -6;
    background:
        linear-gradient(90deg, rgba(3, 3, 4, 0.98) 0%, rgba(3, 3, 4, 0.84) 44%, rgba(3, 3, 4, 0.35) 100%),
        linear-gradient(180deg, rgba(4, 4, 5, 0.07), #060607 97%),
        url("/assets/images/hero.webp") center / cover no-repeat;
    will-change: transform;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -4;
    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: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: -3;
    box-shadow: inset 0 0 180px 80px rgba(0, 0, 0, 0.54);
    pointer-events: none;
}

.hero-fog {
    position: absolute;
    z-index: -2;
    width: 75vw;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.11;
    pointer-events: none;
}

.hero-fog-one {
    left: -20%;
    bottom: 9%;
    background: linear-gradient(90deg, rgba(243, 178, 26, 0.7), transparent);
    animation: fogMove 13s ease-in-out infinite alternate;
}

.hero-fog-two {
    right: -24%;
    top: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 118, 0, 0.58));
    animation: fogMoveReverse 17s ease-in-out infinite alternate;
}

.hero-content {
    max-width: 790px;
}

.eyebrow,
.section-kicker {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.eyebrow > span {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    box-shadow: 0 0 12px rgba(243, 178, 26, 0.5);
}

.hero h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(4rem, 7.5vw, 8.2rem);
    line-height: 0.9;
    letter-spacing: -0.068em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--orange), var(--gold-light));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 6s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(243, 178, 26, 0.16));
}

.hero-content > p {
    max-width: 670px;
    margin: 1.8rem 0 0;
    color: #b8b8be;
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions,
.status-actions,
.manifest-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions {
    margin-top: 2.35rem;
}

.button {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 1.45rem;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button-primary {
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    box-shadow: 0 12px 36px rgba(243, 178, 26, 0.22);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(243, 178, 26, 0.31);
}

.button-ghost {
    color: var(--white);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.07);
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 0.65s ease-out forwards;
    pointer-events: none;
}

.hero-live {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(243, 178, 26, 0.24);
    border-radius: 999px;
    color: #ffe0a1;
    background: rgba(243, 178, 26, 0.055);
}

.live-pill.online {
    color: #b7f6bf;
    border-color: rgba(107, 226, 122, 0.2);
    background: rgba(107, 226, 122, 0.055);
}

.live-pill.offline {
    color: #ffc2c2;
    border-color: rgba(239, 106, 106, 0.22);
    background: rgba(239, 106, 106, 0.055);
}

.hero-stats {
    display: flex;
    gap: 2.7rem;
    margin-top: 2.35rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    color: var(--gold-light);
    font-size: 1.48rem;
}

.stat span {
    max-width: 150px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.hero-emblem {
    position: relative;
    width: min(560px, 41vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    will-change: transform;
}

.emblem-orbit {
    position: absolute;
    border: 1px solid rgba(243, 178, 26, 0.22);
    transform: rotate(45deg);
}

.orbit-one {
    width: 82%;
    height: 82%;
    animation: orbitClockwise 19s linear infinite;
}

.orbit-two {
    width: 62%;
    height: 62%;
    animation: orbitCounter 14s linear infinite;
}

.orbit-three {
    width: 44%;
    height: 44%;
    border-color: rgba(255, 216, 106, 0.28);
    animation: orbitClockwise 11s linear infinite reverse;
}

.emblem-core {
    position: relative;
    z-index: 3;
    width: 57%;
    aspect-ratio: 1;
    clip-path: polygon(20% 0, 100% 0, 86% 28%, 54% 28%, 54% 42%, 82% 42%, 68% 65%, 52% 65%, 52% 78%, 78% 78%, 62% 100%, 0 100%, 13% 70%, 13% 28%);
    background:
        linear-gradient(145deg, #fff0a8 0%, #f3b21a 28%, #ff7600 78%, #a84b00 100%);
    filter:
        drop-shadow(0 0 34px rgba(243, 178, 26, 0.25))
        drop-shadow(0 26px 45px rgba(0, 0, 0, 0.58));
    animation: emblemFloat 4.2s ease-in-out infinite;
}

.emblem-core::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.74), transparent 60%);
    animation: emblemShine 4.8s ease-in-out infinite;
}

.emblem-flare {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff4bd;
    box-shadow:
        0 0 12px #fff4bd,
        0 0 35px var(--gold),
        0 0 80px var(--orange);
    transform: translate(92px, -138px);
    animation: flarePulse 2.7s ease-in-out infinite;
}

.emblem-pulse {
    position: absolute;
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background: rgba(243, 178, 26, 0.13);
    filter: blur(68px);
    animation: emblemPulse 3.2s ease-in-out infinite;
}

.glass-panel {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(8, 8, 9, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.quick-status {
    position: relative;
    z-index: 10;
    width: min(470px, 100%);
    margin-top: -105px;
    padding: 1.15rem;
    border-radius: 18px;
}

.quick-status-head,
.quick-address,
.quick-meta {
    display: flex;
    align-items: center;
}

.quick-status-head {
    justify-content: space-between;
    gap: 1rem;
}

.status-badge {
    padding: 0.4rem 0.66rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-badge.online {
    color: #b7f6bf;
    border-color: rgba(107, 226, 122, 0.25);
    background: rgba(107, 226, 122, 0.06);
}

.status-badge.offline {
    color: #ffc2c2;
    border-color: rgba(239, 106, 106, 0.25);
    background: rgba(239, 106, 106, 0.06);
}

.status-badge.pending {
    color: #ffe0a1;
    border-color: rgba(243, 178, 26, 0.25);
    background: rgba(243, 178, 26, 0.06);
}

.quick-address {
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(243, 178, 26, 0.18);
    border-radius: 12px;
    background: rgba(243, 178, 26, 0.05);
}

.quick-address > span {
    color: var(--gold-light);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.quick-address button {
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.quick-meta {
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.quick-meta > span {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 0.75rem;
    border-right: 1px solid var(--line);
}

.quick-meta > span:first-child {
    padding-left: 0;
}

.quick-meta > span:last-child {
    padding-right: 0;
    border-right: 0;
}

.quick-meta small {
    color: var(--muted);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quick-meta strong {
    margin-top: 0.2rem;
    overflow: hidden;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-hint i {
    position: relative;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.scroll-hint i::after {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.intro-section,
.systems-section,
.journey-section,
.status-section,
.manifest-section,
.faq-section {
    position: relative;
    padding: 115px 7vw;
}

.section-heading {
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 3rem;
    margin: 0 auto 2.6rem;
}

.section-heading.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-heading h2 {
    max-width: 870px;
    margin: 0.45rem 0 0;
    font-size: clamp(2.25rem, 4vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -0.048em;
    text-wrap: balance;
}

.section-heading > p,
.section-heading.centered > p {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.intro-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin: 0 auto;
}

.feature-card,
.system-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(243, 178, 26, 0.09), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
        rgba(10, 10, 11, 0.86);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
}

.feature-card::before,
.system-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.10) 48%, transparent 73%);
    transform: translateX(-125%);
    transition: transform 0.75s ease;
}

.feature-card:hover::before,
.system-card:hover::before {
    transform: translateX(125%);
}

.feature-card:hover,
.system-card:hover {
    border-color: rgba(243, 178, 26, 0.38);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.58),
        0 0 52px rgba(243, 178, 26, 0.08);
}

.feature-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
}

.card-index,
.system-number {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.feature-icon,
.system-symbol {
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 178, 26, 0.3);
    color: var(--gold-light);
    background:
        radial-gradient(circle, rgba(243, 178, 26, 0.18), transparent 72%),
        rgba(255, 255, 255, 0.025);
    box-shadow: 0 0 34px rgba(243, 178, 26, 0.1);
}

.feature-icon {
    width: 76px;
    height: 76px;
    margin: 2.5rem 0 1.4rem;
    border-radius: 20px;
    font-size: 2rem;
}

.feature-card h3,
.system-card h3 {
    margin: 0;
    font-size: 1.72rem;
    letter-spacing: -0.035em;
}

.feature-card p,
.system-card p {
    color: var(--muted);
    line-height: 1.68;
}

.card-link {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.systems-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.systems-glow {
    position: absolute;
    left: 50%;
    top: 44%;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: rgba(243, 178, 26, 0.055);
    filter: blur(160px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.systems-grid {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0 auto;
}

.system-card {
    min-height: 455px;
    padding: 1.7rem;
}

.system-symbol {
    width: 62px;
    height: 62px;
    margin: 2rem 0 1.35rem;
    border-radius: 16px;
    font-size: 1.55rem;
}

.system-card ul {
    display: grid;
    gap: 0.7rem;
    margin: 1.5rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.system-card li {
    position: relative;
    padding-left: 1.25rem;
    color: #d5d5d8;
    font-size: 0.87rem;
}

.system-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.62rem;
    top: 0.2rem;
}

.journey {
    max-width: 1240px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(10, 10, 11, 0.78);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.journey-step {
    position: relative;
    min-height: 190px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 180px;
    align-items: center;
    gap: 1.8rem;
    padding: 1.8rem 2.4rem;
    border-bottom: 1px solid var(--line);
}

.journey-step:last-child {
    border-bottom: 0;
}

.journey-number {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    justify-self: center;
    border: 1px solid rgba(243, 178, 26, 0.35);
    border-radius: 18px;
    color: var(--gold-light);
    background: rgba(243, 178, 26, 0.055);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.journey-content {
    min-width: 0;
}

.journey-kicker {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.journey-step h3 {
    margin: 0.3rem 0 0;
    font-size: 1.55rem;
}

.journey-step p {
    max-width: 720px;
    margin: 0.55rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.journey-action {
    justify-self: end;
    border: 0;
    color: var(--gold-light);
    background: transparent;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.journey-action:hover {
    color: var(--white);
    transform: translateX(4px);
}

.status-section {
    overflow: hidden;
}

.status-section::before {
    content: "";
    position: absolute;
    inset: 15% 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 50%, rgba(243, 178, 26, 0.1), transparent 34%),
        radial-gradient(circle at 80% 50%, rgba(255, 118, 0, 0.06), transparent 30%);
}

.status-shell {
    max-width: 1450px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    align-items: center;
    gap: 4rem;
    margin: 0 auto;
    padding: 3rem;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.013)),
        rgba(8, 8, 9, 0.84);
    box-shadow: var(--shadow);
}

.status-copy h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(2.6rem, 4.3vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.status-copy > p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.72;
}

.status-actions {
    margin-top: 1.7rem;
}

.status-console {
    border: 1px solid rgba(243, 178, 26, 0.18);
    border-radius: 18px;
    background: #09090a;
    overflow: hidden;
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.44),
        inset 0 0 60px rgba(243, 178, 26, 0.025);
}

.console-head {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.console-head > span {
    display: flex;
    gap: 0.4rem;
}

.console-head i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.console-head i:first-child {
    background: var(--danger);
}

.console-head i:nth-child(2) {
    background: var(--gold);
}

.console-head i:nth-child(3) {
    background: var(--success);
}

.console-head strong {
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.console-head small {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.68rem;
}

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

.console-metric {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.3rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.console-metric:nth-child(even) {
    border-right: 0;
}

.console-metric:nth-child(n + 3) {
    border-bottom: 0;
}

.console-metric > span,
.console-motd > span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.console-metric strong {
    margin-top: 0.45rem;
    color: var(--gold-light);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.console-metric small {
    margin-top: 0.25rem;
    color: #77777e;
    font-size: 0.68rem;
}

.console-motd {
    padding: 1rem 1.3rem 1.25rem;
    border-top: 1px solid var(--line);
    background: rgba(243, 178, 26, 0.025);
}

.console-motd strong {
    display: block;
    margin-top: 0.45rem;
    color: #d9d9dc;
    font-size: 0.9rem;
    font-weight: 600;
}

.manifest-section {
    padding-top: 45px;
}

.manifest-panel {
    max-width: 1450px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr) auto;
    align-items: center;
    gap: 2.3rem;
    margin: 0 auto;
    padding: 2.5rem;
    border: 1px solid rgba(243, 178, 26, 0.28);
    border-radius: 26px;
    background:
        radial-gradient(circle at 10% 50%, rgba(243, 178, 26, 0.12), transparent 28%),
        linear-gradient(140deg, rgba(243, 178, 26, 0.075), rgba(255, 255, 255, 0.018)),
        #0b0b0c;
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.46),
        0 0 60px rgba(243, 178, 26, 0.05);
}

.manifest-mark {
    width: 190px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 178, 26, 0.3);
    background:
        radial-gradient(circle, rgba(243, 178, 26, 0.14), transparent 66%),
        rgba(255, 255, 255, 0.018);
    transform: rotate(45deg);
}

.manifest-mark span {
    color: var(--gold-light);
    font-size: 7rem;
    font-weight: 900;
    transform: rotate(-45deg);
    text-shadow: 0 0 38px rgba(243, 178, 26, 0.25);
}

.manifest-copy h2 {
    max-width: 800px;
    margin: 0.45rem 0 0;
    font-size: clamp(2rem, 3.2vw, 3.65rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.manifest-copy p {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.68;
}

.manifest-actions {
    flex-direction: column;
    min-width: 220px;
}

.faq-section {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012));
}

.faq-list {
    max-width: 1050px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item > button {
    width: 100%;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border: 0;
    color: var(--white);
    background: transparent;
    font-size: 1.12rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-item > button span {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.faq-item.open > button span {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
    min-height: 0;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    overflow: hidden;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
    padding-bottom: 1.5rem;
}

footer {
    min-height: 150px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 6vw;
    border-top: 1px solid var(--line);
    background: #050506;
}

footer > p {
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.76rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.78rem;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 1800;
    max-width: calc(100vw - 30px);
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(243, 178, 26, 0.34);
    border-radius: 12px;
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay {
    transition-delay: 0.12s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(243, 178, 26, 0.08), transparent 32%),
        #050506;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-shell {
    width: min(330px, 80vw);
    text-align: center;
}

.loader-emblem {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.2rem;
    border: 1px solid rgba(243, 178, 26, 0.45);
    color: var(--gold-light);
    background: rgba(243, 178, 26, 0.06);
    transform: rotate(45deg);
    box-shadow: 0 0 40px rgba(243, 178, 26, 0.1);
}

.loader-emblem span {
    font-size: 2.6rem;
    font-weight: 900;
    transform: rotate(-45deg);
}

.loader-brand {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.3em;
}

.loader-progress {
    height: 3px;
    margin-top: 1.15rem;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.loader-progress span {
    display: block;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-light), var(--orange), transparent);
    animation: loaderMove 1.2s ease-in-out infinite;
}

.loader-copy {
    margin-top: 0.75rem;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

@keyframes brandShine {
    0%, 65%, 100% { transform: translateX(-90%) rotate(10deg); }
    76% { transform: translateX(90%) rotate(10deg); }
}

@keyframes textShimmer {
    to { background-position: 220% center; }
}

@keyframes orbitClockwise {
    to { transform: rotate(405deg); }
}

@keyframes orbitCounter {
    to { transform: rotate(-315deg); }
}

@keyframes emblemFloat {
    0%, 100% { transform: translateY(-6px); }
    50% { transform: translateY(10px); }
}

@keyframes emblemShine {
    0%, 62%, 100% { transform: translateX(-80%) rotate(12deg); }
    78% { transform: translateX(80%) rotate(12deg); }
}

@keyframes flarePulse {
    0%, 100% { opacity: 0.6; transform: translate(92px, -138px) scale(0.8); }
    50% { opacity: 1; transform: translate(92px, -138px) scale(1.25); }
}

@keyframes emblemPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes fogMove {
    to { transform: translate3d(13%, -12px, 0); }
}

@keyframes fogMoveReverse {
    to { transform: translate3d(-14%, 15px, 0); }
}

@keyframes scrollLine {
    0% { transform: translateY(-20%); }
    100% { transform: translateY(240%); }
}

@keyframes rippleEffect {
    to { transform: translate(-50%, -50%) scale(16); opacity: 0; }
}

@keyframes loaderMove {
    0% { transform: translateX(-120%); }
    100% { transform: translateX(340%); }
}

@media (max-width: 1280px) {
    .main-nav {
        gap: 1.05rem;
    }

    .main-nav a {
        font-size: 0.82rem;
    }

    .server-ip {
        display: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
    }

    .manifest-panel {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .manifest-mark {
        width: 155px;
    }

    .manifest-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
    }
}

@media (max-width: 1050px) {
    .topbar {
        padding: 0 4vw;
    }

    .main-nav {
        position: fixed;
        inset: 86px 0 auto;
        max-height: 0;
        display: grid;
        gap: 0;
        margin: 0;
        overflow: hidden;
        border-bottom: 1px solid var(--line);
        background: rgba(5, 5, 6, 0.98);
        transition: max-height 0.3s ease;
    }

    body.menu-open .main-nav {
        max-height: 500px;
    }

    .main-nav a {
        padding: 1rem 6vw;
        border-top: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    body.menu-open .mobile-menu-button span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .mobile-menu-button span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 860px;
    }

    .hero-side {
        margin-top: -25px;
    }

    .hero-emblem {
        width: min(520px, 78vw);
    }

    .quick-status {
        margin-top: -90px;
    }

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

    .status-shell {
        grid-template-columns: 1fr;
    }

    .manifest-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .manifest-mark {
        margin: 0 auto;
    }

    .manifest-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .manifest-actions {
        grid-column: auto;
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .topbar {
        height: 74px;
        gap: 1rem;
    }

    .topbar.scrolled {
        height: 66px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 0.9rem;
    }

    .brand-copy small {
        font-size: 0.56rem;
    }

    .top-shop {
        display: none;
    }

    .main-nav {
        inset: 74px 0 auto;
    }

    .hero {
        padding: 128px 5vw 105px;
    }

    .hero-background {
        background:
            linear-gradient(180deg, rgba(3, 3, 4, 0.70), rgba(3, 3, 4, 0.92) 55%, #060607 96%),
            url("/assets/images/hero.webp") 58% center / cover no-repeat;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 16vw, 5.4rem);
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-actions,
    .status-actions,
    .manifest-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.9rem;
    }

    .stat span {
        max-width: none;
        font-size: 0.58rem;
    }

    .hero-side {
        margin-top: -10px;
    }

    .hero-emblem {
        width: 90vw;
    }

    .quick-status {
        margin-top: -65px;
    }

    .quick-address > span {
        font-size: 1.05rem;
    }

    .scroll-hint {
        display: none;
    }

    .intro-section,
    .systems-section,
    .journey-section,
    .status-section,
    .manifest-section,
    .faq-section {
        padding: 82px 5vw;
    }

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

    .intro-grid,
    .systems-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .system-card {
        min-height: auto;
    }

    .journey-step {
        min-height: auto;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 1rem;
        padding: 1.4rem;
    }

    .journey-number {
        width: 56px;
        height: 56px;
        align-self: start;
    }

    .journey-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.3rem;
        text-align: left;
    }

    .status-shell {
        gap: 2.5rem;
        padding: 1.4rem;
        border-radius: 20px;
    }

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

    .console-metric {
        min-height: 120px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .console-metric:last-child {
        border-bottom: 0;
    }

    .manifest-panel {
        padding: 1.5rem;
    }

    .manifest-mark {
        width: 120px;
    }

    .manifest-mark span {
        font-size: 4.8rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer > p {
        margin: 0;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stats .stat {
        padding-bottom: 0.8rem;
        border-bottom: 1px solid var(--line);
    }

    .hero-stats .stat:last-child {
        border-bottom: 0;
    }

    .quick-meta {
        flex-wrap: wrap;
    }

    .quick-meta > span {
        min-width: calc(50% - 0.5rem);
    }

    .quick-meta > span:nth-child(2) {
        border-right: 0;
    }

    .quick-meta > span:last-child {
        min-width: 100%;
        margin-top: 0.7rem;
        padding-top: 0.7rem;
        padding-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .feature-card,
    .system-card,
    .hero-emblem,
    .hero-background {
        transform: none !important;
    }
}

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