/* Landing Page - Premium Redesign */

html {
    background: var(--darker-bg);
    scrollbar-width: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    background: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.stars, .stars2, .stars3 {
    display: none !important;
}

/* Animated Gradient Background — smooth blob movement */
.animated-gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--darker-bg);
    overflow: hidden;
}

.animated-gradient-bg::before,
.animated-gradient-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.animated-gradient-bg::before {
    width: 60vw;
    height: 60vw;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%);
    animation: blobDrift1 16s ease-in-out infinite alternate;
}

.animated-gradient-bg::after {
    width: 50vw;
    height: 50vw;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.14) 0%, transparent 70%);
    animation: blobDrift2 20s ease-in-out infinite alternate;
}

.gradient-blob-3 {
    position: absolute;
    width: 45vw;
    height: 45vw;
    top: 40%;
    left: 30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    will-change: transform;
    animation: blobDrift3 18s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes blobDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(15vw, 20vh) scale(1.1); }
    100% { transform: translate(25vw, 10vh) scale(0.95); }
}

@keyframes blobDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-20vw, -15vh) scale(1.15); }
    100% { transform: translate(-10vw, -25vh) scale(0.9); }
}

@keyframes blobDrift3 {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(-10vw, 10vh) scale(1.08); }
    100% { transform: translate(15vw, -5vh) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .animated-gradient-bg::before,
    .animated-gradient-bg::after,
    .gradient-blob-3 {
        animation: none !important;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b1fa3 0%, #6d28d9 45%, #8b5cf6 100%);
    width: 0%;
    z-index: 999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.6), 0 0 25px rgba(139, 92, 246, 0.35);
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible:nth-child(1) { transition-delay: 0s; }
.scroll-animate.visible:nth-child(2) { transition-delay: 0.08s; }
.scroll-animate.visible:nth-child(3) { transition-delay: 0.16s; }
.scroll-animate.visible:nth-child(4) { transition-delay: 0.24s; }
.scroll-animate.visible:nth-child(5) { transition-delay: 0.32s; }
.scroll-animate.visible:nth-child(6) { transition-delay: 0.4s; }

.scroll-done {
    opacity: 1;
    transform: none;
}

.feature-box.scroll-done,
.step-card.scroll-done,
.pricing-card.scroll-done {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

/* ==================== NAVIGATION ==================== */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    padding-top: calc(1rem + env(safe-area-inset-top, 0px));
    padding-left: calc(2.5rem + env(safe-area-inset-left, 0px));
    padding-right: calc(2.5rem + env(safe-area-inset-right, 0px));
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.top-nav.scrolled {
    background: rgba(15, 15, 35, 0.85);
    border-bottom-color: rgba(139, 92, 246, 0.2);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 110;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.nav-login-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--light-blue));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-login-btn):hover {
    color: var(--text);
}

.nav-links a:not(.nav-login-btn):hover::after {
    width: 100%;
}

.nav-login-btn {
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* ==================== HERO ==================== */
.hero-section {
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 80px;
    margin: 0;
    overflow-x: hidden;
    background: transparent;
}

.hero-content {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-avatar-wrap {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease;
}

.hero-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
    object-fit: cover;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: rgba(255, 215, 0, 0.85);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeIn 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 650px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeIn 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation: fadeIn 1.4s ease;
}

.btn-primary, .btn-secondary {
    padding: 0.7rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 8px 32px rgba(139, 92, 246, 0.5), 0 2px 12px rgba(0, 206, 209, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: var(--text);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08), 0 6px 20px rgba(139, 92, 246, 0.18);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-primary.large, .btn-secondary.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeIn 1.6s ease;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ==================== FEATURES ==================== */
.features-section {
    padding: 7rem 2rem;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

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

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-dim);
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tab-pill {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    background: rgba(139, 92, 246, 0.04);
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.tab-pill:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text);
    border-color: rgba(139, 92, 246, 0.35);
}

.tab-pill.active {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(109, 40, 217, 0.45);
}

/* Feature Panels */
.feature-panels {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.feature-panel {
    display: none;
    animation: panelFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-panel.active {
    display: block;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 800px;
    position: relative;
}

.feature-box:hover {
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(0, 206, 209, 0.08));
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: invert(1);
}

.feature-icon img.icon-music {
    filter: brightness(0) invert(1);
}

.feature-box:hover .feature-icon {
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-box h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-dim);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ==================== COMPARISON ==================== */
.comparison-section {
    padding: 7rem 2rem;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.comparison-table-wrap {
    max-width: 1050px;
    margin: 0 auto;
    border-radius: 20px;
    border: 1px solid rgba(109, 40, 217, 0.2);
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(12px);
    overflow: hidden;
    overflow-x: auto;
}

.comp-header-row,
.comp-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    min-width: 600px;
}

.comp-header-row {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.55), rgba(109, 40, 217, 0.4));
    border-bottom: 1px solid rgba(109, 40, 217, 0.25);
}

.comp-row {
    border-bottom: 1px solid rgba(109, 40, 217, 0.08);
    transition: background 0.2s ease;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: rgba(109, 40, 217, 0.05);
}

.comp-col {
    padding: 1rem 1.1rem;
    font-size: 0.88rem;
    color: var(--text-dim);
    text-align: center;
    vertical-align: middle;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1.45;
}

.comp-label-col {
    text-align: left;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
    gap: 0.4rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.4rem;
}

.comp-label-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.comp-neo-col {
    background: rgba(109, 40, 217, 0.1);
    border-left: 1px solid rgba(109, 40, 217, 0.18);
    border-right: 1px solid rgba(109, 40, 217, 0.18);
    color: var(--text);
    font-weight: 500;
}

.comp-bot-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dim);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.comp-bot-neo {
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.7), rgba(109, 40, 217, 0.7));
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
    box-shadow: 0 2px 14px rgba(109, 40, 217, 0.4);
}

.comp-star {
    font-size: 0.85em;
}

.comp-header-row .comp-col {
    padding: 1.2rem 1.1rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.comp-check {
    color: #4ade80;
    font-weight: 700;
    font-size: 1.05rem;
    margin-right: 2px;
}

.comp-cross {
    color: rgba(248, 113, 113, 0.6);
    font-size: 1.1rem;
    font-weight: 700;
}

.comp-free {
    font-size: 0.72rem;
    color: #4ade80;
}

.comp-partial {
    font-size: 0.72rem;
    color: #fbbf24;
}

.comp-paid {
    font-size: 0.72rem;
    color: #f87171;
}

.comp-muted {
    font-size: 0.72rem;
    color: #9CA3AF;
}

.comp-pricing-row {
    border-top: 1px solid rgba(109, 40, 217, 0.2) !important;
    background: rgba(109, 40, 217, 0.04);
}

.comp-pricing-row .comp-col {
    font-weight: 600;
}

.comp-price-gold {
    color: #FFD700 !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.25);
}

.comparison-cta {
    text-align: center;
    margin-top: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-advantage {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.comparison-advantage strong:first-child {
    color: #FFD700;
}

.comparison-advantage strong:last-child {
    color: #4ade80;
}

/* ==================== HOW IT WORKS ==================== */
.how-section {
    padding: 7rem 2rem;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-card p {
    color: var(--text-dim);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ==================== PRICING ==================== */
.pricing-section-landing {
    padding: 7rem 2rem;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.pricing-dev-banner {
    max-width: 700px;
    margin: 1.5rem auto 2rem;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    text-align: center;
}

.pricing-dev-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: rgba(255, 215, 0, 0.9);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.pricing-dev-banner p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.pricing-dev-note {
    margin-top: 0.75rem !important;
    font-weight: 600;
    color: var(--text) !important;
}

.pricing-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.featured-card {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(26, 26, 46, 0.7);
    transform: scale(1.02);
}

.featured-card:hover {
    box-shadow: 0 12px 50px rgba(139, 92, 246, 0.3);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    color: #1a1a2e;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-align: center;
    margin-bottom: 0.75rem;
}

.price {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.price s {
    -webkit-text-fill-color: var(--text-dim);
    text-decoration: line-through;
    font-size: 2rem;
}

.price span {
    font-size: 0.9rem;
    -webkit-text-fill-color: var(--text-dim);
}

.price-desc {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.price-free-label {
    color: rgba(255, 215, 0, 0.85) !important;
    font-weight: 600;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features li {
    padding: 0.6rem 0;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(139, 92, 246, 0.06);
    font-size: 0.92rem;
}

.price-btn {
    width: 100%;
    padding: 0.9rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.price-btn:hover {
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.15);
}

.price-btn:active {
    transform: translateY(0);
}

.premium-btn {
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.premium-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    border-color: transparent;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 7rem 2rem;
    text-align: center;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: rgba(15, 15, 35, 0.8);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 2.5rem 2rem 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    width: 100%;
    box-sizing: border-box;
}

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

.footer-brand {
    font-size: 1.6rem;
    font-weight: 900;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.discord-link {
    color: var(--primary) !important;
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
    width: 100%;
}

.footer-made-in {
    margin-top: 0.5rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    opacity: 0.72;
    letter-spacing: 0.02em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.footer-flag-img {
    height: 1em;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}

/* ==================== LOADING / UTILITY ==================== */
.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid, .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(15, 15, 35, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 105;
        border-left: 1px solid rgba(139, 92, 246, 0.15);
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-links a:not(.nav-login-btn)::after {
        display: none;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .mobile-overlay.visible {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-section {
        padding-top: 80px;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-tabs {
        gap: 0.4rem;
    }

    .tab-pill {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }

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

    .steps-grid, .pricing-cards {
        grid-template-columns: 1fr;
    }

    .featured-card {
        transform: scale(1);
    }

    .featured-card:hover {
        transform: translateY(-4px);
    }

    .comparison-table-wrap {
        border-radius: 12px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .pricing-dev-banner {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 1rem;
    }
}
