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

:root {
    --primary: #FF7A00;
    --primary-dark: #FFC94C;
    --secondary: #FFC94C;
    --accent: #FF7A00;
    --text-primary: #09213F;
    --text-secondary: #475569;
    --bg-light: #FFF9F5;
    --bg-lighter: #FFF9F5;
    --border-light: #E9EDF3;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    color: var(--text-primary);
    background: #FFF9F5;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem 0.7rem 2rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.logo {
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--text-primary);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hide mobile CTA on desktop */
.nav-cta-mobile {
    display: none;
}

/* Style mobile CTA button to match link */
button.nav-cta {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    overflow-x: clip;
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.08) 0%, #FFF9F5 100%);
    max-width: 100vw;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 201, 76, 0.1));
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    animation: slideDown 0.6s ease-out;
}

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

h1 {
    font-size: clamp(2.75rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: slideUp 0.8s ease-out 0.2s both;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

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

.subtitle {
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.video-container {
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), rgba(255, 201, 76, 0.05));
    border-radius: 24px;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    box-shadow:
        0 0 0 1px rgba(255, 122, 0, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 40px 120px rgba(122, 55, 255, 0.12);
    animation: slideUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 55, 255, 0.1), transparent);
    pointer-events: none;
}

.video-placeholder {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 0.8s ease-out 0.8s both;
    overflow: visible;
}

.cta-button {
    padding: 1.25rem 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-primary {
    background: var(--text-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.cta-secondary:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.section {
    padding: clamp(5rem, 12vw, 10rem) 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow: visible;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(255, 122, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 122, 0, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Ensure images as icons work properly */
img.feature-icon {
    font-size: initial;
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Internal monologue / 4th wall - Redacted/Censored style */
.inner-voice {
    background: #09213F;
    color: #09213F;
    padding: 2px 6px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: help;
}

.inner-voice:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

/* Mobile: show dimmed, reveal on tap */
@media (max-width: 768px) {
    .inner-voice {
        background: rgba(0, 0, 0, 0.08);
        color: var(--text-secondary);
        opacity: 0.6;
        font-size: 0.85em;
    }

    .inner-voice:active,
    .inner-voice:focus {
        opacity: 1;
        background: rgba(0, 0, 0, 0.05);
    }
}

.universal-section {
    background: linear-gradient(180deg, rgba(255, 122, 0, 0.03) 0%, #FFF9F5 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.universal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.03), transparent 70%);
    pointer-events: none;
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.app-badge {
    padding: 1rem 1.75rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.app-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.use-case {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.3);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.use-case:hover .use-case-icon {
    transform: scale(1.15);
}

/* Ensure images as icons work properly */
img.use-case-icon {
    font-size: initial;
}

.use-case-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.final-cta {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: clamp(5rem, 12vw, 10rem) 2rem;
    position: relative;
}

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

.final-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.pricing-note {
    font-size: 1.25rem;
    margin: 2rem auto;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.asterisk {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Download Button Group with Dropdown */
.download-button-group {
    position: relative;
    display: inline-flex;
    gap: 0;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-button-group:has(.download-dropdown-menu.visible) {
    z-index: 1001;
}

.download-button-group:hover {
    transform: translateY(-3px);
}

.download-btn-main {
    padding: 1.25rem 2.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.download-btn-main:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

/* Secondary download link (for alternative platform) */
.download-alt-link {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.2s ease;
    width: 100%;
    text-align: center;
}

.download-alt-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

.download-alt-link svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Wrap CTA container for proper alt link placement */
.cta-container {
    flex-wrap: wrap;
}

/* Dual download button group (Chrome + Mac side by side) */
.download-btn-group {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Stack buttons in pricing cards */
.pricing-card .download-btn-group {
    flex-direction: column;
    width: 100%;
}

.pricing-card .download-btn-group .download-btn-main,
.pricing-card .download-btn-group .cta-button {
    width: 100% !important;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .download-btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .download-btn-group .download-btn-main,
    .download-btn-group .cta-button {
        width: 100% !important;
        max-width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

.download-btn-group .download-btn-main,
.download-btn-group .cta-button {
    width: auto;
    flex: 0 0 auto;
}

/* White buttons in VS comparison section */
.vs-comparison-container .download-btn-group .download-btn-main,
.vs-comparison-container .download-btn-group .cta-button {
    background: white;
    color: var(--text-primary);
    border-color: white;
}

.vs-comparison-container .download-btn-group .download-btn-main:hover,
.vs-comparison-container .download-btn-group .cta-button:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.download-button-group:hover .download-btn-main {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
}

.download-btn-main svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.download-btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.05));
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.download-button-group:hover .download-btn-main::before {
    transform: translateX(100%);
}

.download-dropdown-toggle {
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    border-left: 1px solid var(--border-light);
    border-radius: 0 100px 100px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -2px;
}

.download-button-group:hover .download-dropdown-toggle {
    border-color: var(--primary);
    border-left-color: var(--border-light);
}

.download-dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.25rem;
    transition: transform 0.3s;
}

.download-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.download-dropdown-menu {
    position: fixed;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    overflow: visible;
    z-index: 1000;
}

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

.download-dropdown-item {
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
}

.download-dropdown-item:hover {
    background: rgba(255, 122, 0, 0.05);
    padding-left: 1.75rem;
}

.download-dropdown-item .platform-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.final-cta .cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-cta .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.bento-item {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 122, 0, 0.2);
}

.bento-large {
    grid-column: span 8;
}

.bento-small {
    grid-column: span 4;
}

@media (max-width: 1024px) {
    .bento-large,
    .bento-small {
        grid-column: span 12;
    }

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

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-content {
        gap: 0.5rem;
    }

    .logo img {
        height: 28px;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .use-case {
        padding: 1.5rem 1rem;
    }

    .cta-button,
    .download-btn-main {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px !important;
    }

    .section,
    .hero,
    .hero-content {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Keyboard shortcut styling */
.keyboard-shortcut {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0 4px;
    position: relative;
    white-space: nowrap;
    vertical-align: middle;
}

.key-visual {
    display: inline-block;
    background-color: #f5f5f7;
    border: 1px solid #d2d2d7;
    border-radius: 5px;
    padding: 8px 12px 10px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Mono", Menlo, monospace;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 2px 0 0 #d2d2d7, 0 3px 2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    animation: double-press 3s ease-in-out infinite;
    vertical-align: middle;
    min-width: 60px;
    text-align: center;
}

.key-symbol {
    display: block;
    font-size: 14px;
    line-height: 1;
    text-align: right;
    margin-bottom: 2px;
}

.key-text {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.times-indicator {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-left: 4px;
}

@keyframes double-press {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 2px 0 0 #d2d2d7, 0 3px 2px 0 rgba(0, 0, 0, 0.1);
        background-color: #f5f5f7;
    }
    15% {
        transform: translateY(2px);
        box-shadow: 0 0 0 0 #d2d2d7, 0 1px 1px 0 rgba(0, 0, 0, 0.1);
        background-color: #d2d2d7;
    }
    25% {
        transform: translateY(0);
        box-shadow: 0 2px 0 0 #d2d2d7, 0 3px 2px 0 rgba(0, 0, 0, 0.1);
        background-color: #f5f5f7;
    }
    45% {
        transform: translateY(2px);
        box-shadow: 0 0 0 0 #d2d2d7, 0 1px 1px 0 rgba(0, 0, 0, 0.1);
        background-color: #d2d2d7;
    }
    55% {
        transform: translateY(0);
        box-shadow: 0 2px 0 0 #d2d2d7, 0 3px 2px 0 rgba(0, 0, 0, 0.1);
        background-color: #f5f5f7;
    }
}

@keyframes blowUpAndFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.banner-pulse {
    animation: blowUpAndFade 0.8s ease-out;
}

/* Judgmental Fake Input */
.fake-input-container {
    position: relative;
    width: 100%;
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
    border-radius: 17px;
    font-family: inherit;
    font-weight: 500;
    color: #94a3b8;
    background: white;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.fake-caret {
    display: inline-block;
    width: 5px;
    height: 2.2rem;
    background-color: #ef4444;
    margin-left: 4px;
    animation: judgmentalBlink 0.8s ease-in-out infinite;
    border-radius: 2px;
    position: relative;
}

.fake-caret.stopped {
    animation: none;
    opacity: 1;
}

/* Face that appears when caret stops */
.caret-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fake-caret.stopped .caret-face {
    opacity: 1;
}

/* Eyebrows - angry/judgmental */
.caret-eyebrows {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
}

.eyebrow {
    position: absolute;
    width: 12px;
    height: 3px;
    background: #09213F;
    border-radius: 2px;
}

.eyebrow.left {
    left: 0;
    transform: rotate(15deg);
}

.eyebrow.right {
    right: 0;
    transform: rotate(-15deg);
}

/* Eyes */
.caret-eyes {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
}

.eye {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #09213F;
    border-radius: 50%;
    animation: blinkEyes 4s ease-in-out infinite;
    box-shadow: 0 0 0 2px white;
}

.eye.left {
    left: 2px;
}

.eye.right {
    right: 2px;
}

/* Mouth - frown/judgmental */
.caret-mouth {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    border: 2px solid #09213F;
    border-top: none;
    border-radius: 0 0 16px 16px;
    transform: translateX(-50%) scaleY(-1);
}

@keyframes blinkEyes {
    0%, 48%, 52%, 100% {
        height: 10px;
        opacity: 1;
    }
    50% {
        height: 2px;
        opacity: 1;
    }
}

@keyframes judgmentalBlink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.caret-speech-bubble {
    position: absolute;
    top: -60px;
    right: 190px;
    background: white;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid #ef4444;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
    z-index: 10;
}

.caret-speech-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

.caret-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 280px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ef4444;
}

.caret-speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 282px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
    z-index: 1;
}

.typing-dots {
    opacity: 0.5;
    margin-left: 8px;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Beta Onboarding Modal */
.beta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 33, 63, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.beta-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.beta-modal {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 90%;
    padding: 2.5rem;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.beta-modal-overlay.visible .beta-modal {
    transform: scale(1) translateY(0);
}

.beta-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity 0.2s;
}

.beta-modal-close:hover {
    opacity: 1;
}

.beta-video-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.beta-modal-video {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.beta-video-container .beta-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    margin: 0;
}

.beta-modal h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.beta-modal p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.beta-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.beta-modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #FF9A40);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.beta-modal-platforms {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    opacity: 0.8;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link-privacy {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(56, 178, 172, 0.1);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    color: var(--primary);
}

.nav-link-privacy:hover {
    background: rgba(56, 178, 172, 0.2);
}

.nav-link-privacy svg {
    stroke: var(--primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Hide remind button by default (desktop) */
.mobile-menu-remind {
    display: none;
}

.mobile-menu-remind {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-family: inherit;
    padding: 1rem 2rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px -4px rgba(49, 130, 206, 0.5),
        0 2px 8px rgba(49, 130, 206, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-menu-remind::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.mobile-menu-remind:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px -4px rgba(49, 130, 206, 0.6),
        0 4px 12px rgba(49, 130, 206, 0.25);
}

.mobile-menu-remind:active {
    transform: translateY(0);
    box-shadow:
        0 4px 12px -2px rgba(49, 130, 206, 0.4),
        0 2px 6px rgba(49, 130, 206, 0.2);
}

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

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hide download, show remind on mobile */
    .mobile-menu-download {
        display: none;
    }

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

    /* Navbar: hide both CTAs on mobile, use hamburger menu instead */
    .nav-right {
        display: none;
    }
}


/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef1f5 100%);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-built {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-heart {
    font-size: 1.1rem;
}

.footer-dubai {
    height: 18px;
    width: auto;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 1.5rem;
    }

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

    .footer-col {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
