:root {
    color-scheme: dark;
    --bg: #08070d;
    --bg-soft: #111019;
    --panel: rgba(22, 20, 31, 0.74);
    --panel-strong: rgba(31, 28, 43, 0.88);
    --ink: #f8f4ff;
    --muted: #aaa2ba;
    --line: rgba(190, 155, 255, 0.22);
    --purple: #a66cff;
    --purple-soft: #dbc7ff;
    --purple-deep: #5f36d8;
    --glow: rgba(166, 108, 255, 0.45);
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.48), 0 0 42px rgba(166, 108, 255, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
    scrollbar-color: rgba(166, 108, 255, 0.72) #0b0a12;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0b0a12;
}

::-webkit-scrollbar-thumb {
    border: 3px solid #0b0a12;
    border-radius: 999px;
    background: linear-gradient(180deg, #c7a8ff, #7d48ff 62%, #4b2aa6);
    box-shadow: inset 0 0 0 1px rgba(231, 218, 255, 0.24), 0 0 18px rgba(166, 108, 255, 0.45);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ddccff, #a66cff 62%, #6c3df4);
}

::-webkit-scrollbar-corner {
    background: #0b0a12;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 82% 8%, rgba(166, 108, 255, 0.22), transparent 28rem),
        radial-gradient(circle at 15% 42%, rgba(112, 73, 181, 0.16), transparent 24rem),
        linear-gradient(180deg, #0d0b14 0%, var(--bg) 48%, #121019 100%);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(166, 108, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(166, 108, 255, 0.055) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto 12% 0 12%;
    z-index: 0;
    height: 1px;
    pointer-events: none;
    box-shadow: 0 0 110px 54px rgba(166, 108, 255, 0.18);
}

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

button {
    font: inherit;
}

.nav,
main,
footer {
    position: relative;
    z-index: 1;
}

.shell {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(190, 155, 255, 0.16);
    background: rgba(8, 7, 13, 0.76);
    backdrop-filter: blur(18px) saturate(135%);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(166, 108, 255, 0.55);
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(119, 29, 253, 0.46));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.nav-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    text-shadow: 0 0 18px rgba(166, 108, 255, 0.88);
}

.nav-cta,
.button,
.discord-profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    font-weight: 780;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
    border: 1px solid rgba(222, 205, 255, 0.36);
    background: linear-gradient(135deg, #b87bff, #7d48ff 58%, #4b24ba);
    color: #fff;
    box-shadow: 0 0 24px rgba(166, 108, 255, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-cta {
    padding: 0 16px;
    font-size: 0.92rem;
}

.button {
    padding: 0 20px;
    border: 1px solid rgba(222, 205, 255, 0.26);
    color: var(--ink);
    cursor: pointer;
}

.button.secondary {
    background: rgba(28, 25, 40, 0.74);
}

.nav-cta:hover,
.button:hover,
.discord-profile-button:hover {
    transform: translateY(-2px);
    border-color: rgba(231, 218, 255, 0.72);
    box-shadow: 0 22px 56px rgba(95, 54, 216, 0.34), 0 0 34px var(--glow);
}

.tilt-card {
    transform: var(--tilt-base, none);
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.tilt-card.is-tilting {
    transform: var(--tilt-base, none) perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-3px) scale(1.012);
}

.tilt-card.is-tilting::before,
.tilt-card.is-tilting::after {
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .tilt-card,
    .tilt-card.is-tilting {
        transform: none;
        transition: none;
    }}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.85fr);
    align-items: center;
    gap: clamp(70px, 7vw, 116px);
    min-height: calc(100vh - 72px);
    padding: 74px 0 64px;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: var(--purple-soft);
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(166, 108, 255, 0.54);
}

.eyebrow::before {
    content: "";
    width: 9px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 6px rgba(166, 108, 255, 0.14), 0 0 22px rgba(166, 108, 255, 0.86);
}

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

h1 {
    max-width: 800px;
    margin-bottom: 24px;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 0 48px rgba(166, 108, 255, 0.28);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.05rem, 4.6vw, 4.1rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
}

.hero-copy,
.section-copy,
.section-head p,
.service p,
.process-step p,
.contact p {
    color: var(--muted);
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: clamp(1.04rem, 1.7vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 710px;
}

.meta-item {
    min-height: 108px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(20, 18, 29, 0.62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.meta-item span {
    display: block;
    margin-bottom: 12px;
    color: rgba(219, 199, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 850;
    text-transform: uppercase;
}

.meta-item strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.18;
}

.hero-visual {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 590px;
    margin-right: -92px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 7% 4% 12% 4%;
    border-radius: 32px;
    background: radial-gradient(circle, rgba(166, 108, 255, 0.18), transparent 58%);
    filter: blur(18px);
}

.code-showcase {
    position: relative;
    width: min(100%, 520px);
    justify-self: end;
    --tilt-base: translateX(54px);
    overflow: hidden;
    border: 1px solid rgba(222, 205, 255, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 76% 12%, rgba(166, 108, 255, 0.2), transparent 18rem),
        linear-gradient(180deg, rgba(26, 23, 37, 0.94), rgba(9, 8, 14, 0.94));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.code-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(219, 199, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(219, 199, 255, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.72), transparent 76%);
}

.code-showcase-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(222, 205, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

.code-showcase-header div {
    display: grid;
    gap: 2px;
}

.code-kicker,
.code-status,
.code-footer span {
    color: rgba(219, 199, 255, 0.66);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.code-showcase-header strong {
    color: #fff;
    font-size: 1.04rem;
}

.code-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(222, 205, 255, 0.18);
    border-radius: 999px;
    background: rgba(166, 108, 255, 0.1);
}

.code-status::before {
    content: "";
    width: 7px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 14px rgba(166, 108, 255, 0.82);
}

.bot-code {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    padding: 24px 22px;
    overflow: auto;
    color: #e8ddff;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: clamp(0.76rem, 1.15vw, 0.9rem);
    line-height: 1.72;
    scrollbar-width: none;
}

.bot-code::-webkit-scrollbar {
    display: none;
}

.code-muted {
    display: inline-block;
    min-width: 2ch;
    margin-right: 14px;
    color: rgba(219, 199, 255, 0.32);
    user-select: none;
}

.code-purple {
    color: #caa9ff;
    text-shadow: 0 0 14px rgba(166, 108, 255, 0.34);
}

.code-string {
    color: #f1e9ff;
}

.code-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 22px 22px;
}

.code-footer span {
    padding: 8px 10px;
    border: 1px solid rgba(222, 205, 255, 0.16);
    border-radius: 999px;
    background: rgba(166, 108, 255, 0.08);
}

.section {
    padding: 94px 0;
}

.section-head {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head p {
    max-width: 430px;
    margin-bottom: 0;
}

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

.service {
    position: relative;
    min-height: 285px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(34, 30, 47, 0.72), rgba(17, 15, 24, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 58px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service::after {
    content: "";
    position: absolute;
    inset: auto 22px 22px 22px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(166, 108, 255, 0.72), transparent);
    opacity: 0.58;
}

.service:hover {
    border-color: rgba(222, 205, 255, 0.5);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 34px rgba(166, 108, 255, 0.2);
}

.service-number {
    display: inline-flex;
    margin-bottom: 62px;
    color: rgba(219, 199, 255, 0.52);
    font-size: 0.86rem;
    font-weight: 900;
}

.service p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.stack-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 42px;
    align-items: start;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(18, 16, 26, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.22);
}

.section-copy {
    max-width: 540px;
    margin: 20px 0 0;
    font-size: 1.02rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 30px;
}

.tag-list span {
    padding: 9px 12px;
    border: 1px solid rgba(222, 205, 255, 0.22);
    border-radius: 999px;
    background: rgba(166, 108, 255, 0.1);
    color: var(--purple-soft);
    font-size: 0.86rem;
    font-weight: 760;
}

.process-list {
    display: grid;
    gap: 12px;
}

.process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    min-height: 124px;
    padding: 22px;
    border: 1px solid rgba(222, 205, 255, 0.14);
    border-radius: 8px;
    background: rgba(9, 8, 14, 0.52);
}

.process-step > span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 38px;
    border: 1px solid rgba(222, 205, 255, 0.24);
    border-radius: 999px;
    background: rgba(166, 108, 255, 0.12);
    color: var(--purple-soft);
    font-size: 0.76rem;
    font-weight: 900;
}

.process-step p {
    margin-bottom: 0;
}

.contact {
    padding: 84px 0 94px;
    border-top: 1px solid rgba(190, 155, 255, 0.15);
    background:
        radial-gradient(circle at 68% 18%, rgba(166, 108, 255, 0.18), transparent 24rem),
        linear-gradient(180deg, rgba(18, 16, 26, 0.72), #08070d);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 342px);
    align-items: center;
    gap: 54px;
}

.contact h2 {
    max-width: 760px;
    margin-bottom: 18px;
}

.contact p {
    max-width: 560px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.discord-profile {
    position: relative;
    width: min(100%, 342px);
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(222, 205, 255, 0.18);
    border-radius: 8px;
    background: #28272b;
    color: #f5f2fa;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38), 0 0 42px rgba(166, 108, 255, 0.16);
}

.discord-profile::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.discord-banner {
    position: relative;
    height: 118px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.92), transparent 1.8rem),
        radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.82), transparent 4rem),
        linear-gradient(165deg, #f6f3fa 0 22%, #101015 23% 50%, #ffffff 51% 65%, #0d0d11 66%);
}

.discord-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.discord-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discord-profile-body {
    position: relative;
    padding: 46px 18px 18px;
}

.discord-avatar-wrap {
    position: absolute;
    top: -50px;
    left: 16px;
    width: 96px;
    height: 96px;
    border: 7px solid #28272b;
    border-radius: 50%;
    background: #08070d;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.discord-status {
    position: absolute;
    right: -2px;
    bottom: 9px;
    width: 24px;
    height: 24px;
    border: 5px solid #28272b;
    border-radius: 50%;
    background: #f23f43;
}

.discord-status::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 3px;
    border-radius: 999px;
    background: #28272b;
    transform: translate(-50%, -50%);
}

.discord-profile h3 {
    margin: 0;
    color: #fff;
    font-size: 1.38rem;
    line-height: 1.1;
}

.discord-handle {
    margin: 4px 0 10px;
    color: #cbc5d2;
    font-size: 0.95rem;
}

.discord-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.discord-badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: #18171c;
    color: #f3eaff;
    font-size: 0.68rem;
    font-weight: 900;
    box-shadow: 0 0 0 1px rgba(222, 205, 255, 0.12), 0 0 12px rgba(166, 108, 255, 0.18);
}

.discord-about {
    margin: 0 0 12px;
    color: #efeaf5;
    font-size: 0.92rem;
    line-height: 1.35;
}

.discord-about a {
    color: #8fb4ff;
}

.discord-panel,
.discord-activity {
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.1);
}

.discord-panel {
    display: grid;
    gap: 3px;
    margin-bottom: 12px;
    padding: 10px 12px;
}

.discord-panel span,
.discord-activity span {
    color: #d8d4dd;
    font-size: 0.76rem;
    font-weight: 800;
}

.discord-panel strong {
    color: #fff;
    font-size: 0.82rem;
}

.discord-activity {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px;
}

.activity-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #34313a;
    color: #bfa0ff;
    font-size: 0.86rem;
    font-weight: 950;
    box-shadow: inset 0 0 0 1px rgba(222, 205, 255, 0.08);
}

.discord-activity strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.16;
}

.discord-activity p {
    margin: 2px 0 0;
    overflow: hidden;
    color: #cbc5d2;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discord-profile-button {
    width: 100%;
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    color: #efedf3;
    font-size: 0.91rem;
    box-shadow: none;
}

footer {
    padding: 28px 0;
    background: #08070d;
    color: rgba(248, 244, 255, 0.52);
    font-size: 0.9rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(222, 205, 255, 0.11);
    padding-top: 22px;
}

@media (max-width: 930px) {
    .nav-links {
        display: none;
    }

    .hero,
    .section-head,
    .stack-layout,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
    }

    .hero-visual {
        min-height: auto;
        margin-right: 0;
    }

    .code-showcase {
        justify-self: center;
        --tilt-base: none;
    }

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

    .discord-profile {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 620px) {
    .shell {
        width: min(100% - 28px, 1140px);
    }

    .nav-inner {
        min-height: 64px;
    }

    .nav-cta {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.84rem;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    h1 {
        font-size: clamp(2.75rem, 17vw, 4.2rem);
    }

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

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .bot-code {
        max-height: 430px;
        padding: 20px 16px;
        font-size: 0.72rem;
    }

    .code-showcase-header {
        min-height: 64px;
        padding: 0 16px;
    }

    .code-footer {
        padding: 0 16px 18px;
    }

    .section {
        padding: 66px 0;
    }

    .service {
        min-height: auto;
    }

    .service-number {
        margin-bottom: 44px;
    }

    .stack-layout {
        padding: 22px;
    }

    .process-step {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .footer-inner {
        display: block;
    }

    .footer-inner span {
        display: block;
        margin-top: 8px;
    }
}

.error-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
}

.error-shell {
    display: grid;
    place-items: center;
    gap: 28px;
    padding: 42px 0;
}

.error-brand {
    justify-self: center;
    width: min(100%, 760px);
}

.error-panel {
    position: relative;
    overflow: hidden;
    width: min(100%, 760px);
    max-width: 760px;
    padding: clamp(32px, 7vw, 64px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        radial-gradient(circle at 80% 18%, rgba(166, 108, 255, 0.22), transparent 18rem),
        linear-gradient(180deg, rgba(28, 25, 40, 0.78), rgba(10, 9, 15, 0.86));
    box-shadow: var(--shadow);
}

.error-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(219, 199, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(219, 199, 255, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

.error-code {
    margin: 10px 0 16px;
    color: #fff;
    font-size: clamp(5rem, 20vw, 11rem);
    font-weight: 950;
    line-height: 0.82;
    text-shadow: 0 0 34px rgba(166, 108, 255, 0.62), 0 0 80px rgba(166, 108, 255, 0.28);
}

.error-panel h1 {
    max-width: 640px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.error-panel p:not(.eyebrow) {
    max-width: 570px;
    color: var(--muted);
    font-size: 1.05rem;
}

.error-actions {
    margin: 30px 0 0;
}
