:root {
    color-scheme: dark;
    --bg: #030806;
    --bg-soft: #07110c;
    --panel: rgba(8, 22, 15, 0.72);
    --line: rgba(126, 255, 170, 0.14);
    --line-strong: rgba(80, 255, 139, 0.38);
    --green: #38f27c;
    --green-bright: #72ff9f;
    --green-dark: #0ca94d;
    --cyan: #6be6d1;
    --white: #f4fff8;
    --muted: #9eb3a5;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 8% 18%, rgba(24, 160, 76, 0.12), transparent 27%),
        radial-gradient(circle at 88% 65%, rgba(26, 152, 103, 0.08), transparent 30%),
        var(--bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    content: "";
    opacity: 0.18;
    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: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

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

.ambient {
    position: fixed;
    z-index: -2;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.09;
    background: var(--green);
}

.ambient-one {
    top: -180px;
    left: -160px;
}

.ambient-two {
    right: -210px;
    bottom: 5%;
}

.cursor-light {
    position: fixed;
    z-index: 8;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle, rgba(56, 242, 124, 0.055), transparent 64%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1180px, calc(100% - 36px));
    min-height: 68px;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(130, 255, 170, 0.14);
    border-radius: 18px;
    background: rgba(3, 11, 7, 0.74);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(22px);
    transform: translateX(-50%);
    transition: top 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    top: 8px;
    border-color: rgba(130, 255, 170, 0.24);
    background: rgba(3, 11, 7, 0.9);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 176px;
}

.brand img {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 0 22px rgba(56, 242, 124, 0.2);
}

.brand span,
.footer-brand span {
    display: flex;
    flex-direction: column;
}

.brand strong {
    font-size: 14px;
    letter-spacing: 0.17em;
}

.brand small {
    margin-top: 2px;
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.32em;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.main-nav a {
    padding: 11px 13px;
    border-radius: 11px;
    color: #a9b9af;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

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

.main-nav a.emerald-version-link {
    color: #06100b;
    background: linear-gradient(135deg, #72ff9f, #23d96e);
    box-shadow: 0 0 22px rgba(56, 242, 124, 0.18);
}

.main-nav a.emerald-version-link:hover,
.main-nav a.emerald-version-link.active {
    color: #06100b;
    background: linear-gradient(135deg, #8dffb3, #38f27c);
}

.header-discord {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(126, 255, 170, 0.17);
    border-radius: 12px;
    color: #d9e9df;
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px;
    font-weight: 800;
}

.discord-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8b9cff;
    box-shadow: 0 0 12px #8b9cff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: white;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    align-items: center;
    min-height: 820px;
    padding: 150px max(28px, calc((100vw - 1180px) / 2)) 110px;
    overflow: hidden;
}

.hero-scene,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-scene {
    z-index: -5;
    background: url("assets/img/image-15.png") center 28% / cover no-repeat;
    transform: scale(1.035);
    animation: sceneDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
    z-index: -4;
    background:
        linear-gradient(90deg, rgba(2, 8, 5, 0.98) 0%, rgba(2, 8, 5, 0.88) 35%, rgba(2, 8, 5, 0.43) 66%, rgba(2, 8, 5, 0.7) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 32%, rgba(2, 8, 5, 0.23) 100%),
        radial-gradient(circle at 72% 42%, rgba(36, 226, 108, 0.16), transparent 34%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.eyebrow,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-bright);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 9px 13px;
    border: 1px solid rgba(90, 255, 145, 0.2);
    border-radius: 999px;
    background: rgba(5, 22, 12, 0.54);
    backdrop-filter: blur(10px);
}

.live-dot,
.status-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(56, 242, 124, 0.1), 0 0 14px var(--green);
    animation: pulse 1.8s ease-in-out infinite;
}

.hero h1 {
    max-width: 700px;
    margin: 25px 0 22px;
    font-size: clamp(52px, 6.5vw, 92px);
    line-height: 0.92;
    letter-spacing: -0.068em;
}

.hero h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(100deg, var(--green-bright), var(--cyan) 58%, #eafff0);
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 45px rgba(61, 246, 128, 0.12);
}

.hero-copy {
    max-width: 590px;
    margin: 0;
    color: #afc0b5;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
}

.hero-actions,
.journey-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.account-delete-short {
    margin: 14px 0 20px;
    color: rgba(244, 255, 248, 0.70);
    font-size: 13px;
}

.account-delete-short a {
    color: var(--green-bright);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 56px;
    padding: 0 24px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #021108;
    background: linear-gradient(115deg, var(--green), #8bffad);
    box-shadow: 0 13px 40px rgba(41, 240, 113, 0.2);
}

.button-primary::before {
    position: absolute;
    top: -70%;
    left: -35%;
    width: 26%;
    height: 240%;
    content: "";
    opacity: 0.65;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(24deg);
    transition: left 0.65s ease;
}

.button-primary:hover::before {
    left: 120%;
}

.button-primary svg {
    width: 18px;
    fill: currentColor;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(4, 14, 9, 0.57);
    backdrop-filter: blur(14px);
}

.button-ghost:hover {
    border-color: rgba(80, 255, 139, 0.42);
    background: rgba(22, 85, 44, 0.2);
}

.server-address {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 340px;
    margin-top: 19px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 14px;
    cursor: pointer;
    text-align: left;
    background: rgba(3, 12, 7, 0.63);
    backdrop-filter: blur(16px);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.server-address:hover {
    border-color: rgba(80, 255, 139, 0.4);
    transform: translateY(-2px);
}

.server-address > span:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.server-address small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.server-address strong {
    font-size: 14px;
    letter-spacing: 0.04em;
}

.server-signal {
    display: flex;
    align-items: end;
    gap: 2px;
    width: 24px;
    height: 21px;
}

.server-signal i {
    width: 4px;
    border-radius: 4px;
    background: var(--green);
}

.server-signal i:nth-child(1) { height: 7px; }
.server-signal i:nth-child(2) { height: 12px; }
.server-signal i:nth-child(3) { height: 18px; }

.copy-label {
    color: var(--green-bright);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.server-card {
    position: relative;
    z-index: 3;
    width: min(100%, 480px);
    justify-self: end;
    padding: 13px;
    border: 1px solid rgba(121, 255, 167, 0.18);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(10, 28, 18, 0.86), rgba(3, 10, 7, 0.76));
    box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
    transform-style: preserve-3d;
}

.server-card::before {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    content: "";
    opacity: 0.36;
    background: linear-gradient(145deg, rgba(103, 255, 157, 0.6), transparent 30%, transparent 70%, rgba(86, 223, 197, 0.35));
    filter: blur(1px);
}

.server-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 6px 13px;
}

.status-pill,
.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.status-pill {
    color: var(--green-bright);
    background: rgba(56, 242, 124, 0.08);
}

.platform-pill {
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.server-card-visual {
    position: relative;
    height: 310px;
    overflow: hidden;
    border-radius: 19px;
    transform: translateZ(15px);
}

.server-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.server-card:hover .server-card-visual img {
    transform: scale(1.055);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(2, 10, 6, 0.92), transparent 55%),
        linear-gradient(135deg, rgba(30, 255, 106, 0.09), transparent 45%);
}

.visual-caption {
    position: absolute;
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: flex;
    flex-direction: column;
}

.visual-caption span {
    margin-bottom: 5px;
    color: var(--green-bright);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.visual-caption strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}

.server-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-top: 9px;
}

.server-metrics > div {
    display: flex;
    min-height: 82px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 15px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.027);
}

.server-metrics small {
    color: var(--muted);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.server-metrics strong {
    margin: 5px 0 2px;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.server-metrics span {
    color: #819087;
    font-size: 9px;
}

.scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #829188;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
    transform: translateX(-50%);
}

.scroll-hint span {
    position: relative;
    width: 19px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
}

.scroll-hint span::after {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 5px;
    border-radius: 5px;
    content: "";
    background: var(--green);
    transform: translateX(-50%);
    animation: scrollDrop 1.7s ease infinite;
}

.trust-strip {
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    background: #050e09;
}

.trust-track {
    display: flex;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.trust-track span {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 68px;
    padding: 0 35px;
    color: #809087;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.trust-track i {
    color: var(--green);
    font-style: normal;
    text-shadow: 0 0 14px rgba(56, 242, 124, 0.7);
}

.section-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.experience {
    padding-block: 130px 145px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 56px;
}

.section-heading h2,
.journey-heading h2,
.community-copy h2 {
    margin: 15px 0 0;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.section-heading h2 em {
    color: var(--green-bright);
    font-style: normal;
}

.section-heading p,
.community-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr 0.82fr;
    gap: 14px;
}

.feature {
    position: relative;
    display: flex;
    min-height: 390px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: var(--radius);
    flex-direction: column;
    background:
        radial-gradient(circle at 85% 8%, rgba(61, 242, 126, 0.09), transparent 27%),
        linear-gradient(145deg, rgba(11, 27, 18, 0.8), rgba(5, 13, 9, 0.84));
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.feature:hover {
    border-color: rgba(80, 255, 139, 0.25);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-8px);
}

.feature::after {
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(93, 255, 146, 0.08);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 0 35px rgba(93, 255, 146, 0.025), 0 0 0 70px rgba(93, 255, 146, 0.018);
}

.feature-number {
    color: #506158;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.17em;
}

.feature-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-top: 28px;
    border: 1px solid rgba(83, 255, 141, 0.18);
    border-radius: 19px;
    place-items: center;
    color: var(--green-bright);
    background: rgba(56, 242, 124, 0.07);
    box-shadow: inset 0 0 28px rgba(56, 242, 124, 0.04);
    font-size: 28px;
}

.feature-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.feature-content > span,
.step small {
    color: var(--green);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.feature h3 {
    margin: 10px 0;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.feature p,
.step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.feature-large {
    background:
        linear-gradient(0deg, rgba(3, 11, 7, 0.96), rgba(3, 11, 7, 0.18)),
        url("assets/img/image-13.png") center / cover;
}

.journey {
    position: relative;
    padding-block: 130px;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.06);
    background:
        linear-gradient(90deg, rgba(3, 9, 6, 0.98), rgba(3, 9, 6, 0.78)),
        url("assets/img/image-10.png") center / cover;
}

.journey-glow {
    position: absolute;
    top: -190px;
    right: 4%;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    opacity: 0.12;
    background: var(--green);
    filter: blur(150px);
}

.journey-heading {
    max-width: 800px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 70px;
}

.step {
    position: relative;
    padding-right: 48px;
}

.step-index {
    display: grid;
    width: 47px;
    height: 47px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    place-items: center;
    color: var(--green-bright);
    background: rgba(4, 18, 10, 0.76);
    box-shadow: 0 0 25px rgba(56, 242, 124, 0.08);
    font-size: 10px;
    font-weight: 900;
}

.step-line {
    position: absolute;
    top: 23px;
    right: 16px;
    left: 62px;
    height: 1px;
    background: linear-gradient(90deg, rgba(65, 251, 128, 0.52), rgba(65, 251, 128, 0.04));
}

.step > div:last-child {
    margin-top: 33px;
}

.step h3 {
    margin: 9px 0;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.journey-actions {
    margin-top: 55px;
}

.community {
    padding-block: 120px;
}

.community-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: 490px;
    padding: 68px;
    overflow: hidden;
    border: 1px solid rgba(112, 255, 161, 0.17);
    border-radius: 34px;
    background:
        radial-gradient(circle at 78% 45%, rgba(57, 242, 124, 0.13), transparent 27%),
        linear-gradient(135deg, rgba(11, 33, 20, 0.9), rgba(4, 12, 8, 0.95));
    box-shadow: var(--shadow);
}

.community-panel::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 75% 50%, black, transparent 58%);
}

.community-copy {
    position: relative;
    z-index: 2;
    max-width: 580px;
}

.community-copy p {
    max-width: 520px;
    margin-top: 25px;
}

.button-discord {
    margin-top: 30px;
    color: white;
    background: linear-gradient(120deg, #5865f2, #7b87ff);
    box-shadow: 0 14px 40px rgba(88, 101, 242, 0.18);
}

.community-orbit {
    position: relative;
    z-index: 2;
    width: 350px;
    height: 350px;
    justify-self: center;
}

.orbit {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(116, 255, 164, 0.17);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit::before {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--green);
    box-shadow: 0 0 15px var(--green);
}

.orbit-one {
    width: 310px;
    height: 310px;
    animation: rotate 13s linear infinite;
}

.orbit-two {
    width: 220px;
    height: 220px;
    animation: rotateReverse 9s linear infinite;
}

.emerald-gem {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 125px;
    height: 125px;
    border: 1px solid rgba(121, 255, 166, 0.42);
    border-radius: 36px;
    place-items: center;
    color: var(--green-bright);
    background: radial-gradient(circle, rgba(56, 242, 124, 0.22), rgba(4, 18, 10, 0.92));
    box-shadow: 0 0 70px rgba(56, 242, 124, 0.16), inset 0 0 40px rgba(56, 242, 124, 0.08);
    font-size: 61px;
    transform: translate(-50%, -50%) rotate(45deg);
}

.emerald-gem::first-letter {
    transform: rotate(-45deg);
}

.orbit-label {
    position: absolute;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #8ca097;
    background: rgba(3, 11, 7, 0.76);
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.label-one { top: 25px; right: 20px; }
.label-two { bottom: 45px; left: 0; }
.label-three { right: -10px; bottom: 95px; }

footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    width: min(1180px, calc(100% - 40px));
    min-height: 140px;
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.footer-brand strong {
    font-size: 11px;
    letter-spacing: 0.1em;
}

.footer-brand small,
footer p {
    margin-top: 4px;
    color: #66766d;
    font-size: 9px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #8e9d94;
    font-size: 11px;
    font-weight: 700;
}

footer p {
    justify-self: end;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    max-width: min(390px, calc(100% - 44px));
    padding: 15px 18px;
    border: 1px solid rgba(104, 255, 155, 0.25);
    border-radius: 13px;
    opacity: 0;
    color: #dcffe7;
    background: rgba(4, 18, 10, 0.93);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    pointer-events: none;
    font-size: 12px;
    font-weight: 700;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(18px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes sceneDrift {
    from { transform: scale(1.035) translate3d(0, 0, 0); }
    to { transform: scale(1.075) translate3d(-0.7%, -0.5%, 0); }
}

@keyframes pulse {
    50% { opacity: 0.58; transform: scale(0.82); }
}

@keyframes scrollDrop {
    from { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    to { opacity: 0; transform: translate(-50%, 12px); }
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateReverse {
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@media (max-width: 1040px) {
    .hero {
        grid-template-columns: 1fr 390px;
        gap: 38px;
    }

    .hero h1 {
        font-size: clamp(50px, 7vw, 74px);
    }

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

    .feature-large {
        grid-column: 1 / -1;
        min-height: 430px;
    }
}

@media (max-width: 840px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 12px;
        border: 1px solid rgba(126, 255, 170, 0.14);
        border-radius: 16px;
        flex-direction: column;
        background: rgba(3, 11, 7, 0.96);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
    }

    .main-nav.open {
        display: flex;
    }

    .header-discord {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 140px;
    }

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

    .server-card {
        width: 100%;
        max-width: none;
        margin-top: 10px;
        justify-self: stretch;
    }

    .scroll-hint {
        display: none;
    }

    .section-heading,
    .community-panel {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 25px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .step {
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 20px;
        padding-right: 0;
    }

    .step-line {
        top: 58px;
        bottom: -38px;
        left: 23px;
        width: 1px;
        height: auto;
        background: linear-gradient(rgba(65, 251, 128, 0.52), rgba(65, 251, 128, 0.04));
    }

    .step:last-child .step-line {
        display: none;
    }

    .step > div:last-child {
        margin-top: 0;
    }

    .community-orbit {
        margin-top: 20px;
    }

    footer {
        grid-template-columns: 1fr;
        padding-block: 40px;
        text-align: center;
    }

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

    footer p {
        justify-self: center;
    }
}

@media (max-width: 620px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        min-height: 60px;
    }

    .brand img {
        width: 39px;
        height: 39px;
    }

    .brand {
        min-width: 0;
    }

    .hero {
        min-height: auto;
        padding: 115px 18px 75px;
    }

    .hero h1 {
        font-size: clamp(47px, 15vw, 66px);
    }

    .hero-copy {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions,
    .journey-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .server-address {
        width: 100%;
        min-width: 0;
    }

    .server-card-visual {
        height: 250px;
    }

    .server-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .section-shell {
        width: calc(100% - 28px);
    }

    .experience,
    .journey,
    .community {
        padding-block: 90px;
    }

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

    .feature-large {
        grid-column: auto;
    }

    .feature {
        min-height: 350px;
    }

    .community-panel {
        padding: 40px 24px;
    }

    .community-orbit {
        width: 270px;
        height: 270px;
        transform: scale(0.84);
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
.news-live{padding-top:32px;padding-bottom:8px}
.news-live-card{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:28px 32px;border:1px solid rgba(91,255,151,.28);border-radius:22px;background:linear-gradient(120deg,rgba(7,27,16,.96),rgba(4,13,9,.93)),radial-gradient(circle at 82% 20%,rgba(61,255,132,.17),transparent 38%);box-shadow:0 26px 80px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.04)}
.news-live-copy h2{margin:10px 0 6px;font-size:clamp(1.7rem,4vw,3rem);color:#f3fff7}
.news-live-copy p{margin:0;max-width:760px;color:#b8cec0;line-height:1.65}
.news-live-date{margin-top:12px;color:#55f28e;font-size:.82rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
@media(max-width:720px){.news-live-card{align-items:flex-start;flex-direction:column;padding:22px}.news-live-card .button{width:100%}}

.button-version {
    color: #06100b;
    border-color: rgba(114,255,159,.55);
    background: linear-gradient(135deg, #72ff9f, #1fd96d);
    box-shadow: 0 18px 40px rgba(35, 217, 110, 0.22);
}

.updates-hero {
    padding-top: 170px;
    padding-bottom: 42px;
}

.updates-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(3rem, 10vw, 7.5rem);
    line-height: .9;
    letter-spacing: -.08em;
}

.updates-hero p {
    max-width: 780px;
    color: #b8cec0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.updates-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.updates-board {
    padding-top: 28px;
    padding-bottom: 100px;
}

.updates-intro {
    padding: 28px;
    border: 1px solid rgba(91,255,151,.22);
    border-radius: 24px;
    background: rgba(4, 14, 9, .72);
}

.updates-intro h2 {
    margin: 12px 0;
    font-size: clamp(2rem, 5vw, 4rem);
}

.updates-intro p {
    max-width: 880px;
    color: #b8cec0;
    line-height: 1.75;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.update-card {
    padding: 24px;
    border: 1px solid rgba(126,255,170,.16);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(7,27,16,.92), rgba(3,8,6,.92));
    box-shadow: 0 22px 60px rgba(0,0,0,.28);
}

.update-card span {
    color: var(--green-bright);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.update-card h3 {
    margin: 10px 0 14px;
    font-size: 1.4rem;
}

.update-card ul {
    margin: 0;
    padding-left: 18px;
    color: #b8cec0;
    line-height: 1.65;
}

@media(max-width:980px){.updates-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.updates-grid{grid-template-columns:1fr}.updates-hero{padding-top:125px}.updates-actions{display:grid}.main-nav a.emerald-version-link{width:100%;text-align:center}}
