
        :root {
            --error-red: #DC2626;
            --success-green: #059669;
            --paper: #FFFEF9;
            --ink: #1A1A1A;
            --accent: #F59E0B;
            --border: #D4D4D4;
            --shadow: rgba(0, 0, 0, 0.08);
        }

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

        body {
            font-family: 'Crimson Pro', serif;
            background: var(--paper);
            color: var(--ink);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Decorative paper texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.01) 2px, rgba(0,0,0,.01) 4px);
            pointer-events: none;
            z-index: 9999;
        }

        /* Hero Section - Editorial Style */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: 'REJECTED';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-12deg);
            font-size: clamp(8rem, 25vw, 20rem);
            font-weight: 800;
            color: var(--error-red);
            opacity: 0.03;
            z-index: 0;
            letter-spacing: -0.02em;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out;
        }

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

        .error-stamp {
            display: inline-block;
            border: 4px solid var(--error-red);
            color: var(--error-red);
            padding: 0.5rem 1.5rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transform: rotate(-2deg);
            margin-bottom: 2rem;
            animation: stamp 0.3s ease-out 0.5s both;
        }

        @keyframes stamp {
            0% {
                transform: rotate(-2deg) scale(0.8);
                opacity: 0;
            }
            50% {
                transform: rotate(-2deg) scale(1.05);
            }
            100% {
                transform: rotate(-2deg) scale(1);
                opacity: 1;
            }
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .highlight {
            color: var(--error-red);
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0.1em;
            left: -0.1em;
            right: -0.1em;
            height: 0.4em;
            background: var(--accent);
            opacity: 0.3;
            z-index: -1;
        }

        .subheading {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-bottom: 2rem;
            color: #4B5563;
            font-weight: 400;
        }

        .cta-container {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--ink);
            color: var(--paper);
            padding: 1.25rem 2.5rem;
            text-decoration: none;
            font-size: 1.25rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease;
            font-family: 'Crimson Pro', serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        .cta-button:active {
            transform: translateY(0);
        }

        /* Problem Section - Manuscript Style */
        .problem {
            background: white;
            padding: 6rem 2rem;
            position: relative;
        }

        .problem::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border);
        }

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

        .section-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #9CA3AF;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2.5rem;
            letter-spacing: -0.01em;
        }

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

        .error-card {
            border: 2px solid var(--border);
            padding: 2rem;
            background: var(--paper);
            position: relative;
            transition: all 0.3s ease;
        }

        .error-card:hover {
            border-color: var(--error-red);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px var(--shadow);
        }

        .error-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .error-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--error-red);
        }

        .error-card p {
            font-size: 1.1rem;
            color: #4B5563;
            line-height: 1.7;
        }

        /* Solution Section - Clean Editorial */
        .solution {
            background: var(--ink);
            color: var(--paper);
            padding: 6rem 2rem;
            position: relative;
        }

        .solution h2 {
            color: var(--paper);
        }

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

        .feature {
            animation: fadeIn 0.6s ease-out both;
        }

        .feature:nth-child(1) { animation-delay: 0.1s; }
        .feature:nth-child(2) { animation-delay: 0.2s; }
        .feature:nth-child(3) { animation-delay: 0.3s; }

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

        .feature-number {
            font-family: 'DM Mono', monospace;
            font-size: 3rem;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 1rem;
            line-height: 1;
        }

        .feature h3 {
            font-size: 1.75rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, white 0%, var(--paper) 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .price-card {
            background: white;
            border: 3px solid var(--border);
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .price-card.featured {
            border-color: var(--success-green);
            transform: scale(1.05);
            box-shadow: 0 20px 40px var(--shadow);
        }

        .price-card.featured::before {
            content: 'BEST VALUE';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success-green);
            color: white;
            padding: 0.5rem 1.5rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

        .price-card:not(.featured):hover {
            border-color: var(--accent);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px var(--shadow);
        }

        .guide-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            align-self: flex-start;
        }

        .price-card.featured .guide-badge {
            background: var(--success-green);
        }

        .price-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .price-card .subtext {
            font-size: 1rem;
            color: #6B7280;
            margin-bottom: 2rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .price-display {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
        }

        .price-original {
            font-size: 1.5rem;
            color: #9CA3AF;
            text-decoration: line-through;
        }

        .price-savings {
            display: inline-block;
            background: #FEE2E2;
            color: var(--error-red);
            padding: 0.25rem 0.75rem;
            font-family: 'DM Mono', monospace;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .guide-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .guide-features li {
            padding: 0.5rem 0;
            font-size: 1rem;
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }

        .guide-features li::before {
            content: '✓';
            color: var(--success-green);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .buy-button {
            display: block;
            width: 100%;
            background: var(--ink);
            color: var(--paper);
            padding: 1rem 2rem;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s ease;
            font-family: 'Crimson Pro', serif;
            margin-top: 1.5rem;
        }

        .buy-button:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        .price-card.featured .buy-button {
            background: var(--success-green);
            font-size: 1.2rem;
            padding: 1.25rem 2rem;
        }

        .price-card.featured .buy-button:hover {
            background: #047857;
        }

        /* Preview Section */
        .preview {
            padding: 6rem 2rem;
            background: white;
        }

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

        .page-card {
            background: var(--paper);
            border: 1px solid var(--border);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .page-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--accent), var(--success-green));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .page-card:hover::before {
            opacity: 1;
        }

        .page-card:hover {
            border-color: transparent;
            transform: translateY(-4px);
        }

        .page-number {
            font-family: 'DM Mono', monospace;
            font-size: 0.9rem;
            color: var(--accent);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .page-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .page-card p {
            font-size: 1rem;
            color: #6B7280;
            line-height: 1.6;
        }

        /* Social Proof */
        .social-proof {
            background: var(--paper);
            padding: 4rem 2rem;
            text-align: center;
        }

        .stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--success-green);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-family: 'DM Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #6B7280;
        }

        /* Final CTA */
        .final-cta {
            background: var(--error-red);
            color: white;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '⚠';
            position: absolute;
            font-size: 30rem;
            opacity: 0.05;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .final-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.5rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta .cta-button {
            background: white;
            color: var(--error-red);
            font-size: 1.5rem;
            padding: 1.5rem 3rem;
        }

        .final-cta .cta-button:hover {
            background: var(--paper);
        }

        /* Footer */
        footer {
            background: var(--ink);
            color: var(--paper);
            padding: 3rem 2rem;
            text-align: center;
        }

        footer p {
            opacity: 0.7;
            font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cta-container {
                flex-direction: column;
                align-items: stretch;
            }

            .cta-button {
                justify-content: center;
            }

            .stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

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

            .price-card.featured {
                transform: scale(1);
            }
        }

        /* Scroll animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
    
/* --- Added for multi-page site --- */
.site-header{position:sticky;top:0;z-index:1000;background:rgba(10,17,35,.9);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.08)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 24px;max-width:1100px;margin:0 auto}
.brand{display:flex;align-items:center;gap:10px;color:#fff;text-decoration:none;font-weight:800;letter-spacing:.2px}
.brand img{width:32px;height:32px;border-radius:8px}
.nav-links{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
.nav-links a{color:rgba(255,255,255,.85);text-decoration:none;font-weight:600;font-size:14px}
.nav-links a:hover{color:#fff}
.nav-cta{padding:10px 14px;border-radius:999px;background:linear-gradient(135deg,#ff6b35,#ff3f8e);color:#fff !important}
.breadcrumbs{max-width:1100px;margin:18px auto 0;padding:0 24px;color:#4B5563;font-size:13px}
.breadcrumbs a{color:#111827;text-decoration:none}
.page-hero{padding:56px 0 24px}
.page-hero h1{font-size:44px;line-height:1.05;margin:10px 0 10px}
.page-hero p{max-width:820px}
.article{max-width:900px;margin:0 auto;padding:0 24px 60px}
.article h2{margin-top:34px}
.card{background:#ffffff;border:1px solid var(--border);border-radius:18px;padding:18px;margin:18px 0}

/* Ensure lists inside cards have readable indentation (reset removes default list padding) */
.article ul, .article ol{
  padding-left: 1.25rem;
  margin: 0.75rem 0 0.25rem;
}
.article li{ margin: 0.35rem 0; }
.card ul, .card ol{
  padding-left: 1.25rem;
  margin: 0.25rem 0;
}

.callout{border-left:4px solid rgba(255,107,53,.9)}
.kpi{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
.kpi .card{padding:16px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid var(--border);padding:10px 8px;text-align:left}
.input{width:100%;padding:12px 14px;border-radius:12px;border:1px solid var(--border);background:#fff;color:var(--ink)}
label{display:block;margin:10px 0 6px;font-weight:700;color:var(--ink)}
.small{font-size:13px;color:#6B7280}
.footer-links{display:flex;flex-wrap:wrap;gap:14px;justify-content:center}
.footer-links a{color:rgba(255,255,255,.8);text-decoration:none}
.footer-links a:hover{color:#fff}
/* Make anchors scroll nicely under sticky header */
:target{scroll-margin-top:90px}


/* Free vs Bundle comparison */
.compare{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}
.compare-col{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.6);
}
@media (min-width: 860px){
  .compare{ grid-template-columns: 1fr 1fr; }
}



/* Bundle micro-callout under featured pricing CTA */
.bundle-callout{
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.65);
}
.price-card.featured .bundle-callout{
  color: rgba(0,0,0,0.7);
  font-weight: 600;
}


/* --- Conversion helpers on pricing --- */
.pricing-trust{
  margin-top: .5rem;
  color: var(--muted-ink);
  font-size: 0.98rem;
}
.cta-reassure{
  margin: .6rem 0 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
}
.micro-upsell{
  margin: .4rem 0 0;
  font-size: 0.95rem;
}
.micro-upsell a{
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.price-card.featured .buy-button{
  font-size: 1.28rem;
  padding: 1.35rem 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}
.price-card.featured{
  border-width: 2px;
}
.compare-note{
  margin: .35rem 0 .6rem;
  color: var(--muted-ink);
  font-size: .95rem;
}

/* Left-aligned bundle micro-upsell for cards */
.bundle-callout.left{ text-align:left; margin-top:0.5rem; }
