:root {
    color-scheme: dark;
    --deep: #020711;
    --navy: #06172d;
    --panel: rgba(3, 15, 34, 0.72);
    --panel-strong: rgba(5, 31, 70, 0.86);
    --blue: #076df2;
    --cyan: #38f6ff;
    --ice: #d8fdff;
    --text: #f4fbff;
    --muted: rgba(218, 243, 255, 0.72);
    --line: rgba(93, 238, 255, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        linear-gradient(180deg, rgba(2, 7, 17, 0.18), rgba(2, 7, 17, 0.82) 68%, #020711),
        radial-gradient(circle at 50% 16%, rgba(56, 246, 255, 0.16), transparent 24%),
        url("https://i.postimg.cc/KzQFC62R/Chat-GPT-Image-3-5-2026-klo-19-13-38.png") center top / cover fixed,
        var(--deep);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(1, 8, 20, 0.08), rgba(1, 8, 20, 0.74)),
        radial-gradient(ellipse at 50% 100%, rgba(3, 10, 24, 0.96), transparent 58%);
}

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

.site-intro {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(circle at center, rgba(56, 246, 255, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(2, 7, 17, 0.98), rgba(2, 7, 17, 0.92));
    animation: intro-shell 2.75s cubic-bezier(.2, .9, .2, 1) forwards;
}

.site-intro::before,
.site-intro::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(520px, 78vw);
    aspect-ratio: 1;
    border-radius: 999px;
    border: 1px solid rgba(56, 246, 255, 0.28);
    transform: translate(-50%, -50%);
}

.site-intro::before {
    box-shadow:
        0 0 40px rgba(56, 246, 255, 0.34),
        inset 0 0 54px rgba(7, 109, 242, 0.2);
    animation: intro-ring-pulse 2.2s ease forwards;
}

.site-intro::after {
    width: min(360px, 60vw);
    border-color: rgba(216, 253, 255, 0.22);
    animation: intro-ring-spin 2.2s ease forwards;
}

.site-intro img {
    position: relative;
    z-index: 2;
    width: clamp(150px, 24vw, 270px);
    height: auto;
    filter:
        drop-shadow(0 0 24px rgba(56, 246, 255, 0.9))
        drop-shadow(0 0 80px rgba(7, 109, 242, 0.58))
        saturate(1.28)
        brightness(1.08);
    transform: scale(0.72);
    opacity: 0;
    animation: intro-mask 2.35s cubic-bezier(.2, .9, .2, 1) forwards;
}

.intro-ring {
    position: absolute;
    width: min(8px, 2vw);
    height: 70vh;
    background: linear-gradient(180deg, transparent, rgba(56, 246, 255, 0.9), transparent);
    filter: blur(5px);
    opacity: 0;
    transform: rotate(42deg) translateX(-46vw);
    animation: intro-slash 2.1s ease forwards;
}

main {
    position: relative;
    z-index: 2;
}

.mask-rain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.mask-rain img {
    position: absolute;
    top: -140px;
    left: var(--x);
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    opacity: var(--opacity);
    filter:
        drop-shadow(0 0 20px rgba(56, 246, 255, 0.64))
        drop-shadow(0 0 44px rgba(7, 109, 242, 0.44))
        saturate(1.36)
        brightness(1.1);
    transform: translate3d(0, var(--start-y), 0) rotate(var(--rotate));
    animation: mask-fall var(--duration) linear var(--delay) infinite;
}

.ledbar {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(980px, calc(100% - 32px));
    min-height: 58px;
    padding: 8px;
    border: 1px solid rgba(56, 246, 255, 0.28);
    border-radius: 999px;
    background: rgba(2, 10, 24, 0.62);
    box-shadow:
        0 0 28px rgba(56, 246, 255, 0.16),
        inset 0 1px 0 rgba(216, 253, 255, 0.12);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.ledbar::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(56, 246, 255, 0.7), rgba(7, 109, 242, 0.58), transparent);
    opacity: 0.62;
    filter: blur(12px);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--ice);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-shadow: 0 0 16px rgba(56, 246, 255, 0.72);
}

.ledbar nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ledbar nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 900;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ledbar nav a:hover,
.ledbar nav a:focus-visible {
    outline: 0;
    color: var(--text);
    border-color: rgba(56, 246, 255, 0.32);
    background: rgba(56, 246, 255, 0.08);
}

.discord-corner {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(56, 246, 255, 0.34);
    border-radius: 999px;
    color: var(--ice);
    background: rgba(2, 10, 24, 0.7);
    box-shadow: 0 0 28px rgba(56, 246, 255, 0.18);
    backdrop-filter: blur(18px);
    font-size: 0.86rem;
    font-weight: 900;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.discord-corner svg {
    width: 27px;
    height: 27px;
    color: var(--cyan);
    filter: drop-shadow(0 0 10px rgba(56, 246, 255, 0.72));
}

.discord-corner:hover,
.discord-corner:focus-visible {
    outline: 0;
    transform: translateY(-2px);
    border-color: rgba(216, 253, 255, 0.64);
    box-shadow: 0 0 38px rgba(56, 246, 255, 0.3);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: clamp(28px, 5vw, 74px);
    width: min(1180px, calc(100% - 38px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 116px 0 84px;
}

.hero-copy {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--cyan);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(56, 246, 255, 0.48);
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

.jasu-title {
    position: relative;
    margin: 0;
    font-size: clamp(6.2rem, 16vw, 13.5rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: 0.035em;
    background: linear-gradient(180deg, #ffffff 0%, #c8fbff 42%, #4ceeff 72%, #168dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 14px rgba(216, 253, 255, 0.18),
        0 0 38px rgba(56, 246, 255, 0.26),
        0 0 82px rgba(7, 109, 242, 0.28);
    animation: jasu-pulse 3.6s ease-in-out infinite alternate;
}

.jasu-title::before,
.jasu-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.jasu-title::before {
    z-index: -1;
    color: rgba(56, 246, 255, 0.18);
    filter: blur(13px);
    transform: translateY(8px) scale(1.03);
}

.jasu-title::after {
    color: transparent;
    -webkit-text-stroke: 1px rgba(216, 253, 255, 0.3);
    animation: jasu-scan 4s ease-in-out infinite;
}

.hero-line {
    width: min(560px, 68vw);
    height: 3px;
    margin: 24px 0 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(216, 253, 255, 0.88), rgba(56, 246, 255, 0.78), transparent);
    box-shadow:
        0 0 18px rgba(56, 246, 255, 0.44),
        0 0 42px rgba(7, 109, 242, 0.3);
    animation: line-breathe 3s ease-in-out infinite alternate;
}

.hero-copy p {
    max-width: 620px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.24rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border: 1px solid rgba(56, 246, 255, 0.28);
    border-radius: 8px;
    font-weight: 900;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero-button.primary {
    background: linear-gradient(135deg, rgba(56, 246, 255, 0.28), rgba(7, 109, 242, 0.72));
    box-shadow: 0 16px 44px rgba(7, 109, 242, 0.26);
}

.hero-button.ghost {
    color: var(--muted);
    background: rgba(2, 10, 24, 0.44);
}

.hero-button:hover,
.hero-button:focus-visible {
    outline: 0;
    transform: translateY(-2px);
    border-color: rgba(216, 253, 255, 0.58);
    box-shadow: 0 0 28px rgba(56, 246, 255, 0.18);
}

.hero-panel {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border: 1px solid rgba(56, 246, 255, 0.26);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(56, 246, 255, 0.14), transparent 38%),
        linear-gradient(180deg, rgba(3, 24, 56, 0.76), rgba(2, 10, 24, 0.78));
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(216, 253, 255, 0.12);
    backdrop-filter: blur(14px);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(56, 246, 255, 0.12);
    border-radius: 6px;
}

.panel-orb {
    position: absolute;
    top: 54px;
    left: 50%;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 36% 28%, #ffffff, transparent 12%),
        radial-gradient(circle, rgba(56, 246, 255, 0.8), rgba(7, 109, 242, 0.24) 58%, transparent 72%);
    box-shadow:
        0 0 50px rgba(56, 246, 255, 0.5),
        0 0 120px rgba(7, 109, 242, 0.34);
    transform: translateX(-50%);
    animation: orb-float 4.8s ease-in-out infinite;
}

.panel-row {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 168px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(216, 253, 255, 0.18), rgba(56, 246, 255, 0.42), transparent);
}

.panel-row.wide {
    bottom: 202px;
    right: 86px;
}

.panel-grid {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.panel-grid span {
    display: grid;
    place-items: center;
    min-height: 70px;
    border: 1px solid rgba(56, 246, 255, 0.16);
    border-radius: 6px;
    color: var(--ice);
    background: rgba(2, 10, 24, 0.48);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.services,
.commands-section,
.discord-section {
    width: min(1180px, calc(100% - 38px));
    margin: 0 auto;
    padding: 92px 0;
}

.section-heading {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.section-heading span {
    color: var(--cyan);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(56, 246, 255, 0.42);
}

.section-heading h2 {
    max-width: 920px;
    margin-bottom: 0;
    font-size: clamp(2.3rem, 5vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.section-heading.compact h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(56, 246, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(4, 33, 76, 0.82), rgba(3, 12, 30, 0.74));
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(216, 253, 255, 0.12);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 246, 255, 0.48);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.4),
        0 0 34px rgba(56, 246, 255, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(56, 246, 255, 0.08), transparent),
        radial-gradient(circle at 88% 8%, rgba(56, 246, 255, 0.16), transparent 28%);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card.featured {
    background:
        linear-gradient(145deg, rgba(216, 253, 255, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(6, 52, 116, 0.88), rgba(3, 12, 30, 0.76));
}

.service-number {
    margin-bottom: 20px;
    color: rgba(216, 253, 255, 0.18);
    font-size: 4.3rem;
    font-weight: 900;
    line-height: 0.8;
}

.service-kicker {
    margin-bottom: 20px;
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.05;
}

.service-card h4 {
    margin: 24px 0 12px;
    color: var(--ice);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card p,
.service-card li {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.service-card p {
    margin-bottom: 14px;
}

.service-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
}

.service-card li::before {
    content: ">";
    color: var(--cyan);
    font-weight: 900;
}

.commands-shell {
    overflow: hidden;
    border: 1px solid rgba(56, 246, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(56, 246, 255, 0.11), transparent 34%),
        rgba(2, 9, 24, 0.78);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.34),
        inset 0 0 34px rgba(56, 246, 255, 0.08);
    backdrop-filter: blur(16px);
}

.commands-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(56, 246, 255, 0.16);
    background: linear-gradient(90deg, rgba(56, 246, 255, 0.14), rgba(7, 109, 242, 0.06));
}

.commands-top strong {
    color: var(--ice);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.commands-top span {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
}

.command-group-card {
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(56, 246, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(4, 33, 76, 0.62), rgba(3, 12, 30, 0.72));
    box-shadow: inset 0 1px 0 rgba(216, 253, 255, 0.08);
}

.command-group-card.wide {
    grid-column: span 2;
}

.command-group-card h3 {
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.command-group-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.command-group-card li {
    display: grid;
    grid-template-columns: minmax(160px, 0.95fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(56, 246, 255, 0.1);
    border-radius: 6px;
    background: rgba(2, 10, 24, 0.5);
}

.command-group-card code {
    min-width: 0;
    color: var(--ice);
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.command-group-card span {
    min-width: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
}

.discord-preview {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(56, 246, 255, 0.28);
    border-radius: 8px;
    background: rgba(2, 9, 24, 0.78);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.34),
        inset 0 0 34px rgba(56, 246, 255, 0.08);
    backdrop-filter: blur(16px);
}

.server-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-right: 1px solid rgba(56, 246, 255, 0.16);
    background: rgba(1, 8, 22, 0.82);
}

.server-rail span {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(56, 246, 255, 0.9), rgba(7, 109, 242, 0.88));
    box-shadow: 0 0 22px rgba(56, 246, 255, 0.24);
}

.server-rail span:nth-child(2) {
    opacity: 0.62;
}

.server-rail span:nth-child(3) {
    opacity: 0.38;
}

.channel-panel {
    min-width: 0;
}

.panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(56, 246, 255, 0.16);
    background: linear-gradient(90deg, rgba(56, 246, 255, 0.1), rgba(7, 109, 242, 0.06));
}

.panel-top strong {
    color: var(--ice);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.panel-top small {
    color: var(--muted);
    font-weight: 800;
}

.channel-list {
    display: grid;
    gap: 18px;
    max-height: 620px;
    padding: 20px;
    overflow: auto;
    scrollbar-color: rgba(56, 246, 255, 0.65) rgba(2, 9, 24, 0.6);
    scrollbar-width: thin;
}

.channel-group {
    display: grid;
    gap: 7px;
}

.channel-group h3 {
    margin: 4px 0 2px;
    color: rgba(216, 253, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.channel-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    min-height: 40px;
    padding: 7px 10px;
    border: 1px solid rgba(56, 246, 255, 0.1);
    border-radius: 6px;
    background: rgba(4, 20, 45, 0.52);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.channel-row:hover {
    transform: translateX(4px);
    border-color: rgba(56, 246, 255, 0.34);
    background: rgba(7, 109, 242, 0.2);
}

.channel-icon {
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 900;
}

.channel-name {
    min-width: 0;
    color: rgba(244, 251, 255, 0.88);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.loading-line {
    padding: 20px;
    color: var(--muted);
    font-weight: 900;
    text-align: center;
}

@keyframes mask-fall {
    from {
        transform: translate3d(0, var(--start-y), 0) rotate(var(--rotate));
    }
    to {
        transform: translate3d(var(--drift), 128vh, 0) rotate(calc(var(--rotate) + 90deg));
    }
}

@keyframes intro-shell {
    0%,
    74% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes intro-mask {
    0% {
        opacity: 0;
        transform: scale(0.62) rotate(-8deg);
    }
    24% {
        opacity: 1;
        transform: scale(1.02) rotate(0deg);
    }
    56% {
        opacity: 1;
        transform: scale(0.96) rotate(0deg);
    }
    78% {
        opacity: 1;
        transform: scale(1.12) rotate(0deg);
        filter:
            drop-shadow(0 0 34px rgba(216, 253, 255, 1))
            drop-shadow(0 0 110px rgba(56, 246, 255, 0.78))
            saturate(1.42)
            brightness(1.25);
    }
    100% {
        opacity: 0;
        transform: scale(1.65) rotate(2deg);
    }
}

@keyframes intro-ring-pulse {
    0% {
        opacity: 0;
        scale: 0.55;
    }
    32% {
        opacity: 1;
        scale: 1;
    }
    76% {
        opacity: 0.82;
        scale: 1.08;
    }
    100% {
        opacity: 0;
        scale: 1.42;
    }
}

@keyframes intro-ring-spin {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg);
    }
    24% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(180deg) scale(1.26);
    }
}

@keyframes intro-slash {
    0% {
        opacity: 0;
        transform: rotate(42deg) translateX(-46vw);
    }
    28% {
        opacity: 0;
    }
    56% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: rotate(42deg) translateX(46vw);
    }
}

@keyframes page-reveal {
    0%,
    68% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes jasu-pulse {
    from {
        filter: brightness(1);
        transform: translateY(0);
    }
    to {
        filter: brightness(1.14);
        transform: translateY(-3px);
    }
}

@keyframes jasu-scan {
    0%,
    100% {
        clip-path: inset(0 0 88% 0);
        opacity: 0;
    }
    45%,
    55% {
        clip-path: inset(36% 0 42% 0);
        opacity: 0.9;
    }
}

@keyframes line-breathe {
    from {
        opacity: 0.58;
        transform: scaleX(0.82);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes orb-float {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

@media (max-width: 1060px) {
    .commands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

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

    .command-group-card.wide {
        grid-column: auto;
    }

    .service-card {
        min-height: auto;
    }

    .discord-preview {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .server-rail span {
        width: 34px;
        height: 34px;
        border-radius: 13px;
    }

    .discord-corner {
        top: 82px;
        right: 14px;
        min-height: 46px;
        padding: 0 13px;
    }

    .discord-corner span {
        display: none;
    }
}

@media (max-width: 560px) {
    .ledbar {
        top: 10px;
        width: calc(100% - 20px);
        gap: 6px;
    }

    .nav-logo {
        padding: 0 12px;
        font-size: 0.82rem;
    }

    .ledbar nav {
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ledbar nav::-webkit-scrollbar {
        display: none;
    }

    .ledbar nav a {
        min-height: 38px;
        padding: 0 9px;
        font-size: 0.68rem;
        white-space: nowrap;
    }

    .hero {
        width: min(100% - 24px, 1180px);
        padding-top: 110px;
    }

    .jasu-title {
        font-size: clamp(4.8rem, 25vw, 7.5rem);
    }

    .hero-line {
        width: min(360px, 76vw);
    }

    .services,
    .commands-section,
    .discord-section {
        width: min(100% - 24px, 1180px);
        padding: 78px 0;
    }

    .service-card {
        padding: 22px;
    }

    .commands-grid {
        padding: 12px;
    }

    .command-group-card {
        padding: 14px;
    }

    .command-group-card li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-intro,
    body::after {
        display: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
