/* ===== CSS Variables ===== */
:root {
    /* Warm color palette */
    --primary-peach: #F6C28B;
    --primary-dark: #3E3B28;
    --primary-light: #FEFBEA;
    --accent-orange: #E8A861;
    --accent-warm: #F5D5A8;

    /* Neutrals - improved contrast */
    --white: #FFFFFF;
    --gray-50: #FDFCFA;
    --gray-100: #FAF8F5;
    --gray-200: #E5E2DC;
    --gray-300: #D4D1CA;
    --gray-600: #5A5746;  /* Darker for better contrast */
    --gray-900: #1A1916;

    /* Typography */
    --font-display: 'Alegreya', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1200px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom,
        var(--white) 0%,
        rgba(254, 251, 234, 0.3) 50%,
        var(--white) 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    opacity: 0.95;
}

.large-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--primary-dark);
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(254, 251, 234, 0.95) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(246, 194, 139, 0.1);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(62, 59, 40, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--primary-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--accent-warm) 100%);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 8px rgba(62, 59, 40, 0.15);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2A2820 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(62, 59, 40, 0.25);
}

.btn-secondary {
    background: rgba(254, 251, 234, 0.5);
    color: var(--primary-dark);
    border: 2px solid rgba(232, 168, 97, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 168, 97, 0.2);
}

/* ===== Demo Video Section ===== */
.demo-section {
    background: var(--white);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.video-container {
    text-align: center;
}

.video-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background: var(--gray-100);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* ===== About Section ===== */
.about-section {
    background: var(--primary-light);
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--accent-warm) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 0;
}

/* ===== Cady Section ===== */
.cady-section {
    background: var(--primary-light);
}

.cady-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-list li div {
    flex: 1;
}

.feature-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.cady-preview {
    display: flex;
    justify-content: center;
}

.app-screenshot {
    max-width: 350px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.app-screenshot:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ===== Features Section ===== */
.features-section {
    background: var(--white);
}

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

.feature-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(254, 251, 234, 0.4) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(246, 194, 139, 0.12);
    box-shadow: 0 2px 8px rgba(62, 59, 40, 0.04);
}

.feature-card:hover {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(254, 251, 234, 0.6) 100%);
    border-color: rgba(246, 194, 139, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(232, 168, 97, 0.15);
}

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

/* Unified Icon System - Feature Icons */
.feature-icon-svg {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(232, 168, 97, 0.15));
    margin: 0 auto 1rem;
    display: block;
}

.feature-card:hover .feature-icon-svg {
    transform: translateY(-3px) scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(232, 168, 97, 0.3));
}

.feature-icon-svg path,
.feature-icon-svg circle,
.feature-icon-svg rect {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-svg path,
.feature-card:hover .feature-icon-svg circle,
.feature-card:hover .feature-icon-svg rect {
    stroke-width: 2.75;
}

.feature-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--accent-warm) 100%);
}

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

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item p {
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

/* ===== Vision Section ===== */
.vision-section {
    background: var(--white);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-content .large-text {
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.vision-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--gray-600);
}

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

.vision-box {
    background: var(--primary-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 2px solid var(--primary-peach);
}

.vision-box h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.vision-box p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* ===== Founder Section ===== */
.founder-section {
    background: var(--primary-light);
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-bio {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.founder-bio h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gray-600);
    border-left: 4px solid var(--primary-peach);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-dark);
    color: var(--primary-light);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.hiring-note {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--accent-warm) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-top: 3rem;
    text-align: center;
}

.hiring-note h3 {
    margin-bottom: 1rem;
}

.hiring-note p {
    font-size: 1.1rem;
    margin: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--white);
}

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

.contact-card {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
}

.contact-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.75rem;
}

.contact-card a {
    color: var(--accent-orange);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--accent-orange);
    position: relative;
}

/* Subtle gradient overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(246, 194, 139, 0.03) 0%,
        transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-light);
}

.footer-brand p {
    margin: 0 0 1.5rem 0;
    opacity: 0.85;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--primary-light);
    opacity: 0.8;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.6;
}

.footer-legal p strong {
    opacity: 1;
    color: var(--primary-light);
}

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

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .about-grid,
    .cady-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .video-grid {
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-brand {
        width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-legal {
        text-align: center;
        width: 100%;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .app-screenshot {
        max-width: 280px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 2.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none; /* Hide navigation links on mobile */
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo img {
        height: 32px;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .large-text {
        font-size: 1.15rem;
    }

    .feature-list {
        gap: 1.5rem;
    }

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

    .feature-list strong {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 1.75rem;
        margin-bottom: 1rem;
    }

    .feature-icon-svg {
        width: 44px;
        height: 44px;
    }

    /* Step cards on mobile */
    .step-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .step-icon-svg {
        width: 40px;
        height: 40px;
    }

    .founder-bio {
        padding: 2rem;
    }

    .hiring-note {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .social-links {
        flex-direction: column;
    }

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

    /* Make video embeds more mobile-friendly */
    .video-container h3 {
        font-size: 1.25rem;
    }

    .video-wrapper {
        border-radius: var(--radius-md);
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}
/* ===== Multi-Page Additions ===== */

/* Alpha Badge */
.alpha-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--accent-warm) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--primary-dark);
    opacity: 0.9;
}

.cady-header {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg,
        var(--primary-light) 0%,
        rgba(246, 194, 139, 0.15) 100%) !important;
}

.header-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Overview Section */
.overview-section {
    background: var(--white);
}

.center-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-quick {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-quick:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Unified Icon System - Homepage Feature Icons */
.feature-icon-home {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(232, 168, 97, 0.2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-quick:hover .feature-icon-home {
    transform: translateY(-3px) scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(232, 168, 97, 0.3));
}

.feature-quick h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.feature-quick p {
    color: var(--gray-600);
    margin: 0;
}

.cta-center {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-equal {
    min-width: 180px;
    text-align: center;
}

/* Waitlist Section */
.waitlist-section {
    background: var(--primary-light);
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    /* Force proper centering */
    margin-left: auto !important;
    margin-right: auto !important;
}

.waitlist-form {
    margin: 2rem 0;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.form-group input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--white);
}

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

/* Button Variations */
.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--primary-light);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-primary-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Founder Page Styles */
.founder-detail-section {
    background: var(--white);
}

.founder-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.founder-header {
    border-bottom: 2px solid var(--primary-peach);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.founder-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.25rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.founder-bio-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.founder-bio-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.founder-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-orange);
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.social-links-founder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.social-btn-founder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.25rem;
    background: var(--primary-dark);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn-founder:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn-founder svg {
    flex-shrink: 0;
}

.team-note {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-peach);
}

.team-note h3 {
    margin-bottom: 1rem;
}

.team-note p {
    margin-bottom: 0.75rem;
}

.hiring-callout {
    background: var(--primary-light);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

/* How It Works */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(254, 251, 234, 0.3) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(246, 194, 139, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    background: linear-gradient(135deg,
        var(--white) 0%,
        rgba(254, 251, 234, 0.5) 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(232, 168, 97, 0.12);
    border-color: rgba(246, 194, 139, 0.2);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-peach);
    opacity: 0.3;
}

/* Unified Icon System - Step Icons */
.step-icon-svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(232, 168, 97, 0.15));
}

.step-card:hover .step-icon-svg {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(232, 168, 97, 0.25));
}

.step-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.step-card p {
    color: var(--gray-600);
    margin: 0;
}

/* Tech Section */
.tech-section {
    background: var(--primary-light);
}

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

.tech-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.tech-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.tech-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 5rem 0;
}

/* Features Detail */
.features-detail-section {
    background: var(--white);
}

/* Approach Section */
.approach-section {
    background: var(--primary-light);
}

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

.approach-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.approach-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.approach-card p:last-child {
    margin-bottom: 0;
}

/* Vision Detail */
.vision-detail-section {
    background: var(--white);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Company Info */
.company-info-section {
    background: var(--gray-50);
}

.company-info-box {
    max-width: 600px;
    margin: 2rem auto;
    background: transparent;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent-orange);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.info-row strong {
    color: var(--primary-dark);
    font-weight: 600;
    flex-shrink: 0;
    margin-right: 2rem;
}

.info-row span {
    color: var(--gray-600);
    text-align: right;
}

/* Contact Page */
.contact-link {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Footer Updates */
.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-light);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile Responsive Updates */
@media (max-width: 640px) {
    .form-group {
        flex-direction: column;
    }

    .form-group button {
        width: 100%;
    }

    .header-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .social-links-founder {
        grid-template-columns: 1fr;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-row span {
        text-align: left;
    }

    .step-number {
        font-size: 2rem;
    }

    .founder-card {
        padding: 2rem;
    }

    .company-info-box {
        padding: 2rem;
    }
}

/* ===== LocalHost-Inspired Design Updates ===== */

/* Softer Typography - Reduce aggressive boldness */
h1, h2, h3 {
    font-weight: 600 !important; /* Instead of 700 */
}

.hero-title {
    font-weight: 600 !important;
    font-size: 3.5rem;
    line-height: 1.1;
}

.section-title {
    font-weight: 600 !important;
}

/* Hero Styles - Homepage (No Images) */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 8rem 0;
    text-align: center;
}

.hero .container {
    max-width: 900px;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image-wrapper {
    display: none; /* Hidden - no images needed */
}

.hero-image {
    display: none;
}

/* About Page Header (No Images) */
.page-header-hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-warm) 50%, var(--white) 100%);
}

.page-header-hero .header-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-header-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.header-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
}

.header-image-wrapper {
    display: none; /* Hidden - no images needed */
}

.header-hero-image {
    display: none;
}

/* About Page Specific Styles */
.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-narrow .large-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-narrow p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    text-align: center;
}

.about-intro {
    padding: 5rem 0;
}

/* Feature Cards - About Page */
.features-about {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

.features-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card-about {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(62, 59, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-about:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.12);
}

.feature-card-about:hover .feature-icon-svg {
    transform: translateY(-3px) scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(232, 168, 97, 0.3));
}

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

.feature-card-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card-about p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Approach Section */
.approach-simple {
    padding: 5rem 0;
}

.approach-simple h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-simple .large-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-simple p {
    font-size: 1.125rem;
    line-height: 1.8;
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.team-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: transparent;
    border-radius: var(--radius-xl);
    /* Force proper centering */
    margin-left: auto !important;
    margin-right: auto !important;
}

.team-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-box p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.team-box .btn {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 4px 12px rgba(232, 168, 97, 0.3);
}

.team-box .btn:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(232, 168, 97, 0.4);
}

.team-cta-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 2rem !important;
}

/* Alpha Info Improvements */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Apply fade animations to sections */
.section {
    animation: fadeIn 0.6s ease-out;
}

/* Warm, Subtle CTA Boxes */
.cta-box {
    background: linear-gradient(135deg,
        rgba(254, 251, 234, 0.95) 0%,
        rgba(246, 194, 139, 0.08) 100%);
    border: none;
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Force proper centering */
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Subtle warm glow effect */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(246, 194, 139, 0.05) 0%,
        transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 2.25rem;
}

.cta-box p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Generous Spacing Updates */
.section {
    padding: 6rem 0; /* Increased from 5rem */
}

.hero {
    padding: 8rem 0; /* More breathing room */
}

/* Button Hover Enhancements */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 168, 97, 0.3);
}

.btn-primary-large {
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .team-box {
        padding: 3rem 2rem;
    }

    .page-header-hero h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* CTA boxes on mobile */
    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .cta-box h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .content-narrow h2 {
        font-size: 1.75rem;
    }

    .content-narrow .large-text {
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .team-box {
        padding: 2rem 1.5rem;
    }

    .alpha-info {
        padding: 1.5rem;
    }

    .video-container-shorts-centered {
        max-width: 100%;
    }
}

/* ===== Preview Section - Homepage ===== */
.preview-section {
    padding: 6rem 0;
    background: var(--white);
}

/* Vertical Video Container (YouTube Shorts) - Centered */
.video-container-shorts-centered {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 3rem auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.15);
    background: var(--gray-900);
}

.video-container-shorts-centered iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* ===== Horizontal Video Container (16:9) ===== */
.demo-video-section {
    padding: 6rem 0;
    background: var(--white);
    /* Ensure visibility */
    position: relative;
    z-index: 1;
}

.video-container-horizontal {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50.625%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(62, 59, 40, 0.15);
    background: var(--gray-900); /* Fallback background */
    /* Ensure visibility */
    display: block !important;
    visibility: visible !important;
}

.video-container-horizontal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block !important;
}

/* ===== Founder CTA on Homepage ===== */

/* ===== Fix Squished Form and Spacing ===== */

/* Stacked Form Layout */
.form-group-stacked {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(246, 194, 139, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(62, 59, 40, 0.02);
}

.form-input:hover {
    border-color: rgba(246, 194, 139, 0.3);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 168, 97, 0.1);
}

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

/* Fix Spacing Between Sections */
.waitlist-section {
    padding: 7rem 0;
}

.waitlist-content {
    max-width: 700px;
    margin: 0 auto;
}

.alpha-info {
    margin-top: 5rem;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 1px 3px rgba(62, 59, 40, 0.06);
    position: relative;
}

.alpha-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-peach) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.alpha-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.alpha-info p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.alpha-info p:last-child {
    margin-bottom: 0;
}

/* Founder CTA - Better Spacing */
.founder-cta {
    margin-top: 4rem;
    padding: 3rem 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: 0 1px 3px rgba(62, 59, 40, 0.06);
    position: relative;
}

.founder-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-peach) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Unified Icon System - Founder Icon */
.founder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(232, 168, 97, 0.15));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-cta:hover .founder-icon {
    transform: translateY(-3px) scale(1.08);
    filter: drop-shadow(0 4px 10px rgba(232, 168, 97, 0.3));
}

.founder-cta p {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.founder-cta .btn {
    display: inline-block;
    font-size: 1.0625rem;
    padding: 1rem 2.5rem;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .form-group-stacked {
        max-width: 100%;
    }

    .alpha-info {
        padding: 2rem;
        margin-top: 3rem;
    }

    .alpha-info h4 {
        font-size: 1.25rem;
    }

    .founder-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .founder-cta p {
        font-size: 1.125rem;
    }
}

/* ===== Footer Social Icons ===== */
.footer-social {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-label {
    font-size: 0.875rem;
    color: var(--primary-light);
    opacity: 0.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    color: var(--primary-light);
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===== DARK MODE STYLES ===== */

/* Smooth transition for theme changes */
body,
.navbar,
.hero,
.section,
.feature-card,
.use-case-card,
.step-card,
.cta-box,
.footer,
.btn,
.form-input,
.alpha-info,
.founder-cta,
.faq-minimal-item {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    /* Backgrounds - Warmer, less harsh */
    --bg-primary: #1A1612;
    --bg-secondary: #252219;
    --bg-tertiary: #2F2B23;
    --bg-card: #2A2621;

    /* Text Colors - Better contrast */
    --text-primary: #FEFBEA;
    --text-secondary: #E5E2DC;
    --text-tertiary: #B8B5AC;

    /* Keep warm orange accent in dark mode */
    --accent-dark-orange: #F6A661;
    --accent-dark-peach: #E8A861;
    --accent-soft: rgba(246, 166, 97, 0.15);

    /* Borders & Shadows */
    --border-color: rgba(246, 166, 97, 0.25);
    --border-subtle: rgba(254, 251, 234, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.7);
}

/* Dark Mode Body */
[data-theme="dark"] body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Dark Mode Navbar */
[data-theme="dark"] .navbar {
    background: rgba(26, 22, 18, 0.95);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .navbar .logo span,
[data-theme="dark"] .nav-links a {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
    color: var(--accent-dark-orange);
}

/* Dark Mode Hero */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg,
        var(--bg-primary) 0%,
        var(--bg-secondary) 100%);
}

[data-theme="dark"] .hero-title,
[data-theme="dark"] .hero-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .alpha-badge {
    background: var(--accent-soft);
    color: var(--accent-dark-orange);
    border: 1px solid var(--accent-dark-orange);
}

/* Dark Mode Buttons */
[data-theme="dark"] .btn-primary {
    background: var(--accent-dark-orange);
    color: var(--bg-primary);
    border: none;
}

[data-theme="dark"] .btn-primary:hover {
    background: var(--accent-dark-peach);
    box-shadow: 0 6px 20px rgba(97, 200, 232, 0.4);
}

[data-theme="dark"] .btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--accent-soft);
    color: var(--accent-cyan);
}

[data-theme="dark"] .btn-outline {
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--accent-soft);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Dark Mode Sections */
[data-theme="dark"] .section-title,
[data-theme="dark"] .section-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .large-text,
[data-theme="dark"] p {
    color: var(--text-secondary);
}

/* Dark Mode Cards */
[data-theme="dark"] .feature-card,
[data-theme="dark"] .use-case-card,
[data-theme="dark"] .step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .feature-card:hover,
[data-theme="dark"] .use-case-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 8px 24px rgba(97, 200, 232, 0.15);
    transform: translateY(-4px);
}

[data-theme="dark"] .feature-quick {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

/* Dark Mode Forms */
[data-theme="dark"] .form-input {
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-primary);
}

[data-theme="dark"] .form-input:focus {
    border-color: var(--accent-cyan);
    background: var(--bg-secondary);
}

[data-theme="dark"] .form-input::placeholder {
    color: var(--text-tertiary);
}

[data-theme="dark"] .form-note {
    color: var(--text-tertiary);
}

/* Dark Mode Alpha Info & Founder CTA */
[data-theme="dark"] .alpha-info,
[data-theme="dark"] .founder-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .alpha-info h4,
[data-theme="dark"] .founder-cta p {
    color: var(--text-primary);
}

/* Dark Mode CTA Box */
[data-theme="dark"] .cta-box,
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg,
        var(--bg-secondary) 0%,
        var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
}

/* Dark Mode Video Containers */
[data-theme="dark"] .video-container-shorts-centered,
[data-theme="dark"] .video-container-horizontal,
[data-theme="dark"] .video-player-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

[data-theme="dark"] .preview-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .video-caption {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-radius: 0 0 16px 16px;
}

[data-theme="dark"] .youtube-link,
[data-theme="dark"] .twitter-link {
    color: var(--text-secondary);
}

[data-theme="dark"] .youtube-link:hover,
[data-theme="dark"] .twitter-link:hover {
    color: var(--accent-dark-orange);
}

/* Dark Mode FAQ */
[data-theme="dark"] .faq-minimal-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
}

[data-theme="dark"] .faq-minimal-item summary {
    color: var(--text-primary);
}

[data-theme="dark"] .faq-minimal-item p {
    color: var(--text-secondary);
}

[data-theme="dark"] .faq-minimal-item:hover {
    border-color: var(--border-color);
}

/* Dark Mode Footer - Enhanced Design */
[data-theme="dark"] .footer {
    background: linear-gradient(to bottom,
        var(--bg-secondary) 0%,
        var(--bg-primary) 100%);
    border-top: 2px solid var(--accent-cyan);
}

[data-theme="dark"] .footer::before {
    background: linear-gradient(to bottom,
        rgba(97, 200, 232, 0.05) 0%,
        transparent 100%);
}

[data-theme="dark"] .footer-brand h3,
[data-theme="dark"] .footer-brand p,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-legal p,
[data-theme="dark"] .footer-social-label {
    color: var(--text-primary);
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--accent-cyan);
}

[data-theme="dark"] .footer-links a::after {
    background: var(--accent-cyan);
}

[data-theme="dark"] .social-icon {
    color: var(--text-primary);
}

[data-theme="dark"] .social-icon:hover {
    color: var(--accent-cyan);
}

/* Dark Mode 404 Page */
[data-theme="dark"] .card-game {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .ai-person-card {
    background: linear-gradient(135deg,
        var(--bg-tertiary) 0%,
        rgba(97, 200, 232, 0.1) 100%);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .person-name {
    color: var(--text-primary);
}

[data-theme="dark"] .person-bio {
    color: var(--text-secondary);
}

[data-theme="dark"] .person-trait {
    background: var(--accent-soft);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

[data-theme="dark"] .score {
    color: var(--text-secondary);
}

[data-theme="dark"] .score strong {
    color: var(--accent-cyan);
}

[data-theme="dark"] .game-title {
    color: var(--text-primary);
}

[data-theme="dark"] .game-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .btn-vibe {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

[data-theme="dark"] .btn-vibe:hover {
    background: var(--accent-blue);
}

/* Dark Mode SVG Icons - Invert colors */
[data-theme="dark"] .feature-icon-home path,
[data-theme="dark"] .feature-icon-home circle {
    fill: var(--accent-cyan);
    stroke: var(--accent-blue);
}

[data-theme="dark"] .feature-icon-home path[fill="#FEF8E8"],
[data-theme="dark"] .feature-icon-home circle[fill="#FEF8E8"] {
    fill: var(--bg-tertiary);
}

[data-theme="dark"] .founder-icon circle,
[data-theme="dark"] .founder-icon path,
[data-theme="dark"] .founder-icon rect {
    stroke: var(--accent-cyan);
    fill: var(--accent-soft);
}

/* ===== IMPROVED FOOTER DESIGN ===== */

.footer {
    position: relative;
    overflow: hidden;
}

/* Decorative top border with gradient */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-orange) 50%,
        transparent 100%);
    opacity: 0.6;
}

[data-theme="dark"] .footer::after {
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-cyan) 50%,
        transparent 100%);
}

/* Better footer layout */
.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-links {
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-legal {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

[data-theme="dark"] .footer-legal {
    border-top: 1px solid var(--border-subtle);
}

.footer-social {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* ===== ENHANCED 404 GAME DESIGN ===== */

.game-container {
    background: linear-gradient(135deg,
        rgba(246, 194, 139, 0.05) 0%,
        rgba(232, 168, 97, 0.05) 100%);
}

[data-theme="dark"] .game-container {
    background: linear-gradient(135deg,
        rgba(97, 200, 232, 0.03) 0%,
        rgba(90, 184, 216, 0.03) 100%);
}

.card-game {
    position: relative;
    overflow: hidden;
}

.card-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--accent-orange) 0%,
        var(--primary-peach) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

[data-theme="dark"] .card-game::before {
    background: linear-gradient(90deg,
        var(--accent-cyan) 0%,
        var(--accent-blue) 100%);
}

.ai-person-card {
    position: relative;
    overflow: hidden;
}

.ai-person-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
        var(--accent-orange),
        var(--primary-peach));
    opacity: 0.6;
}

[data-theme="dark"] .ai-person-card::before {
    background: linear-gradient(to bottom,
        var(--accent-cyan),
        var(--accent-blue));
}

.game-actions {
    margin-top: 2rem;
}

.game-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.game-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.score {
    padding: 1rem;
    background: rgba(232, 168, 97, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(232, 168, 97, 0.1);
}

[data-theme="dark"] .score {
    background: rgba(97, 200, 232, 0.05);
    border: 1px solid rgba(97, 200, 232, 0.1);
}

/* ===== DARK MODE TOGGLE BUTTON ===== */

.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

[data-theme="dark"] .theme-toggle {
    background: var(--accent-dark-orange);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* Mobile responsiveness for toggle */
@media (max-width: 640px) {
    .theme-toggle {
        bottom: 5rem; /* Above the sticky CTA on mobile */
        left: 1rem;
        width: 48px;
        height: 48px;
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
    }
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== App Preview Section (About Page) ===== */
.app-preview-section {
    padding: 6rem 0;
    background: var(--white);
}

.app-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.preview-item {
    text-align: center;
}

.preview-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.12);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item img:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(62, 59, 40, 0.18);
}

.preview-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.preview-item p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

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

    .preview-item img {
        max-width: 350px;
    }
}

/* ===== Manifesto-Style Sections ===== */

/* Why This Matters Section (About Page) */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.manifesto-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-align: left;
    padding-left: 2rem;
    border-left: 3px solid rgba(232, 168, 97, 0.2);
    position: relative;
}

.manifesto-text:last-child {
    margin-bottom: 0;
}

/* Use Cases Section (Cady Page) */
.use-cases-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
}

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

.use-case-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(62, 59, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.15);
    border-color: var(--accent-orange);
}

.use-case-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.use-case-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 0;
}

/* How It Works Deep Section (Cady Page) */
.how-it-works-deep {
    padding: 6rem 0;
    background: var(--white);
}

.how-it-works-deep h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

/* Mobile Responsive for Manifesto Sections */
@media (max-width: 968px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manifesto-text {
        font-size: 1.125rem;
        line-height: 1.8;
    }

    .use-case-card {
        padding: 2rem;
    }

    .why-section {
        padding: 5rem 0;
    }

    .how-it-works-deep {
        padding: 5rem 0;
    }
}

/* ===== Minimal FAQ Section ===== */
.minimal-faq {
    padding: 3rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.faq-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-minimal-item {
    font-size: 0.875rem;
}

.faq-minimal-item summary {
    cursor: pointer;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--primary-dark);
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
    transition: color 0.2s ease;
}

.faq-minimal-item summary:hover {
    color: var(--accent-orange);
}

.faq-minimal-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0.75rem;
    color: var(--accent-orange);
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-minimal-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-minimal-item p {
    margin: 0;
    padding: 0.5rem 0 1rem;
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 0.875rem;
}

/* Minimal FAQ Mobile */
@media (max-width: 640px) {
    .faq-minimal-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .minimal-faq {
        padding: 2rem 0;
    }
}

@media (max-width: 640px) {
    .manifesto-text {
        font-size: 1.0625rem;
        margin-bottom: 1.5rem;
    }

    .use-case-card h3 {
        font-size: 1.25rem;
    }

    .use-case-card p {
        font-size: 1rem;
    }

    .how-it-works-deep h2 {
        font-size: 1.75rem;
    }
}

/* ===== Form Submission Animation ===== */
.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form success state */
.form-success {
    animation: formSuccess 0.5s ease;
}

@keyframes formSuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== Enhanced Button Hover States ===== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button Enhanced Hover */
.btn-primary:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 168, 97, 0.4);
}

/* Outline Button Enhanced Hover */
.btn-outline:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 168, 97, 0.3);
}

/* Full Width Button Hover */
.btn-full:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* ===== Spacing Fixes ===== */

/* Section Spacing - More Consistent */
.section {
    padding: 5rem 0;
}

/* Hero Section - Better Spacing */
.hero {
    padding: 7rem 0 6rem 0;
    min-height: 70vh;
}

/* Waitlist Section - Better Spacing */
.waitlist-section {
    padding: 6rem 0;
}

/* Feature Sections - Consistent Spacing */
.features-section,
.about-section,
.demo-section {
    padding: 5rem 0;
}

/* Card Spacing - More Breathing Room */
.feature-card,
.use-case-card,
.contact-card {
    margin-bottom: 2rem;
}

/* CTA Sections - Better Spacing */
.cta-section,
.cta-box {
    margin: 4rem 0;
    padding: 3rem 2rem;
}

/* Form Spacing - Better Flow */
.form-group-stacked {
    gap: 1.25rem;
}

.form-input {
    margin-bottom: 0;
}

/* Alpha Info Box - Better Spacing */
.alpha-info {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
}

/* Founder CTA - Better Spacing */
.founder-cta {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* FAQ Spacing - More Readable */
.faq-minimal-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
}

/* Button Container Spacing */
.cta-center {
    margin-top: 2.5rem;
    gap: 1.25rem;
}

/* Mobile Spacing Adjustments */
@media (max-width: 640px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 5rem 0 4rem 0;
    }

    .cta-section,
    .cta-box {
        margin: 3rem 0;
        padding: 2rem 1.5rem;
    }

    .alpha-info,
    .founder-cta {
        margin-top: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Link Hover States - More Obvious */
a {
    transition: all 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent-orange);
    transform: translateY(-1px);
}

/* Footer Link Hovers */
.footer a:hover {
    color: var(--accent-orange);
}

/* Card Hover Effects - More Interactive */
.feature-card:hover,
.use-case-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(62, 59, 40, 0.15);
}

/* Better Visual Feedback for Interactive Elements */
button,
.btn,
a[href]:not(.logo) {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

button:active,
.btn:active {
    transform: scale(0.98);
}

/* ===== Twitter Video Embed (9:16 Aspect Ratio) ===== */
.twitter-video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 3rem auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.15);
    background: var(--white);
}

.twitter-video-container .twitter-tweet {
    margin: 0 auto !important;
}

/* Remove Twitter's default border for cleaner look */
.twitter-video-container iframe {
    border-radius: var(--radius-xl) !important;
}

/* Mobile adjustments for Twitter video */
@media (max-width: 640px) {
    .twitter-video-container {
        max-width: 100%;
        margin: 2rem auto 0;
        border-radius: var(--radius-lg);
    }
}

/* ===== Native Video Player (9:16 Aspect Ratio) ===== */
.video-player-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 3rem auto 0;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(62, 59, 40, 0.15);
}

.cady-video-player {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    background: #000;
}

.video-caption {
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-peach) 100%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.twitter-link,
.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.twitter-link:hover,
.youtube-link:hover {
    color: var(--accent-orange);
    gap: 0.75rem;
}

.twitter-link svg,
.youtube-link svg {
    transition: transform 0.2s ease;
}

.twitter-link:hover svg,
.youtube-link:hover svg {
    transform: scale(1.1);
}

/* Custom video controls styling */
.cady-video-player::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.cady-video-player::-webkit-media-controls-play-button {
    background-color: var(--accent-orange);
    border-radius: 50%;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .video-player-container {
        max-width: 100%;
        margin: 2rem auto 0;
        border-radius: var(--radius-lg);
    }
    
    .video-caption {
        padding: 0.875rem;
        gap: 1.5rem;
    }

    .twitter-link,
    .youtube-link {
        font-size: 0.875rem;
    }
}

/* ===== WAITLIST POPUP MODAL ===== */
.waitlist-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.waitlist-popup.active {
    opacity: 1;
    pointer-events: all;
}

.waitlist-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.waitlist-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

[data-theme="dark"] .waitlist-popup-content {
    background: var(--bg-card);
    color: var(--text-primary);
}

.waitlist-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-500);
    line-height: 1;
    padding: 0.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.waitlist-popup-close:hover {
    color: var(--primary-dark);
}

[data-theme="dark"] .waitlist-popup-close:hover {
    color: var(--text-primary);
}

.waitlist-popup-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 2rem;
}

[data-theme="dark"] .waitlist-popup-content h2 {
    color: var(--text-primary);
}

.waitlist-popup-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    font-size: 1.125rem;
}

[data-theme="dark"] .waitlist-popup-content p {
    color: var(--text-secondary);
}

.waitlist-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-popup-form input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

[data-theme="dark"] .waitlist-popup-form input {
    background: var(--bg-secondary);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.waitlist-popup-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

[data-theme="dark"] .waitlist-popup-form input:focus {
    border-color: var(--accent-dark-orange);
}

.waitlist-popup-note {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

[data-theme="dark"] .waitlist-popup-note {
    color: var(--text-tertiary);
}

.learn-more-link {
    color: var(--accent-orange);
    text-decoration: underline;
    cursor: pointer;
}

.learn-more-link:hover {
    color: var(--primary-dark);
}

[data-theme="dark"] .learn-more-link {
    color: var(--accent-dark-orange);
}

[data-theme="dark"] .learn-more-link:hover {
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .waitlist-popup-content {
        padding: 2rem 1.5rem;
    }

    .waitlist-popup-content h2 {
        font-size: 1.5rem;
    }

    .waitlist-popup-content p {
        font-size: 1rem;
    }
}

/* ===== EXIT-INTENT POPUP ===== */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-intent-popup.active {
    opacity: 1;
    pointer-events: all;
}

.exit-intent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.exit-intent-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

[data-theme="dark"] .exit-intent-content {
    background: var(--gray-800);
    color: var(--gray-100);
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-500);
    line-height: 1;
    padding: 0.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.exit-intent-close:hover {
    color: var(--primary-dark);
}

[data-theme="dark"] .exit-intent-close:hover {
    color: var(--gray-100);
}

.exit-intent-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-size: 2rem;
}

[data-theme="dark"] .exit-intent-content h2 {
    color: var(--gray-100);
}

.exit-intent-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    font-size: 1.125rem;
}

[data-theme="dark"] .exit-intent-content p {
    color: var(--gray-300);
}

.exit-intent-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.exit-intent-form input {
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

[data-theme="dark"] .exit-intent-form input {
    background: var(--gray-700);
    border-color: var(--gray-600);
    color: var(--gray-100);
}

.exit-intent-form input:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.exit-intent-small {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

[data-theme="dark"] .exit-intent-small {
    color: var(--gray-400);
}

@media (max-width: 640px) {
    .exit-intent-content {
        padding: 2rem 1.5rem;
    }

    .exit-intent-content h2 {
        font-size: 1.5rem;
    }

    .exit-intent-content p {
        font-size: 1rem;
    }
}

/* ===== STICKY CTA BUTTON ===== */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    transform: translateY(100px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 8px 24px rgba(232, 168, 97, 0.4);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    white-space: nowrap;
}

.sticky-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 168, 97, 0.5);
}

@media (max-width: 768px) {
    .sticky-cta {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 640px) {
    .sticky-cta {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: translateY(100px);
    }

    .sticky-cta.visible {
        transform: translateY(0);
    }

    .sticky-cta .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), #E8A861, var(--primary-peach));
    width: 0%;
    z-index: 9998;
    transition: width 0.1s ease;
}

[data-theme="dark"] .scroll-progress {
    background: linear-gradient(90deg, var(--accent-orange), #F6C28B, #FEF8E8);
}

/* ===== SOCIAL PROOF NOTIFICATIONS ===== */
.social-proof-notification {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9997;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 320px;
}

[data-theme="dark"] .social-proof-notification {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
}

.social-proof-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #7FB069;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.notification-text {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

[data-theme="dark"] .notification-text {
    color: var(--gray-200);
}

.notification-text strong {
    color: var(--primary-dark);
}

[data-theme="dark"] .notification-text strong {
    color: var(--gray-100);
}

.notification-time {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 640px) {
    .social-proof-notification {
        left: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
        bottom: 1rem;
    }
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9996;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .share-buttons {
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
}

.share-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    text-align: center;
}

[data-theme="dark"] .share-label {
    color: var(--gray-400);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

[data-theme="dark"] .share-btn {
    background: var(--gray-700);
    color: var(--gray-300);
}

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

.share-btn:hover {
    transform: translateX(-4px);
}

.share-twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-linkedin:hover {
    background: #0077B5;
    color: white;
}

.share-copy:hover {
    background: var(--accent-orange);
    color: white;
}

@media (max-width: 968px) {
    .share-buttons {
        right: 1rem;
        padding: 0.5rem 0.375rem;
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }

    .share-btn svg {
        width: 18px;
        height: 18px;
    }

    .share-label {
        font-size: 0.625rem;
    }
}

@media (max-width: 640px) {
    .share-buttons {
        display: none; /* Hide on mobile to reduce clutter */
    }
}

/* ===== SOCIAL PROOF COUNTER ===== */
.social-proof {
    display: none; /* Hidden by default, shown when count is fetched */
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-peach) 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-orange);
}

[data-theme="dark"] .social-proof {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-700) 100%);
    border-color: var(--accent-orange);
}

.social-proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-proof-icon {
    font-size: 1.5rem;
}

.social-proof-text {
    font-size: 1.125rem;
    color: var(--gray-700);
}

[data-theme="dark"] .social-proof-text {
    color: var(--gray-200);
}

.waitlist-count {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-family: 'Alegreya', serif;
}

.social-proof-subtext {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

[data-theme="dark"] .social-proof-subtext {
    color: var(--gray-400);
}

/* ===== SPINNER FOR LOADING STATES ===== */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ABOUT PAGE SECTION SEPARATION ===== */
.about-intro {
    background: var(--white);
    padding: 6rem 0;
}

[data-theme="dark"] .about-intro {
    background: var(--bg-primary);
}

.features-about {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    padding: 6rem 0;
    position: relative;
}

[data-theme="dark"] .features-about {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.features-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0.3;
}

.approach-simple {
    background: var(--white);
    padding: 6rem 0;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .approach-simple {
    background: var(--bg-primary);
    border-top-color: var(--border-subtle);
}

.why-section {
    background: var(--primary-light);
    padding: 7rem 0;
    position: relative;
}

[data-theme="dark"] .why-section {
    background: var(--bg-secondary);
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    opacity: 0.3;
}

.demo-video-section {
    background: var(--white);
    padding: 6rem 0;
}

[data-theme="dark"] .demo-video-section {
    background: var(--bg-primary);
}

.app-preview-section {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    padding: 6rem 0;
    border-top: 1px solid var(--gray-200);
}

[data-theme="dark"] .app-preview-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top-color: var(--border-subtle);
}

.team-section {
    background: var(--white);
    padding: 6rem 0;
}

[data-theme="dark"] .team-section {
    background: var(--bg-primary);
}

/* Add spacing between sections */
.about-intro,
.features-about,
.approach-simple,
.why-section,
.demo-video-section,
.app-preview-section,
.team-section {
    margin-bottom: 0;
}

/* Section titles on about page get more breathing room */
.about-intro h2,
.features-about h2,
.approach-simple h2,
.why-section h2,
.demo-video-section h2,
.app-preview-section h2,
.team-section h2 {
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .about-intro,
    .features-about,
    .approach-simple,
    .why-section,
    .demo-video-section,
    .app-preview-section,
    .team-section {
        padding: 4rem 0;
    }
}
