* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #040405;
    --ink: #f8f8fb;
    --muted: #a9acb8;
    --soft: rgba(255, 255, 255, 0.075);
    --line: rgba(255, 255, 255, 0.13);
    --line-hot: rgba(255, 35, 45, 0.62);
    --red: #ff1926;
    --red-deep: #7c0208;
    --red-glow: rgba(255, 25, 38, 0.38);
    --green: #23a55a;
    --yellow: #f0b232;
    --radius: 8px;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 25, 38, 0.34), transparent 26rem),
        radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.11), transparent 20rem),
        radial-gradient(circle at 50% 95%, rgba(255, 25, 38, 0.2), transparent 30rem),
        linear-gradient(135deg, #09090d 0%, #030304 48%, #130306 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px);
    background-size: 44px 44px, 44px 44px, 100% 5px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 82%);
}

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

img {
    max-width: 100%;
    display: block;
}

.bg-stage {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    overflow: hidden;
}

.grid-burn {
    position: absolute;
    inset: -8%;
    background:
        conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(255, 25, 38, 0.22) 26deg, transparent 52deg, transparent 180deg, rgba(255, 255, 255, 0.08) 214deg, transparent 242deg),
        radial-gradient(circle, rgba(255, 25, 38, 0.14), transparent 34rem);
    opacity: 0.72;
}

.blade {
    position: absolute;
    width: 48vw;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(255, 25, 38, 0.9), rgba(255, 255, 255, 0.7), transparent);
    box-shadow: 0 0 18px rgba(255, 25, 38, 0.46);
    transform: rotate(-18deg);
    opacity: 0.55;
}

.blade-one {
    top: 18%;
    left: -8%;
    animation: slashOne 12s ease-in-out infinite;
}

.blade-two {
    top: 56%;
    right: -18%;
    animation: slashTwo 14s ease-in-out infinite;
}

.blade-three {
    bottom: 15%;
    left: 14%;
    animation: slashThree 16s ease-in-out infinite;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1210px, calc(100% - 28px));
    margin: 14px auto 0;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 7, 10, 0.72);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(20px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(100deg, rgba(255, 25, 38, 0.65), transparent 30%, rgba(255, 255, 255, 0.18), transparent 72%, rgba(255, 25, 38, 0.5));
    opacity: 0.32;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-weight: 950;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 13px var(--red-glow));
}

.brand span {
    text-shadow: 0 0 18px rgba(255, 25, 38, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
}

.nav-links a {
    position: relative;
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 750;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
    background: rgba(255, 25, 38, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 25, 38, 0.25), 0 0 24px rgba(255, 25, 38, 0.1);
    transform: translateY(-1px);
}

main {
    width: min(1210px, calc(100% - 28px));
    margin: 0 auto;
}

.section-panel {
    position: relative;
    padding: 80px 0;
}

.compact-panel {
    padding-top: 20px;
}

.hero,
.page-hero,
.join-hero {
    position: relative;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
    align-items: center;
    gap: 48px;
    min-height: calc(100vh - 78px);
    padding-top: 46px;
}

.mega-hero::before,
.page-hero::before,
.discord-invite::before,
.route-card::before,
.profile-card::before,
.team-card::before,
.faq-card::before,
.contact-card::before,
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 56%);
    transform: translateX(-120%);
    transition: transform 700ms ease;
}

.route-card:hover::before,
.profile-card:hover::before,
.team-card:hover::before,
.faq-card:hover::before,
.contact-card:hover::before,
.process-card:hover::before,
.discord-invite:hover::before {
    transform: translateX(120%);
}

.eyebrow {
    margin: 0 0 12px;
    color: #ff515b;
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 860px;
    margin-bottom: 20px;
    font-size: clamp(3.4rem, 9vw, 8.4rem);
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    margin-bottom: 0;
    font-size: clamp(1.85rem, 4vw, 3.6rem);
    line-height: 1;
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.1;
}

.hero-text {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
}

.hero-actions,
.chip-row,
.server-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    font-weight: 900;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    box-shadow: 0 18px 46px rgba(255, 25, 38, 0.34);
}

.button.ghost:hover {
    border-color: var(--line-hot);
    box-shadow: 0 0 32px rgba(255, 25, 38, 0.15);
}

.hero-emblem {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 540px;
    isolation: isolate;
}

.hero-emblem img {
    position: relative;
    z-index: 3;
    width: min(430px, 86vw);
    filter: drop-shadow(0 0 25px rgba(255, 25, 38, 0.58)) drop-shadow(0 34px 60px rgba(0, 0, 0, 0.68));
    animation: floatMark 5.5s ease-in-out infinite;
}

.ring {
    position: absolute;
    border: 1px solid rgba(255, 25, 38, 0.42);
    border-radius: 50%;
    box-shadow: inset 0 0 34px rgba(255, 25, 38, 0.09), 0 0 44px rgba(255, 25, 38, 0.14);
}

.ring-one {
    width: 510px;
    height: 510px;
    animation: slowSpin 14s linear infinite;
}

.ring-two {
    width: 390px;
    height: 390px;
    border-style: dashed;
    animation: slowSpin 10s linear infinite reverse;
}

.ring-three {
    width: 240px;
    height: 240px;
    border-color: rgba(255, 255, 255, 0.18);
    animation: pulseRing 2.6s ease-in-out infinite;
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 760px;
}

.route-grid,
.profile-grid,
.team-grid,
.contact-grid,
.process-grid,
.overview-strip {
    display: grid;
    gap: 18px;
}

.route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-card,
.stat-panel,
.profile-card,
.team-card,
.discord-invite,
.faq-card,
.contact-card,
.process-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
        rgba(9, 10, 13, 0.9);
    box-shadow: var(--shadow);
}

.route-card,
.stat-panel,
.contact-card,
.process-card {
    padding: 22px;
}

.route-card {
    min-height: 292px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.route-card:hover,
.profile-card:hover,
.team-card:hover,
.contact-card:hover,
.process-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-hot);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.62), 0 0 40px rgba(255, 25, 38, 0.16);
}

.route-index {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.88rem;
    font-weight: 950;
}

.route-card p,
.staff-category p,
.team-card p,
.discord-invite p,
.faq-panel p,
.contact-card p,
.process-card p {
    color: var(--muted);
    line-height: 1.66;
}

.route-card strong {
    color: #ff6a72;
}

.overview-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 10px;
}

.stat-panel {
    background:
        linear-gradient(135deg, rgba(255, 25, 38, 0.22), transparent 54%),
        rgba(12, 12, 16, 0.86);
}

.stat-panel span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-weight: 800;
}

.stat-panel strong {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1;
}

.staff-category {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
    padding: 22px;
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(255, 25, 38, 0.28), transparent),
        rgba(255, 255, 255, 0.035);
}

.staff-category p:last-child {
    max-width: 560px;
    margin-bottom: 0;
}

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

.profile-card {
    background: #111216;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.profile-banner {
    height: 128px;
}

.banner-image {
    background: url('banner.png') center / cover no-repeat;
}

.profile-main {
    position: relative;
    padding: 58px 20px 22px;
}

.avatar {
    position: absolute;
    top: -46px;
    left: 20px;
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 6px solid #111216;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(145deg, #2b2d31, #050506);
    color: var(--ink);
    font-size: 1.28rem;
    font-weight: 950;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.46), 0 0 26px rgba(255, 25, 38, 0.14);
    overflow: hidden;
}

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

.status {
    position: absolute;
    top: 14px;
    left: 88px;
    width: 20px;
    height: 20px;
    border: 4px solid #111216;
    border-radius: 50%;
}

.status.online {
    background: var(--green);
}

.status.idle {
    background: var(--yellow);
}

.status.dnd {
    background: var(--red);
}

.role-tag {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 25, 38, 0.42);
    border-radius: 999px;
    background: rgba(255, 25, 38, 0.18);
    color: #ff777e;
    font-size: 0.78rem;
    font-weight: 900;
}

.profile-main h3 {
    margin-bottom: 4px;
}

.handle {
    margin-bottom: 16px;
    color: var(--muted);
}

.bio {
    min-height: 76px;
    margin-bottom: 18px;
    color: #d8dae2;
}

.chip-row span,
.slot-list span,
.server-stats span {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #e0e1e7;
    font-size: 0.82rem;
    font-weight: 800;
}

.chip-row span {
    padding: 7px 10px;
}

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

.team-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-orbit {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 240px;
}

.team-orbit::before {
    content: "";
    position: absolute;
    width: 168px;
    height: 168px;
    border: 1px dashed rgba(255, 25, 38, 0.48);
    border-radius: 50%;
    animation: slowSpin 10s linear infinite;
}

.team-orbit img {
    width: 116px;
    opacity: 0.5;
    filter: drop-shadow(0 0 16px rgba(255, 25, 38, 0.42));
}

.team-orbit span {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    font-size: 1.32rem;
    font-weight: 950;
    box-shadow: 0 0 34px rgba(255, 25, 38, 0.34);
}

.slot-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.slot-list span {
    padding: 11px 12px;
    border-radius: 6px;
}

.join-hero {
    min-height: calc(100vh - 120px);
    display: grid;
    align-items: center;
}

.discord-invite {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: clamp(22px, 4vw, 44px);
    border-color: rgba(255, 25, 38, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 25, 38, 0.25), transparent 42%),
        linear-gradient(180deg, rgba(42, 43, 49, 0.93), rgba(13, 14, 18, 0.98));
}

.invite-art {
    display: grid;
    place-items: center;
    width: clamp(96px, 16vw, 190px);
    aspect-ratio: 1;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 25, 38, 0.25), transparent 62%),
        #050506;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.52);
}

.invite-art img {
    width: 74%;
    height: 74%;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 25, 38, 0.48));
}

.server-stats {
    margin-top: 18px;
}

.server-stats span {
    padding: 8px 11px;
}

.server-stats b {
    color: var(--ink);
}

.invite-button {
    white-space: nowrap;
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
    display: inline-flex;
    margin-bottom: 46px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 950;
}

.faq-shell {
    max-width: 920px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-card {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 25, 38, 0.12), transparent 44%),
        rgba(12, 13, 17, 0.92);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-card.open {
    border-color: var(--line-hot);
    box-shadow: 0 24px 74px rgba(0, 0, 0, 0.5), 0 0 42px rgba(255, 25, 38, 0.12);
}

.faq-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font: inherit;
    font-size: 1.12rem;
    font-weight: 950;
    text-align: left;
}

.faq-trigger b {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 25, 38, 0.45);
    border-radius: 50%;
    background: rgba(255, 25, 38, 0.13);
    box-shadow: 0 0 22px rgba(255, 25, 38, 0.12);
    transition: transform 260ms ease, background 260ms ease;
}

.faq-trigger b::before,
.faq-trigger b::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
    transition: transform 260ms ease;
}

.faq-trigger b::after {
    transform: rotate(90deg);
}

.faq-card.open .faq-trigger b {
    transform: rotate(180deg);
    background: rgba(255, 25, 38, 0.22);
}

.faq-card.open .faq-trigger b::after {
    transform: rotate(0deg);
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 340ms ease;
}

.faq-card.open .faq-panel {
    grid-template-rows: 1fr;
}

.faq-panel p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 22px;
    opacity: 0;
    transform: translateY(-8px);
    transition: padding 340ms ease, opacity 240ms ease, transform 240ms ease;
}

.faq-card.open .faq-panel p {
    padding-bottom: 22px;
    opacity: 1;
    transform: translateY(0);
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-card span {
    color: #ff6a72;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-card strong {
    overflow-wrap: anywhere;
    font-size: clamp(1.3rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1210px, calc(100% - 28px));
    margin: 0 auto;
    padding: 32px 0 42px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer a {
    color: #ff6a72;
    font-weight: 850;
}

.reveal {
    animation: riseIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-one {
    animation-delay: 100ms;
}

.delay-two {
    animation-delay: 200ms;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.985);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes floatMark {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-14px) rotate(-1.5deg) scale(1.025);
    }
}

@keyframes slowSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseRing {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.46;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.9;
    }
}

@keyframes gridPulse {
    from {
        opacity: 0.55;
        transform: translateY(0);
    }
    to {
        opacity: 0.9;
        transform: translateY(12px);
    }
}

@keyframes slashOne {
    0%,
    100% {
        transform: translateX(-12%) rotate(-18deg);
        opacity: 0.28;
    }
    50% {
        transform: translateX(16%) rotate(-18deg);
        opacity: 0.72;
    }
}

@keyframes slashTwo {
    0%,
    100% {
        transform: translateX(10%) rotate(16deg);
        opacity: 0.22;
    }
    50% {
        transform: translateX(-20%) rotate(16deg);
        opacity: 0.66;
    }
}

@keyframes slashThree {
    0%,
    100% {
        transform: translateX(-4%) rotate(-8deg);
        opacity: 0.18;
    }
    50% {
        transform: translateX(12%) rotate(-8deg);
        opacity: 0.55;
    }
}

@media (max-width: 1020px) {
    .hero,
    .route-grid,
    .profile-grid,
    .team-grid,
    .contact-grid,
    .process-grid,
    .overview-strip {
        grid-template-columns: 1fr;
    }

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

    .hero-emblem {
        min-height: 420px;
    }

    .ring-one {
        width: 390px;
        height: 390px;
    }

    .ring-two {
        width: 300px;
        height: 300px;
    }

    .site-header,
    .staff-category,
    .discord-invite,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .discord-invite {
        display: flex;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .team-orbit {
        min-height: 190px;
    }

    .invite-button {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .site-header,
    main,
    .site-footer {
        width: min(100% - 22px, 1210px);
    }

    .site-header {
        top: 10px;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .nav-links a {
        padding: 8px 9px;
        font-size: 0.86rem;
    }

    .section-panel {
        padding: 58px 0;
    }

    .compact-panel {
        padding-top: 16px;
    }

    .hero-actions .button,
    .button {
        width: 100%;
    }

    .hero-emblem {
        min-height: 320px;
    }

    .ring-one {
        width: 300px;
        height: 300px;
    }

    .ring-two {
        width: 230px;
        height: 230px;
    }

    .route-card,
    .stat-panel,
    .staff-category,
    .team-card,
    .discord-invite,
    .contact-card,
    .process-card {
        padding: 18px;
    }

    .profile-banner {
        height: 104px;
    }

    .avatar {
        width: 78px;
        height: 78px;
    }

    .status {
        left: 75px;
    }

    .faq-trigger {
        padding: 18px;
    }

    .faq-panel p {
        padding: 0 18px;
    }

    .faq-card.open .faq-panel p {
        padding-bottom: 18px;
    }
}

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