:root {
    --primary: #69ac80;
    --primary-dark: #5a9970;
    --secondary: #b07857;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray: #2d2d2d;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.06);
    --stroke: rgba(255, 255, 255, 0.1);
    --muted: rgba(255, 255, 255, 0.7);
    --glass: rgba(30, 30, 30, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,h2,h3,h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section {
    position: relative;
    padding: clamp(4rem, 8vw, 6rem) 0;
    scroll-margin-top: 120px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-dark {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9), rgba(18, 18, 18, 1));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-darker {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-color {
    background: radial-gradient(circle at 20% 20%, rgba(105, 172, 128, 0.14) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(176, 120, 87, 0.14) 0%, transparent 55%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.section-color::before,
.section-color::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 900ms ease;
}

.section-color::before {
    left: -140px;
    top: -140px;
    background: rgba(105, 172, 128, 0.65);
    transform: translateX(-120px);
}

.section-color::after {
    right: -180px;
    bottom: -180px;
    background: rgba(176, 120, 87, 0.6);
    transform: translateX(120px);
    transition-delay: 120ms;
}

.section-color.in-view::before,
.section-color.in-view::after {
    opacity: 0.32;
    transform: translateX(0);
}

.section-inner,
.hero-content {
    position: relative;
    z-index: 1;
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 4px;
    border-radius: 10px;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.logo-link:hover,
.logo-link:focus-visible {
    background-color: rgba(105, 172, 128, 0.12);
    box-shadow: 0 0 0 1px rgba(105, 172, 128, 0.35), 0 6px 18px rgba(105, 172, 128, 0.18);
    transform: translateY(-1px);
    outline: none;
}

.logo-link:active {
    transform: translateY(0);
}

.logo {
    height: 50px;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(105, 172, 128, 0.4));
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-label {
    display: none;
}

.nav-link:not(.cta-button):not(.nav-icon-link):not(.nav-dropdown-item)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:not(.nav-icon-link):not(.nav-dropdown-item):hover::after,
.nav-link:not(.nav-icon-link):not(.nav-dropdown-item).active::after,
.nav-dropdown-toggle.has-active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown-icon {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    opacity: 0.75;
}

.nav-dropdown.open .nav-dropdown-icon,
.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 50%;
    transform: translate(-50%, -8px);
    min-width: 260px;
    background: rgba(20, 25, 32, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.45rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 1100;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -12px;
    right: -12px;
    height: 22px;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    padding: 0.6rem 0.75rem !important;
    border-radius: 10px;
    width: 100%;
    transition: background 0.2s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    background: rgba(105, 172, 128, 0.15);
}

.nav-dropdown-divider {
    height: 1px;
    margin: 0.4rem 0.25rem;
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-item-icon {
    width: 32px;
    height: 32px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(105, 172, 128, 0.18);
    color: var(--primary);
    font-size: 0.9rem;
    line-height: 1;
    flex-shrink: 0;
}

.nav-dropdown-item-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-dd-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-dd-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.nav-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-icon-link i {
    font-size: 1rem;
}

.nav-icon-link:hover {
    background: rgba(105, 172, 128, 0.18);
    border-color: rgba(105, 172, 128, 0.4);
    transform: translateY(-1px);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(105, 172, 128, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 172, 128, 0.4);
}

.secondary-button {
    background: transparent;
    color: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.secondary-button:hover {
    background: rgba(105, 172, 128, 0.1);
    transform: translateY(-2px);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 96px 0 4rem;
    overflow: hidden;
}

.section-hero {
    background: radial-gradient(circle at 25% 25%, rgba(105, 172, 128, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 75% 75%, rgba(176, 120, 87, 0.12) 0%, transparent 55%);
}

.section-hero::before,
.section-hero::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0;
    pointer-events: none;
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 900ms ease;
}

.section-hero::before {
    left: -200px;
    top: 10%;
    background: rgba(105, 172, 128, 0.7);
    transform: translateX(-140px);
}

.section-hero::after {
    right: -220px;
    bottom: 5%;
    background: rgba(176, 120, 87, 0.65);
    transform: translateX(140px);
    transition-delay: 120ms;
}

.section-hero.in-view::before,
.section-hero.in-view::after {
    opacity: 0.34;
    transform: translateX(0);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-logo {
    height: 300px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInRight 1s ease 0.6s forwards;
    filter: drop-shadow(0 0 20px rgba(105, 172, 128, 0.5));
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 1s ease;
    width: fit-content;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-lead {
    max-width: 780px;
    margin: 0 auto 2.5rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.features-section {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: var(--muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(
        220px circle at var(--mx, 50%) var(--my, 50%),
        rgba(105, 172, 128, 0.24),
        rgba(176, 120, 87, 0.08),
        transparent 60%
    );
    opacity: 0;
    filter: blur(18px);
    transition: opacity 180ms ease;
    pointer-events: none;
}

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

.feature-card.glow-on::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(105, 172, 128, 0.08);
    border-color: rgba(105, 172, 128, 0.35);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.addon-card {
    cursor: pointer;
}

.addon-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(105, 172, 128, 0.15);
}

.addon-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(105, 172, 128, 0.2);
    color: var(--primary);
    border: 1px solid rgba(105, 172, 128, 0.4);
    z-index: 2;
    pointer-events: none;
}

.addon-details {
    display: none;
}

.addon-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.addon-modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.addon-modal {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.addon-modal-overlay.show .addon-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-badge {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(105, 172, 128, 0.2);
    color: var(--primary);
    border: 1px solid rgba(105, 172, 128, 0.4);
}

.modal-close {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transform: rotate(90deg);
}

.modal-body {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

.modal-creator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-links .addon-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-links a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.platform-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
}

.buy-section {
    text-align: center;
}

.buy-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.buy-platform {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.buy-platform::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    opacity: 0.8;
}

.buy-platform-voxel-shop::after { background: linear-gradient(90deg, var(--primary), transparent 65%); }
.buy-platform-mcmodels::after { background: linear-gradient(90deg, var(--secondary), transparent 65%); }
.buy-platform-direct::after { background: linear-gradient(90deg, #635bff, transparent 65%); }

.buy-platform:hover {
    transform: translateY(-5px);
    background: rgba(105, 172, 128, 0.08);
    border-color: rgba(105, 172, 128, 0.35);
}

.buy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.buy-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.buy-pill {
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(105, 172, 128, 0.12);
    border: 1px solid rgba(105, 172, 128, 0.35);
    color: rgba(255, 255, 255, 0.9);
}

.buy-pill-secondary {
    background: rgba(176, 120, 87, 0.1);
    border-color: rgba(176, 120, 87, 0.32);
}

.buy-arrow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.buy-platform:hover .buy-arrow {
    transform: translateX(3px);
    background: rgba(105, 172, 128, 0.12);
    border-color: rgba(105, 172, 128, 0.35);
}

.buy-desc {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.payment-method {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
}


.payment-method-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    transition: transform 0.2s ease, filter 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method-link.stripe { background: #635bff; }
.payment-method-link.paypal { background: #0070ba; }
.payment-method-link:hover { transform: translateY(-2px); filter: brightness(1.1); }

hr {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    margin: 0.2rem 0;
}

.assets-section {
    text-align: center;
}

.assets-section .section-inner {
    max-width: 1320px;
}

.assets-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.title-logo {
    width: 88px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 18px rgba(105, 172, 128, 0.18));
}

.assets-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 4rem);
    margin-top: 2rem;
    text-align: left;
    --assets-media-h: clamp(260px, 22vw, 360px);
}

.assets-sign {
    height: var(--assets-media-h);
    width: auto;
    display: block;
    max-width: 100%;
    filter: drop-shadow(0 16px 42px rgba(0, 0, 0, 0.42));
    justify-self: end;
    opacity: 0.95;
}

.assets-text {
    max-width: 640px;
    margin: 0;
    text-align: left;
}

.assets-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.creator-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(105, 172, 128, 0.28);
}

.creator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.creator-name {
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
}

.creator-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: stretch;
}

.creator-col {
    min-width: 0;
}

.creator-head {
    width: auto;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    border: none;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.creator-pill {
    font-size: 0.82rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.creator-pill-dev {
    background: rgba(105, 172, 128, 0.12);
    border-color: rgba(105, 172, 128, 0.35);
}

.creator-pill-vip {
    background: rgba(176, 120, 87, 0.1);
    border-color: rgba(176, 120, 87, 0.32);
}

.creator-role {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.creator-footer {
    padding-top: 0.25rem;
}

.creator-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.creator-button:hover {
    background: rgba(105, 172, 128, 0.1);
    border-color: rgba(105, 172, 128, 0.35);
}

.assets-team {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.assets-team li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
}

.assets-team li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

.assets-button {
    display: inline-block;
    margin-top: 1rem;
}

.site-footer {
    background: var(--darker);
    padding: 3rem 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
}

.credit a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: underline;
}

.copy {
    text-align: center;
}

.disclaimer {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 860px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: transparent;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-logo {
        height: 200px;
        margin-top: 2rem;
        transform: translateY(20px);
        animation: fadeInUp 1s ease 0.6s forwards;
    }

    .assets-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        --assets-media-h: min(260px, 52vw);
    }

    .assets-text {
        text-align: center;
    }

    .assets-sign {
        display: none;
    }

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

    .buy-platform {
        flex: 1 1 calc(50% - 1.5rem);
        max-width: 450px;
    }
}

@media (max-width: 790px) {
    .hero-buttons {
        flex-direction: column;
    }

    .nav-container {
        position: relative;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        height: 50px;
    }

    .mobile-menu-button {
        display: block;
        position: absolute;
        top: 1rem;
        right: 2rem;
        z-index: 10;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: var(--light);
        cursor: pointer;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
        margin-top: 1rem;
        gap: 0;
        align-items: stretch;
    }

    .nav-links.show {
        max-height: 900px;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link-label {
        display: inline;
        margin-left: 0.75rem;
    }

    .nav-link.cta-button {
        margin-top: 0.5rem;
    }

    .nav-dropdown {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        border-top: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0.25rem 0.5rem 0.5rem;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease, padding 0.25s ease;
    }

    .nav-dropdown-menu::before { display: none; }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        max-height: 0;
    }

    .nav-dropdown.open:hover .nav-dropdown-menu {
        max-height: 500px;
    }

    .nav-dropdown-item {
        border-top: none;
    }

    .nav-icon-link {
        width: 100%;
        height: auto;
        border-radius: 0;
        background: transparent;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
        padding: 0.75rem 1rem !important;
    }

    .nav-icon-link:hover {
        background: rgba(105, 172, 128, 0.1);
        transform: none;
    }
}

@media (max-width: 650px) {
    .buy-platform {
        flex: 1 1 100%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .section:not(.hero-section) {
        padding: 3.75rem 0;
    }

    .section-inner {
        padding: 0 1.25rem;
    }

    .hero-content {
        text-align: center;
        padding: 0 1.25rem;
    }

    .hero-title {
        margin: 0 auto 1rem;
    }

    .hero-logo {
        height: 150px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .buy-options {
        flex-direction: column;
        gap: 1.5rem;
    }

    .buy-platform {
        min-width: auto;
        width: 100%;
        flex: 0 0 auto;
        max-width: none;
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .buy-arrow {
        display: none;
    }

    .buy-platform h3 {
        font-size: 1.3rem;
    }

    .buy-desc {
        font-size: 0.95rem;
    }

    .assets-team li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-color::before,
    .section-color::after,
    .section-hero::before,
    .section-hero::after {
        transition: none;
        opacity: 0.32;
        transform: none;
    }
}

/* Studio hub: product grid */
.home-pcard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.home-pcard {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    color: inherit;
    text-decoration: none;
}

.home-pcard:hover {
    transform: translateY(-4px);
    border-color: var(--product-accent, var(--primary));
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

.home-pcard-banner {
    position: relative;
    height: 160px;
    background: var(--product-gradient, linear-gradient(135deg, #3a3a3a, #1a1a1a));
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-pcard-icon {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-pcard-icon-image {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.home-pcard-icon-svg {
    font-size: 2.4rem;
    color: #fff;
}

.home-pcard-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-pcard-body {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.home-pcard-title {
    font-size: 1.3rem;
    margin: 0;
}

.home-pcard-tagline {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.home-pcard-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
}

.home-pcard-price {
    font-weight: 700;
    color: var(--product-accent, var(--primary));
}

.home-pcard-price--coming {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.home-pcard-cta {
    color: var(--product-accent, var(--primary));
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.home-pcard-dep {
    margin: 0.4rem 0 0;
    font-size: 0.78rem;
    color: rgba(170, 215, 239, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-pcard-dep i { font-size: 0.7rem; opacity: 0.85; }

.home-pcard--soon {
    opacity: 0.78;
    pointer-events: auto;
}

.home-pcard--soon:hover { opacity: 0.92; }

.hero-dep-notice {
    color: rgba(170, 215, 239, 0.95);
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
/* ---- Changelog ---------------------------------------------------------- */
.changelog .section-inner { max-width: 980px; }

.changelog__toggle {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.4rem;
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 999px;
    margin: 0 auto 2.5rem;
    align-items: center;
    justify-content: center;
}

.changelog__toggle {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.changelog__toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.changelog__toggle-btn:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.04);
}

.changelog__toggle-btn.is-active {
    color: var(--light);
    background: rgba(105, 172, 128, 0.18);
    border-color: rgba(105, 172, 128, 0.5);
}

.changelog__feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.changelog__entry {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 18px;
    padding: 1.6rem 1.75rem;
    position: relative;
    overflow: hidden;
}

.changelog__entry::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--primary);
    opacity: 0.85;
}

.changelog__entry--devbuild::before {
    background: var(--secondary);
}

.changelog__entry-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.changelog__entry-headline {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.changelog__version {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--light);
}

.changelog__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.changelog__badge--stable {
    background: rgba(105, 172, 128, 0.18);
    color: #b9e7c8;
    border-color: rgba(105, 172, 128, 0.45);
}

.changelog__badge--devbuild {
    background: rgba(176, 120, 87, 0.18);
    color: #f0c9b1;
    border-color: rgba(176, 120, 87, 0.45);
}

.changelog__date {
    color: var(--muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.changelog__title {
    color: var(--muted);
    font-size: 1rem;
    margin: 0.25rem 0 1.2rem;
}

.changelog__groups {
    display: grid;
    gap: 1.1rem;
}

.changelog__group {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
}

.changelog__group-title {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.changelog__group--added .changelog__group-title { color: #82d49a; }
.changelog__group--fixed .changelog__group-title { color: #aac9ff; }
.changelog__group--improved .changelog__group-title { color: #f5d68b; }
.changelog__group--removed .changelog__group-title { color: #ef9b9b; }

.changelog__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--light);
}

.changelog__item {
    margin: 0.2rem 0;
    line-height: 1.55;
}

.changelog__empty {
    text-align: center;
    color: var(--muted);
    padding: 3rem 1rem;
    border: 1px dashed var(--stroke);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.changelog__empty i { font-size: 1.6rem; opacity: 0.7; }

.changelog__error {
    background: rgba(239, 155, 155, 0.08);
    border: 1px solid rgba(239, 155, 155, 0.35);
    color: #f4baba;
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.changelog__error p { margin: 0; }

.changelog__products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.changelog__product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.changelog__product:hover { color: var(--light); background: var(--surface-2); }

.changelog__product.is-active {
    color: var(--light);
    background: rgba(105, 172, 128, 0.18);
    border-color: rgba(105, 172, 128, 0.5);
}

.changelog__product-icon { font-size: 1rem; }
.changelog__product-icon-img { width: 18px; height: 18px; object-fit: contain; }

.changelog__sha {
    margin-left: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.05rem 0.4rem;
    border-radius: 6px;
}

.changelog__sha:hover { color: var(--light); }

@media (max-width: 600px) {
    .changelog__entry { padding: 1.25rem 1.1rem 1.25rem 1.35rem; }
    .changelog__version { font-size: 1.15rem; }
    .changelog__toggle { width: 100%; justify-content: stretch; }
    .changelog__toggle-btn { flex: 1; justify-content: center; }
    .changelog__products { width: 100%; }
    .changelog__product { flex: 1; justify-content: center; }
}

.product-changelog__entries {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 1.5rem;
}

.product-changelog__entry {
    background: var(--surface);
    border: 1px solid var(--stroke);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    position: relative;
    overflow: hidden;
}

.product-changelog__entry::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--primary);
    opacity: 0.85;
}

.product-changelog__entry-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-changelog__version {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--light);
}

.product-changelog__date {
    color: var(--muted);
    font-size: 0.85rem;
}

.product-changelog__changes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-changelog__change {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-changelog__change-icon {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.product-changelog__more {
    margin-top: 1.5rem;
    text-align: center;
}

.product-changelog__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.changelog__entry-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.changelog-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 9px;
    background: rgba(105, 172, 128, 0.15);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(105, 172, 128, 0.35);
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
    text-decoration: none;
}

.changelog-download-btn:hover {
    background: var(--primary);
    color: var(--light);
}

.changelog-download-btn:active {
    transform: translateY(1px);
}
