:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #606060;
    --accent-primary: #ff6b6b;
    --accent-secondary: #ee5a52;
    --accent-tertiary: #ff8787;
    --border-color: #2a2a2a;
    --shadow: rgba(255, 107, 107, 0.1);
    --shadow-strong: rgba(255, 107, 107, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

/* Navigation Header */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(255, 107, 107, 0.2);
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--accent-tertiary);
    transform: translateY(-2px);
}

.nav-logo svg {
    flex-shrink: 0;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown-trigger::before {
    content: '▼';
    margin-left: 0.4rem;
    margin-right: 0.4rem;
    font-size: 1.0em;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::before {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-primary);
    padding-left: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--accent-primary);
}

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

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

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

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-mobile-menu.active {
    max-height: 400px;
}

.nav-mobile-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 107, 107, 0.05);
    transition: all 0.3s ease;
}

.nav-mobile-link:hover {
    color: var(--accent-primary);
    background: rgba(255, 107, 107, 0.05);
    padding-left: 2.5rem;
}

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

    .nav-toggle {
        display: flex;
    }

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    padding-top: calc(4rem + 70px);
}

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

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

.hero-content {
    text-align: left;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--accent-primary);
    animation: float 3s ease-in-out infinite;
}

.logo svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
    text-align: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* Early Access Form */
.early-access-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.early-access-text {
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.early-access-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-primary);
}

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

.form-success,
.form-error {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    text-align: center;
}

.form-success {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.form-error {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-secondary);
    border: 1px solid var(--accent-secondary);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255, 107, 107, 0.2));
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--bg-secondary);
    border-radius: 40px;
    padding: 12px;
    border: 3px solid transparent;
    position: relative;
    background-clip: padding-box;
}

.phone-frame::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 43px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary), var(--accent-primary));
    background-size: 300% 300%;
    animation: borderGlow 4s ease infinite;
    z-index: -1;
}

@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: var(--bg-primary);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
}

.demo-content {
    padding: 1rem 0.75rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.demo-header-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-logo {
    display: flex;
    align-items: center;
}

.demo-range {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.demo-header-right {
    display: flex;
    align-items: center;
}

.demo-bell {
    font-size: 0.875rem;
    opacity: 0.7;
}

.demo-posts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    overflow-y: auto;
    overflow-x: visible;
    padding: 4px 2px 0;
    margin: 0 -2px;
}

.demo-post {
    background: var(--bg-tertiary);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 0.875rem;
}

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

.demo-post-text {
    font-size: 0.8125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.demo-post-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #ff6b6b22 0%, #ff6b6b11 50%, var(--bg-secondary) 100%);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-img-icon {
    width: 48px;
    height: 48px;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.demo-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-meta {
    font-size: 9px;
    color: var(--text-tertiary);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.demo-thoughts {
    font-size: 9px;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.demo-nav {
    display: none;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.use-cases-link {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.use-cases-link p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.use-cases-link .btn {
    font-size: 1rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: 1px solid var(--accent-primary);
}

.use-cases-link .btn:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
}

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

.feature:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

/* How It Works */
.how-it-works {
    padding: 8rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
}

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

.step:hover {
    border-color: var(--accent-primary);
    transform: scale(1.05);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--accent-primary);
    opacity: 0.3;
    user-select: none;
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* Privacy Section */
.privacy {
    padding: 8rem 0;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.check {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.final-cta .cta-buttons {
    justify-content: center;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
    color: var(--accent-primary);
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright p {
    color: var(--text-tertiary);
    font-size: 0.75rem;
}

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

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

    .logo {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    h1 {
        font-size: 3rem;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .phone-mockup {
        margin-top: 3rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1rem;
    }

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

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

    .form-group {
        flex-direction: column;
        width: 100%;
    }

    .form-input {
        width: 100%;
        min-width: unset;
    }

    .phone-frame {
        width: 260px;
        height: 520px;
    }

    .demo-post-img {
        height: 140px;
    }

    .demo-img-icon {
        width: 36px;
        height: 36px;
    }

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

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

    .stat-number {
        font-size: 3rem;
    }

    /* Use Cases Mobile Styles */
    .use-case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .use-case-icon {
        font-size: 2.5rem;
    }

    .use-case-header h2 {
        font-size: 1.5rem;
    }

    .use-case-examples {
        grid-template-columns: 1fr;
    }

    .use-case-cta {
        padding: 3rem 1.5rem;
    }

    .use-case-cta h2 {
        font-size: 1.75rem;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-subtitle {
        font-size: 1rem;
    }

    .hero,
    .features,
    .how-it-works,
    .stats,
    .privacy,
    .final-cta {
        padding: 4rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Use Cases Page Styles */
.use-case-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.use-case-section:first-child {
    border-top: none;
    margin-top: 0;
}

.use-case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.use-case-icon {
    font-size: 3rem;
    line-height: 1;
}

.use-case-header h2 {
    font-size: 2rem;
    margin: 0;
}

.use-case-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
}

.use-case-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.example-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.example-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--accent-primary);
}

.example-card p {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.use-case-cta {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.use-case-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.use-case-cta > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.use-case-cta .early-access-section {
    max-width: 500px;
    margin: 0 auto;
}

/* Dark mode support (already dark, but ensures consistency) */
@media (prefers-color-scheme: light) {
    :root {
        --bg-primary: #ffffff;
        --bg-secondary: #f5f5f5;
        --bg-tertiary: #e5e5e5;
        --text-primary: #0a0a0a;
        --text-secondary: #404040;
        --text-tertiary: #808080;
        --border-color: #d5d5d5;
    }

    .phone-frame::before {
        background: #111111;
    }

    /* Keep phone mockup always in dark mode to match app */
    .phone-frame {
        background: #111111;
        border-color: #2a2a2a;
    }

    .phone-screen {
        background: #0a0a0a;
    }

    .demo-range {
        background: #1a1a1a;
        border-color: #2a2a2a;
        color: #a0a0a0;
    }

    .demo-post {
        background: #1a1a1a;
        border-color: #333333;
    }

    .demo-post-text {
        color: #ffffff;
    }

    .demo-post-img {
        background: linear-gradient(135deg, #ff6b6b22 0%, #ff6b6b11 50%, #111111 100%);
    }

    .demo-meta {
        color: #606060;
    }

    .demo-thoughts {
        color: #c0c0c0;
    }

    .demo-nav {
        border-color: #2a2a2a;
    }

    .demo-nav-item {
        color: #909090;
    }

    .demo-nav-item.active {
        color: #ff6b6b;
    }

    .demo-nav-item.create {
        background: #ff6b6b;
        color: #0a0a0a;
    }
}
