
:root {
    --bg: #0b0f1a;
    --bg-warm: #111622;
    --ink: #eef2ff;
    --ink-soft: #b4c0e0;
    --muted: #7b89b0;
    --accent: #4f8cff;
    --accent-light: rgba(79, 140, 255, 0.12);
    --coral: #ff6b7a;
    --coral-light: rgba(255, 107, 122, 0.12);
    --mint: #3dd9a6;
    --mint-light: rgba(61, 217, 166, 0.12);
    --amber: #f5b042;
    --violet: #9f6eff;
    --line: rgba(238, 242, 255, 0.07);
    --line-dark: rgba(238, 242, 255, 0.13);
    --card: #151a28;
    --card-hover: #1c2132;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(.22, 1, .36, 1);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

h1,
h2,
h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    letter-spacing: -.02em;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    background: rgba(11, 15, 26, 0.78);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.35s ease;
}

nav.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    background: rgba(11, 15, 26, 0.9);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -.01em;
}

.logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--violet));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(79, 140, 255, 0.3);
    transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-right a {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.22s ease;
}

.nav-right a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--ink);
}

.nav-right a.active {
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
}

.mobile-btn {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    font-size: 1.5rem;
    cursor: pointer;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 84px 0 0;
    position: relative;
    z-index: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .sep {
    margin: 0 8px;
    opacity: .4;
}

/* DL HERO */
.dl-hero {
    padding: clamp(24px, 4vh, 48px) 0 clamp(40px, 6vh, 72px);
    position: relative;
    z-index: 1;
}

.dl-hero-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: clamp(32px, 4vw, 56px);
}

.dl-hero-top h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
}

.dl-hero-top h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dl-hero-top .meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.dl-hero-top .meta-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.dl-hero-top .meta-item .mi-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* PLATFORM MOSAIC */
.platform-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.plat-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(24px, 2.5vw, 36px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(.22, 1, .36, 1);
    display: flex;
    flex-direction: column;
}

.plat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 3px 3px;
}

.plat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: var(--card-hover);
}

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

.plat-card.pc-win {
    grid-column: 1;
    grid-row: 1/3;
}

.plat-card.pc-win::before {
    background: linear-gradient(90deg, var(--accent), var(--violet));
}

.plat-card.pc-mac {
    grid-column: 2;
    grid-row: 1;
}

.plat-card.pc-mac::before {
    background: var(--violet);
}

.plat-card.pc-ios {
    grid-column: 3;
    grid-row: 1;
}

.plat-card.pc-ios::before {
    background: var(--mint);
}

.plat-card.pc-and {
    grid-column: 2/4;
    grid-row: 2;
}

.pc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pc-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pc-icon.pi-win {
    background: var(--accent-light);
    color: var(--accent);
}

.pc-icon.pi-mac {
    background: rgba(159, 110, 255, 0.1);
    color: var(--violet);
}

.pc-icon.pi-ios {
    background: var(--mint-light);
    color: var(--mint);
}

.pc-icon.pi-and {
    background: var(--coral-light);
    color: var(--coral);
}

.pc-header-text .pc-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2;
}

.pc-header-text .pc-ver {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: var(--muted);
    margin-top: 2px;
}

.pc-tag {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .04em;
}

.pc-tag.tag-rec {
    background: var(--accent-light);
    color: var(--accent);
}

.pc-tag.tag-new {
    background: var(--mint-light);
    color: var(--mint);
}

.pc-desc {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.pc-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pc-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .75rem;
    color: var(--muted);
}

.pc-spec .ps-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--muted);
}

.pc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .92rem;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pc-btn svg {
    flex-shrink: 0;
}

.pc-btn.btn-win {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79, 140, 255, 0.3);
}

.pc-btn.btn-win:hover {
    background: #6a9fff;
    box-shadow: 0 8px 28px rgba(79, 140, 255, 0.5);
    transform: translateY(-2px);
}

.pc-btn.btn-mac {
    background: var(--violet);
    color: #fff;
    box-shadow: 0 4px 16px rgba(159, 110, 255, 0.25);
}

.pc-btn.btn-mac:hover {
    box-shadow: 0 8px 28px rgba(159, 110, 255, 0.45);
    transform: translateY(-2px);
}

.pc-btn.btn-ios {
    background: var(--mint);
    color: #0b0f1a;
    box-shadow: 0 4px 16px rgba(61, 217, 166, 0.25);
}

.pc-btn.btn-ios:hover {
    box-shadow: 0 8px 28px rgba(61, 217, 166, 0.45);
    transform: translateY(-2px);
}

.pc-btn.btn-and {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 122, 0.25);
}

.pc-btn.btn-and:hover {
    box-shadow: 0 8px 28px rgba(255, 107, 122, 0.45);
    transform: translateY(-2px);
}

/* ILLUSTRATION */
.pc-hero-illustration {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-illust-box {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pc-illust-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, var(--accent-light), transparent 60%);
}

.pc-illust-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pc-illust-inner .illust-icon {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.pc-illust-inner .illust-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    color: var(--muted);
}

/* SECTION HEAD */
.section-head {
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 64px);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .73rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--accent);
    opacity: .4;
}

.section-head h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.section-head p {
    color: var(--muted);
    font-size: .98rem;
    max-width: 480px;
    margin: 0 auto;
}

/* INSTALL SHOWCASE */
.install-showcase {
    padding: clamp(50px, 7vh, 90px) 0;
    position: relative;
    z-index: 1;
}

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

.showcase-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(22px, 2.5vw, 32px);
    text-align: center;
    transition: all 0.35s cubic-bezier(.22, 1, .36, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--card-hover);
}

.sc-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 16px;
    transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.showcase-card:hover .sc-step-badge {
    transform: scale(1.1);
}

.showcase-card:nth-child(1) .sc-step-badge {
    background: var(--accent);
}

.showcase-card:nth-child(2) .sc-step-badge {
    background: var(--coral);
}

.showcase-card:nth-child(3) .sc-step-badge {
    background: var(--mint);
}

.sc-animation-area {
    background: var(--bg);
    border-radius: 14px;
    padding: 20px 16px;
    border: 1px dashed var(--line-dark);
    margin: 14px 0;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.4s ease;
    min-height: 68px;
}

.showcase-card:hover .sc-animation-area {
    border-color: var(--accent);
    background: var(--accent-light);
}

.anim-bounce {
    display: inline-block;
    animation: bounceIcon 1.3s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-14px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.anim-pulse {
    display: inline-block;
    animation: pulseIcon 1.6s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: .6;
    }
}

.anim-spin {
    display: inline-block;
    animation: spinIcon 3s linear infinite;
}

@keyframes spinIcon {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.sc-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: 0;
    color: var(--ink);
}

.sc-desc {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* COMPARISON TABLE */
.comparison {
    padding: clamp(50px, 7vh, 90px) 0;
    position: relative;
    z-index: 1;
}

.comp-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
}

.comp-table-wrap::-webkit-scrollbar {
    height: 5px;
}

.comp-table-wrap::-webkit-scrollbar-track {
    background: var(--line);
    border-radius: 10px;
}

.comp-table-wrap::-webkit-scrollbar-thumb {
    background: var(--line-dark);
    border-radius: 10px;
}

.comp-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: .86rem;
}

.comp-table th {
    text-align: center;
    padding: 15px 18px;
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--muted);
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.comp-table th:first-child {
    text-align: left;
    border-radius: 20px 0 0 0;
}

.comp-table th:last-child {
    border-radius: 0 20px 0 0;
}

.comp-table td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    text-align: center;
}

.comp-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--ink);
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table .ck-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: .65rem;
    color: #fff;
    flex-shrink: 0;
}

.ck-green {
    background: var(--mint);
}

.ck-blue {
    background: var(--accent);
}

.ck-dash {
    color: var(--muted);
    font-weight: 300;
}

/* DETAIL SECTION */
.detail-section {
    padding: clamp(60px, 8vh, 100px) 0;
    position: relative;
    z-index: 1;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.detail-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 40px);
    transition: all 0.3s ease;
}

.detail-card:hover {
    box-shadow: var(--shadow);
    background: var(--card-hover);
}

.dc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.dc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc-icon.di1 {
    background: var(--accent-light);
    color: var(--accent);
}

.dc-icon.di2 {
    background: var(--coral-light);
    color: var(--coral);
}

.dc-icon.di3 {
    background: var(--mint-light);
    color: var(--mint);
}

.dc-icon.di4 {
    background: rgba(159, 110, 255, 0.1);
    color: var(--violet);
}

.dc-head h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--ink);
}

.dc-body {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
}

.dc-body ul {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dc-body ul li {
    position: relative;
    padding-left: 16px;
}

.dc-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .6;
}

.dc-body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: .82rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--accent-light);
    color: var(--accent);
}

/* TIMELINE */
.timeline-section {
    padding: clamp(60px, 8vh, 100px) 0;
    position: relative;
    z-index: 1;
}

.tl-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--line-dark) transparent;
}

.tl-scroll::-webkit-scrollbar {
    height: 4px;
}

.tl-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.tl-scroll::-webkit-scrollbar-thumb {
    background: var(--line-dark);
    border-radius: 2px;
}

.tl-card {
    flex-shrink: 0;
    width: 300px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--line-dark);
    transition: all 0.3s ease;
}

.tl-card:first-child::before {
    background: linear-gradient(90deg, var(--accent), var(--violet));
}

.tl-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--card-hover);
}

.tl-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tl-ver {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--ink);
}

.tl-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    color: var(--muted);
}

.tl-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
}

.tl-badge.tl-latest {
    background: var(--accent-light);
    color: var(--accent);
}

.tl-badge.tl-stable {
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
}

.tl-badge.tl-major {
    background: rgba(159, 110, 255, 0.1);
    color: var(--violet);
}

.tl-body {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.7;
}

.tl-body li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.tl-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .5;
}

/* CTA SECTION */
.cta-section {
    padding: clamp(60px, 8vh, 100px) 0;
    position: relative;
    z-index: 1;
}

.cta-inner {
    background: linear-gradient(135deg, #1b2235 0%, #0f1422 100%);
    border-radius: 28px;
    padding: clamp(50px, 6vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    border: 1px solid var(--line-dark);
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(79, 140, 255, 0.2), transparent 60%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-inner h2 em {
    font-style: italic;
    color: #7ba4ff;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    font-family: 'DM Sans', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(79, 140, 255, 0.3);
}

.btn-solid:hover {
    background: #6a9fff;
    box-shadow: 0 8px 28px rgba(79, 140, 255, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    background: transparent;
    color: var(--ink);
    font-weight: 600;
    font-size: .95rem;
    font-family: 'DM Sans', sans-serif;
    border: 1.5px solid var(--line-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    color: var(--accent);
    transform: translateY(-2px);
}

.cta-section .btn-solid {
    background: #fff;
    color: #0b0f1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.cta-section .btn-solid:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 30px rgba(79, 140, 255, 0.5);
}

.cta-section .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-section .btn-outline:hover {
    border-color: #7ba4ff;
    background: rgba(79, 140, 255, 0.15);
    color: #fff;
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--line);
    padding: 50px 0 24px;
    position: relative;
    z-index: 1;
    background: #0d1120;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .85rem;
    max-width: 260px;
    line-height: 1.7;
    margin-top: 12px;
}

.footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    color: var(--muted);
    font-size: .85rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: .75rem;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s cubic-bezier(.22, 1, .36, 1);
}

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

.reveal-d1 {
    transition-delay: .1s;
}

.reveal-d2 {
    transition-delay: .2s;
}

.reveal-d3 {
    transition-delay: .3s;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .platform-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .plat-card.pc-win {
        grid-column: 1/3;
        grid-row: auto;
    }
    .plat-card.pc-and {
        grid-column: 1/3;
        grid-row: auto;
    }
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    .detail-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .nav-right a:not(.nav-right a.active) {
        display: none;
    }
    .nav-right a.active {
        display: block;
    }
    .mobile-btn {
        display: block;
    }
    .platform-mosaic {
        grid-template-columns: 1fr;
    }
    .plat-card.pc-win,
    .plat-card.pc-and {
        grid-column: 1;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    .comp-table {
        min-width: 560px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .dl-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .pc-hero-illustration {
        display: none;
    }
}

@media(max-width:480px) {
    .comp-table {
        min-width: 460px;
    }
    .comp-table th,
    .comp-table td {
        padding: 8px 10px;
        font-size: .72rem;
    }
    .tl-card {
        flex: 0 0 240px;
    }
}