/* ============================================
   VaultStash Landing Page
   Aesthetic: Dark, refined, security-focused
   ============================================ */

:root {
    /* Colors - Deep navy with cyan/teal accents */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #16161f;
    --bg-elevated: #1c1c28;

    --text-primary: #f0f0f5;
    --text-secondary: #8888a0;
    --text-muted: #5a5a70;

    --accent-primary: #00d4aa;
    --accent-secondary: #22d3ee;
    --accent-glow: rgba(0, 212, 170, 0.4);

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-visible: rgba(255, 255, 255, 0.1);

    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;

    /* Typography */
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Light theme */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --bg-primary: #f8f9fa;
        --bg-secondary: #ffffff;
        --bg-card: #ffffff;
        --bg-elevated: #f0f4f8;

        --text-primary: #1a1a2e;
        --text-secondary: #6b6b80;
        --text-muted: #9090a0;

        --accent-primary: #00b894;
        --accent-secondary: #00cec9;
        --accent-glow: rgba(0, 212, 170, 0.2);

        --border-subtle: rgba(0, 212, 170, 0.06);
        --border-visible: rgba(0, 212, 170, 0.12);
    }
}

[data-theme="light"] {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #f0f4f8;

    --text-primary: #1a1a2e;
    --text-secondary: #6b6b80;
    --text-muted: #9090a0;

    --accent-primary: #00b894;
    --accent-secondary: #00cec9;
    --accent-glow: rgba(0, 212, 170, 0.2);

    --border-subtle: rgba(0, 212, 170, 0.06);
    --border-visible: rgba(0, 212, 170, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

/* Noise Texture Overlay */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .noise {
        opacity: 0.02;
    }
}

[data-theme="light"] .noise {
    opacity: 0.02;
}

/* Gradient Orbs */
.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

/* Light theme orb adjustments */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .orb-1 {
        background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    }
    :root:not([data-theme="dark"]) .orb-2 {
        background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    }
}

[data-theme="light"] .orb-1 {
    background: radial-gradient(circle, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .orb-2 {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

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

.nav-cta {
    background: var(--accent-primary);
    color: var(--text-primary) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.4rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.title-accent {
    color: var(--accent-secondary);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-visible);
}

.btn-secondary:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--border-visible);
}

/* Hero Visual - Vault Card */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.vault-container {
    position: relative;
}

.vault-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.vault-card {
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.vault-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.vault-dots {
    display: flex;
    gap: 6px;
}

.vault-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.vault-dots span:first-child { background: #ff5f57; }
.vault-dots span:nth-child(2) { background: #ffbd2e; }
.vault-dots span:nth-child(3) { background: #28ca42; }

.vault-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.vault-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-display {
    display: flex;
    gap: 12px;
    margin-bottom: var(--space-sm);
}

.pin-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    transition: all 0.3s;
}

.pin-dot.filled {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.pin-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.pin-keypad {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 200px;
}

.pin-keypad span {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.15s;
}

.pin-keypad span:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

.pin-keypad span:empty {
    background: transparent;
    border: none;
    cursor: default;
}

.key-back {
    color: var(--text-muted);
}

/* Features Section */
.features {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-sm);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header h2 em {
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-visible);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-large {
    grid-column: span 2;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0891b2 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.feature-icon svg {
    stroke: white;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

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

/* Security Section */
.security {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.security-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.security-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.security-item {
    display: flex;
    gap: var(--space-md);
}

.security-marker {
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.security-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Code Block */
.code-block {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.code-dot:first-child { background: #ff5f57; }
.code-dot:nth-child(2) { background: #ffbd2e; }
.code-dot:nth-child(3) { background: #28ca42; }

.code-filename {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.code-block pre {
    padding: var(--space-md);
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.7;
}

.code-block code {
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.code-keyword { color: #c678dd; }
.code-fn { color: #61afef; }
.code-type { color: #e5c07b; }
.code-number { color: #d19a66; }

/* Download Section */
.download {
    padding: var(--space-2xl) var(--space-lg);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.download-card {
    position: relative;
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.download-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.download-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.download-card > p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
}

.btn-download {
    background: white;
    color: var(--bg-primary);
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.download-version {
    display: block;
    margin-top: var(--space-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.footer-brand span {
    font-family: var(--font-display);
    font-size: 1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-large {
        grid-column: span 2;
    }

    .security {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .hero {
        padding-top: calc(70px + var(--space-lg));
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .feature-large {
        grid-column: span 1;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .legal-container {
        padding: var(--space-md);
    }

    .legal-header h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   Legal Pages (Terms of Service, Privacy Policy)
   ============================================ */

.legal-page {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.legal-header {
    margin-bottom: var(--space-xl);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: var(--space-sm);
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

.legal-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-content section {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.legal-content section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.legal-content p {
    margin-bottom: var(--space-sm);
}

.legal-content ul {
    margin: var(--space-sm) 0;
    padding-left: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
    position: relative;
}

.legal-content li::marker {
    color: var(--accent-primary);
}

.legal-content a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-highlight {
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.privacy-highlight h2 {
    margin-bottom: var(--space-sm);
}

.privacy-highlight p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-sm);
}

.contact-info p {
    margin-bottom: var(--space-xs);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: var(--space-md);
}

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

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

/* ============================================
   FAQ Page
   ============================================ */

.faq-container {
    max-width: 900px;
}

.faq-content {
    color: var(--text-secondary);
}

.faq-section {
    margin-bottom: var(--space-xl);
}

.faq-category {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent-primary);
}

.faq-item {
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--border-visible);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.faq-item p {
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-item ul {
    margin: var(--space-sm) 0 0;
    padding-left: var(--space-md);
}

.faq-item li {
    margin-bottom: var(--space-xs);
}

.faq-item li::marker {
    color: var(--accent-primary);
}

.faq-item a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.faq-item a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.faq-item strong {
    color: var(--text-primary);
}

.faq-warning {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.faq-warning h3 {
    color: #f87171;
}

/* Legal page h3 styling */
.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: var(--space-md) 0 var(--space-sm);
}

/* ============================================
   Light Theme Adjustments
   ============================================ */

@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        /* Code syntax colors for light theme */
        --code-keyword: #00b894;
        --code-fn: #0891b2;
        --code-type: #d97706;
        --code-number: #dc2626;
    }

    :root:not([data-theme="dark"]) .code-keyword { color: #00b894; }
    :root:not([data-theme="dark"]) .code-fn { color: #0891b2; }
    :root:not([data-theme="dark"]) .code-type { color: #d97706; }
    :root:not([data-theme="dark"]) .code-number { color: #dc2626; }

    :root:not([data-theme="dark"]) .code-block {
        box-shadow: 0 20px 50px rgba(0, 212, 170, 0.1);
    }

    :root:not([data-theme="dark"]) .download-logo {
        box-shadow: 0 8px 30px rgba(0, 212, 170, 0.15);
    }

    :root:not([data-theme="dark"]) .vault-card {
        box-shadow:
            0 4px 6px rgba(0, 212, 170, 0.05),
            0 20px 40px rgba(0, 212, 170, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    :root:not([data-theme="dark"]) .nav {
        background: rgba(248, 249, 250, 0.9);
    }

    :root:not([data-theme="dark"]) .feature-card:hover {
        box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
    }

    :root:not([data-theme="dark"]) .faq-warning {
        border-color: rgba(239, 68, 68, 0.4);
        background: rgba(239, 68, 68, 0.08);
    }
}

[data-theme="light"] .code-keyword { color: #00b894; }
[data-theme="light"] .code-fn { color: #0891b2; }
[data-theme="light"] .code-type { color: #d97706; }
[data-theme="light"] .code-number { color: #dc2626; }

[data-theme="light"] .code-block {
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.1);
}

[data-theme="light"] .download-logo {
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.15);
}

[data-theme="light"] .vault-card {
    box-shadow:
        0 4px 6px rgba(0, 212, 170, 0.05),
        0 20px 40px rgba(0, 212, 170, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .nav {
    background: rgba(248, 249, 250, 0.9);
}

[data-theme="light"] .feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

[data-theme="light"] .faq-warning {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.08);
}

/* ============================================
   Product Showcase (Hero Visual)
   ============================================ */

.product-showcase {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

/* USB Stick Illustration */
.usb-stick {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usb-body {
    width: 80px;
    height: 180px;
    background: linear-gradient(145deg, #2a2a3a 0%, #1a1a28 100%);
    border-radius: 12px 12px 8px 8px;
    border: 1px solid var(--border-visible);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) var(--space-sm);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.usb-logo {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
}

.usb-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.usb-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: auto;
}

.usb-connector {
    width: 40px;
    height: 20px;
    background: linear-gradient(180deg, #888 0%, #666 100%);
    border-radius: 0 0 4px 4px;
    position: relative;
}

.usb-connector::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 8px;
    background: #444;
    border-radius: 2px;
}

/* App Preview Window */
.app-preview {
    position: relative;
}

.app-window {
    width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-titlebar {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.app-dot:first-child { background: #ff5f57; }
.app-dot:nth-child(2) { background: #ffbd2e; }
.app-dot:nth-child(3) { background: #28ca42; }

.app-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-pin-display {
    display: flex;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.app-pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
}

.app-pin-dot.filled {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-glow);
}

.app-pin-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   Pricing Section (Old - Removed)
   ============================================ */

/* Old pricing styles removed - see new styles at bottom of file */

.pricing {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-featured {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.08) 0%, var(--bg-card) 100%);
}

.pricing-featured:hover {
    border-color: var(--accent-secondary);
}

/* Original price strikethrough */
.price-original {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-weight: 300;
}

/* Guarantee badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.guarantee-badge svg {
    stroke: var(--success);
    flex-shrink: 0;
}

/* Windows waitlist */
.windows-waitlist {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.windows-waitlist p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-sm);
}

.waitlist-form {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 0.65rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.waitlist-form button {
    padding: 0.65rem 1.25rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.waitlist-form button:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
}

.waitlist-incentive {
    display: block;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ============================================
   Trust Section
   ============================================ */

.trust {
    padding: var(--space-xl) var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.trust-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.trust-link {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.trust-link:hover {
    color: var(--accent-primary);
}

/* ============================================
   Features Grid 4-column variant
   ============================================ */

.features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-showcase {
        flex-direction: column;
    }
}

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

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

    .product-showcase {
        transform: scale(0.85);
    }
}

/* ============================================
   Features Grid 2-column and 3-column variants
   ============================================ */

.features-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: var(--space-lg);
}

.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card-large {
    padding: var(--space-lg);
}

.feature-card-large h3 {
    font-size: 1.5rem;
}

.feature-card-large p {
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .features-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* Light theme adjustments for new sections */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .usb-body {
        background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
        box-shadow:
            0 10px 40px rgba(0, 212, 170, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    :root:not([data-theme="dark"]) .pricing-card:hover {
        box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
    }
}

[data-theme="light"] .usb-body {
    background: linear-gradient(145deg, #ffffff 0%, #f0f4f8 100%);
    box-shadow:
        0 10px 40px rgba(0, 212, 170, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

/* ============================================
   Use Cases Section
   ============================================ */

.use-cases {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.use-case-card {
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    text-align: center;
}

.use-case-card:hover {
    border-color: var(--border-visible);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0891b2 100%);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
}

.use-case-icon svg {
    stroke: white;
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.use-case-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-case-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

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

    .use-case-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
}

/* Light theme adjustments for use cases */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .use-case-card:hover {
        box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
    }
}

[data-theme="light"] .use-case-card:hover {
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

/* ============================================
   Comparison Section
   ============================================ */

.comparison {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: var(--space-md);
    align-items: start;
}

.comparison-card {
    position: relative;
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.comparison-competitor {
    opacity: 0.8;
}

.comparison-hero {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, rgba(0, 212, 170, 0.12) 0%, var(--bg-card) 100%);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.2);
}

.comparison-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    background: var(--accent-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    white-space: nowrap;
}

.comparison-header {
    margin-bottom: var(--space-sm);
}

.comparison-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.comparison-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.comparison-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.comparison-hero .comparison-price {
    color: var(--accent-secondary);
}

.comparison-pros,
.comparison-cons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-pros li,
.comparison-cons li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.comparison-pros li::before,
.comparison-cons li::before {
    position: absolute;
    left: 0;
    top: 0.15rem;
    font-size: 1rem;
}

.comparison-pros li::before {
    content: '✓';
    color: var(--success);
}

.comparison-cons li::before {
    content: '✗';
    color: var(--text-muted);
}

.comparison-hero .comparison-pros li {
    color: var(--text-primary);
}

@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .comparison-hero {
        transform: none;
        order: -1;
    }
}

/* Light theme adjustments for comparison */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .comparison-hero {
        box-shadow: 0 20px 50px rgba(0, 212, 170, 0.15);
    }
}

[data-theme="light"] .comparison-hero {
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.15);
}

/* ============================================
   Screenshots Section
   ============================================ */

.screenshots {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.screenshots-carousel {
    position: relative;
    width: 100%;
}

.screenshots-track {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 81.5%; /* ~1736/1416 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screenshot-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.screenshot-item.active {
    opacity: 1;
}

.screenshot-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.screenshots-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.screenshot-dot:hover {
    background: var(--text-secondary);
}

.screenshot-dot.active {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Video Demo */
.video-demo {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Light theme adjustments for video */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .video-container {
        box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
    }
}

[data-theme="light"] .video-container {
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

/* Light theme adjustments for screenshots */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) .screenshots-track {
        box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
    }
}

[data-theme="light"] .screenshots-track {
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

/* ============================================
   New Website Design - App Download Focus
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 170, 0.15);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

.hero-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: var(--space-md);
}

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

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

/* App Window Mockup */
.app-window {
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 500px;
}

.app-titlebar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.app-titlebar-buttons {
    display: flex;
    gap: 8px;
}

.app-titlebar-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #febc2e; }
.btn-maximize { background: #28c840; }

.app-titlebar-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-right: 52px;
}

.app-content {
    display: flex;
    min-height: 280px;
}

.app-sidebar {
    width: 100px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-subtle);
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item:hover {
    background: var(--bg-elevated);
}

.sidebar-item.active {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-primary);
}

.sidebar-item svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.app-main {
    flex: 1;
    padding: var(--space-md);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    align-content: start;
}

.doc-card {
    aspect-ratio: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
}

/* How It Works / Steps */
.how-it-works {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.step {
    text-align: center;
    padding: var(--space-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #0891b2 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    margin: 0 auto var(--space-md);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

/* Pricing Grid - 3 columns */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-lg);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #0a0a0f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-md);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-term {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: var(--space-lg);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li svg {
    stroke: var(--accent-primary);
    flex-shrink: 0;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.btn-pricing {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page */
.pricing-page {
    padding: 120px var(--space-lg) var(--space-2xl);
    min-height: 100vh;
}

.pricing-page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.pricing-page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin: var(--space-md) 0;
}

.pricing-page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.pricing-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.pricing-faq {
    text-align: center;
    margin-top: var(--space-2xl);
    color: var(--text-secondary);
}

.pricing-faq h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.pricing-faq a {
    color: var(--accent-primary);
}

@media (max-width: 640px) {
    .pricing-grid-2col {
        grid-template-columns: 1fr;
    }

    .pricing-page-header h1 {
        font-size: 2rem;
    }
}

/* Download Section */
.download {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-secondary);
}

.download-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.download-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: var(--space-sm) 0;
}

.download-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.download-info {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-sep {
    margin: 0 var(--space-xs);
    opacity: 0.5;
}

.download-version {
    color: var(--accent-primary);
}

.download-windows {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.download-windows p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

/* Security Section */
.security {
    padding: var(--space-2xl) var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

.security-content {
    text-align: center;
}

.security-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: var(--space-sm) 0 var(--space-md);
}

.security-content h2 em {
    font-style: italic;
    color: var(--accent-primary);
}

.security-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.security-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.security-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--accent-primary);
}

.security-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.security-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
}

.security-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .security-features {
        grid-template-columns: 1fr;
    }
}

/* Section Description */
.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: var(--space-sm);
}

/* Responsive App Window */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: var(--space-xl);
    }

    .app-window {
        max-width: 100%;
    }

    .app-sidebar {
        width: 80px;
    }

    .sidebar-item {
        flex-direction: column;
        font-size: 0.7rem;
        gap: 4px;
    }
}

/* ============================================
   Download Page Styles
   ============================================ */

.download-page {
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-2xl);
    max-width: 900px;
    margin: 0 auto;
}

.download-page-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.download-page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin: var(--space-md) 0;
}

.download-page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Platform Sections */
.download-platform {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.platform-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.platform-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.platform-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.platform-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-badge.available {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent-primary);
}

.platform-badge.coming-soon {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

/* Download Options */
.download-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.download-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.download-option:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 212, 170, 0.05);
    transform: translateX(4px);
}

.download-option-info {
    flex: 1;
}

.download-option-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.download-option-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.download-option-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.file-size {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.file-type {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-arrow {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.platform-requirements {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.platform-requirements p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.version-info {
    margin-top: 0.5rem;
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
}

/* Coming Soon / Waitlist */
.platform-coming-soon {
    opacity: 0.85;
}

.waitlist-container {
    text-align: center;
    padding: var(--space-md) 0;
}

.waitlist-container p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.waitlist-form-large {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
    margin: 0 auto;
}

.waitlist-form-large input[type="email"] {
    flex: 1;
    padding: 0.875rem 1.25rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-visible);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
}

.waitlist-form-large input[type="email"]::placeholder {
    color: var(--text-muted);
}

.waitlist-form-large input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.waitlist-form-large button {
    padding: 0.875rem 1.5rem;
    white-space: nowrap;
}

/* Installation Instructions */
.install-instructions {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.install-instructions h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.install-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-md);
}

.install-step {
    text-align: center;
    padding: var(--space-md);
}

.install-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto var(--space-sm);
}

.install-step h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.install-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Help Section */
.download-help {
    text-align: center;
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.download-help h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
}

.download-help p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.download-help .help-link {
    margin-top: var(--space-md);
}

.download-help a {
    color: var(--accent-primary);
    text-decoration: none;
}

.download-help a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .download-page {
        padding: calc(80px + var(--space-lg)) var(--space-sm) var(--space-xl);
    }

    .download-platform {
        padding: var(--space-md);
    }

    .platform-header {
        flex-direction: column;
        text-align: center;
    }

    .download-option {
        flex-wrap: wrap;
        padding: var(--space-md);
    }

    .download-option-info {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: var(--space-sm);
    }

    .download-option-meta {
        flex: 1;
        align-items: center;
    }

    .download-arrow {
        flex: 0;
    }

    .waitlist-form-large {
        flex-direction: column;
    }

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