/* Design System Tokens */
:root {
    --bg-color: #090a0f;
    --surface-color: #111420;
    --surface-card: rgba(17, 20, 32, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(16, 185, 129, 0.4);
    
    --primary-color: #10b981;
    --primary-hover: #059669;
    --secondary-color: #06b6d4;
    --secondary-hover: #0891b2;
    --accent-purple: #8b5cf6;
    
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --glass-bg: rgba(17, 24, 39, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.5);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

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

code {
    font-family: monospace;
    background: rgba(16, 185, 129, 0.12);
    color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-pill {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Translucent Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #059669);
    color: #04100c;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #34d399, var(--primary-color));
}

.btn-secondary {
    background: rgba(31, 41, 55, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(55, 65, 81, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-hero {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* Top Announcement Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #06070a;
    border-bottom: 1px solid var(--glass-border);
    z-index: 1001;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 12px;
    color: var(--text-secondary);
}

.announcement {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-new {
    background: rgba(6, 182, 212, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 10px;
}

.announcement-text {
    font-weight: 500;
}

/* Translucent Navbar */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(9, 10, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 6px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 32px;
    height: 32px;
}

.nav-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 20px 100px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.05) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-meta {
    display: flex;
    gap: 25px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dev Notice & Versioning Badges */
.dev-notice-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 15px 0 25px 0;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.dev-notice-icon {
    font-size: 15px;
}

.version-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
}

.version-tag {
    font-size: 10px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.hero-preview {
    position: relative;
}

.preview-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.mockup-frame {
    background: #0d111a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: transform 0.4s ease;
}

.mockup-frame:hover {
    transform: translateY(-4px);
}

.mockup-header {
    background: #090c13;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.control-dot.close { background: #ff5f56; }
.control-dot.minimize { background: #ffbd2e; }
.control-dot.maximize { background: #27c93f; }

.mockup-title {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
}

.mockup-status {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 600;
}

.mockup-image {
    display: block;
    width: 100%;
    height: auto;
}

.mockup-overlay-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(11, 15, 25, 0.9);
    border: 1px solid var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

/* App Window Body Mockup Canvas */
.app-window-body {
    background: #0b0b10;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.hero-app-header {
    background: linear-gradient(135deg, #111827, #1f2937);
    border: 1px solid #374151;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-app-title-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-app-logo {
    width: 32px;
    height: 32px;
}

.hero-app-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.hero-app-sub {
    font-size: 10px;
    color: #9ca3af;
}

.hero-pro-badge {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

/* Hero App Tabs */
.hero-app-tabs {
    display: flex;
    gap: 6px;
}

.hero-tab {
    background: #111827;
    color: #9ca3af;
    border: 1px solid #1f2937;
    padding: 6px 12px;
    border-radius: 6px 6px 0 0;
    font-size: 11px;
    font-weight: 700;
}

.hero-tab.active {
    background: #1f2937;
    color: #10b981;
    border-color: #10b981;
}

/* Hero App Search */
.hero-app-search {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
}

/* Hero App Table Widget */
.hero-app-table {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 8px;
    overflow: hidden;
}

.hero-table-header {
    background: #0d121f;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 0.9fr 0.9fr;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #1f2937;
}

.hero-table-rows {
    display: flex;
    flex-direction: column;
}

.hero-t-row {
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 1.8fr 0.8fr 0.9fr 0.9fr;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 11px;
}

.hero-t-row:hover {
    background: rgba(16, 185, 129, 0.05);
}

.col-n {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.col-k {
    text-align: center;
}

.col-h {
    text-align: center;
}

.col-a {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.hk-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.hk-none {
    color: #4b5563;
    font-size: 10px;
}

.mini-btn {
    border: none;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.mini-btn.play {
    background: #1a2f26;
    color: #10b981;
    border: 1px solid #234d3a;
}

.mini-btn.del {
    background: #2d1e1e;
    color: #ff5555;
    border: 1px solid #4d2626;
}

/* Bottom Bar */
.hero-app-bottom-bar {
    background: #111c2e;
    border: 1px solid #10b981;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #9ca3af;
}

.b-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-color);
}

/* Video Showcase Demo Section */
.playground {
    padding: 90px 0;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.video-showcase-container {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.video-preview-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(6, 182, 212, 0.12) 50%, transparent 80%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.video-mockup-frame {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.15);
}

.video-mockup-header {
    background: rgba(17, 24, 39, 0.95);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-mockup-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
}

.video-mockup-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.video-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding: 16px 20px;
    background: rgba(17, 24, 39, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.v-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.v-feat-icon {
    font-size: 16px;
}

/* Features Grid Section */
.features {
    padding: 100px 0;
}

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

.feature-card {
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.feature-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}

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

/* Audio Routing Section */
.audio-routing {
    padding: 80px 0;
}

.routing-box {
    border-radius: var(--radius-lg);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.routing-title {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.routing-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 15px;
}

.routing-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.r-step {
    display: flex;
    gap: 15px;
}

.r-num {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #04100c;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Space Grotesk', sans-serif;
}

.r-info h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 2px;
}

.r-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

.routing-visual {
    display: flex;
    justify-content: center;
}

/* Accurate App UI Component Mockup */
.app-ui-card {
    border-radius: var(--radius-md);
    padding: 24px;
    width: 100%;
    max-width: 480px;
    background: rgba(13, 17, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.app-ui-tab-bar {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.app-tab {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px;
    border: 1px solid transparent;
}

.app-tab.active {
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary-color);
}

.ui-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.ui-call-output-btn {
    width: 100%;
    background: rgba(31, 41, 55, 0.6);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.ui-call-output-btn:hover {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
}

.ui-call-output-btn.active {
    background: var(--primary-color);
    color: #04100c;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.ui-status-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.status-disabled {
    color: var(--text-muted);
}

.status-enabled {
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1150px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.18);
}

.pricing-card.lifetime {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.18);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #04100c;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lifetime-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #04100c;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 22px;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 42px;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
}

.plan-features li {
    color: var(--text-secondary);
}

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

.plan-btn {
    width: 100%;
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 90px 0;
}

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

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px 20px 24px;
    color: var(--text-secondary);
    font-size: 14px;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Download Section */
.download {
    padding: 80px 0 120px 0;
}

.download-container {
    border-radius: var(--radius-lg);
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-content {
    max-width: 620px;
    margin: 0 auto;
}

.download-title {
    font-size: 34px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.download-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 35px;
}

.download-actions {
    margin-bottom: 20px;
}

.download-meta {
    color: var(--text-muted);
    font-size: 12px;
}

/* Footer Section */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 45px 0;
    background: #050608;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-logo {
    width: 26px;
    height: 26px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

/* Demo Video Overlay Window */
.demo-video-overlay {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: #090c14;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    z-index: 1500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.demo-drag-bar {
    background: var(--primary-color);
    color: #000;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-drag-bar button {
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* Multi-Payment Checkout Modal */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeInModal 0.25s ease-out forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.payment-modal-card {
    max-width: 480px;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(16, 185, 129, 0.15);
    position: relative;
}

.payment-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.modal-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

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

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.payment-options-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.25s ease;
}

.payment-option-card:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.95);
}

.payment-option-card.gumroad:hover {
    border-color: #ff90e8;
    box-shadow: 0 8px 25px rgba(255, 144, 232, 0.2);
}

.payment-option-card.lemonsqueezy:hover {
    border-color: #f59e0b;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.option-icon {
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.option-info {
    flex: 1;
}

.option-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.option-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.option-arrow {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.2s ease;
}

.payment-option-card:hover .option-arrow {
    transform: translateX(4px);
}

.payment-modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}

/* Changelog Section (Typewriter Aesthetic & Contained Box Layout) */
.changelog {
    padding: 90px 0;
    position: relative;
    background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.07) 0%, rgba(15, 23, 42, 0) 70%);
}

.changelog-container {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.changelog-card {
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(16, 185, 129, 0.12);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
}

.changelog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.version-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.changelog-version-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid #10b981;
    font-weight: 700;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.5px;
}

.changelog-status-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    font-family: 'Fira Code', monospace;
}

.changelog-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 600;
    font-family: 'Fira Code', monospace;
}

.changelog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Fira Code', monospace;
    margin-bottom: 10px;
    line-height: 1.3;
}

.changelog-card-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
    padding-bottom: 18px;
    font-family: 'Fira Code', monospace;
    overflow-wrap: break-word;
    word-break: break-word;
}

.changelog-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    box-sizing: border-box;
}

.changelog-feature-group {
    background: rgba(30, 41, 59, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    transition: all 0.25s ease;
    overflow: hidden;
}

.changelog-feature-group:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(16, 185, 129, 0.1);
}

.feature-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.changelog-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.changelog-list li {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Fira Code', monospace;
    overflow-wrap: break-word;
    word-break: break-word;
}

.changelog-list li::before {
    content: ">";
    color: #10b981;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .routing-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 38px;
    }
    .section-title {
        font-size: 30px;
    }
}
