:root {
    /* Base Variables (Light Mode Default) */
    --bg-body: #FAFAFA;
    /* Zinc 50 */
    --bg-surface: #FFFFFF;
    --bg-panel: #F4F4F5;
    /* Zinc 100 */

    --text-primary: #18181B;
    /* Zinc 900 */
    --text-secondary: #52525B;
    /* Zinc 600 */
    --text-muted: #A1A1AA;
    /* Zinc 400 */

    --border-grid: rgba(0, 0, 0, 0.04);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-strong: rgba(0, 0, 0, 0.12);

    /* Brand Colors - Gold/Amber Gradient */
    --brand-primary: #D97706;
    --brand-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --brand-surface: rgba(217, 119, 6, 0.04);

    /* Status */
    --status-success: #059669;
    --status-error: #DC2626;

    /* Typography */
    --font-display: 'Inter Tight', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Navbar */
    --bg-navbar: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] {
    --bg-body: #171717;
    /* Neutral 900 - Softer than black */
    --bg-surface: #262626;
    /* Neutral 800 */
    --bg-panel: #404040;
    /* Neutral 700 */

    --text-primary: #F5F5F5;
    /* Neutral 100 */
    --text-secondary: #A3A3A3;
    /* Neutral 400 */
    --text-muted: #737373;
    /* Neutral 500 */

    --border-grid: rgba(255, 255, 255, 0.05);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);

    --brand-primary: #FCD34D;
    --brand-gradient: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    --brand-surface: rgba(252, 211, 77, 0.1);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.5);

    --bg-navbar: rgba(23, 23, 23, 0.85);
}

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

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

/* Noise Texture (Subtle) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Grid System */
.grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    border-left: 1px solid var(--border-grid);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: var(--bg-body);
}

.grid-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--border-grid);
}

.col-12 {
    grid-column: span 12;
}

.col-9 {
    grid-column: span 9;
}

.col-8 {
    grid-column: span 8;
}

.col-6 {
    grid-column: span 6;
}

.col-4 {
    grid-column: span 4;
}

.col-3 {
    grid-column: span 3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 500;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: 1px solid var(--border-strong);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: 6px;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: var(--text-primary);
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid var(--border-grid);
    padding: 1.25rem 0;
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s var(--ease-out);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    /* Removed underline */
    min-width: 0;
    /* Allow flex shrinking */
    flex: 1;
}

#header-context {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.logo-mark {
    width: 20px;
    height: 20px;
    background: var(--brand-gradient);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

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

/* Cards & Interactions */
.card-hover {
    transition: all 0.4s var(--ease-out);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-float);
    background: var(--bg-surface);
    z-index: 1;
}

/* Auth Layout */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-subtle);
    width: 100%;
    max-width: 420px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--bg-body);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-surface);
    background: var(--bg-surface);
}

/* Visual Aids (Fake UIs) */
.visual-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
}

/* Privacy Diff */
.diff-view {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.6;
    padding: 1.5rem;
}

.diff-line {
    display: flex;
    margin-bottom: 0.25rem;
}

.diff-num {
    color: var(--text-muted);
    width: 2rem;
    user-select: none;
}

.diff-content {
    flex: 1;
}

.diff-del {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
    text-decoration: line-through;
}

.diff-add {
    background: rgba(5, 150, 105, 0.1);
    color: #065f46;
}

[data-theme="dark"] .diff-del {
    color: #f87171;
    background: rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .diff-add {
    color: #34d399;
    background: rgba(5, 150, 105, 0.2);
}

/* Onboarding Flow */
.flow-mockup {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}

.flow-screen {
    width: 100px;
    height: 180px;
    background: var(--bg-surface);
    border: 2px solid var(--border-strong);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.flow-screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 4px;
}

.flow-arrow {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* Alert Card */
.alert-mockup {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    max-width: 300px;
    margin: 2rem auto;
}

.alert-icon {
    width: 32px;
    height: 32px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--brand-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border-grid);
    padding: 5rem 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

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

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-strong);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all 0.2s;
}

.theme-toggle:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Utilities */
.border-r {
    border-right: 1px solid var(--border-grid);
}

.border-b {
    border-bottom: 1px solid var(--border-grid);
}

.p-4 {
    padding: 2rem;
}

.p-8 {
    padding: 5rem 4rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.text-brand {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Accordion (Global/Desktop Defaults) */
.mobile-accordion-header {
    display: none;
    /* Hidden on desktop */
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mobile-accordion-content {
    display: flex;
    /* Visible on desktop */
    flex-direction: column;
    gap: 1.5rem;
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .company-content-grid {
        /* Shrink sidebars slightly to fit */
        grid-template-columns: 220px 1fr 220px !important;
        padding: 2rem !important;
    }
}

/* Mobile (Max 768px) */
@media (max-width: 768px) {
    .grid-container {
        display: block;
        grid-template-columns: 1fr;
    }

    /* Force bento grid to stack */
    .company-content-grid {
        grid-template-columns: 1fr !important;
        display: block !important;
    }

    /* Show Accordion Header */
    .mobile-accordion-header {
        display: flex;
    }

    /* Hide Content by default */
    .mobile-accordion-content {
        display: none;
    }

    /* Show Content when open */
    .mobile-accordion-content.is-open {
        display: flex;
    }

    /* Fix Mobile Padding */
    .company-content-grid {
        padding: 1.5rem !important;
        gap: 1.5rem !important;
    }

    h1 {
        font-size: 2.5rem;
    }

    .col-12,
    .col-9,
    .col-8,
    .col-6,
    .col-4,
    .col-3 {
        width: 100%;
    }

    .border-r {
        border-right: none;
    }

    .p-8 {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-block !important;
    }
}

/* Desktop Utilities */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Onboarding Grid Responsive */
@media (max-width: 900px) {
    .onboarding-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-grid);
    transition: .4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked+.toggle-slider {
    background-color: var(--status-success);
}

input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

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

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

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav .nav-link {
        display: block;
        padding: 0.75rem 0;
        color: var(--text-primary);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-subtle);
        text-decoration: none;
    }

    .mobile-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Stats Bar (Landing Page) */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-item {
    display: flex;
    flex-direction: column;
}

.stats-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stats-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.stats-actions {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .stats-item {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .stats-value {
        font-size: 1.5rem;
    }

    .stats-divider {
        display: none;
    }

    .stats-actions {
        margin-left: 0;
        width: 100%;
        flex-direction: column;
    }

    .stats-actions .btn {
        width: 100%;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-float);
    position: relative;
    border: 1px solid var(--border-subtle);
    animation: modalSlide 0.3s var(--ease-out);
}

@keyframes modalSlide {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--text-primary);
}

/* Policy Pages Layout */
.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    position: relative;
}

.policy-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.policy-nav {
    list-style: none;
    border-left: 1px solid var(--border-grid);
}

.policy-nav li {
    margin-bottom: 0;
}

.policy-nav a {
    display: block;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 2px solid transparent;
    margin-left: -1px;
    transition: all 0.2s;
}

.policy-nav a:hover,
.policy-nav a.active {
    color: var(--brand-primary);
    border-left-color: var(--brand-primary);
    background: linear-gradient(90deg, var(--brand-surface) 0%, transparent 100%);
}

.policy-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.policy-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Policy Tables */
.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.policy-table th,
.policy-table td {
    padding: 1rem;
    border: 1px solid var(--border-subtle);
    text-align: left;
}

.policy-table th {
    background: var(--bg-surface);
    font-weight: 600;
    color: var(--text-primary);
}

.policy-table tr:nth-child(even) {
    background: var(--bg-panel);
}

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

    .policy-sidebar {
        display: none;
        /* Hide sidebar on mobile for now, or make it a dropdown */
    }
}

/* Features Page Styles */
.feature-hero {
    padding: 6rem 2rem 4rem;
    border-bottom: 1px solid var(--border-subtle);
}

.feature-section {
    padding: 6rem 0;
}

.feature-section.alt-bg {
    background: var(--bg-panel);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid.reverse .feature-content {
    direction: ltr;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-content .lead {
    font-size: 1.25rem;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    color: var(--brand-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mockups */
.mockup-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    overflow: hidden;
}

.mockup-header {
    background: var(--bg-panel);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.mockup-dot.red {
    background: #ef4444;
}

.mockup-dot.yellow {
    background: #f59e0b;
}

.mockup-dot.green {
    background: #10b981;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-family: var(--font-mono);
}

.mockup-body {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* Diff Mockup */
.diff-line {
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.25rem;
    border-radius: 4px;
}

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

.diff-line.removed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.diff-line.added {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Flow Mockup */
.flow-step {
    text-align: center;
    flex: 1;
}

.step-box {
    background: var(--bg-panel);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-box.active {
    background: var(--brand-surface);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

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

.flow-arrow {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Settings Mockup */
.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.setting-row:last-child {
    border-bottom: none;
}

.toggle {
    width: 40px;
    height: 20px;
    background: var(--bg-panel);
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border-subtle);
}

.toggle::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--text-muted);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 1px;
    transition: all 0.2s;
}

.toggle.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.toggle.active::after {
    background: white;
    transform: translateX(20px);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.2s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

.use-case-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .feature-grid.reverse {
        direction: ltr;
    }
}

/* Pricing Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns on desktop */
    gap: 2rem;
    align-items: center;
    /* Center vertically so the bigger one stands out */
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.1);
    /* Make it slightly bigger */
    z-index: 1;
    background: var(--bg-surface);
    /* Ensure it covers others if overlapping */
    padding: 3rem 2rem;
    /* Little more padding */
}

.pricing-header {
    margin-bottom: 2rem;
    text-align: center;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.pricing-header .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-header .description {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

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

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    /* We don't use backdrop-filter here because we blurred the container directly for better browser support and control */
}

.coming-soon-content {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        gap: 3rem;
    }

    .pricing-card.featured {
        transform: none;
        padding: 2rem;
    }
}