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

:root {
    /* Green and Black Color Scheme */
    --primary-green: #00ff00;
    --dark-green: #003300;
    --darker-green: #001100;
    --light-green: #33ff33;
    --bg-black: #000000;
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(0, 255, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 255, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Courier New', Monaco, 'SF Mono', Consolas, monospace;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo h2 {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--font-mono);
}

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

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

.nav-link:hover {
    color: var(--primary-green);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--bg-black);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--light-green);
    border-color: var(--light-green);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--bg-black);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary-green);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Terminal Mockup */
.terminal-mockup {
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    font-family: var(--font-mono);
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.terminal-header {
    background: var(--bg-dark);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

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

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.terminal-body {
    padding: 1.5rem;
    min-height: 200px;
}

.terminal-line {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.prompt {
    color: var(--primary-green);
}

.command {
    color: var(--light-green);
    margin-left: 0.5rem;
}

.success {
    color: var(--light-green);
}

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

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

.cursor {
    color: var(--primary-green);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--dark-green);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(1.5);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* APIs Section */
.apis {
    padding: 6rem 0;
    background: var(--bg-black);
}

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

.api-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.api-card:hover {
    border-color: var(--dark-green);
    box-shadow: var(--shadow);
}

.api-card.coming-soon {
    opacity: 0.7;
    position: relative;
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.api-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.api-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.api-status.available {
    background: var(--dark-green);
    color: var(--primary-green);
}

.api-status.soon {
    background: var(--border-color);
    color: var(--text-muted);
}

.api-features ul {
    list-style: none;
    space-y: 0.5rem;
}

.api-features li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.api-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* Downloads Section */
.downloads {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card.primary {
    border-color: var(--dark-green);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--darker-green) 100%);
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.download-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-black);
    border-radius: 8px;
}

.download-details span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.download-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

/* Footer */
.footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .terminal-mockup {
        max-width: 100%;
    }
    
    .features-grid,
    .apis-grid,
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--bg-black);
}

/* Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.api-card,
.download-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* ===============================================
   SIGNUP PAGE STYLES
   =============================================== */

/* Signup Hero Layout */
.signup-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: calc(100vh - 80px);
    padding-top: 2rem;
}

.signup-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.signup-header {
    text-align: left;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-darker);
    border: 2px solid var(--dark-green);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-hover);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.trial-badge {
    display: inline-block;
    background: var(--dark-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.period {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.price-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* Features Included */
.features-included {
    flex-grow: 1;
}

.features-included h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-details strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.feature-details p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.4;
}

/* Signup Actions */
.signup-actions {
    margin-top: auto;
    padding-top: 2rem;
    text-align: center;
}

.signup-button {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
}

.security-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-icon {
    font-size: 1rem;
}

/* Signup Status */
.signup-status {
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
}

.status-content p {
    margin: 0;
    color: var(--text-secondary);
}

/* Signup Visual */
.signup-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup-visual .terminal-mockup {
    max-width: 100%;
    width: 500px;
}

/* Responsive Design for Signup */
@media (max-width: 968px) {
    .signup-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .signup-header {
        text-align: center;
    }
    
    .signup-visual {
        order: -1;
    }
    
    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .signup-hero {
        padding: 6rem 0 3rem;
    }
    
    .signup-hero .container {
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        gap: 0.75rem;
    }
    
    .feature-icon {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .signup-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .period {
        font-size: 1rem;
    }
}

/* ===============================================
   EXTENSION MOCKUP STYLES
   =============================================== */

.extension-mockup {
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.extension-header {
    background: var(--bg-dark);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.extension-header h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.settings-icon {
    font-size: 1.25rem;
    cursor: pointer;
}

.extension-tabs {
    display: flex;
    background: var(--bg-black);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.ext-tab {
    flex: 1;
    padding: 0.75rem 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ext-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.extension-body {
    padding: 1.5rem;
}

.search-form label {
    display: block;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.search-form input {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-black);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-col {
    display: flex;
    flex-direction: column;
}

.search-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-green);
    color: var(--bg-black);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--light-green);
    box-shadow: var(--shadow);
}

.results-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-black);
    border-radius: 6px;
    border: 1px solid var(--dark-green);
}

.result-count {
    color: var(--primary-green);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

/* ===============================================
   HOW IT WORKS SECTION
   =============================================== */

.how-it-works {
    padding: 6rem 0;
    background: var(--bg-black);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--dark-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-green);
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.step-card a {
    color: var(--primary-green);
    text-decoration: none;
}

.step-card a:hover {
    text-decoration: underline;
}

.screenshot-placeholder {
    background: var(--bg-dark);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.screenshot-placeholder p {
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

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

/* ===============================================
   PRICING SECTION (INDEX PAGE)
   =============================================== */

.pricing {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.pricing-options {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card-main {
    background: var(--bg-darker);
    border: 2px solid var(--dark-green);
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.pricing-badge {
    display: inline-block;
    background: var(--dark-green);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-amount .currency {
    font-size: 2rem;
    color: var(--text-secondary);
}

.pricing-amount .price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0 0.5rem;
}

.pricing-amount .period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-left: 0;
    font-size: 1rem;
}

.pricing-cta {
    width: 100%;
    margin-bottom: 1rem;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-faq {
    max-width: 800px;
    margin: 4rem auto 0 auto;
}

.pricing-faq h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-item {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Hide mobile-only links on desktop */
.nav-link.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    /* Disable animations on mobile for better scroll performance */
    .feature-card,
    .api-card,
    .download-card {
        animation: none;
    }

    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--bg-darker);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        border-left: 1px solid var(--border-color);
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .nav-link {
        font-size: 1.125rem;
        padding: 0.5rem 0;
    }

    /* Hide Sign Up button on mobile - we'll use a nav link instead */
    .nav-cta {
        display: none;
    }

    /* Show mobile-only navigation links */
    .nav-link.mobile-only {
        display: block;
    }

    /* Simplify hero section on mobile - remove performance-heavy effects */
    .hero {
        background: var(--bg-black);
        position: static;
        overflow: visible;
    }

    .hero::before {
        display: none;
    }

    .hero .container {
        display: block;
        position: static;
        z-index: auto;
        padding: 0 1rem;
    }

    /* Simplify signup-hero section on mobile - remove performance-heavy effects */
    .signup-hero {
        background: var(--bg-black);
        position: static;
        overflow: visible;
    }

    .signup-hero::before {
        display: none;
    }

    .signup-hero .container {
        display: block;
        position: static;
        z-index: auto;
    }

    .hero-image {
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }

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

    /* Stack pricing cards vertically on mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .pricing-card-main {
        padding: 2rem;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }

    .extension-mockup {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .extension-mockup {
        font-size: 0.875rem;
        margin: 0 auto;
    }

    .ext-tab {
        font-size: 0.65rem;
        padding: 0.5rem 0.25rem;
    }

    .extension-body {
        padding: 1rem;
    }

    .extension-header h3 {
        font-size: 1rem;
    }

    .search-form input {
        font-size: 0.75rem;
        padding: 0.625rem;
    }

    .search-form label {
        font-size: 0.75rem;
    }

    .search-btn {
        font-size: 0.75rem;
        padding: 0.75rem;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .pricing-amount .price {
        font-size: 2.5rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .screenshot-placeholder {
        padding: 2rem 1rem;
    }
} 