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

        /* Skip to content link for keyboard accessibility */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.5rem;
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            z-index: 10000;
            border-radius: 0 0 4px 4px;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 0;
        }

        :root {
            --primary: #1a1a1a;
            --accent: #ff6b35;
            --secondary: #f7931e;
            --light: #f5f5f0;
            --text: #2d2d2d;
            --rail-blue: #004e89;
            --border-blue: var(--border-blue);
            --border-accent: var(--border-accent);
            --text-muted: #555;
        }

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

        /* Subpage Navigation (top-nav) */
        .top-nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 1rem;
        }

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

        .nav-logo-center img {
            height: 45px;
            width: auto;
            transition: opacity 0.3s ease;
        }

        .nav-logo-center img:hover {
            opacity: 0.8;
        }

        .back-link {
            color: var(--accent);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: var(--secondary);
        }

        .back-link::before {
            content: '← ';
        }

        /* Subpage Share Dropdown */
        .top-nav .share-dropdown {
            position: relative;
            justify-self: end;
        }

        .top-nav .share-toggle {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .top-nav .share-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .top-nav .share-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .top-nav .share-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 15px;
            width: 12px;
            height: 12px;
            background: white;
            transform: rotate(45deg);
        }

        .top-nav .share-menu-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.2rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Crimson Pro', serif;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .top-nav .share-menu-item:last-child {
            border-bottom: none;
        }

        .top-nav .share-menu-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .top-nav .share-menu-item:last-child {
            border-radius: 0 0 8px 8px;
        }

        .top-nav .share-menu-item:hover {
            background: var(--light);
            padding-left: 1.5rem;
        }

        .top-nav .share-menu-item i {
            width: 20px;
            font-size: 1rem;
        }

        .top-nav .share-menu-item:nth-child(1):hover { color: #1DA1F2; }
        .top-nav .share-menu-item:nth-child(2):hover { color: #1877F2; }
        .top-nav .share-menu-item:nth-child(3):hover { color: #0A66C2; }
        .top-nav .share-menu-item:nth-child(4):hover { color: #25D366; }
        .top-nav .share-menu-item:nth-child(5):hover { color: #666; }

        /* Subpage mobile nav overrides */
        @media (max-width: 768px) {
            .top-nav {
                padding: 0.75rem 1rem;
            }

            .back-link {
                font-size: 0.8rem;
            }

            .share-buttons {
                gap: 0.3rem;
            }

            .share-btn {
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .top-nav {
                padding: 0.5rem 1rem;
            }
        }

        /* Homepage Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            z-index: 1001;
        }

        .nav-logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .nav-logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-logo a:hover img {
            transform: scale(1.05);
        }

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

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--light);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

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

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

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

        /* Nav Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 3rem;
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

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

        /* CTA Button in Nav - Get the Book */
        nav li:nth-child(7) a {
            background: var(--secondary);
            padding: 0.6rem 1.5rem;
            border-radius: 4px;
            font-weight: 700;
            border: 2px solid var(--secondary);
        }

        nav li:nth-child(7) a:hover {
            background: transparent;
            color: var(--secondary);
            border-color: var(--secondary);
        }

        /* Share Dropdown */
        .share-dropdown {
            position: relative;
        }

        .share-toggle {
            background: transparent;
            border: 2px solid var(--light);
            color: var(--light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .share-toggle:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.1);
        }

        .share-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

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

        .share-menu::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 15px;
            width: 12px;
            height: 12px;
            background: white;
            transform: rotate(45deg);
        }

        .share-menu-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.2rem;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
            font-family: 'Crimson Pro', serif;
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .share-menu-item:last-child {
            border-bottom: none;
        }

        .share-menu-item:first-child {
            border-radius: 8px 8px 0 0;
        }

        .share-menu-item:last-child {
            border-radius: 0 0 8px 8px;
        }

        .share-menu-item:hover {
            background: var(--light);
            padding-left: 1.5rem;
        }

        .share-menu-item i {
            width: 20px;
            font-size: 1rem;
        }

        .share-menu-item:nth-child(1):hover { color: #1DA1F2; }
        .share-menu-item:nth-child(2):hover { color: #1877F2; }
        .share-menu-item:nth-child(3):hover { color: #0A66C2; }
        .share-menu-item:nth-child(4):hover { color: #25D366; }
        .share-menu-item:nth-child(5):hover { color: #666; }

        /* Hero Section (homepage only — scoped to <section> to avoid clashing with subpage .hero) */
        section.hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, var(--rail-blue) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        section.hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(255, 255, 255, 0.03) 2px,
                rgba(255, 255, 255, 0.03) 4px
            );
            animation: rail-pattern 20s linear infinite;
        }

        @keyframes rail-pattern {
            0% { transform: translateY(0); }
            100% { transform: translateY(50px); }
        }

        .hero-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        .hero-text {
            text-align: left;
        }

        .hero-badge {
            display: inline-block;
            background: var(--accent);
            color: white;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.5rem 1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            border-radius: 2px;
        }

        .hero-hook {
            font-family: 'Space Mono', monospace;
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--secondary);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Proof Strip */
        .proof-strip {
            background: var(--primary);
            padding: 1.5rem 5%;
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 3px solid var(--accent);
        }

        .proof-item {
            text-align: center;
            color: white;
            font-family: 'Space Mono', monospace;
        }

        .proof-item .number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            display: block;
        }

        .proof-item .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.9;
        }

        .proof-quote {
            width: 100%;
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 0.5rem;
        }

        .proof-quote .star-rating {
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.6rem;
        }

        .proof-quote .stars {
            color: var(--secondary);
            font-size: 1.1rem;
            letter-spacing: 2px;
        }

        .proof-quote .star-rating .rating-text {
            color: rgba(255, 255, 255, 0.9);
            opacity: 1;
        }

        .proof-quote .featured-quote {
            margin: 0 auto;
            max-width: 700px;
        }

        .proof-quote .featured-quote p {
            color: rgba(255, 255, 255, 0.9);
            font-style: italic;
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
        }

        .proof-quote .featured-quote cite {
            color: rgba(255, 255, 255, 0.6);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-style: normal;
        }

        /* Media Strip - As Covered By */
        .media-strip {
            background: var(--light);
            padding: 2.5rem 5%;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .media-strip-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #767676;
            margin-bottom: 1.5rem;
        }

        .media-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            max-width: 1100px;
            margin: 0 auto 1.2rem;
        }

        .media-logo-item {
            text-decoration: none;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
        }

        .media-logo-item:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        .media-logo-item span {
            display: block;
        }

        /* Individual publication styles */
        .logo-hindu span {
            font-family: 'Times New Roman', Georgia, serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #1a1a1a;
        }
        .logo-hindu:hover span { color: #0066b3; }

        .logo-deccan span {
            font-family: 'Georgia', serif;
            font-size: 1.05rem;
            font-weight: 700;
            font-style: italic;
            color: #1a1a1a;
        }
        .logo-deccan:hover span { color: #c41e3a; }

        .logo-tnie span {
            font-family: 'Arial', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #1a1a1a;
        }
        .logo-tnie:hover span { color: #e31837; }

        .logo-ndtv span {
            font-family: 'Arial Black', 'Helvetica', sans-serif;
            font-size: 1.1rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: #1a1a1a;
        }
        .logo-ndtv:hover span { color: #e21b22; }

        .logo-toi span {
            font-family: 'Times New Roman', Georgia, serif;
            font-size: 1rem;
            font-weight: 700;
            font-style: italic;
            color: #1a1a1a;
        }
        .logo-toi:hover span { color: #e03a3e; }

        .logo-ie span {
            font-family: 'Georgia', serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
        }
        .logo-ie:hover span { color: #d71920; }

        .logo-et span {
            font-family: 'Arial', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #1a1a1a;
        }
        .logo-et:hover span { color: #005b9a; }

        .logo-mint span {
            font-family: 'Helvetica Neue', 'Arial', sans-serif;
            font-size: 1.15rem;
            font-weight: 300;
            letter-spacing: 3px;
            text-transform: lowercase;
            color: #1a1a1a;
        }
        .logo-mint:hover span { color: #f15a22; }

        .media-strip-link {
            display: inline-block;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--accent);
            text-decoration: none;
            margin-top: 0.5rem;
            transition: color 0.3s ease;
            letter-spacing: 0.5px;
        }

        .media-strip-link:hover {
            color: var(--rail-blue);
        }

        /* Comparison Section */
        .comparison-section {
            padding: 5rem 5%;
            background: white;
        }

        h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 3rem;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .compare-card {
            padding: 2.5rem;
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .compare-card.other {
            background: #f5f5f5;
            border: 2px solid #ddd;
        }

        .compare-card.this {
            background: linear-gradient(135deg, var(--primary) 0%, var(--rail-blue) 100%);
            color: white;
            border: 2px solid var(--accent);
        }

        .compare-card h3 {
            font-family: 'Space Mono', monospace;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .compare-card.other h3 {
            color: #666;
        }

        .compare-card.this h3 {
            color: var(--secondary);
        }

        .compare-card ul {
            list-style: none;
            padding: 0;
        }

        .compare-card li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(128, 128, 128, 0.2);
            font-size: 1.05rem;
        }

        .compare-card li:last-child {
            border-bottom: none;
        }

        .compare-card li {
            padding-left: 1.8rem;
            position: relative;
        }

        .compare-card.other li::before {
            content: '\2717';
            position: absolute;
            left: 0;
            color: #c0392b;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .compare-card.this li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-size: 1.15rem;
            font-weight: 700;
        }

        /* Email Preview Section */
        .email-preview-section {
            padding: 6rem 0;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        /* Diagonal slash background */
        .email-preview-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(135deg, transparent 40%, rgba(255, 107, 53, 0.06) 40%, rgba(255, 107, 53, 0.06) 42%, transparent 42%),
                linear-gradient(135deg, transparent 55%, rgba(0, 78, 137, 0.08) 55%, rgba(0, 78, 137, 0.08) 57%, transparent 57%);
            pointer-events: none;
        }

        /* Stamp/confidential watermark */
        .email-preview-section::after {
            content: 'ACTUAL EMAIL';
            position: absolute;
            top: 50%;
            right: -2rem;
            transform: translateY(-50%) rotate(-90deg);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: rgba(255, 107, 53, 0.15);
            pointer-events: none;
            white-space: nowrap;
        }

        .email-preview-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .email-preview-text {
            /* This wraps heading + subtitle, positioned left */
        }

        .email-card {
            background: white;
            border-radius: 4px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.05);
            overflow: hidden;
            transform: rotate(-1.5deg);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .email-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        /* Red "REJECTED" stamp overlay on email */
        .email-card::after {
            content: 'DISMISSED';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-20deg);
            font-family: 'Space Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(198, 40, 40, 0.12);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            pointer-events: none;
            border: 4px solid rgba(198, 40, 40, 0.12);
            padding: 0.3rem 1.5rem;
            border-radius: 4px;
            white-space: nowrap;
        }

        .email-header {
            background: #f8f9fa;
            border-bottom: 2px solid #e0e0e0;
            padding: 1.5rem;
        }

        .email-meta-row {
            display: flex;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .email-meta-row:last-child {
            margin-bottom: 0;
        }

        .email-label {
            font-weight: 600;
            color: #666;
            min-width: 60px;
            font-family: 'Space Mono', monospace;
        }

        .email-value {
            color: #333;
            flex: 1;
        }

        .email-body {
            padding: 2rem;
            background: white;
            color: #333;
            font-size: 1rem;
            line-height: 1.8;
        }

        .email-context {
            padding: 1.5rem 2rem;
            font-size: 1rem;
            background: #f0f7ff;
            border-top: 1px solid #e0e0e0;
        }

        @media (max-width: 968px) {
            .email-preview-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .email-card {
                transform: rotate(0deg);
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 5rem 5%;
            background: white;
        }

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

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

        .testimonial-card {
            position: relative;
            background: white;
            border-radius: 8px;
            padding: 2rem 2rem 1.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border: 2px solid var(--border-blue);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card.featured {
            grid-column: span 2;
            border-color: rgba(255, 107, 53, 0.3);
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(0, 78, 137, 0.03));
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.12);
            border-color: var(--accent);
        }

        .testimonial-content {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 1.5rem;
            font-style: italic;
            flex: 1;
        }

        .testimonial-quote::before {
            content: '\201C';
            font-size: 3rem;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: Georgia, serif;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--light);
        }

        .testimonial-avatar {
            flex-shrink: 0;
        }

        .testimonial-avatar img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--light);
            transition: border-color 0.3s ease;
        }

        .testimonial-card:hover .testimonial-avatar img {
            border-color: var(--accent);
        }

        .avatar-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            font-size: 1.1rem;
            color: white;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover .avatar-circle {
            transform: scale(1.08);
        }

        .author-name {
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.15rem;
        }

        .author-title {
            font-size: 0.8rem;
            color: #767676;
        }

        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-card.featured {
                grid-column: span 2;
            }
        }

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

            .testimonial-card.featured {
                grid-column: span 1;
            }
        }


            .speech-bubble-wrapper.featured,
            .speech-bubble-wrapper.wide,
            .speech-bubble-wrapper.tall {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }

            .person-card {
                flex-direction: column;
                text-align: center;
            }

        .speech-bubble-wrapper {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .speech-bubble-wrapper:hover {
            transform: translateY(-4px);
        }

        .speech-bubble-wrapper:hover .speech-bubble {
            box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
        }

        .speech-bubble {
            transition: box-shadow 0.3s ease;
        }

        .person-card img {
            transition: transform 0.3s ease;
        }

        .speech-bubble-wrapper:hover .person-card img {
            transform: scale(1.1);
        }


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

        .speech-bubble-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .speech-bubble-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
        }

        .speech-bubble-card img {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .speech-bubble-card:hover img {
            transform: scale(1.05);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3) !important;
        }

        @media (max-width: 1024px) {
            .bento-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .speech-bubble-card.featured {
                grid-column: span 2 !important;
                grid-row: span 1 !important;
            }

            .speech-bubble-card.tall {
                grid-row: span 1 !important;
            }
        }

        @media (max-width: 768px) {
            .bento-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .speech-bubble-card.featured,
            .speech-bubble-card.tall {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }
        }


        /* Free Preview Section */
        .free-preview {
            padding: 5rem 5%;
            background: white;
            text-align: center;
        }

        .free-preview h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
        }

        .preview-intro {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .preview-intro p {
            font-size: 1.2rem;
            color: var(--text);
            opacity: 0.8;
        }



        /* Online Exclusive Section */
        .online-exclusive {
            background: linear-gradient(135deg, var(--rail-blue), var(--primary));
            color: white;
            padding: 5rem 5%;
            text-align: center;
        }

        .online-exclusive h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-family: 'Space Mono', monospace;
            color: white;
        }

        .exclusive-badge {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .exclusive-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .exclusive-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .exclusive-content p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .exclusive-badge i {
            margin-right: 0.5rem;
        }




        /* Dedication Section */
        .dedication-section {
            padding: 4rem 5%;
            background: var(--primary);
            color: #e8e4df;
        }

        .dedication-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .dedication-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .dedication-text {
            border-left: 3px solid var(--accent);
            padding-left: 1.5rem;
            margin: 0 0 1.5rem 0;
        }

        .dedication-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            color: #d4d0cb;
        }

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

        .dedication-closing {
            font-style: italic;
            font-weight: 600;
            color: #e8e4df !important;
        }

        .dedication-author {
            display: block;
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            color: #999;
            margin-top: 1rem;
            margin-bottom: 2.5rem;
            padding-left: 1.5rem;
        }

        .dedication-author-intro {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .dedication-author-intro img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }

        .dedication-author-intro h3 {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #e8e4df;
            margin-bottom: 0.3rem;
        }

        .dedication-author-intro p {
            font-size: 0.95rem;
            color: #999;
            line-height: 1.5;
            margin-bottom: 0.3rem;
        }

        .dedication-read-more {
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .dedication-read-more:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .dedication-section {
                padding: 3rem 5%;
            }

            .dedication-text p {
                font-size: 1rem;
            }

            .dedication-author-intro img {
                width: 64px;
                height: 64px;
            }
        }

        /* Author Section */
        .author {
            padding: 5rem 5%;
            background: var(--light);
        }

        .author h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
        }

        .author-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 3rem;
            align-items: start;
        }

        .author-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        .author-bio h3 {
            font-family: 'Space Mono', monospace;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .author-website {
            margin: 0.5rem 0 1rem 0;
        }

        .website-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--accent);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border: 2px solid var(--accent);
            border-radius: 8px;
            background: transparent;
        }

        .website-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
        }

        .website-link i {
            font-size: 1rem;
        }

        /* Podcast Section */
        /* Author Awards */
        .author-awards {
            display: flex;
            gap: 1.2rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .author-award {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, #fef9e7 0%, #fdf2e9 100%);
            border: 1px solid #f0d9a0;
            border-radius: 6px;
            padding: 0.8rem 1.2rem;
            flex: 1;
            min-width: 200px;
        }

        .author-award i {
            font-size: 1.4rem;
            color: #d4a017;
        }

        .author-award strong {
            display: block;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.3px;
        }

        .author-award span {
            display: block;
            font-size: 0.7rem;
            font-family: 'Space Mono', monospace;
            color: #888;
        }

        .podcast-section {
            background: linear-gradient(135deg, rgba(30, 215, 96, 0.1), rgba(29, 185, 84, 0.1));
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
            border-left: 4px solid #1DB954;
        }

        .podcast-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .podcast-section h4 i {
            color: #1DB954;
            margin-right: 0.5rem;
        }

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

        .podcast-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid;
        }

        .podcast-link.spotify {
            background: #1DB954;
            color: white;
            border-color: #1DB954;
        }

        .podcast-link.spotify:hover {
            background: #1ed760;
            transform: translateY(-2px);
        }

        .podcast-link.apple {
            background: #A64EFF;
            color: white;
            border-color: #A64EFF;
        }

        .podcast-link.apple:hover {
            background: #b66bff;
            transform: translateY(-2px);
        }

        .podcast-link.youtube {
            background: #FF0000;
            color: white;
            border-color: #FF0000;
        }

        .podcast-link.youtube:hover {
            background: #ff1a1a;
            transform: translateY(-2px);
        }

        .podcast-link.website {
            background: white;
            color: var(--primary);
            border-color: var(--primary);
        }

        .podcast-link.website:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .author-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .author-image img {
                max-width: 300px;
                margin: 0 auto;
                display: block;
            }
        }

        /* FAQ Section */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            border: 2px solid var(--light);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem;
            background: white;
            border: none;
            font-family: 'Space Mono', monospace;
            font-size: 1.1rem;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: var(--light);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--text);
            line-height: 1.8;
        }

        /* Get Book Section */
        .get-book {
            background: var(--accent);
            color: white;
            text-align: center;
        }

        .get-book h2 {
            color: white;
        }

        .book-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

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

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Space Mono', monospace;
            color: var(--secondary);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            margin-top: 0.5rem;
        }

        .book-formats {
            max-width: 600px;
            margin: 0 auto;
        }

        .book-formats p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .retailer-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .retailer-link {
            background: rgba(255,255,255,0.2);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            color: white;
            font-family: 'Space Mono', monospace;
            transition: background 0.3s ease;
        }

        .retailer-link:hover {
            background: rgba(255,255,255,0.3);
        }

        @media (max-width: 768px) {
            .book-stats {
                flex-direction: column;
                gap: 2rem;
            }

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

        /* Contact Form Section */
        .contact-form {
            padding: 5rem 5%;
            background: white;
        }

        .contact-form h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            text-align: center;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
        }

        .contact-form > p {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.8;
            margin-bottom: 3rem;
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid var(--light);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

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

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            background: var(--primary);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 5px;
            font-family: 'Space Mono', monospace;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .submit-button:hover {
            background: var(--rail-blue);
        }

        /* Comments Section */
        .comments-section {
            padding: 5rem 5%;
            background: var(--light);
        }

        .comments-section h2 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            text-align: center;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
        }

        .comments-section > p {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text);
            opacity: 0.8;
            margin-bottom: 3rem;
        }



        /* Three Tiers Responsive (migrated from inline style selectors) */
        @media (max-width: 768px) {
            .tier-grid {
                grid-template-columns: 1fr !important;
            }
        }

        @media (max-width: 480px) {
            .tier-grid .tier-card {
                padding: 1.5rem !important;
            }
        }

        /* Exclusive CTA Button */
        .exclusive-cta {
            background: var(--primary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .exclusive-cta:hover {
            background: var(--rail-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }



        /* Free Chapters Section */
        .free-chapters {
            background: white;
        }

        .free-chapters-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .free-chapters-intro h2 {
            margin-bottom: 1rem;
        }

        .free-chapters-intro p {
            font-size: 1.3rem;
            line-height: 1.8;
        }

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

        .chapter-preview-card {
            background: var(--light);
            padding: 2.5rem;
            border: 2px solid var(--border-accent);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .chapter-preview-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .chapter-preview-card h3 {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .chapter-preview-card h4 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .chapter-preview-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .chapter-preview-card .read-btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }

        .chapter-preview-card .read-btn:hover {
            background: transparent;
            color: var(--primary);
        }

        /* Chapter Modal */
        .chapter-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 10000;
            overflow-y: auto;
            padding: 2rem;
        }

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

        .chapter-modal-content {
            background: white;
            max-width: 800px;
            width: 100%;
            padding: 3rem;
            margin: 2rem auto;
            position: relative;
            border-radius: 4px;
            animation: slideIn 0.3s ease-out;
        }

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

        .chapter-modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--text);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--text);
            transition: all 0.3s;
        }

        .chapter-modal-close:hover {
            background: var(--accent);
            color: white;
            border-color: var(--accent);
            transform: rotate(90deg);
        }

        .chapter-modal-content h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .chapter-modal-content .chapter-meta {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        .chapter-modal-content .chapter-text {
            font-size: 1.2rem;
            line-height: 1.9;
            white-space: pre-wrap;
        }

        .chapter-modal-content .chapter-text p {
            margin-bottom: 1.5rem;
        }

        .chapter-cta {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--light);
            border-radius: 4px;
            margin-top: 3rem;
        }

        .chapter-cta h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .chapter-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Exclusive Features for Online Exclusive Section */
        .exclusive-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .exclusive-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 6px;
            border-left: 4px solid var(--secondary);
        }

        .exclusive-feature i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 0.5rem;
        }

        .exclusive-feature h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .exclusive-feature p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Responsive for Free Chapters Grid */
        @media (max-width: 768px) {
            .chapters-preview-grid {
                grid-template-columns: 1fr;
            }
        }



        /* Author Contact */
        .author-contact {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #e0e0e0;
        }

        /* Contact Form Section */
        .contact-form-section {
            background: white;
            padding: 5rem 5%;
        }

        .contact-form-section h2 {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 2.5rem;
            font-family: 'Space Mono', monospace;
            color: var(--primary);
        }

        .contact-form-intro {
            text-align: center;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 3rem;
            opacity: 0.8;
        }

        .form-submit {
            padding: 1.2rem 3rem;
            background: var(--secondary);
            color: white;
            border: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            border: 3px solid var(--secondary);
        }

        .form-submit:hover {
            background: transparent;
            color: var(--secondary);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        footer p {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            opacity: 0.7;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        footer a {
            transition: opacity 0.3s;
        }

        footer a:hover {
            opacity: 1;
        }

                /* Footer Social Links */
        .footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: white !important;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .footer-social-link:hover {
            background: var(--accent);
            transform: translateY(-3px);
            opacity: 1;
            color: white !important;
        }

        footer img {
            display: inline-block;
            vertical-align: middle;
        }

        /* Purchase Options */
        .purchase-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            max-width: 900px;
            margin: 2rem auto 0;
        }
        .purchase-card {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.25);
            border-radius: 8px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .purchase-card.active {
            background: rgba(255,255,255,0.18);
            border-color: rgba(255,255,255,0.5);
        }
        .purchase-card .store-name {
            font-family: 'Space Mono', monospace;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.6rem;
            color: white;
        }
        .purchase-card .store-detail {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.5;
            margin-bottom: 0.8rem;
            color: white;
        }
        .purchase-card .store-cta {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .purchase-card.active .store-cta {
            background: white;
            color: var(--accent);
        }
        .purchase-card.active:hover {
            transform: translateY(-4px);
        }
        .purchase-card.active .store-cta:hover {
            background: var(--primary);
            color: white;
        }
        .purchase-card .store-badge {
            display: inline-block;
            padding: 0.35rem 0.8rem;
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 3px;
            opacity: 0.6;
            color: white;
        }
        @media (max-width: 768px) {
            .purchase-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
        }
        @media (max-width: 480px) {
            .purchase-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Comments Section Intro */
        .comments-intro {
            text-align: center;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.8;
        }

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

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }



        /* Hero Typography (homepage only) */
        section.hero h1 {
            font-size: clamp(2.5rem, 7vw, 6rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -2px;
            line-height: 1.1;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        section.hero .tagline {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 0.5rem;
            color: var(--secondary);
            font-family: 'Space Mono', monospace;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        section.hero .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.4rem);
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        /* Hero Book Cover */
        .hero-book-cover {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-book-cover img {
            max-width: 100%;
            height: auto;
            max-height: 600px;
            transition: transform 0.5s ease;
            filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.2));
        }

        .hero-book-cover img:hover {
            transform: scale(1.05) rotate(-2deg);
        }

        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

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

            .hero-cta-group {
                justify-content: center;
            }

            .hero-book-cover {
                order: 2;
            }

            .hero-book-cover img {
                max-height: 400px;
            }
        }

        /* About Section */
        .about {
            background: white;
        }

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

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .about-text {
            font-size: 1.3rem;
            line-height: 1.8;
        }

        .about-text .highlight {
            background: linear-gradient(120deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
            padding: 0.2rem 0.4rem;
            font-weight: 600;
        }

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

        .stat {
            background: var(--light);
            padding: 2rem;
            text-align: center;
            border: 2px solid var(--border-accent);
            border-radius: 8px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Space Mono', monospace;
        }

        .stat-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Space Mono', monospace;
        }

        /* Quote Section */
        .quote-section {
            background: var(--primary);
            color: white;
            text-align: center;
        }

        blockquote {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-style: italic;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto 2rem;
        }

        .quote-author {
            font-family: 'Space Mono', monospace;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary);
        }

        /* Chapters Section */
        .chapters {
            background: var(--light);
        }

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

        .chapter-card {
            background: white;
            padding: 2rem;
            border: 2px solid var(--border-blue);
            border-radius: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .chapter-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

        .chapter-number {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .chapter-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .chapter-desc {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Compact Chapters + Free Preview */
        .chapters-compact {
            background: var(--light);
            padding: 4rem 5%;
        }

        .chapters-compact-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .chapters-compact-heading {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }

        .chapters-compact-grid {
            margin-bottom: 2rem;
        }

        .chapters-compact-ol {
            list-style: none;
            counter-reset: chapter;
            padding: 0;
            margin: 0;
            columns: 2;
            column-gap: 3rem;
        }

        .chapters-compact-ol li {
            counter-increment: chapter;
            padding: 0.6rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 1.05rem;
            display: flex;
            align-items: baseline;
            gap: 0.8rem;
            break-inside: avoid;
            flex-wrap: wrap;
        }

        .chapter-subtitle {
            display: block;
            font-size: 0.85rem;
            font-style: italic;
            color: var(--text-light);
            width: 100%;
        }

        .chapters-compact-ol li::before {
            content: counter(chapter, decimal-leading-zero);
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            color: var(--accent);
            font-weight: 700;
            min-width: 1.5rem;
            flex-shrink: 0;
        }

        .chapters-compact-preview {
            background: var(--primary);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 4px;
            text-align: center;
        }

        .chapters-compact-preview p {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .chapters-compact-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .chapter-btn-compact {
            padding: 0.7rem 1.5rem;
            background: transparent;
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .chapter-btn-compact:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        @media (max-width: 600px) {
            .chapters-compact-ol {
                columns: 1;
            }

            .chapters-compact-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Book Showcase */
        .book-showcase {
            background: white;
            padding: 4rem 5%;
        }

        .book-showcase-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .book-showcase-cover {
            position: relative;
        }

        .book-showcase-cover img {
            width: 100%;
            height: auto;
            box-shadow:
                20px 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 107, 53, 0.1);
            border-radius: 4px;
        }

        .book-showcase-details h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .book-showcase-details .book-meta {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 2rem;
        }

        .book-showcase-details p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

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

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

        .book-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .book-feature-text {
            font-size: 1rem;
            line-height: 1.4;
        }

        /* Events Section */
        .events {
            background: var(--light);
            padding: 5rem 5%;
        }

        .events-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            font-size: 1.2rem;
            line-height: 1.8;
        }

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

        .event-card {
            background: white;
            border: 2px solid var(--border-accent);
            border-radius: 8px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .event-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .event-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

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

        .event-date {
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .event-status {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: var(--secondary);
            color: white;
            font-family: 'Space Mono', monospace;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            border-radius: 2px;
        }

        .event-status.upcoming {
            background: var(--accent);
        }

        .event-status.completed {
            background: #6c757d;
            opacity: 0.7;
        }

        .event-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .event-venue {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
            color: var(--rail-blue);
        }

        .event-venue::before {
            content: '\1F4CD';
            font-size: 1.2rem;
        }

        .event-time {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .event-time::before {
            content: '\1F550';
            font-size: 1.2rem;
        }

        .event-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .event-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .event-link {
            display: inline-block;
            padding: 0.8rem 1.5rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 2px solid var(--primary);
        }

        .event-link:hover {
            background: transparent;
            color: var(--primary);
        }

        .event-link.secondary {
            background: transparent;
            color: var(--accent);
            border-color: var(--accent);
        }

        .event-link.secondary:hover {
            background: var(--accent);
            color: white;
        }

        .no-events {
            text-align: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 4px;
            border: 2px dashed var(--accent);
        }

        .no-events h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .no-events p {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .no-events .contact-link {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
        }

        .no-events .contact-link:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        /* Lessons Grid */
        .lessons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .lessons-column {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .lessons-column h4 {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .chapter-pills {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .chapter-pill {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Space Mono', monospace;
        }

        .column-desc {
            font-size: 0.85rem;
            opacity: 0.8;
            line-height: 1.4;
            font-style: italic;
        }

        /* Free Preview and Chapter Display */
        .free-preview {
            background: white;
            padding: 5rem 5%;
        }

        .preview-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .preview-cta {
            background: var(--light);
            padding: 2rem;
            text-align: center;
            margin-bottom: 3rem;
            border: 2px solid var(--border-accent);
            border-radius: 8px;
        }

        .preview-cta p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .chapter-preview-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .chapter-btn {
            padding: 1.2rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: 3px solid var(--accent);
            cursor: pointer;
            border-radius: 0;
        }

        .chapter-btn:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-2px);
        }

        .chapter-content {
            max-width: 900px;
            margin: 3rem auto 0;
            background: var(--light);
            padding: 3rem;
            border-radius: 4px;
            display: none;
        }

        .chapter-content.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

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

        .chapter-header {
            border-bottom: 3px solid var(--accent);
            padding-bottom: 1.5rem;
            margin-bottom: 2rem;
        }

        .chapter-number-display {
            font-family: 'Space Mono', monospace;
            font-size: 0.9rem;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .chapter-title-text {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
        }

        .chapter-body {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--text);
        }

        .chapter-body p {
            margin-bottom: 1.5rem;
        }

        .close-chapter {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--accent);
        }

        .close-btn {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .close-btn:hover {
            background: var(--accent);
        }

        /* Additional Responsive Rules */
        @media (max-width: 968px) {
            .book-showcase-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .book-showcase-cover {
                max-width: 400px;
                margin: 0 auto;
            }

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

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

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

            .chapter-modal-content {
                padding: 2rem 1.5rem;
            }
        }

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

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.3s;
            border: 3px solid var(--accent);
        }

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

        /* Responsive rules for specific sections */
        @media (max-width: 1200px) {
            /* "This Book Is For You If" section - make 2x2 grid on tablets */
            section [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 768px) {
            /* "This Book Is For You If" section - stack on mobile */
            section [style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: 1fr !important;
            }

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

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

            .podcast-link {
                justify-content: center;
                width: 100%;
            }
        }



        /* Media Strip Responsive */
        @media (max-width: 768px) {
            .media-strip {
                padding: 2rem 5%;
            }

            .media-logos {
                gap: 1.5rem 2rem;
            }

            .logo-hindu span,
            .logo-deccan span,
            .logo-tnie span,
            .logo-ndtv span,
            .logo-toi span,
            .logo-ie span,
            .logo-et span,
            .logo-mint span {
                font-size: 0.9rem !important;
            }

            .logo-tnie span {
                font-size: 0.75rem !important;
            }
        }

        @media (max-width: 480px) {
            .media-logos {
                gap: 1rem 1.5rem;
            }

            .logo-hindu span,
            .logo-deccan span,
            .logo-tnie span,
            .logo-ndtv span,
            .logo-toi span,
            .logo-ie span,
            .logo-et span,
            .logo-mint span {
                font-size: 0.8rem !important;
            }

            .logo-tnie span {
                font-size: 0.65rem !important;
            }
        }

        /* Hamburger Menu Responsive */
        @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }

            nav ul {
                display: none;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: var(--primary);
                flex-direction: column;
                justify-content: flex-start;
                padding: 6rem 2rem 2rem;
                gap: 0;
                transition: right 0.3s ease;
                z-index: 1000;
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu ul {
                display: flex;
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-menu li {
                width: 100%;
                text-align: left;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1.2rem 0;
                color: var(--light);
                width: 100%;
            }

            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.1);
                padding-left: 1rem;
            }

            /* Hide share menu in mobile nav */
            .nav-menu .share-container {
                margin-top: 2rem;
                width: 100%;
            }

            body.menu-open {
                overflow: hidden;
            }
        }

        /* Campaign Impact - Compact */
        .impact-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
        }

        .impact-before, .impact-after {
            flex: 1;
            max-width: 300px;
            padding: 1.2rem 1.5rem;
            border-radius: 6px;
        }

        .impact-before {
            text-align: right;
            background: rgba(255,255,255,0.6);
            border: 2px solid rgba(0,0,0,0.1);
        }

        .impact-after {
            text-align: left;
            background: linear-gradient(135deg, rgba(0,78,137,0.08), rgba(255,107,53,0.05));
            border: 2px solid var(--rail-blue);
        }

        .impact-label {
            font-family: 'Space Mono', monospace;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .impact-stat {
            font-family: 'Space Mono', monospace;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.8;
        }

        .impact-after .impact-stat {
            color: var(--rail-blue);
        }

        .impact-stat span {
            font-weight: 400;
            font-size: 0.8rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .impact-arrow {
            font-size: 2rem;
            color: var(--accent);
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .impact-arrow span {
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .impact-row {
                flex-direction: column;
                gap: 1rem;
            }

            .impact-before, .impact-after {
                text-align: center;
                max-width: 100%;
                width: 100%;
            }

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

        /* Buy Section */
        .buy-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--rail-blue) 100%);
            padding: 4rem 5%;
            text-align: center;
        }

        .buy-section h2 {
            font-family: 'Space Mono', monospace;
            font-size: 2rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .buy-section .buy-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
        }

        .retailer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .retailer-card {
            background: white;
            border-radius: 8px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 2px solid var(--border-blue);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .retailer-card:hover {
            border-color: var(--accent);
        }

        .retailer-card.coming-soon {
            opacity: 0.5;
        }

        .retailer-name {
            font-family: 'Space Mono', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .retailer-price {
            font-size: 0.95rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .retailer-delivery {
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .retailer-cta {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 3px solid var(--accent);
            transition: all 0.3s;
            font-size: 0.9rem;
        }

        .retailer-cta:hover {
            background: transparent;
            color: var(--accent);
        }

        .coming-soon-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
            color: var(--text);
            opacity: 0.6;
            border: 2px dashed rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .retailer-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }
        }

/* =====================================================
   Migrated Inline Styles
   ===================================================== */

/* Campaign Impact Section */
.campaign-impact-section {
    padding: 2.5rem 5%;
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.campaign-impact-inner {
    max-width: 900px;
    margin: 0 auto;
}

.campaign-impact-heading {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.impact-label-before {
    color: var(--accent);
}

.impact-label-after {
    color: var(--rail-blue);
}

.campaign-impact-caption {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text);
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Testimonials Section Headings */
.testimonials-heading {
    font-family: 'Space Mono', monospace;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-align: center;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text);
    opacity: 0.8;
    text-align: center;
}

/* Avatar Circle Gradient Backgrounds */
.avatar-mr {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
}

.avatar-vm {
    background: linear-gradient(135deg, var(--rail-blue), #006ba6);
}

.avatar-sa {
    background: linear-gradient(135deg, #e63946, #f77f00);
}

.avatar-am {
    background: linear-gradient(135deg, #2a9d8f, #06d6a0);
}

.avatar-vr {
    background: linear-gradient(135deg, #8338ec, #a05195);
}

/* Reader Voices carousel */
.reader-voices-section {
    padding: 5rem 5%;
    background: var(--light);
}

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

.voices-carousel-wrapper {
    position: relative;
    margin-top: 2rem;
}

.voices-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0.5rem 0 1rem;
}

.voices-carousel::-webkit-scrollbar {
    display: none;
}

.voice-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: white;
    border-radius: 8px;
    padding: 2rem 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

/* Arrows */
.voices-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--rail-blue);
    background: white;
    color: var(--rail-blue);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.voices-arrow:hover {
    background: var(--rail-blue);
    color: white;
}

.voices-arrow-left {
    left: -22px;
}

.voices-arrow-right {
    right: -22px;
}

/* Dots */
.voices-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.voices-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--rail-blue);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.voices-dot.active {
    background: var(--rail-blue);
    transform: scale(1.2);
}

/* Desktop: 3 cards visible at a time */
@media (min-width: 769px) {
    .voice-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }

    /* Hide nav when all cards fit (no overflow) — toggled by JS */
    .voices-carousel-wrapper.no-overflow .voices-arrow {
        display: none;
    }

    .voices-carousel-wrapper.no-overflow + .voices-dots {
        display: none;
    }
}

/* Tablet: two cards */
@media (min-width: 481px) and (max-width: 768px) {
    .voice-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Mobile: arrows inside */
@media (max-width: 768px) {
    .voices-arrow-left {
        left: 8px;
    }

    .voices-arrow-right {
        right: 8px;
    }

    .voices-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.9);
    }
}

.avatar-sm {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.avatar-pj {
    background: linear-gradient(135deg, #d4526e, #f0a500);
}

.avatar-zj {
    background: linear-gradient(135deg, #3a86a8, #48bfe3);
}

/* Comparison Section */
.comparison-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.comparison-heading {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.comparison-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text);
    opacity: 0.8;
}

/* Email Preview Section Headings */
.email-preview-heading {
    font-family: 'Space Mono', monospace;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: white;
    text-align: left;
    letter-spacing: -1px;
    line-height: 1.15;
}

.email-preview-subtitle {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    line-height: 1.7;
}

.email-preview-cta-hint {
    margin-top: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.email-body-ellipsis {
    margin: 0 0 1.5rem 0;
    color: #666;
    font-style: italic;
}

.email-body-ellipsis-end {
    margin: 1.5rem 0 0 0;
    color: #666;
    font-style: italic;
}

.email-body-blockquote {
    margin: 0;
    padding: 1.5rem;
    background: #fff9e6;
    border-left: 4px solid #ff6b35;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.email-context-text {
    margin: 0;
}

.email-context-label {
    color: var(--primary);
}

/* Chapters Section */
.chapters-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.chapters-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
    color: var(--primary);
}

.chapters-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text);
    opacity: 0.8;
}

/* Free Preview - Choose Chapter Text */
.choose-chapter-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

/* Learning Framework Section */
.tier-intro {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.tier-card {
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.tier-card-1 {
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
    border: 2px solid var(--accent);
}

.tier-card-2 {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border: 2px solid var(--rail-blue);
}

.tier-card-3 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--rail-blue) 100%);
    border: 2px solid var(--secondary);
    color: white;
}

.tier-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    color: white;
}

.tier-card-1 .tier-number {
    background: var(--accent);
}

.tier-card-2 .tier-number {
    background: var(--rail-blue);
}

.tier-card-3 .tier-number {
    background: var(--secondary);
    color: var(--primary);
}

.tier-heading {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tier-card-1 .tier-heading {
    color: var(--accent);
}

.tier-card-2 .tier-heading {
    color: var(--rail-blue);
}

.tier-card-3 .tier-heading {
    color: var(--secondary);
}

.tier-count {
    font-size: 2.5rem;
    font-weight: 700;
}

.tier-card-1 .tier-count {
    color: var(--accent);
}

.tier-card-2 .tier-count {
    color: var(--rail-blue);
}

.tier-card-3 .tier-count {
    color: var(--secondary);
}

.tier-desc {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.tier-card-3 .tier-desc {
    opacity: 0.9;
}

.tier-badge-container {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.tier-card-3 .tier-badge-container {
    border-top: 1px solid rgba(255,255,255,0.2);
}

.tier-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
}

.tier-card-1 .tier-badge {
    background: var(--accent);
}

.tier-card-2 .tier-badge {
    background: var(--rail-blue);
}

.tier-card-3 .tier-badge {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 700;
}

/* Sample Lessons Preview */
.sample-lessons-preview {
    background: var(--light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sample-lessons-heading {
    font-family: 'Space Mono', monospace;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.sample-lessons-grid {
    display: grid;
    gap: 1rem;
}

.sample-lesson-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sample-lesson-row-faded {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.lesson-tag-key {
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
}

.lesson-tag-insight {
    background: var(--rail-blue);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
}

.lesson-tag-extended {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
}

.lesson-name-bold {
    font-weight: 600;
    color: var(--primary);
}

.lesson-name {
    color: var(--primary);
}

/* CTA Buttons Container */
.tier-cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.exclusive-cta-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

/* FAQ Section — Accordion */
.faq-section {
    padding: 5rem 5%;
    background: white;
}

.faq-section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
    color: var(--primary);
}

.faq-section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text);
    opacity: 0.8;
}

.faq-section .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .faq-item {
    background: white;
    border: 2px solid var(--light);
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: none;
}

.faq-section .faq-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.faq-section .faq-item:last-child {
    border-bottom: 2px solid var(--light);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.faq-section .faq-question {
    width: 100%;
    text-align: left;
    padding: 1.4rem 1.5rem;
    background: white;
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 1.05rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-section .faq-question:hover {
    background: var(--light);
}

.faq-section .faq-question.active {
    background: var(--primary);
    color: white;
}

.faq-section .faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-section .faq-question.active i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-section .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafaf8;
}

.faq-section .faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-section .faq-answer p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.1rem;
}

.faq-section .faq-answer a {
    color: var(--accent);
    font-weight: 600;
}

/* Get Book Stats */
.get-book-price {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.get-book-final-cta {
    display: inline-block;
    background: white;
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-book-final-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-social-heading {
    margin-bottom: 0.8rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-license {
    text-align: center;
}

.footer-license a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}

.footer-license img {
    height: 1.5rem;
    width: 1.5rem;
}

/* Author Bio - paragraph spacing */
.author-bio p + p {
    margin-top: 1rem;
}

/* Get Book - ISBN line */
.get-book-isbn {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

/* Responsive for tier grid */
@media (max-width: 768px) {
    .tier-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .tier-card {
        padding: 1.5rem;
    }
}

/* =====================================================
   Conversion Optimization Styles (Items 1-4)
   ===================================================== */

/* Item 4: Hero CTA Redesign — dominant primary button + price + trust */
.hero-cta-primary {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.4rem 3.5rem !important;
    font-size: 1.1rem;
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5);
    animation: hero-pulse 2.5s ease-in-out infinite;
}

.hero-price-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    text-transform: none;
}

@keyframes hero-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(255, 107, 53, 0); }
}

.hero-free-link {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Crimson Pro', serif;
}

.hero-free-link a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.hero-free-link a:hover {
    color: var(--secondary);
}

.hero-trust-signal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Crimson Pro', serif;
    max-width: 400px;
    line-height: 1.5;
}

/* Item 3: Above-fold social proof (between proof strip and buy section) */
.above-fold-proof {
    background: var(--light);
    padding: 2.5rem 5%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.above-fold-proof-inner {
    max-width: 700px;
    margin: 0 auto;
}

.star-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.star-rating .stars {
    color: #f5a623;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.star-rating .rating-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text);
    opacity: 0.6;
}

.featured-quote {
    margin: 0;
    padding: 0;
}

.featured-quote p {
    font-family: 'Crimson Pro', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.featured-quote cite {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #767676;
}

/* Item 1: Featured retailer card (Notionpress — live now) */
.retailer-card-featured {
    border: 3px solid var(--accent);
    position: relative;
    background: white;
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.retailer-live-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--accent);
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 1.2rem;
    border-radius: 20px;
    white-space: nowrap;
}

.retailer-grid-launch {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

/* Item 2: Sticky mobile purchase bar */
.mobile-purchase-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    border-top: 2px solid var(--accent);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-purchase-bar.visible {
    transform: translateY(0);
}

.mobile-purchase-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 5%;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-purchase-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mobile-purchase-title {
    color: white;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mobile-purchase-price {
    color: var(--secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.mobile-purchase-cta {
    display: inline-block;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.65rem 1.8rem;
    border-radius: 2px;
    transition: background 0.3s;
    white-space: nowrap;
}

.mobile-purchase-cta:hover {
    background: #e55a2b;
}

@media (max-width: 768px) {
    .mobile-purchase-bar {
        display: block;
    }

    /* Add bottom padding to body so footer isn't hidden behind sticky bar */
    body {
        padding-bottom: 60px;
    }

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

    .retailer-card-featured {
        transform: none;
    }

    .hero-cta-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-trust-signal {
        max-width: 100%;
    }

    .above-fold-proof {
        padding: 2rem 5%;
    }

    .featured-quote p {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero-price-tag {
        font-size: 0.6rem;
    }

    .featured-quote p {
        font-size: 1.05rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .retailer-grid-launch {
        grid-template-columns: 1fr 1fr;
    }
}

/* =====================================================
   Phase 1 & 2: Accessibility Fixes
   ===================================================== */

/* Focus-visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="menuitem"]:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* Dark-background focus styles (nav, hero, dark sections) */
nav a:focus-visible,
nav button:focus-visible,
section.hero a:focus-visible,
.cta-footer a:focus-visible,
.mobile-purchase-cta:focus-visible,
.chapter-purchase-float-cta:focus-visible {
    outline-color: var(--secondary);
    outline-offset: 3px;
}

/* Remove default outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Form submission feedback */
.form-status {
    margin-top: 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    display: none;
}

.form-status-success,
.form-status-error {
    display: block;
}

.form-status-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-status-error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-status-light.form-status-success {
    background: rgba(255,255,255,0.15);
    color: #a5d6a7;
    border: 1px solid rgba(165, 214, 167, 0.3);
}

.form-status-light.form-status-error {
    background: rgba(255,255,255,0.1);
    color: #ef9a9a;
    border: 1px solid rgba(239, 154, 154, 0.3);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Touch target minimum 48px */
.share-toggle {
    min-width: 48px;
    min-height: 48px;
}

.hamburger {
    min-width: 48px;
    min-height: 48px;
}

.share-menu-item {
    min-height: 44px;
}

/* Coming-soon cards: prevent false click affordance */
.retailer-card.coming-soon {
    cursor: default;
}

/* External link indicator for screen readers */
a[target="_blank"]::after {
    content: '';
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    section.hero::before {
        animation: none;
    }

    .hero-cta-primary {
        animation: none;
    }
}

/* =====================================================
   Mobile Responsiveness Fixes
   ===================================================== */

/* Fix 5: Reduce proof-strip gap on small screens */
@media (max-width: 480px) {
    .proof-strip {
        gap: 1.5rem;
    }
}

/* Fix 6: Reduce section padding on mobile */
@media (max-width: 768px) {
    .faq-section,
    .contact-form,
    .comments-section {
        padding: 3rem 5%;
    }

    .faq-section-subtitle,
    .chapters-subtitle {
        margin-bottom: 2rem;
    }
}

/* Fix 7: Scale down email "DISMISSED" stamp on mobile */
@media (max-width: 768px) {
    .email-card::after {
        font-size: 1.5rem;
        padding: 0.2rem 1rem;
    }
}

/* Fix 8: Constrain book showcase image on mobile */
@media (max-width: 968px) {
    .book-showcase-cover img {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}

/* Fix 9: Only apply hover transforms on pointer devices */
@media (hover: hover) {
    .compare-card:hover,
    .testimonial-card:hover,
    .speech-bubble-card:hover,
    .chapter-card:hover,
    .event-card:hover,
    .purchase-card.active:hover,
    .retailer-card:hover {
        transform: translateY(-4px);
    }

    .hero-book-cover img:hover {
        transform: scale(1.05) rotate(-2deg);
    }
}

/* Disable hover transforms on touch devices */
@media (hover: none) {
    .compare-card:hover,
    .testimonial-card:hover,
    .speech-bubble-card:hover,
    .chapter-card:hover,
    .event-card:hover,
    .purchase-card.active:hover,
    .retailer-card:hover {
        transform: none;
    }

    .hero-book-cover img:hover {
        transform: none;
    }
}

/* Fix 3: key-takeaways inline 3-col stat grid */
.course-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

@media (max-width: 768px) {
    .course-stat-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
