:root {
    --bg-color: #f5f5f7;
    --text-color: #000000;
    --text-muted: #4a4a4a;
    --primary-color: #007AFF;
    --secondary-color: #007AFF;
    --accent-color: #007AFF;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-highlight: rgba(0, 0, 0, 0.15);
    --gradient-1: #007AFF;
    --gradient-text: #007AFF;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Fraunces', serif;
    --font-hero: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f5f5f7;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #000;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-family: var(--font-hero);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #000;
}

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

h3 {
    font-family: var(--font-ui);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.serif-highlight {
    font-style: normal;
    font-weight: 600;
    color: #000;
    position: relative;
    display: inline-block;
}

.serif-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-1);
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-10deg);
}

.gradient-text {
    color: #007AFF;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-ui);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #000;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 10px;
}

.btn-lg {
    padding: 1rem 2.4rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.75rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: #000;
    backdrop-filter: blur(12px);
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-ui);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

/* Brand text on white backgrounds: ooml in black, .io in blue */
.brand-text {
    color: #000;
    font-weight: 600;
}

.brand-text .highlight {
    color: #007AFF;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: var(--font-ui);
}

.nav-links a:hover {
    color: #fff;
}

.navbar .btn-primary {
    background: #fff;
    color: #000;
}

.navbar .btn-primary:hover {
    background: #f5f5f7;
    color: #000;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #f5f5f7;
    border-radius: 0;
    margin-top: 60px;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* App Icon */
.app-icon-container {
    margin-bottom: 1rem;
    background: transparent;
    padding: 0;
    display: inline-block;
}

.app-icon-container img {
    background: transparent;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c2c35, #1a1a20);
    border-radius: 24px;
    padding: 2px;
    /* Border width */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.app-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    pointer-events: none;
}

.icon-inner {
    width: 100%;
    height: 100%;
    background: #1a1a20;
    /* Slightly lighter inner bg */
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-inner::after {
    content: '';
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--primary-color);
}

.hero-content {
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-content h1 {
    color: #000;
}

.hero-content p {
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #1a1a1a;
}

.os-version {
    font-size: 0.75rem;
    opacity: 0.6;
    margin-left: 0.6rem;
    font-weight: 400;
    color: #000;
}

/* Hero Visual */
.hero-visual {
    width: 100%;
    position: relative;
    perspective: 1000px;
    margin-top: 3rem;
    display: none;
}

.app-window {
    background: #13131f;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    z-index: 2;
    aspect-ratio: 16/10;
}

.window-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

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

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

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.window-title {
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    opacity: 0.7;
    font-family: var(--font-ui);
}

.window-content {
    height: 100%;
    position: relative;
    background: radial-gradient(circle at bottom, rgba(0, 122, 255, 0.08), transparent 70%);
}

.recording-preview {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 100px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.screen-content {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation: float 10s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    bottom: -10%;
    right: -10%;
    animation: float 12s infinite ease-in-out reverse;
}

.camera-bubble {
    width: 120px;
    height: 120px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    bottom: 40px;
    right: 40px;
    /* Moved to right for better composition */
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cam-lens {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.control-btn.record {
    background: #ff5f56;
    box-shadow: 0 0 20px rgba(255, 95, 86, 0.3);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    position: relative;
    background: #f5f5f7;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: #f5f5f7;
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: #f5f5f7;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.1;
    border-radius: 20px;
    transform: rotate(10deg);
    transition: 0.4s;
}

.feature-card:hover .icon-bg {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.2;
}

.icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    display: inline-block;
}

.icon.mdi {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* How it Works */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.03));
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0.2;
}

.step-content {
    text-align: left;
    background: transparent;
    padding: 0;
    border: none;
}

.step h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin: 1rem 0 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    background: #fff;
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-ui);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: 0.2s;
    font-family: var(--font-ui);
}

.footer-col a:hover {
    color: #fff;
}

.copyright-container {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 120px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

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

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
    }

    .btn.btn-primary.btn-sm {
        display: none;
    }
}


/* Logo Image */
.app-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: float-logo 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    object-fit: cover;
    object-position: center;
    clip-path: inset(5% 5% 5% 5%); /* Crop 5% from all edges */
}

.app-logo-img:hover {
    transform: scale(1.05) translateY(-5px);
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Note */
.hero-note {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 1rem;
    color: #4a4a4a;
}

/* Recorder Section */
.recorder-section {
    padding: 80px 0;
    position: relative;
    background: #f5f5f7;
}

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

.recorder-feature-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.recorder-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
    border-color: var(--primary-color);
}

.recorder-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 122, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.recorder-feature-icon .mdi {
    font-size: 1.8rem;
    color: #007AFF;
}

.recorder-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #000;
    font-weight: 600;
}

.recorder-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Sharing Section */
.sharing-section {
    padding: 80px 0;
    background: #f5f5f7;
}

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

.sharing-option-card {
    padding: 2.5rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sharing-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
    border-color: var(--primary-color);
}

.sharing-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 122, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.sharing-icon .mdi {
    font-size: 1.8rem;
    color: #007AFF;
}

.sharing-option-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #000;
    font-weight: 600;
}

.sharing-option-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mini-icon.mdi {
    font-size: 2.5rem;
}

.mini-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-ui);
    color: #000;
}

/* Controls Section */
.controls-section {
    padding: 80px 0;
    background: #f5f5f7;
}


.controls-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.controls-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menubar-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.controls-visual {
    background: #898989;
    border: 2px solid var(--glass-border);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.menubar-visual {
    background: #898989;
    border: 2px solid var(--glass-border);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls-image {
    max-width:150px;
    width: 150px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
}

.menubar-image {
    max-width: 280px;
    width: 255px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

@media (max-width: 640px) {
    .menubar-image {
        max-width: 100%;
        width: 100%;
    }
}

.controls-content {
    background: #000000;
    border-radius: 0 0 20px 20px;
    padding: 2rem;
    color: #ffffff;
    margin-top: 0;
}

.menubar-content {
    background: #000000;
    border-radius: 0 0 20px 20px;
    padding: 2rem;
    color: #ffffff;
    margin-top: 0;
}

.controls-content h3,
.menubar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-family: var(--font-ui);
    font-weight: 700;
}

.controls-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-ui);
}

.controls-content .controls-subtitle,
.menubar-content .controls-subtitle {
    color: var(--primary-color);
}

.controls-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.controls-content .controls-description,
.menubar-content .controls-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Use Cases */
.use-cases-section {
    padding: 80px 0;
    background: #f5f5f7;
    overflow: hidden;
}

.use-cases-scroll-wrapper {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
    margin-bottom: -30px;
}

.use-cases-scroll {
    display: flex;
    gap: 2rem;
    animation: scroll-horizontal 30s linear infinite;
    width: fit-content;
}

.use-cases-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.use-case-card {
    flex: 0 0 300px;
    padding: 2.5rem;
    border-radius: 24px;
    background: #f5f5f7;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.use-case-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
    transform: translateY(-5px);
}

.use-case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #000;
}

.use-case-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    text-align: center;
    background: #f5f5f7;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
}

blockquote footer {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 2rem;
    font-style: normal;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    border: 2px solid var(--primary-color);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 3rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 1rem;
    font-family: var(--font-ui);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}

.pricing-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 28px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

.period {
    font-size: 1rem;
    font-family: var(--font-ui);
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-cta {
    margin-top: 2rem;
}

.pricing-cta-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 600;
}

.pricing-os-req {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* CTA Footer */
.cta-footer {
    padding: 60px 0 40px;
    background: #f5f5f7;
    text-align: center;
}

.cta-content {
    margin-bottom: 6rem;
}

.cta-content h2 {
    margin-bottom: 2rem;
}

.os-req {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.5;
}

.footer-copyright {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Recorder Screenshot */
.recorder-screenshot-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.recorder-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Screenshot Section */
.screenshot-section {
    padding: 15px 0;
    background: #f5f5f7;
    margin: 0px 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f5f5f7;
}

.comparison-subheadline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    background: #f5f5f7;
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-card-negative {
    background: #f5f5f7;
    border-color: rgba(0, 0, 0, 0.1);
}

.comparison-card-positive {
    background: #f5f5f7;
    border-color: var(--primary-color);
    border-width: 2px;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.15);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.comparison-icon.negative {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
}

.comparison-icon.positive {
    background: rgba(0, 122, 255, 0.15);
    color: var(--primary-color);
}

.comparison-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #000;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.comparison-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.micro-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-ui);
}

/* Privacy Page */
.privacy-page {
    padding: 150px 0 80px;
    min-height: 80vh;
}

.privacy-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.privacy-page .last-updated {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.privacy-content {
    max-width: 700px;
}

.privacy-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-content ul {
    list-style: none;
    padding: 0;
}

.privacy-content li {
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.privacy-content li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 0.75rem;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-content a:hover {
    color: #fff;
}

.privacy-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-family: var(--font-ui);
    font-weight: 600;
}

.footer-copyright a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 0.5rem;
}

.footer-copyright a:hover {
    color: #fff;
}

.video-wrapper {
    max-width: 1000px !important;
    width: 1000px !important;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-video {
    width: 1000px !important;
    max-width: 1000px !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.screenshot-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

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

/* Support Section */
.support-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #000000;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.support-section h4 {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

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

.support-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.support-section a:hover {
    color: #fff;
}

.support-section a[href="support.html"] {
    text-decoration: underline;
}

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

    blockquote {
        font-size: 1.4rem;
    }

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

    .comparison-card {
        padding: 2rem;
    }

    .micro-highlights {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .controls-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}