/* Updated: 2025-12-13 v32 - macOS banner with improved modal alignment */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

* {
    max-width: 100%;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

:root {
    /* Colors - Warm, crafted palette */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --secondary: #64748b;
    --dark: #1e1b4b;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --white: #ffffff;
    --success: #059669;
    --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --gradient-warm: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    --gradient-subtle: linear-gradient(180deg, #faf5ff 0%, #f5f3ff 50%, #ede9fe 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-padding: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Shadows - More depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: #ffffff;
    background-image:
        linear-gradient(90deg, rgb(243 244 246 / .5) 1px, transparent 0),
        linear-gradient(180deg, rgb(243 244 246 / .5) 1px, transparent 0);
    background-size: 20px 20px;
    overflow-x: hidden;
}


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

body.banner-visible .navbar {
    top: 50px;
}

/* Navbar stays at top, promo strip goes below it */
body.promo-visible .navbar {
    top: 0;
}

.navbar .container {
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 72px;
    width: 100% !important;
    position: relative;
}

.logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--dark);
    text-decoration: none;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
}

.logo-svg {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-link:first-child {
    margin-left: auto;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.navbar .btn-primary {
    margin-left: auto !important;
    margin-right: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 8px;
    margin-right: -8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.3s;
    display: block;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-1px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section - Clean minimal design */
.hero {
    background-image: linear-gradient(90deg, rgb(243 244 246 / .5) 1px, transparent 0), linear-gradient(180deg, rgb(243 244 246 /
   .5) 1px, transparent 0) !important;
    background-size: 20px 20px !important;
    padding: 80px 0 100px;
    background: var(--white);
    position: relative;
    margin-top: 72px;
}

body.banner-visible .hero {
    margin-top: 122px;
}

body.promo-visible .hero {
    margin-top: 108px; /* 72px navbar + 36px promo strip */
}

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

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 19px;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
}

.btn-primary.btn-hero {
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
}

.guarantee-badge svg {
    color: var(--success);
    flex-shrink: 0;
}

.trust-signals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}

.trust-item .check-icon {
    color: var(--success);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.platform-note {
    color: var(--gray-400);
    font-size: 13px;
    margin-top: 4px;
}

/* Hide badge on hero for cleaner look */
.hero .badge {
    display: none;
}

.signup-note {
    display: none;
}

/* Before/After Showcase */
.before-after-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    max-width: 900px;
    margin: 24px auto 0;
    box-shadow: var(--shadow-xl);
}

.rename-example {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.filename-before,
.filename-after {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-family: 'Monaco', 'Courier New', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filename-before {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    flex: 1;
    min-width: 0;
}

.filename-after {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    flex: 1.2;
    min-width: 0;
}

.filename-before .filename,
.filename-after .filename {
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-icon {
    flex-shrink: 0;
    font-size: 14px;
}

.rename-arrow {
    color: var(--gray-400);
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .before-after-showcase {
        padding: 16px;
    }

    .rename-example {
        flex-direction: column;
        gap: 8px;
    }

    .filename-before,
    .filename-after {
        width: 100%;
        font-size: 11px;
    }

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

.guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.check-icon {
    color: var(--success);
    flex-shrink: 0;
}

/* macOS Banner */
.macos-banner {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 0;
    border-bottom: 1px solid var(--gray-200);
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.macos-banner > .container {
    position: relative;
}

.macos-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-right: 40px;
    width: 100%;
}

.macos-icon-simple {
    flex-shrink: 0;
    color: var(--gray-700);
    margin-right: 10px;
}

.macos-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 100%;
}

.macos-message {
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.macos-launch {
    color: var(--dark);
    font-weight: 600;
}

.macos-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.macos-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.macos-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    z-index: 10;
}

.macos-close svg {
    width: 10px;
    height: 10px;
}

.macos-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--gray-800);
}

.macos-close:active {
    transform: translateY(-50%) scale(0.95);
}

.macos-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .macos-banner {
        height: auto;
        min-height: 50px;
        padding: 10px 0;
    }

    .macos-banner .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .macos-banner-content {
        flex-direction: row;
        gap: 8px;
        position: relative;
        padding-right: 32px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .macos-icon-simple {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

    .macos-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .macos-message {
        font-size: 12px;
        white-space: normal;
        line-height: 1.3;
    }

    .macos-link {
        font-size: 12px;
    }

    .macos-close {
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        padding: 6px;
        background: rgba(255, 255, 255, 0.95);
    }

    .macos-close svg {
        width: 14px;
        height: 14px;
    }

    .macos-close:active {
        transform: translateY(-50%) scale(0.95);
    }
}

/* ============================================
   END OF YEAR PROMO STRIP (Homepage)
   ============================================ */

.promo-strip {
    display: block;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    padding: 0.4rem 1rem;
    text-decoration: none;
    position: fixed;
    top: 72px; /* Below navbar */
    left: 0;
    right: 0;
    z-index: 999;
    overflow: hidden;
    border-bottom: 2px solid #fbbf24;
}

.promo-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: promo-shimmer 3s infinite;
}

@keyframes promo-shimmer {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.promo-strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.promo-strip-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e1b4b;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.promo-strip-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.promo-strip-text strong {
    color: #fbbf24;
    font-weight: 700;
}

.promo-strip-price {
    color: #a5b4fc;
}

.promo-strip-price s {
    color: #9ca3af;
    margin-right: 0.25rem;
}

.promo-strip-timer {
    font-family: 'Inter', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 0.375rem;
    letter-spacing: 0.5px;
}

.promo-strip-timer span {
    color: white;
}

.promo-strip-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-strip:hover .promo-strip-cta {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    .promo-strip {
        padding: 0.5rem 0.75rem;
    }

    .promo-strip-content {
        gap: 0.5rem;
        justify-content: center;
    }

    .promo-strip-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    .promo-strip-text {
        font-size: 0.75rem;
        text-align: center;
    }

    .promo-strip-timer {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .promo-strip-cta {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .promo-strip-content {
        flex-direction: column;
        gap: 0.4rem;
    }

    .promo-strip-text {
        order: 1;
    }

    .promo-strip-badge {
        order: 0;
    }

    .promo-strip-timer,
    .promo-strip-cta {
        order: 2;
    }
}

.hero-visual {
    max-width: 900px;
    margin: 40px auto 0;
}

.demo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.demo-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.demo-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
}

.demo-content {
    padding: 32px;
}

.file-rename {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.file-item.before {
    color: var(--gray-500);
}

.file-item.after {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-color: var(--primary);
    color: var(--primary);
}

.file-item svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.file-item span {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 500;
}

.arrow {
    font-size: 24px;
    color: var(--gray-400);
}

/* Hero Video */
.hero-video-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Sections */
.section {
    padding: var(--section-padding);
}

/* Unique section backgrounds */
.section:not(.gray-bg) {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.gray-bg {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--card-padding);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.feature-card {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 24px 24px;
    border: 1px solid var(--gray-200);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Template Showcase */
.template-showcase {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.template-example {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.template-pattern,
.template-result {
    padding: 16px 24px;
    border-radius: var(--radius-md);
}

.template-pattern {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
}

.template-result {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border: 1px solid var(--primary);
}

.pattern-text,
.result-text {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 500;
}

.pattern-text {
    color: var(--gray-700);
}

.result-text {
    color: var(--primary);
}

.template-arrow {
    font-size: 24px;
    color: var(--gray-400);
}

.template-features {
    display: grid;
    gap: 16px;
}

.template-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 15px;
}

/* AI Options */
.ai-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-option {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.ai-option:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-option {
    border-color: var(--primary);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.ai-option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.ai-icon {
    font-size: 48px;
    margin-bottom: 8px;
    color: var(--primary);
}

.ai-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
}

.ai-option-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.badge-pill {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pill.popular {
    background: var(--primary);
    color: var(--white);
}

.ai-option-description {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
    font-size: 15px;
}

/* Vision Features */
.vision-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vision-icon {
    font-size: 32px;
}

.vision-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.vision-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Custom Prompts */
.prompt-showcase {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.prompt-editor {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.editor-header {
    background: var(--gray-800);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-700);
}

.editor-title {
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 500;
}

.editor-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    padding: 4px 12px;
    background: transparent;
    color: var(--gray-500);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn.active {
    background: var(--primary);
    color: var(--white);
}

.editor-content {
    padding: 24px;
}

.prompt-code {
    display: block;
    color: #e6edf3;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
}

.prompt-variables {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.prompt-variables h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.variable-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.variable-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.variable-item code {
    background: var(--gray-100);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    display: inline-block;
    width: fit-content;
}

.variable-item span {
    color: var(--gray-600);
    font-size: 13px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-500);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
}

.period {
    font-size: 18px;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-note {
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.8;
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-input {
    flex: 1;
    min-width: 280px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
    transition: all 0.2s;
}

.waitlist-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.waitlist-input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-message {
    margin-top: 20px;
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    text-align: center;
    animation: slideIn 0.3s ease;
    transition: opacity 0.3s ease;
}

.waitlist-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid rgba(16, 185, 129, 0.5);
    color: var(--white);
}

.waitlist-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.5);
    color: var(--white);
}

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

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.author-role {
    color: var(--gray-500);
    font-size: 13px;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 60px 0 24px;
}

.footer .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-links {
    display: contents;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    margin-bottom: 16px !important;
    display: block !important;
    /* margin-left: -24px !important; */
    padding-left: 0 !important;
}

.footer-brand .logo-svg {
    height: 40px !important;
    width: auto !important;
    display: block !important;
    filter: invert(1) !important;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-column h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 122px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 16px;
        max-height: calc(100vh - 122px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 0;
    }

    body.banner-hidden .nav-links {
        top: 72px;
        max-height: calc(100vh - 72px);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-200);
    }

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

    .nav-links .btn-primary {
        width: 100%;
        margin-top: 8px;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        flex-shrink: 0;
        -webkit-user-select: none;
        user-select: none;
    }

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

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

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

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

    .container {
        padding: 0 16px;
        max-width: 100vw;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }

    .navbar {
        width: 100vw;
        max-width: 100%;
    }

    .navbar .container {
        max-width: 100vw !important;
        width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        margin: 0 auto;
    }

    .nav-content {
        width: 100% !important;
        max-width: 100%;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo {
        flex-shrink: 0;
    }

    .section {
        padding: 40px 0;
        width: 100%;
        max-width: 100vw;
    }

    .section-header h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .btn-primary.btn-hero,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

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

    .file-rename {
        flex-direction: column;
    }

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

    .template-example {
        flex-direction: column;
    }

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

    .template-pattern,
    .template-result {
        padding: 12px 16px;
    }

    .pattern-text,
    .result-text {
        font-size: 13px;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    .pricing-grid,
    .pricing-grid-three {
        grid-template-columns: 1fr;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

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

    .ai-options {
        grid-template-columns: 1fr;
    }

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

    .prompt-showcase {
        grid-template-columns: 1fr;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .waitlist-input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 14px;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }

    .card {
        padding: 20px;
    }

    .nav-links {
        padding: 16px;
    }
}

/* macOS Subscribe Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 420px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    padding-right: 16px;
    line-height: 1.4;
    flex: 1;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-600);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input {
    padding: 10px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.subscribe-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    text-align: center;
    display: none;
}

.subscribe-message.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.subscribe-message.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 24px;
        width: 95%;
    }

    .modal-header h3 {
        font-size: 18px;
    }
}
