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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #e5e5e5;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Promo Bar ===== */
.promo-bar {
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    color: #999;
    letter-spacing: 0.01em;
}

.promo-bar strong { color: #fff; }
.promo-emoji { font-size: 14px; }

/* ===== Navigation ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
}

.nav-logo img { border-radius: 8px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 980px;
    padding: 4px 6px;
}

.nav-links a {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    border-radius: 980px;
    transition: color 0.25s, background 0.25s;
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-link-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-sale-badge {
    background: #fff;
    color: #000;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 980px;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: 0.01em;
}

.nav-cta:hover { background: #e5e5e5; transform: scale(0.98); }

.nav-burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

/* ===== Mobile Nav ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #111;
    border-left: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-nav-panel a {
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 500;
    color: #ccc;
    border-radius: 12px;
    transition: background 0.2s;
}

.mobile-nav-panel a:hover { background: rgba(255,255,255,0.06); }

.mobile-nav-cta {
    margin-top: 12px;
    background: #fff !important;
    color: #000 !important;
    text-align: center;
    font-weight: 600 !important;
    border-radius: 980px !important;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 44px;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    letter-spacing: -0.01em;
}

.btn-primary:hover { background: #e8e8e8; transform: scale(0.98); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 36px;
    border-radius: 980px;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
    transform: scale(0.98);
}

.btn-dark {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    opacity: 1;
}

.btn-primary:active, .btn-secondary:active, .btn-dark:active {
    transform: scale(0.96);
}

/* ===== Section Titles (Shared) ===== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 16px;
}

/* ===== Hero ===== */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero > .container { width: 100%; }

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-avatars { display: flex; }

.hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -8px;
    overflow: hidden;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stars { display: flex; gap: 1px; }

.star { color: #facc15; font-size: 15px; }

.hero-rating-text {
    font-size: 13px;
    color: #666;
}

.hero-title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #fff;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-accent {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #fff 30%, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 19px;
    color: #888;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-sub strong { color: #bbb; font-weight: 500; }

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-meta {
    font-size: 13px;
    color: #555;
    margin-bottom: 64px;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ===== Comparison Slider ===== */
.comparison {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 40px 120px -20px rgba(0,0,0,0.8);
    opacity: 0;
    animation: fadeUp 1s 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.comparison-before { position: relative; z-index: 1; width: 100%; }
.comparison-after { position: absolute; inset: 0; z-index: 2; clip-path: inset(0 0 0 50%); overflow: hidden; }

.comparison .screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.comparison-before .screenshot-placeholder { background: #0d0d0d; }
.comparison-after .screenshot-placeholder { position: absolute; inset: 0; background: #111; aspect-ratio: auto; }
.comparison .screenshot-placeholder small { font-size: 12px; font-weight: 400; color: #333; }

.comparison-image img { width: 100%; height: auto; display: block; }

.comparison-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2px;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.5); }

.comparison-handle-knob {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    flex-shrink: 0;
    pointer-events: auto;
}

/* ===== AI Banner ===== */
.ai-banner { padding: 80px 0 100px; }

.ai-banner-inner {
    background: linear-gradient(145deg, #f8f8f8, #f0f0f0);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    align-items: center;
    gap: 40px;
    padding: 48px 56px;
    color: #000;
}

.ai-banner-left { display: flex; flex-direction: column; gap: 8px; }

.ai-icon-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #888;
    margin-bottom: 8px;
}

.ai-banner-label { font-size: 18px; font-weight: 700; color: #000; letter-spacing: -0.02em; }
.ai-banner-link { font-size: 14px; font-style: italic; color: #666; text-decoration: underline; text-underline-offset: 3px; }
.ai-banner-link:hover { color: #000; }

.ai-banner-video { width: 220px; flex-shrink: 0; }

.video-placeholder {
    aspect-ratio: 16 / 10;
    background: #222;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover { transform: scale(1.02); }

.ai-banner-right h3 { font-size: 22px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: #000; letter-spacing: -0.02em; }
.ai-banner-right p { font-size: 15px; line-height: 1.65; color: #666; }
.ai-banner-right strong { color: #000; }

/* ===== Why This System Exists ===== */
.why {
    padding: 120px 0;
    background: #fafafa;
    color: #000;
    text-align: center;
}

.why-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.why-sub {
    font-size: 17px;
    color: #666;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.why-question {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 72px;
}

.why-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.why-card-icon { color: #000; margin-bottom: 20px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: #000; margin-bottom: 8px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: #888; line-height: 1.6; }

.why-cta { text-align: center; }
.why-cta-text { font-size: 17px; font-weight: 600; color: #000; margin-bottom: 24px; }

/* ===== Features ===== */
.features {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

.features-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000;
    letter-spacing: -0.03em;
}

.features-sub {
    text-align: center;
    font-size: 17px;
    color: #888;
    margin-bottom: 64px;
}

.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.feature-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #000; letter-spacing: -0.02em; }
.feature-card > p { font-size: 15px; color: #888; line-height: 1.65; margin-bottom: 24px; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.feature-tag {
    display: inline-block;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 980px;
    background: #fff;
    transition: border-color 0.2s;
}

.feature-tag:hover { border-color: #999; }

.feature-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #f0f0f0;
    border: 1px dashed #ddd;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 14px;
    font-weight: 500;
}

.feature-card-wide { margin-bottom: 16px; }

.feature-card-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.feature-card-text h3 { font-size: 28px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.feature-card-text > p { font-size: 16px; color: #888; line-height: 1.7; margin-bottom: 32px; }

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

.feature-list li {
    counter-increment: feature-counter;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 48px;
    position: relative;
    font-size: 15px;
    line-height: 1.55;
}

.feature-list li::before {
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #000;
}

.feature-list li strong { color: #000; }
.feature-list li span { color: #888; font-size: 14px; }

.feature-card-visual { position: relative; }
.feature-screenshot-tall { aspect-ratio: 10 / 13; }

.features-row-3 { grid-template-columns: repeat(3, 1fr); }

/* Dark card */
.feature-card-dark { background: #0a0a0a; border-color: #1a1a1a; color: #e5e5e5; }
.feature-card-dark:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feature-card-dark h3 { color: #fff; }
.feature-card-dark > p, .feature-card-dark .feature-card-text > p { color: #888; }
.feature-card-dark .feature-list li strong { color: #ddd; }
.feature-card-dark .feature-list li span { color: #888; }
.feature-card-dark .feature-list li::before { background: #1a1a1a; border-color: #333; color: #ddd; }
.feature-card-dark .feature-screenshot-placeholder { background: #111; border-color: #222; color: #444; }

.feature-note { margin-top: 28px; font-size: 13px; font-style: italic; color: #666; }

/* ===== How It Works ===== */
.how-it-works {
    padding: 120px 0;
    background: #fafafa;
    color: #000;
    text-align: center;
}

.how-it-works-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 64px;
    color: #000;
    letter-spacing: -0.03em;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 72px;
}

.how-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.how-card:hover { transform: translateY(-4px); }

.how-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #eee;
    border-radius: 980px;
    background: #fafafa;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.how-card-badge span { font-size: 16px; }
.how-card p { font-size: 15px; color: #666; line-height: 1.6; margin-bottom: 28px; }
.how-card .feature-screenshot-placeholder { margin-top: auto; aspect-ratio: 4 / 3; }

.how-cta { text-align: center; }
.how-cta-text { font-size: 17px; color: #666; margin-bottom: 28px; line-height: 1.6; }

/* ===== AI Results ===== */
.ai-results {
    padding: 120px 0;
    background: #fff;
    color: #000;
}

.ai-results-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.ai-results-sub { text-align: center; font-size: 17px; color: #888; margin-bottom: 64px; }

.ai-results-list { display: flex; flex-direction: column; }

.ai-result {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0;
    border-top: 1px solid #eee;
}

.ai-result:last-child { border-bottom: 1px solid #eee; }

.ai-result-stat { display: flex; flex-direction: column; }
.ai-result-number { font-size: 72px; font-weight: 700; line-height: 1; color: #000; letter-spacing: -0.04em; }
.ai-result-label { font-size: 14px; color: #999; margin-top: 4px; }

.ai-result-content h4 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: #000; letter-spacing: -0.02em; }
.ai-result-content > p { font-size: 16px; font-style: italic; color: #666; line-height: 1.7; margin-bottom: 24px; }

.ai-result-author { display: flex; align-items: center; gap: 12px; }

.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    flex-shrink: 0;
}

.ai-result-author strong { display: block; font-size: 14px; color: #000; }
.ai-result-author span { font-size: 13px; color: #999; }

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: #fafafa;
    color: #000;
    text-align: center;
}

.testimonials-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.testimonials-sub { font-size: 17px; color: #888; margin-bottom: 64px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
    text-align: left;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-2px); }

.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.testimonial-header strong { display: block; font-size: 14px; color: #000; }
.testimonial-stars { color: #22c55e; font-size: 14px; letter-spacing: 2px; }
.testimonial-card h4 { font-size: 17px; font-weight: 700; color: #000; margin-bottom: 8px; letter-spacing: -0.01em; }
.testimonial-card > p { font-size: 14px; font-style: italic; color: #888; line-height: 1.65; }

.testimonials-cta { text-align: center; }
.testimonials-cta-text { font-size: 16px; font-weight: 600; color: #000; margin-bottom: 24px; }

/* ===== Pricing ===== */
.pricing {
    padding: 120px 0;
    background: #fff;
    color: #000;
    text-align: center;
}

.pricing-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.pricing-sub { font-size: 17px; color: #888; margin-bottom: 64px; }

.pricing-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 28px;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    text-align: left;
}

.pricing-card-left h3 { font-size: 32px; font-weight: 700; margin-bottom: 16px; color: #000; line-height: 1.15; letter-spacing: -0.02em; }

.notion-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    vertical-align: middle;
}

.pricing-desc { font-size: 16px; color: #888; line-height: 1.65; margin-bottom: 32px; }

.pricing-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.pricing-old { font-size: 28px; font-weight: 600; color: #bbb; text-decoration: line-through; }
.pricing-current { font-size: 56px; font-weight: 700; color: #22c55e; letter-spacing: -0.03em; }

.pricing-discount { font-size: 14px; color: #666; margin-bottom: 4px; }

.pricing-code {
    display: inline-block;
    padding: 2px 10px;
    border: 1.5px dashed #ccc;
    border-radius: 6px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #fff;
}

.pricing-limited { font-size: 13px; color: #bbb; font-style: italic; margin-bottom: 28px; }

.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.pricing-feature { font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px; }
.check { color: #22c55e; font-weight: 700; font-size: 16px; }

.pricing-ai-note { font-size: 12px; color: #bbb; font-style: italic; margin-bottom: 32px; }

.pricing-btn { padding: 18px 36px; font-size: 17px; margin-bottom: 16px; }
.pricing-crypto { font-size: 14px; color: #666; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.pricing-crypto a { text-decoration: underline; text-underline-offset: 3px; }
.pricing-social-proof { font-size: 13px; color: #bbb; }
.pricing-card-right { display: flex; align-items: center; }

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: #fafafa;
    color: #000;
    text-align: center;
}

.faq-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.faq-sub { font-size: 17px; color: #888; margin-bottom: 64px; }

.faq-list {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
}

.faq-item { border-bottom: 1px solid #e5e5e5; }

.faq-item summary {
    padding: 24px 0;
    font-size: 17px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.faq-item summary:hover { color: #666; }

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #ccc;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '×'; transform: rotate(0deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 24px; font-size: 16px; color: #666; line-height: 1.7; }

.faq-disclaimer { font-size: 13px; color: #bbb; text-align: center; line-height: 1.6; }

/* ===== Legal Pages ===== */
.legal {
    padding: 120px 0 80px;
    background: #fafafa;
    color: #000;
}

.legal-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: #000;
}

.legal-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 48px;
}

.legal-body {
    max-width: 720px;
}

.legal-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
    margin: 48px 0 16px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 0 0 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-body li {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.legal-body li strong { color: #000; }

.legal-body a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.legal-body a:hover { color: #666; }

/* ===== Free Journal Landing ===== */
.free-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: center;
}

.free-hero .section-label { margin-bottom: 20px; }

.free-hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.free-hero-sub {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 40px;
}

/* Email Form */
.free-form {
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 auto 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.free-form:focus-within {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.free-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    color: #000;
    background: transparent;
    font-family: inherit;
}

.free-form input::placeholder { color: #aaa; }

.free-form .btn-dark {
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Trust Signals */
.free-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.free-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

/* Social Proof */
.free-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.free-avatars {
    display: flex;
}

.free-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}

.free-avatar:first-child { margin-left: 0; }

.free-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.free-stars {
    display: flex;
    gap: 2px;
}

.free-rating-text {
    font-size: 13px;
    color: #888;
}

/* Screenshot */
.free-screenshot {
    max-width: 900px;
    margin: 0 auto;
}

.free-screenshot img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Light nav for free page */
.free-hero ~ .footer { background: #fff; border-top-color: #eee; }

/* ===== Footer ===== */
.footer {
    padding: 64px 0;
    background: #fafafa;
    border-top: 1px solid #eee;
    color: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
}

.footer-logo { border-radius: 12px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #555; margin-bottom: 8px; line-height: 1.5; }
.footer-copy { font-size: 13px; color: #bbb; line-height: 1.5; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-socials a:hover { opacity: 0.6; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: #000; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 14px; color: #888; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: #000; }

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.sticky-cta-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

/* ===== Pricing Guarantee ===== */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.pricing-guarantee svg { color: #22c55e; flex-shrink: 0; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }

    .hero { padding: 64px 0 48px; min-height: auto; }
    .hero-title { font-size: 36px; }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }

    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }

    .btn-primary { font-size: 16px; padding: 16px 32px; }
    .btn-secondary { font-size: 16px; padding: 16px 28px; }

    .ai-banner { padding: 48px 0 64px; }
    .ai-banner-inner { grid-template-columns: 1fr; padding: 28px; gap: 28px; text-align: center; }
    .ai-banner-left { align-items: center; }
    .ai-banner-video { width: 100%; }
    .ai-icon-placeholder { margin: 0 auto 8px; }

    .why, .features, .how-it-works, .ai-results, .testimonials, .pricing, .faq { padding: 72px 0; }

    .why-title, .features-title, .how-it-works-title,
    .ai-results-title, .testimonials-title, .pricing-title { font-size: 28px; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .why-card { padding: 28px 20px; }

    .features-row { grid-template-columns: 1fr; }
    .features-row-3 { grid-template-columns: 1fr; }
    .feature-card { padding: 28px 24px; }
    .feature-card h3 { font-size: 20px; }
    .feature-card-split { grid-template-columns: 1fr; gap: 28px; }
    .feature-card-text h3 { font-size: 24px; }
    .feature-screenshot-tall { aspect-ratio: 16 / 10; }

    .ai-result { grid-template-columns: 80px 1fr; gap: 20px; padding: 28px 0; }
    .ai-result-number { font-size: 40px; }
    .ai-result-content h4 { font-size: 18px; }
    .ai-result-content > p { font-size: 14px; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 24px 20px; }

    .how-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .pricing-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
    .pricing-card-left h3 { font-size: 26px; }
    .pricing-features { grid-template-columns: 1fr; }
    .pricing-current { font-size: 44px; }

    .faq-title { font-size: 24px; }
    .faq-title br { display: none; }
    .faq-item summary { font-size: 15px; padding: 20px 0; }
    .faq-item p { font-size: 14px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .legal { padding: 80px 0 64px; }
    .legal-title { font-size: 28px; }
    .legal-body h2 { font-size: 19px; margin-top: 36px; }

    /* Free Journal */
    .free-hero { padding: 80px 0 48px; }
    .free-form { flex-direction: column; gap: 8px; padding: 8px; }
    .free-form input { text-align: center; }
    .free-form .btn-dark { width: 100%; padding: 16px; }
    .free-trust { flex-direction: column; gap: 12px; }

    /* Sticky CTA on mobile */
    .sticky-cta { display: block; }
    body { padding-bottom: 80px; }

    /* Reduce reveal distance on mobile */
    .reveal { transform: translateY(20px); }
    .reveal-stagger > * { transform: translateY(16px); }
}

@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 30px; }
    .hero-proof { flex-direction: column; gap: 8px; }

    /* Free Journal */
    .free-hero-title { font-size: 28px; }
    .free-hero-sub { font-size: 15px; }
    .free-proof { flex-direction: column; gap: 8px; }
}
