/* ===== CSS Variables & Reset ===== */
/* Stream Savant Theme - Colors from App */
:root {
    /* Backgrounds - from app screenshot */
    --color-bg: #0a0a0c;
    --color-bg-secondary: #121214;
    --color-bg-tertiary: #1a1a1e;
    --color-bg-card: #141417;
    --color-border: #232328;
    --color-border-hover: #2f2f36;

    /* Text */
    --color-text: #f8fafc;
    --color-text-secondary: #a1a1aa;
    --color-text-tertiary: #71717a;

    /* Purple - from logo/PRO badge */
    --color-purple: #a855f7;
    --color-purple-hover: #c084fc;

    /* Green - from live status indicators */
    --color-green: #22c55e;
    --color-green-hover: #4ade80;

    /* Orange - from "Connect OBS" link */
    --color-orange: #f59e0b;
    --color-orange-hover: #fbbf24;

    /* Primary accent (using purple like the app branding) */
    --color-accent: #a855f7;
    --color-accent-hover: #c084fc;
    --color-accent-glow: rgba(168, 85, 247, 0.2);

    --color-primary: #f8fafc;
    --color-primary-hover: #ffffff;
    --color-success: #22c55e;
    --color-warning: #f59e0b;

    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    --shadow-subtle: 0 1px 3px 0 rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.1);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.02) 0%, transparent 35%),
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.015) 1px, transparent 0);
    background-size: 100% 100%, 32px 32px;
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--color-text);
    color: var(--color-bg);
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* Modern Glowing Download Button */
.btn-glow {
    position: relative;
    background: linear-gradient(135deg, var(--color-accent) 0%, hsl(280, 70%, 50%) 100%);
    color: #ffffff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(168, 85, 247, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, hsl(280, 70%, 55%) 100%);
}

.btn-glow:active {
    transform: translateY(-1px);
    box-shadow:
        0 0 15px rgba(168, 85, 247, 0.2),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--color-bg-tertiary);
    border-color: var(--color-border-hover);
}

/* Animated Glassy Button */
.btn-animated {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-text);
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 20px;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    aspect-ratio: 1;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 80deg,
            rgba(168, 85, 247, 0.9) 90deg,
            rgba(34, 197, 94, 0.9) 100deg,
            rgba(245, 158, 11, 0.7) 110deg,
            transparent 120deg,
            transparent 360deg);
    animation: rotate-border 2.5s linear infinite;
    z-index: -2;
}

.btn-animated::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: calc(var(--radius-md) - 1px);
    background: linear-gradient(135deg,
            rgba(20, 20, 23, 0.98) 0%,
            rgba(15, 15, 18, 0.98) 100%);
    z-index: -1;
}

.btn-animated:hover {
    transform: translateY(-1px);
}

.btn-animated:hover::before {
    animation-duration: 1.2s;
}

@keyframes rotate-border {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.btn-white {
    background: white;
    color: #0a0a0b;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: rgba(15, 15, 18, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 15%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0.03) 85%,
            transparent 100%);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-shimmer-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    display: inline-block;
    position: relative;
    background: linear-gradient(110deg,
            #a1a1aa 0%,
            #a1a1aa 40%,
            #ffffff 50%,
            #a1a1aa 60%,
            #a1a1aa 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logo-shimmer 4s linear infinite;
}

@keyframes logo-shimmer {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
}

.logo-accent {
    color: var(--color-accent);
    font-weight: 800;
}

.logo-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(0.65);
    animation: icon-shimmer 4s linear infinite;
}

@keyframes icon-shimmer {

    0%,
    10% {
        filter: brightness(0) invert(0.65);
    }

    15%,
    25% {
        filter: brightness(0) invert(1);
    }

    30%,
    100% {
        filter: brightness(0) invert(0.65);
    }
}

/* Ultimate Typography */
.text-ultimate {
    font-style: italic;
    color: var(--color-accent);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-text);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding: 140px 0 80px;
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #ec4899;
    bottom: -100px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: center;
    overflow: visible;
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary-hover);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--color-text);
}

.highlight-text {
    color: var(--color-text);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

/* ===== App Preview ===== */
.hero-image {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-right: -200px;
    margin-left: 40px;
}

.app-preview {
    perspective: 1500px;
}

.app-screenshot-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(168, 85, 247, 0.1),
        0 0 0 1px rgba(168, 85, 247, 0.08);
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    width: 1000px;
    max-width: none;
}

.app-screenshot-wrapper:hover {
    transform: rotateY(-4deg) rotateX(2deg) scale(1.02);
    box-shadow:
        0 50px 100px -25px rgba(0, 0, 0, 0.8),
        0 0 80px rgba(168, 85, 247, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.12);
}

.app-screenshot {
    display: block;
    width: 100%;
    height: auto;
}

.window-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27ca3f;
}

.window-title {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.window-content {
    display: flex;
    height: 400px;
}

.mock-sidebar {
    width: 60px;
    padding: 16px 12px;
    border-right: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-nav-item {
    height: 36px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.mock-nav-item.active {
    background: var(--color-text);
    opacity: 1;
}

.mock-main {
    flex: 1;
    padding: 20px;
}

.mock-header {
    height: 24px;
    width: 60%;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-card {
    height: 100px;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.mock-card.pulse {
    background: var(--color-bg-tertiary);
    border-color: var(--color-border-hover);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ===== Logos Section ===== */
.logos-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
}

.logos-title {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.integration-icon {
    font-size: 24px;
}

/* ===== Section Styling ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--color-text-secondary);
}

/* ===== Features Section ===== */
.features-section {
    padding: 120px 0;
}

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

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

.feature-card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-tertiary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--icon-color, var(--color-accent)) 10%, var(--color-bg-tertiary));
    border: 1px solid color-mix(in srgb, var(--icon-color, var(--color-accent)) 20%, var(--color-border));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--icon-color, var(--color-accent));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: color-mix(in srgb, var(--icon-color, var(--color-accent)) 15%, var(--color-bg-tertiary));
    box-shadow: 0 0 20px color-mix(in srgb, var(--icon-color, var(--color-accent)) 20%, transparent);
    transform: translateY(-2px);
}

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

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
}

.cta-card h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card>.cta-content>p:first-of-type {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: rgba(168, 85, 247, 0.3);
    background: var(--color-bg-tertiary);
    box-shadow:
        0 0 40px rgba(168, 85, 247, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow:
        0 0 60px rgba(168, 85, 247, 0.12),
        0 25px 50px rgba(0, 0, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
}

.price-period {
    font-size: 16px;
    color: var(--color-text-tertiary);
}

.pricing-header>p {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 120px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 32px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.05);
    transform: translateY(-2px);
}

.faq-item:nth-child(even):hover {
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    padding: 80px 0 40px;
    background: var(--color-bg-secondary);
    border-top: 1px solid transparent;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.3) 25%,
            rgba(245, 158, 11, 0.3) 50%,
            rgba(34, 197, 94, 0.3) 75%,
            transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-tertiary);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-text);
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--color-text-tertiary);
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 14px;
    color: var(--color-text-tertiary);
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.social-links a:hover {
    color: var(--color-text);
    border-color: var(--color-border);
    background: var(--color-bg-tertiary);
}

.social-links a:first-child:hover {
    color: #1DA1F2;
    border-color: rgba(29, 161, 242, 0.3);
}

.social-links a:nth-child(2):hover {
    color: #5865F2;
    border-color: rgba(88, 101, 242, 0.3);
}

.social-links a:last-child:hover {
    color: #FF0000;
    border-color: rgba(255, 0, 0, 0.3);
}

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

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

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

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

    .app-window {
        width: 100%;
        max-width: 450px;
        transform: none;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .cta-card {
        padding: 48px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ===== Founder's Edition Styles ===== */
.founder-banner {
    text-align: center;
    margin-bottom: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
}

.founder-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-banner p {
    color: var(--color-text-secondary);
    font-size: 16px;
}

.pricing-card.founder {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(180deg,
            rgba(255, 215, 0, 0.05) 0%,
            var(--color-bg-tertiary) 30%);
    box-shadow:
        0 0 50px rgba(255, 215, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.founder:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        0 0 70px rgba(255, 215, 0, 0.15),
        0 25px 50px rgba(0, 0, 0, 0.4);
}

.founder-badge-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4) !important;
}

.btn-founder {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-founder:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE44D 0%, #FFB732 100%);
}

.spots-remaining {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-tertiary);
    text-align: center;
}

/* Responsive adjustments for founder card */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.founder {
        order: -1;
        /* Show founder first on mobile */
    }
}