:root {
    --bg: #03040c;
    --bg-soft: #070a16;
    --panel: rgba(5, 9, 23, 0.72);
    --panel-strong: rgba(8, 12, 29, 0.9);
    --line: rgba(126, 148, 255, 0.32);
    --line-bright: rgba(109, 151, 255, 0.72);
    --text: #f8fbff;
    --muted: #a9b0c5;
    --blue: #25a8ff;
    --blue-soft: #6db7ff;
    --purple: #9b55ff;
    --violet: #6d38ff;
    --pink: #d35cff;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    font-family: "Space Grotesk", Arial, sans-serif;
    background:
        radial-gradient(ellipse at 12% 92%, rgba(24, 91, 255, 0.24), transparent 32%),
        radial-gradient(ellipse at 95% 8%, rgba(119, 43, 255, 0.22), transparent 28%),
        linear-gradient(180deg, #03040d 0%, #02030a 48%, #03040c 100%);
    overflow-x: hidden;
    /* Hide native scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide native scrollbar for IE/Edge */
    -ms-overflow-style: none;
}

/* Hide native scrollbar for Chrome, Safari, newer Edge */
body::-webkit-scrollbar {
    display: none;
}

body.no-scroll {
    overflow: hidden;
}

body::before,
body::after,
.cosmic-noise,
#starCanvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    content: "";
    z-index: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 92px 92px;
    opacity: 0.12;
}

body::after {
    content: "";
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 3, 10, 0.84), transparent 16%, transparent 84%, rgba(2, 3, 10, 0.86)),
        linear-gradient(180deg, rgba(2, 3, 10, 0.5), transparent 24%, rgba(2, 3, 10, 0.92));
}

.cosmic-noise {
    z-index: 1;
    opacity: 0.38;
    background-image:
        radial-gradient(circle at 17% 18%, rgba(37, 168, 255, 0.5) 0 1px, transparent 2px),
        radial-gradient(circle at 48% 45%, rgba(155, 85, 255, 0.45) 0 1px, transparent 2px),
        radial-gradient(circle at 86% 36%, rgba(37, 168, 255, 0.35) 0 1px, transparent 2px),
        radial-gradient(circle at 72% 78%, rgba(211, 92, 255, 0.35) 0 1px, transparent 2px);
    background-size: 180px 180px, 240px 240px, 210px 210px, 280px 280px;
}

#starCanvas {
    z-index: 1;
    width: 100%;
    height: 100%;
}

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

button,
input {
    font: inherit;
}

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

button {
    cursor: pointer;
}

main,
.site-header,
.site-footer,
.search-overlay,
.preview-modal,
.profile-modal,
.scroll-feed-rail {
    position: relative;
    z-index: 3;
}

.scroll-feed-rail {
    position: fixed;
    top: 150px;
    right: 34px;
    bottom: 42px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, transparent, rgba(55, 92, 255, 0.32), rgba(155, 85, 255, 0.22), transparent);
    box-shadow: 0 0 18px rgba(37, 168, 255, 0.16);
    opacity: 0.72;
    overflow: hidden;
}

.scroll-feed-rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-radius: inherit;
    background: linear-gradient(180deg, #65e9ff, #287cff 45%, #b23cff);
    box-shadow:
        0 0 12px rgba(101, 233, 255, 0.95),
        0 0 30px rgba(155, 85, 255, 0.7);
    transition: height 0.16s linear;
}

.site-header {
    position: sticky;
    top: 28px;
    z-index: 30;
    width: calc(100% - 112px);
    max-width: 1490px;
    min-height: 90px;
    margin: 28px auto 0;
    padding: 18px 38px 18px 52px;
    display: flex;
    align-items: center;
    gap: 32px;
    border: 1px solid rgba(112, 136, 255, 0.5);
    border-radius: 28px;
    background:
        linear-gradient(105deg, rgba(5, 8, 20, 0.9), rgba(4, 5, 15, 0.82) 48%, rgba(25, 7, 64, 0.82)),
        rgba(2, 4, 13, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        inset 0 -1px 0 rgba(37, 168, 255, 0.22),
        0 24px 62px rgba(0, 0, 0, 0.42),
        0 0 48px rgba(109, 56, 255, 0.22);
    backdrop-filter: blur(22px);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(37, 168, 255, 0.18), transparent 34%, transparent 68%, rgba(155, 85, 255, 0.28));
    opacity: 0.7;
    pointer-events: none;
}

.brand-mark,
.main-nav,
.header-actions {
    position: relative;
    z-index: 1;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 230px;
}

.brand-z,
.logo-letter,
.profile-avatar-z {
    position: relative;
    display: inline-block;
    font-family: "Orbitron", sans-serif;
    font-style: italic;
    font-weight: 900;
    line-height: 0.86;
    color: transparent;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0 10%, rgba(111, 238, 255, 0.82) 11% 18%, transparent 19% 100%),
        linear-gradient(143deg, #8bf8ff 8%, #168dff 35%, #3854ff 52%, #a23dff 75%, #ff63de 98%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow:
        0 0 5px rgba(89, 221, 255, 0.85),
        0 0 13px rgba(37, 116, 255, 0.62),
        0 0 22px rgba(155, 85, 255, 0.46);
    filter:
        drop-shadow(0 0 5px rgba(37, 168, 255, 0.72))
        drop-shadow(0 0 10px rgba(155, 85, 255, 0.48));
    -webkit-text-stroke: 0.8px rgba(218, 248, 255, 0.66);
}

.brand-z::before,
.logo-letter::before,
.profile-avatar-z::before {
    content: "Z";
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(92deg, transparent 0 18%, rgba(255, 255, 255, 0.95) 32%, rgba(101, 235, 255, 0.8) 42%, transparent 58%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.42;
    transform: translate(-0.02em, -0.03em);
    pointer-events: none;
}

.brand-z::after,
.logo-letter::after,
.profile-avatar-z::after {
    content: "Z";
    position: absolute;
    inset: 0;
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(73, 74, 255, 0.24);
    opacity: 0.5;
    transform: translate(0.025em, 0.025em);
    pointer-events: none;
}

.brand-z {
    font-size: 2.35rem;
    letter-spacing: 0;
    transform: skewX(-10deg) scaleX(1.05);
}

.brand-word,
.logo-word {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-style: italic;
    color: #f7f9ff;
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
}

.brand-word {
    font-size: 1.78rem;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.nav-link {
    position: relative;
    padding: 12px 0 18px;
    color: rgba(242, 245, 255, 0.78);
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.nav-link::before,
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-link::before {
    bottom: 13px;
    width: 78px;
    height: 34px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(155, 85, 255, 0.74), transparent 70%);
    filter: blur(12px);
}

.nav-link::after {
    bottom: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f6f2ff;
    box-shadow: 0 0 14px rgba(155, 85, 255, 1), 0 0 24px rgba(37, 168, 255, 0.7);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 16px rgba(155, 85, 255, 0.9);
}

.nav-link.active::before,
.nav-link.active::after {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-button,
.signin-button,
.primary-button,
.secondary-button,
.round-link,
.close-button,
.download-button,
.preview-chip {
    border: 1px solid rgba(119, 139, 255, 0.36);
    color: var(--text);
    background: rgba(8, 12, 31, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 16px 42px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.icon-button {
    width: 60px;
    height: 48px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    font-size: 1.35rem;
}

.signin-button {
    min-width: 146px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(10, 24, 78, 0.82), rgba(106, 35, 224, 0.92));
    box-shadow: 0 0 28px rgba(109, 56, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.icon-button:hover,
.signin-button:hover,
.primary-button:hover,
.secondary-button:hover,
.round-link:hover,
.download-button:hover,
.preview-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(128, 171, 255, 0.82);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.38),
        0 0 28px rgba(95, 121, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.home-shell,
.content-section {
    width: calc(100% - 184px);
    max-width: 1420px;
    margin-inline: auto;
    scroll-margin-top: 150px;
}

.home-shell {
    margin-top: 38px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(430px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.glass-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 9% 0%, rgba(79, 126, 255, 0.2), transparent 36%),
        radial-gradient(circle at 95% 5%, rgba(119, 43, 255, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(9, 14, 32, 0.76), rgba(3, 5, 15, 0.8));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(37, 168, 255, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
}

.glass-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(110deg, rgba(116, 156, 255, 0.18), transparent 30%, transparent 68%, rgba(155, 85, 255, 0.2));
    opacity: 0.86;
    pointer-events: none;
}

.glass-panel > * {
    position: relative;
    z-index: 1;
}

.tilt-card {
    transform-style: preserve-3d;
}

.hero-card {
    min-height: 454px;
    padding: 40px 56px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -12%;
    width: 58%;
    height: 68%;
    background:
        radial-gradient(circle at 54% 45%, rgba(55, 93, 255, 0.45), transparent 8%),
        radial-gradient(circle at 62% 60%, rgba(155, 85, 255, 0.32), transparent 12%),
        radial-gradient(circle at 35% 28%, rgba(37, 168, 255, 0.26), transparent 12%);
    filter: blur(4px);
    opacity: 0.78;
    pointer-events: none;
}

.signal-pill {
    width: max-content;
    max-width: 100%;
    min-height: 40px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(92, 139, 255, 0.38);
    border-radius: 999px;
    color: #82baff;
    background: linear-gradient(135deg, rgba(20, 52, 139, 0.54), rgba(10, 16, 38, 0.76));
    box-shadow: 0 0 30px rgba(37, 168, 255, 0.18);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.signal-pill i {
    color: #39b4ff;
    text-shadow: 0 0 16px rgba(37, 168, 255, 1);
}

.hero-kicker {
    margin: 32px 0 14px;
    color: rgba(247, 249, 255, 0.78);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.logo-letter {
    font-size: 5.4rem;
    transform: skewX(-10deg) scaleX(1.06);
}

.logo-word {
    font-size: 5rem;
    line-height: 0.94;
}

.hero-copy {
    width: min(440px, 100%);
    margin: 26px 0 34px;
    color: rgba(248, 251, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.download-button {
    min-height: 52px;
    padding: 0 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.primary-button {
    min-width: 232px;
    background: linear-gradient(135deg, #0b8dff 0%, #2049ff 48%, #a62dff 100%);
    border-color: rgba(123, 174, 255, 0.74);
    box-shadow:
        0 0 34px rgba(25, 112, 255, 0.52),
        0 0 22px rgba(155, 85, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.secondary-button {
    min-width: 234px;
    color: rgba(246, 248, 255, 0.78);
    background: rgba(4, 7, 17, 0.62);
}

.side-stack {
    display: grid;
    grid-template-rows: 244px 183px;
    gap: 26px;
}

.stat-panel {
    padding: 30px 30px 26px;
}

.panel-label {
    margin: 0 0 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 247, 255, 0.86);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.16rem;
    font-weight: 700;
    text-transform: uppercase;
}

.panel-label i,
.section-kicker {
    color: #9c6cff;
    text-shadow: 0 0 16px rgba(155, 85, 255, 0.82);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.stat-item {
    min-width: 0;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    position: relative;
}

.stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    bottom: 9px;
    width: 1px;
    background: linear-gradient(transparent, rgba(126, 148, 255, 0.25), transparent);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    color: #72c5ff;
    font-size: 2.8rem;
    text-shadow: 0 0 16px rgba(37, 168, 255, 0.88), 0 0 34px rgba(37, 168, 255, 0.42);
}

.stat-icon.purple {
    color: #a564ff;
    text-shadow: 0 0 18px rgba(155, 85, 255, 0.92), 0 0 34px rgba(155, 85, 255, 0.48);
}

.stat-item strong {
    display: block;
    color: #9d81ff;
    font-family: "Rajdhani", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(155, 85, 255, 0.55);
}

.stat-item span {
    color: rgba(223, 228, 244, 0.74);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    text-transform: uppercase;
}

.premium-banner {
    min-height: 183px;
    padding: 34px 240px 30px 30px;
    display: flex;
    align-items: center;
}

.premium-copy h2 {
    margin: 0 0 12px;
    color: #b646ff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(155, 85, 255, 0.68);
}

.premium-copy p {
    max-width: 360px;
    margin: 0;
    color: rgba(236, 241, 255, 0.75);
    line-height: 1.55;
}

.crown-stage {
    position: absolute;
    right: 96px;
    top: 28px;
    width: 150px;
    height: 118px;
}

.crown-core {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: none;
    box-shadow: none;
    animation: crownFloat 4s ease-in-out infinite;
}

.crown-core i {
    color: transparent;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(130, 231, 255, 0.88) 22%, rgba(89, 92, 255, 0.86) 52%, rgba(203, 71, 255, 0.98));
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 5.7rem;
    line-height: 1;
    text-shadow:
        0 0 9px rgba(37, 168, 255, 0.78),
        0 0 18px rgba(155, 85, 255, 0.7);
    filter:
        drop-shadow(0 0 7px rgba(37, 168, 255, 0.82))
        drop-shadow(0 0 18px rgba(155, 85, 255, 0.72));
}

.round-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: radial-gradient(circle at 32% 24%, rgba(122, 99, 255, 0.72), rgba(17, 18, 57, 0.72));
}

.premium-banner .round-link {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.premium-banner .round-link:hover {
    transform: translateY(-50%) translateX(2px);
}

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

.feature-card {
    min-height: 185px;
    padding: 32px 22px 28px 34px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 36px;
    align-items: start;
    gap: 22px;
    color: var(--text);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-bright);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 28px 70px rgba(0, 0, 0, 0.4),
        0 0 32px rgba(88, 122, 255, 0.28);
}

.feature-icon,
.tool-icon {
    width: 68px;
    height: 68px;
    border: 1px solid rgba(62, 132, 255, 0.54);
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    color: #61c6ff;
    background: linear-gradient(135deg, rgba(28, 88, 216, 0.72), rgba(17, 22, 67, 0.8));
    box-shadow: 0 0 26px rgba(37, 168, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 1.7rem;
}

.feature-icon.purple,
.tool-icon.purple {
    color: #ab78ff;
    border-color: rgba(155, 85, 255, 0.58);
    background: linear-gradient(135deg, rgba(87, 39, 186, 0.78), rgba(20, 14, 57, 0.86));
    box-shadow: 0 0 26px rgba(155, 85, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-icon.violet {
    color: #c174ff;
    border-color: rgba(174, 86, 255, 0.56);
    background: linear-gradient(135deg, rgba(87, 29, 154, 0.78), rgba(21, 13, 55, 0.86));
}

.feature-body {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.feature-body strong,
.trust-item strong,
.tool-row h3,
.download-card h3 {
    color: #f7f9ff;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-body strong {
    font-size: 1.35rem;
}

.feature-body small {
    color: rgba(230, 235, 252, 0.74);
    font-size: 0.98rem;
    line-height: 1.55;
}

.feature-arrow {
    align-self: end;
    justify-self: end;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(155, 85, 255, 0.5);
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #c4a6ff;
    background: rgba(69, 24, 145, 0.48);
    box-shadow: 0 0 18px rgba(155, 85, 255, 0.28);
}

.trust-strip {
    min-height: 88px;
    margin-top: 32px;
    padding: 18px 118px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
}

.trust-item {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.trust-item > span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #b77aff;
    background: rgba(51, 26, 106, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 22px rgba(155, 85, 255, 0.18);
}

.trust-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.02rem;
}

.trust-item small {
    color: rgba(224, 229, 247, 0.68);
}

.content-section {
    margin-top: 96px;
}

.section-heading {
    width: min(720px, 100%);
    margin-bottom: 28px;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading h2,
.community-copy h2,
.search-panel h2,
.preview-copy h2 {
    margin: 0;
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    font-size: 2.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading p,
.community-copy p,
.preview-copy p {
    margin: 14px 0 0;
    color: rgba(224, 229, 247, 0.74);
    font-size: 1.06rem;
    line-height: 1.65;
}

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

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

.download-card {
    position: relative;
    min-height: 280px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(97, 65, 255, 0.22), transparent 32%),
        linear-gradient(150deg, rgba(11, 17, 38, 0.86), rgba(4, 6, 18, 0.92));
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.download-card.featured {
    border-color: rgba(145, 89, 255, 0.62);
}

.download-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(37, 168, 255, 0.12), transparent 48%, rgba(155, 85, 255, 0.16));
    opacity: 0;
    transition: opacity 0.22s ease;
}

.download-card:hover::before {
    opacity: 1;
}

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

.card-tag,
.preview-chip {
    width: max-content;
    max-width: 100%;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e7d9ff;
    background: rgba(77, 29, 145, 0.74);
    border: 1px solid rgba(181, 114, 255, 0.46);
    font-family: "Rajdhani", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-tag.blue {
    position: absolute;
    color: #d8f2ff;
    right: 24px;
    background: rgba(28, 87, 171, 0.72);
    border-color: rgba(96, 190, 255, 0.48);
}

.preview-chip {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}

.card-watermark {
    position: absolute;
    right: 24px;
    bottom: 24px;
    color: rgba(125, 104, 255, 0.12);
    font-size: 6rem;
}

.download-card h3 {
    margin: 42px 0 12px;
    font-size: 1.55rem;
}

.download-card .card-tag + h3 {
    margin-top: 32px;
}

.download-card p {
    margin: 0;
    color: rgba(229, 233, 249, 0.78);
    line-height: 1.55;
}

.card-meta {
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-meta span {
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    color: rgba(235, 239, 255, 0.72);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.download-button {
    width: 100%;
    margin-top: auto;
    padding-inline: 18px;
    background: linear-gradient(135deg, rgba(20, 129, 255, 0.86), rgba(114, 40, 218, 0.9));
}

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 34px;
    align-items: start;
}

.tool-list {
    display: grid;
    gap: 18px;
}

.tool-row {
    min-height: 116px;
    padding: 24px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 46px;
    gap: 22px;
    align-items: center;
}

.tool-row h3 {
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.tool-row p {
    margin: 0;
    color: rgba(228, 233, 249, 0.72);
}

.community-panel {
    min-height: 220px;
    padding: 42px 52px;
    border: 1px solid rgba(126, 148, 255, 0.34);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(130deg, rgba(11, 24, 58, 0.84), rgba(11, 7, 33, 0.9)),
        rgba(4, 6, 18, 0.78);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.community-copy {
    width: min(690px, 100%);
}

.community-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.about-section {
    min-height: 300px;
    margin-bottom: 140px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.about-card {
    padding: 28px 30px;
    min-height: 220px;
}

.about-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.25rem;
}

.about-card p {
    margin: 0 0 16px;
    color: rgba(228, 233, 249, 0.75);
    line-height: 1.6;
}

.about-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(228, 233, 249, 0.78);
    display: grid;
    gap: 8px;
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-pill {
    padding: 8px 12px;
    border: 1px solid rgba(126, 148, 255, 0.24);
    border-radius: 999px;
    color: rgba(228, 233, 249, 0.78);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.site-footer {
    width: calc(100% - 184px);
    max-width: 1420px;
    min-height: 74px;
    margin: 40px auto 40px;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(222, 228, 247, 0.58);
    border-top: 1px solid rgba(126, 148, 255, 0.18);
}

.footer-brand {
    max-width: 420px;
}

.footer-brand span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--text);
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
}

.footer-brand p {
    margin: 0;
    color: rgba(222, 228, 247, 0.58);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.footer-links a {
    color: rgba(222, 228, 247, 0.72);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.search-overlay,
.preview-modal,
.profile-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(2, 3, 10, 0.78);
    backdrop-filter: blur(18px);
}

.search-overlay.open,
.preview-modal.open,
.profile-modal.open {
    display: flex;
}

.search-panel,
.preview-card,
.profile-card {
    position: relative;
    width: min(720px, 100%);
    max-height: min(760px, calc(100vh - 56px));
    overflow: auto;
    border: 1px solid rgba(126, 148, 255, 0.46);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 100% 0%, rgba(116, 62, 255, 0.24), transparent 34%),
        linear-gradient(150deg, rgba(10, 16, 39, 0.97), rgba(4, 6, 18, 0.98));
    box-shadow: var(--shadow), 0 0 50px rgba(109, 56, 255, 0.22);
}

.search-panel {
    padding: 34px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

.search-panel h2 {
    margin: 0 54px 24px 0;
    font-size: 2rem;
}

.search-box {
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(126, 148, 255, 0.34);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.search-box i {
    color: #8e78ff;
}

.search-box input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.search-box input::placeholder {
    color: rgba(229, 233, 249, 0.42);
}

.search-results {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.search-result {
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid rgba(126, 148, 255, 0.2);
    border-radius: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
}

.search-result strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.search-result span {
    color: rgba(229, 233, 249, 0.62);
    font-size: 0.9rem;
}

.search-empty {
    color: rgba(229, 233, 249, 0.64);
    padding: 18px 0;
}

.preview-card {
    width: min(980px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 0;
}

.preview-video {
    width: 100%;
    min-height: 380px;
    height: 100%;
    object-fit: cover;
    background: #02030a;
}

.preview-copy {
    padding: 54px 34px 34px;
}

.preview-copy h2 {
    font-size: 2.2rem;
}

.preview-copy .primary-button {
    margin-top: 28px;
}

.profile-card {
    width: min(520px, 100%);
    padding: 34px;
    text-align: center;
}

.profile-avatar {
    width: 96px;
    height: 74px;
    margin: 0 auto 8px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.profile-avatar-z {
    font-size: 4rem;
    transform: skewX(-9deg);
}

.profile-avatar.google-photo {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid rgba(126, 148, 255, 0.42);
}

.profile-avatar.google-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: none;
    transform: none;
}

.profile-card h2 {
    margin: 0 48px 24px;
    color: var(--text);
    font-family: "Rajdhani", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.profile-status {
    min-height: 48px;
    margin: 0 0 20px;
    color: rgba(228, 233, 249, 0.72);
    line-height: 1.5;
}

.profile-hint {
    margin: 10px 0 0;
    color: rgba(228, 233, 249, 0.58);
    font-size: 0.92rem;
    line-height: 1.5;
}

.profile-actions {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.profile-actions .primary-button,
.profile-actions .secondary-button,
.google-button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
}

.google-button {
    min-height: 52px;
    border: 1px solid rgba(126, 148, 255, 0.36);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(18, 24, 58, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 42px rgba(0, 0, 0, 0.26);
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.google-button i {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(37, 168, 255, 0.75);
}

.google-button:hover {
    transform: translateY(-2px);
    border-color: rgba(128, 171, 255, 0.82);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 28px rgba(95, 121, 255, 0.35);
}

.google-button:disabled {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none;
}

.text-button {
    width: max-content;
    margin: 4px auto 0;
    border: 0;
    color: rgba(230, 235, 252, 0.62);
    background: transparent;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.text-button:hover {
    color: #ffffff;
    text-shadow: 0 0 14px rgba(155, 85, 255, 0.68);
}

.status-toast {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 80;
    min-width: 220px;
    max-width: calc(100vw - 56px);
    padding: 14px 18px;
    border: 1px solid rgba(126, 148, 255, 0.36);
    border-radius: 14px;
    color: var(--text);
    background: rgba(7, 11, 28, 0.92);
    box-shadow: var(--shadow), 0 0 28px rgba(37, 168, 255, 0.22);
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.reveal {
    opacity: 0;
    translate: 0 96px;
    scale: 0.9;
    rotate: 0 0 1 1.5deg;
    filter: blur(18px) saturate(0.75);
    will-change: opacity, translate, scale, filter;
    transition:
        opacity 1.05s ease,
        translate 1.05s cubic-bezier(0.13, 1, 0.22, 1),
        scale 1.05s cubic-bezier(0.13, 1, 0.22, 1),
        rotate 1.05s cubic-bezier(0.13, 1, 0.22, 1),
        filter 1.05s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.from-left {
    translate: -120px 52px;
    rotate: 0 0 1 -2.5deg;
}

.reveal.from-right {
    translate: 120px 52px;
    rotate: 0 0 1 2.5deg;
}

.reveal.zoom-in {
    translate: 0 44px;
    scale: 0.82;
    rotate: 0 0 1 0deg;
}

.reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    rotate: 0 0 1 0deg;
    filter: blur(0) saturate(1);
    /* animation: feedPulse 1.1s ease both; */
}

@keyframes feedPulse {
    0% {
        outline: 1px solid rgba(77, 189, 255, 0);
        outline-offset: 18px;
    }
    36% {
        outline: 1px solid rgba(92, 196, 255, 0.42);
        outline-offset: 5px;
    }
    100% {
        outline: 1px solid rgba(92, 196, 255, 0);
        outline-offset: 0;
    }
}

@keyframes crownFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-10px) rotate(3deg);
    }
}

@media (max-width: 1320px) {
    .main-nav {
        gap: 28px;
    }

    .brand-mark {
        min-width: 170px;
    }

    .home-shell,
    .content-section,
    .site-footer {
        width: calc(100% - 64px);
    }

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

@media (max-width: 1160px) {
    .scroll-feed-rail {
        display: none;
    }

    .site-header {
        width: calc(100% - 48px);
        padding: 18px 24px;
        flex-wrap: wrap;
    }

    .brand-mark {
        min-width: 0;
        margin-right: auto;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
    }

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

    .side-stack {
        grid-template-rows: auto auto;
    }

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

    .trust-strip {
        padding-inline: 32px;
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-header {
        top: 16px;
        width: calc(100% - 32px);
        margin-top: 16px;
        border-radius: 22px;
    }

    .brand-z {
        font-size: 2.15rem;
    }

    .brand-word {
        font-size: 1.45rem;
    }

    .header-actions {
        order: 2;
        width: 100%;
        gap: 10px;
        justify-content: space-between;
    }

    .icon-button {
        flex: 0 0 48px;
        width: 48px;
    }

    .signin-button {
        flex: 1 1 auto;
        min-width: 0;
        padding-inline: 16px;
    }

    .main-nav {
        scrollbar-width: none;
    }

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

    .home-shell,
    .content-section,
    .site-footer {
        width: calc(100% - 32px);
        scroll-margin-top: 190px;
    }

    .home-shell {
        margin-top: 72px;
    }

    .hero-card {
        min-height: 0;
        padding: 32px 24px;
    }

    .hero-kicker {
        font-size: 1.25rem;
    }

    .hero-title {
        gap: 18px;
    }

    .logo-letter {
        font-size: 4rem;
    }

    .logo-word {
        font-size: 3.15rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
    }

    .stat-item:nth-child(3)::before {
        display: none;
    }

    .stat-panel {
        padding: 28px 20px;
    }

    .premium-banner {
        min-height: 300px;
        padding: 28px 24px 160px;
        align-items: flex-start;
    }

    .crown-stage {
        right: 64px;
        bottom: 34px;
        top: auto;
        transform: scale(0.82);
        transform-origin: center;
    }

    .premium-banner .round-link {
        top: auto;
        right: 20px;
        bottom: 20px;
        transform: none;
    }

    .feature-grid,
    .download-grid,
    .download-grid.compact,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 68px minmax(0, 1fr) 36px;
        padding: 26px 20px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .section-heading h2,
    .community-copy h2 {
        font-size: 2.05rem;
    }

    .community-panel {
        padding: 30px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .community-actions {
        width: 100%;
    }

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

    .tool-row .round-link {
        grid-column: 1 / -1;
        justify-self: end;
    }

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

    .preview-video {
        min-height: 240px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 4px 20px;
        overflow: visible;
        white-space: normal;
    }

    .nav-link {
        font-size: 0.92rem;
        padding: 7px 0 15px;
    }

    .signal-pill {
        font-size: 0.86rem;
        min-height: 38px;
    }

    .hero-title {
        align-items: baseline;
    }

    .logo-letter {
        font-size: 3.1rem;
    }

    .logo-word {
        font-size: 2.35rem;
    }

    .stat-item strong {
        font-size: 1.65rem;
    }

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

    .feature-icon {
        grid-column: 1 / -1;
    }

    .search-panel {
        padding: 28px 18px;
    }

    .download-card {
        padding: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
}
