/* website/style.css */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-gradient: radial-gradient(circle at 50% 0%, #20173d 0%, #0d0b17 50%, #07050e 100%);
    --bg-fallback: #0d0b17;
    --text-primary: #f4f3fb;
    --text-secondary: #a09ead;
    --accent: #5e9dff;
    --accent-glow: rgba(94, 157, 255, 0.4);
    --purple: #bf5eff;
    --purple-glow: rgba(191, 94, 255, 0.4);
    --glass-bg: rgba(21, 18, 38, 0.45);
    --glass-bg-hover: rgba(30, 27, 51, 0.6);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-focus: rgba(94, 157, 255, 0.3);
    --success: #4caf50;
    --error: #f44336;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-fallback);
    color: var(--text-primary);
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glass Container Utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.glass-panel:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Container Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 11, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 100px 0;
    text-align: center;
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--purple-glow);
    filter: blur(120px);
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 30%, var(--purple) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Call to Action Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    color: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(191, 94, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(191, 94, 255, 0.5), 0 0 15px var(--accent-glow);
}

.price-tag {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
}

/* Feature Grid */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* Setup & Guides Section */
.guide-section {
    padding: 80px 0;
}

.tabs-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.guide-box {
    padding: 40px;
}

.guide-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-box h2 span {
    color: var(--purple);
}

.guide-list {
    list-style: none;
}

.guide-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-weight: 300;
}

.guide-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.guide-list.dont li::before {
    content: "✕";
    color: var(--error);
}

/* FAQ Accordions */
.faq-section {
    padding: 80px 0 120px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-weight: 300;
}

.faq-answer-inner code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.faq-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

/* Success Page Specific */
.success-wrapper {
    max-width: 650px;
    margin: 80px auto;
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 24px;
    display: inline-block;
}

.success-wrapper h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.success-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
}

.download-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.download-info {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple onepager responsive shorthand */
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .tabs-wrapper {
        grid-template-columns: 1fr;
    }
    
    .success-wrapper {
        padding: 40px 20px;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 2px;
    border-radius: 20px;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent);
    color: #fff;
}
