/* ─────────────────────────────────────────
   ANANTAR ULTIMATE — Global Stylesheet
   Premium Dark Glassmorphic Design
───────────────────────────────────────── */

:root {
    /* Colors */
    --bg-900: #060810;
    --bg-800: #0b0e1a;
    --bg-700: #111527;
    --bg-glass: rgba(16, 20, 40, 0.6);
    --glass-border: rgba(100, 130, 255, 0.12);

    --accent: #5b7fff;
    --accent-2: #a78bfa;
    --accent-3: #34d399;
    --gold: #f59e0b;

    --water: #38bdf8;
    --sky: #818cf8;
    --fire: #f97316;

    --text-primary: #e8eaf6;
    --text-secondary: #9da8c9;
    --text-muted: #4a5580;

    /* Typography */
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-gap: 100px;
    --container-max: 1200px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-900);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-800);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 99px;
}

/* ── SELECTION ── */
::selection {
    background: rgba(91, 127, 255, 0.35);
    color: #fff;
}

/* ── CONTAINER ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─────────────────────────────────────────
   SHARED UTILS
───────────────────────────────────────── */
.section {
    padding: var(--section-gap) 0;
}

.section-dark {
    background: var(--bg-800);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(91, 127, 255, 0.3);
    border-radius: 99px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
    box-shadow: 0 4px 24px rgba(91, 127, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(91, 127, 255, 0.55);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    background: rgba(91, 127, 255, 0.08);
}

/* ── GLASS CARD ── */
.glass {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
}

.nav-logo .logo-glyph {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-logo strong {
    color: #fff;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 10px;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(91, 127, 255, 0.3);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(91, 127, 255, 0.45);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(91, 127, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(91, 127, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(91, 127, 255, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -3s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(20px, -20px);
    }

    66% {
        transform: translate(-15px, 15px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    padding: 6px 16px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.03);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-3);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.title-line1 {
    background: linear-gradient(135deg, #fff 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-v5 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 2px solid rgba(91, 127, 255, 0.3);
    border-radius: 12px;
    padding: 2px 16px;
    -webkit-text-fill-color: unset;
    color: transparent;
}

.v5-special-grid {
    margin-bottom: 60px;
}

.v5-cpu-block {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(16px);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-desc strong {
    color: var(--accent-3);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-req {
    font-size: 0.82rem;
    color: var(--text-muted);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    padding: 8px 20px;
    display: inline-block;
}

.hero-req strong {
    color: var(--gold);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    z-index: 2;
    animation: fadeInUp 2s ease 1s both;
}

.scroll-arrow {
    animation: bounce 2s ease infinite;
    display: block;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ─────────────────────────────────────────
   FEATURE GRID
───────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 127, 255, 0.3);
    box-shadow: 0 12px 40px rgba(91, 127, 255, 0.12);
}

.card-glow {
    border-color: rgba(91, 127, 255, 0.2);
    background: linear-gradient(135deg, rgba(91, 127, 255, 0.06) 0%, var(--bg-glass) 100%);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ─────────────────────────────────────────
   PROFILES
───────────────────────────────────────── */
.profiles-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.profile-group-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-small {
    font-size: 0.7rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 99px;
    padding: 3px 10px;
    color: #fff;
    letter-spacing: 0.05em;
}

.profile-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-item {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: border-color 0.2s;
}

.profile-item:hover {
    border-color: rgba(91, 127, 255, 0.3);
}

.profile-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(91, 127, 255, 0.12);
    border-radius: 8px;
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.profile-item strong {
    font-size: 0.9rem;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.profile-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

/* HARMONIC */
.harmonic-section {
    margin-bottom: 48px;
}

.harmonic-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 600px;
}

.harmonic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.harmonic-card {
    padding: 24px;
    border-radius: 18px;
    border: 1px solid;
}

.harmonic-card.water {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(56, 189, 248, 0.03) 100%);
    border-color: rgba(56, 189, 248, 0.2);
}

.harmonic-card.sky {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.08) 0%, rgba(129, 140, 248, 0.03) 100%);
    border-color: rgba(129, 140, 248, 0.2);
}

.harmonic-card.fire {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.03) 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.harmonic-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.harmonic-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.harmonic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.harmonic-tags span {
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}

/* DEEPSLEEP */
.deepsleep-card {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.06) 0%, var(--bg-glass) 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.ds-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ds-icon {
    font-size: 2.5rem;
}

.ds-header h3 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 700;
}

.ds-header p {
    font-size: 0.87rem;
    color: var(--text-secondary);
}

.ds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.ds-item {
    padding: 16px;
    background: rgba(52, 211, 153, 0.04);
    border: 1px solid rgba(52, 211, 153, 0.1);
    border-radius: 12px;
}

.ds-item strong {
    display: block;
    color: var(--accent-3);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.ds-item p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ─────────────────────────────────────────
   INSTALLATION
───────────────────────────────────────── */
.install-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.install-step {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    transition: border-color 0.2s;
}

.install-step:hover {
    border-color: rgba(91, 127, 255, 0.2);
}

.highlight-step {
    border-color: rgba(91, 127, 255, 0.25);
    background: linear-gradient(135deg, rgba(91, 127, 255, 0.06) 0%, var(--bg-glass) 100%);
}

.prereq {
    border-color: rgba(245, 158, 11, 0.2);
}

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

.step-num {
    font-size: 0.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.step-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.step-list {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.step-list li {
    margin-bottom: 8px;
}

.step-list.compact li {
    margin-bottom: 4px;
}

.step-list strong {
    color: var(--text-primary);
}

.step-list em {
    color: var(--text-muted);
    font-style: normal;
}

code {
    font-family: var(--font-mono);
    font-size: 0.82em;
    background: rgba(91, 127, 255, 0.1);
    border: 1px solid rgba(91, 127, 255, 0.15);
    border-radius: 6px;
    padding: 2px 7px;
    color: var(--accent-2);
}

.download-box {
    margin: 16px 0 20px;
}

.os-chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 10px 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    padding: 8px 14px;
    border-radius: 10px;
}

.chip-win {
    background: rgba(0, 120, 215, 0.1);
    border: 1px solid rgba(0, 120, 215, 0.2);
}

.chip-mac {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.tip {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
}

/* ─────────────────────────────────────────
   EXT4
───────────────────────────────────────── */
.ext4-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.ext4-why-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
}

.ext4-why-card:hover {
    transform: translateY(-3px);
    border-color: rgba(91, 127, 255, 0.25);
}

.ext4-why-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.ext4-why-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.ext4-why-card p {
    font-size: 0.87rem;
    color: var(--text-secondary);
}

.ext4-format-box {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.06) 0%, var(--bg-glass) 100%);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
}

.ext4-format-box h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.ext4-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.87rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.ext4-limitations {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
}

.ext4-limitations h4 {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ext4-limitations ul {
    font-size: 0.87rem;
    color: var(--text-secondary);
    padding-left: 18px;
}

.ext4-limitations li {
    margin-bottom: 6px;
}

.ext4-community-note blockquote {
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    background: var(--bg-glass);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--text-secondary);
}

.ext4-community-note blockquote p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.ext4-community-note footer {
    font-size: 0.82rem;
    font-style: normal;
}

.ext4-community-note a {
    color: var(--accent);
    text-decoration: none;
}

.ext4-community-note a:hover {
    text-decoration: underline;
}

/* ─────────────────────────────────────────
   V4
───────────────────────────────────────── */
.v4-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.v4-group {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
}

.v4-group-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.v4-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.v4-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 14px;
    position: relative;
}

.v4-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.v4-list strong {
    color: var(--text-primary);
}

.v4-community-links h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.community-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.community-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
}

.community-link-card:hover {
    border-color: rgba(91, 127, 255, 0.3);
    transform: translateX(4px);
}

.cl-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.community-link-card strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.community-link-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────
   MAINTENANCE
───────────────────────────────────────── */
.maint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.maint-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
    transition: border-color 0.2s;
}

.maint-card.full-width {
    grid-column: 1 / -1;
}

.maint-card:hover {
    border-color: rgba(91, 127, 255, 0.2);
}

.maint-card h3 {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
}

.maint-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
}

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

.ab-cols strong {
    display: block;
    color: var(--accent-2);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.qfil-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0 20px;
}

.qfil-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 14px;
}

.qfil-step strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.qfil-step p {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.maint-card p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* ─────────────────────────────────────────
   COMMUNITY
───────────────────────────────────────── */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.community-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}

.community-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 127, 255, 0.3);
    box-shadow: 0 16px 40px rgba(91, 127, 255, 0.1);
}

.community-card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.community-card h3 {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.community-card p {
    font-size: 0.87rem;
    color: var(--text-secondary);
    flex: 1;
    margin-bottom: 16px;
}

.community-link-arrow {
    color: var(--accent);
    font-size: 1.1rem;
}

.support-box {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, var(--bg-glass) 100%);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    padding: 32px;
}

.support-content h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.support-content p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.support-content strong {
    color: var(--accent-3);
}

.crypto-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.crypto-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.crypto-addr {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--accent-2);
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 8px;
    padding: 8px 14px;
    word-break: break-all;
}

.copy-btn {
    background: rgba(91, 127, 255, 0.15);
    border: 1px solid rgba(91, 127, 255, 0.3);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(91, 127, 255, 0.25);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
    background: var(--bg-900);
    border-top: 1px solid var(--glass-border);
    padding: 48px 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand .logo-glyph {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-byline {
    font-size: 0.87rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

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

.footer-disc {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 480px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   ARCHITECTURE (EXPANDED)
───────────────────────────────────────── */
.arch-img-wrap {
    margin: 40px auto;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.arch-orig-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.arch-img-credit {
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    letter-spacing: 0.02em;
}

.arch-explain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.arch-explain-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.3s var(--ease-out), border-color 0.3s;
}

.arch-explain-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 127, 255, 0.3);
}

.arch-explain-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.arch-explain-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arch-explain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.arch-explain-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.arch-explain-list strong {
    display: block;
    font-size: 1rem;
    color: var(--accent-2);
    margin-bottom: 6px;
}

.arch-source-note {
    margin-top: 48px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.arch-source-note a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.arch-source-note a:hover {
    border-color: var(--accent);
}

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


.arch-arrow-hw:nth-child(1) {
    animation-delay: 0s;
    color: rgba(56, 189, 248, 0.6);
}

.arch-arrow-hw:nth-child(2) {
    animation-delay: 0.3s;
    color: rgba(52, 211, 153, 0.6);
}

.arch-arrow-hw:nth-child(3) {
    animation-delay: 0.6s;
    color: rgba(236, 72, 153, 0.6);
}

.arch-arrow-hw:nth-child(4) {
    animation-delay: 0.9s;
    color: rgba(245, 158, 11, 0.6);
}

/* Hardware Row */
.arch-row-hw {
    background: rgba(15, 20, 40, 0.6);
    border: 1.5px solid rgba(91, 127, 255, 0.12);
    border-bottom: none;
    padding: 20px;
}

.arch-hw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.arch-hw-card {
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100px;
    justify-content: center;
}

.arch-hw-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.arch-hw-blue {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
    color: #fff;
    border: 1px solid rgba(30, 136, 229, 0.5);
}

.arch-hw-green {
    background: linear-gradient(135deg, #34a853, #2e7d32);
    color: #fff;
    border: 1px solid rgba(52, 168, 83, 0.5);
}

.arch-hw-pink {
    background: linear-gradient(135deg, #ec4899, #be185d);
    color: #fff;
    border: 1px solid rgba(236, 72, 153, 0.5);
}

.arch-hw-yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a1000;
    border: 1px solid rgba(245, 158, 11, 0.5);
}

.arch-hw-inner {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.arch-hw-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
}

.arch-hw-label {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.75;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}



/* ─────────────────────────────────────────
   ORIGINAL IMAGE GALLERY
───────────────────────────────────────── */
.orig-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 28px;
}

.orig-img-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.orig-img-card:hover {
    border-color: rgba(91, 127, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.orig-img-header {
    padding: 22px 24px 18px;
}

.orig-img-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(91, 127, 255, 0.1);
    border: 1px solid rgba(91, 127, 255, 0.2);
    border-radius: 99px;
    padding: 3px 12px;
    margin-bottom: 10px;
}

.orig-img-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.orig-img-header p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.orig-img-wrap {
    padding: 0 16px 16px;
}

.orig-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s var(--ease-out);
    cursor: zoom-in;
}

.orig-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .orig-img-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-links a.active {
    color: #fff;
    background: rgba(91, 127, 255, 0.12);
}

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

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        top: 60px;
        background: rgba(6, 8, 16, 0.97);
        backdrop-filter: blur(20px);
        z-index: 99;
        padding: 24px;
        gap: 4px;
    }

    .nav-links.open a {
        padding: 14px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .nav-toggle {
        display: block;
    }

    .btn-nav {
        display: none !important;
    }

    .hero-title {
        flex-direction: column;
        gap: 10px;
    }

    .ab-cols {
        grid-template-columns: 1fr;
    }

    .qfil-steps {
        grid-template-columns: 1fr;
    }

    .section-gap {
        --section-gap: 64px;
    }
}

/* ─────────────────────────────────────────
   DONATION & SUPPORT
   ───────────────────────────────────────── */
.support-box {
    margin-top: 64px;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(16px);
}

.donation-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.2s var(--ease-out);
    cursor: pointer;
    position: relative;
}

.donation-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.donation-icon {
    font-size: 1.2rem;
}

.crypto-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 100%;
    overflow-x: auto;
}

.crypto-label {
    font-size: 0.85rem;
    color: var(--accent-3);
    font-weight: 600;
}

.crypto-addr {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.copy-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.copy-btn:hover {
    background: var(--accent-2);
}

/* ─────────────────────────────────────────
   V6 — New Styles
───────────────────────────────────────── */

/* Hero V6 pills */
.hero-v6-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.v6-pill {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(91, 127, 255, 0.12);
    border: 1px solid rgba(91, 127, 255, 0.25);
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.v6-pill-new {
    background: rgba(167, 139, 250, 0.18);
    border-color: rgba(167, 139, 250, 0.4);
    color: var(--accent-2);
}

/* Feature card: NEW badge */
.feature-card {
    position: relative;
}

.feature-badge-new {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--accent-2);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* PowerScope screenshots inside feature card */
.powerscope-screenshots {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.powerscope-screenshots img {
    width: 30%;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

/* Feature card hero — full width on desktop */
.feature-card-hero {
    grid-column: 1 / -1;
}

/* V6 section accent */
.v6-section {
    border-top: 1px solid rgba(167, 139, 250, 0.15);
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
}

/* PowerScope hero block */
.powerscope-hero-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin: 48px 0;
    padding: 40px;
    background: rgba(16, 20, 40, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.ps-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.powerscope-hero-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.powerscope-hero-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.ps-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 2px solid rgba(167, 139, 250, 0.3);
    padding-left: 12px;
}

.ps-features li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.powerscope-hero-imgs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ps-img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.ps-img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 48px rgba(167, 139, 250, 0.2);
}

/* V6 other changes grid */
.v6-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.v6-other-card {
    background: rgba(16, 20, 40, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}

.v6-other-card:hover {
    border-color: rgba(91, 127, 255, 0.35);
    transform: translateY(-4px);
}

.v6-other-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.v6-other-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.v6-other-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .powerscope-hero-block {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 32px;
    }

    .powerscope-hero-imgs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ps-img {
        width: calc(50% - 6px);
    }

    .v6-other-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-hero {
        grid-column: auto;
    }

    .powerscope-screenshots img {
        width: 29%;
    }
}

/* ═══════════════════════════════════════
   V6 — NEW STYLES
   Uses existing design system variables only
═══════════════════════════════════════ */

/* ─── HERO V6 PILLS ─── */
.hero-v6-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 24px 0 8px;
}
.v6-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.v6-pill-new {
    background: rgba(91, 127, 255, 0.12);
    border-color: rgba(91, 127, 255, 0.4);
    color: var(--accent);
}

/* ─── FEATURE CARD BADGE ─── */
.feature-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, var(--accent));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.feature-card-hero {
    grid-column: 1 / -1;
}

.powerscope-screenshots {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.powerscope-screenshots img {
    flex: 1;
    min-width: 0;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

/* ─── V6 CHANGELOG SECTION ─── */
.v6-section .section-tag {
    background: linear-gradient(135deg, #7c3aed, var(--accent));
    color: #fff;
    border-color: transparent;
}

.v6-powerscope-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 48px;
    margin: 48px 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.08), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.v6-ps-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.v6-ps-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.v6-ps-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.v6-ps-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.v6-ps-pills span {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: var(--accent-2);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 99px;
}

.v6-ps-cta {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, var(--accent));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.v6-ps-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.v6-ps-imgs {
    display: flex;
    gap: 10px;
}
.v6-ps-imgs img {
    flex: 1;
    min-width: 0;
    border-radius: 14px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition: transform 0.3s var(--ease-out);
}
.v6-ps-imgs img:hover {
    transform: scale(1.04) translateY(-4px);
}

.v6-changes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.v6-change-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.v6-change-card:hover {
    border-color: rgba(91, 127, 255, 0.4);
    transform: translateY(-3px);
}

.v6-change-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.v6-change-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.v6-change-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ─── POWERSCOPE DEDICATED SECTION ─── */
.ps-title-sub {
    font-size: 0.55em;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: 8px;
}

.ps-doc-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}
.ps-doc-link:hover { opacity: 0.75; }

.ps-gallery {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 48px 0;
    flex-wrap: wrap;
}
.ps-gallery-img {
    width: calc(33.33% - 12px);
    min-width: 180px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.ps-gallery-img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

.ps-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ps-feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.2s, transform 0.2s var(--ease-out);
}
.ps-feature-card:hover {
    border-color: rgba(91, 127, 255, 0.4);
    transform: translateY(-4px);
}
.ps-feature-card.card-glow {
    border-color: rgba(91, 127, 255, 0.2);
    box-shadow: 0 0 24px rgba(91, 127, 255, 0.08);
}

.ps-feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.ps-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.ps-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ps-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ps-detail-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.ps-detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}
.ps-detail-list li strong {
    color: var(--text-primary);
}

.ps-privacy-note {
    font-size: 0.8rem !important;
    color: var(--accent-3) !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}

.ps-doc-cta {
    text-align: center;
    margin-top: 56px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .v6-powerscope-hero {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 28px;
    }
    .v6-changes-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-hero {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .ps-gallery-img {
        width: calc(50% - 8px);
    }
    .ps-feature-grid {
        grid-template-columns: 1fr;
    }
    .hero-v6-pills {
        gap: 8px;
    }
    .powerscope-screenshots img {
        width: 29%;
    }
}
