/*
Theme Name: SYTYCSN
Theme URI: https://sytycsn.com
Author: Cody Knott
Author URI: https://sytycsn.com
Description: So You Think You Can ServiceNow - A professional dark theme for the SYTYCSN book series and framework. Field-tested practice for ServiceNow practitioners.
Version: 1.8.5
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sytycsn
Tags: dark, one-column, custom-menu, featured-images, full-width-template, theme-options

SYTYCSN Theme - Built with field-tested discipline.
*/

/* ==========================================================================
   CSS Variables & Base Styles
   ========================================================================== */

:root {
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #0f172a;
    --color-bg-tertiary: #1e293b;
    --color-bg-card: rgba(30, 41, 59, 0.5);
    
    --color-text-primary: #e2e8f0;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;
    
    --color-accent-cyan: #06b6d4;
    --color-accent-green: #10b981;
    --color-accent-amber: #f59e0b;
    --color-accent-red: #ef4444;
    --color-accent-purple: #8b5cf6;
    
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-accent: rgba(6, 182, 212, 0.3);
    
    --gradient-primary: linear-gradient(135deg, #06b6d4, #10b981);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #0f172a 50%, #0a0a0f 100%);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --shadow-glow: 0 10px 30px rgba(6, 182, 212, 0.3);
    --shadow-card: 0 20px 40px rgba(6, 182, 212, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.625rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

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

/* ==========================================================================
   Layout
   ========================================================================== */

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-wide {
    max-width: 100%;
    padding: 0 40px;
}

section {
    padding: 80px 0;
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 15px 40px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

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

.main-navigation ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--color-text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-base);
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: var(--color-accent-cyan);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        z-index: 999;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--color-bg-primary);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #334155;
    color: var(--color-text-primary);
}

.btn-secondary:hover {
    border-color: var(--color-accent-cyan);
    color: var(--color-accent-cyan);
}

.btn-success {
    background: linear-gradient(135deg, var(--color-accent-green), #059669);
    color: var(--color-bg-primary);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    color: var(--color-bg-primary);
}

.btn-coming-soon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(16, 185, 129, 0.2));
    border: 2px solid rgba(6, 182, 212, 0.5);
    color: var(--color-accent-cyan);
    cursor: default;
    font-weight: 600;
}

.btn-coming-soon:hover {
    transform: none;
    box-shadow: none;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-label {
    color: var(--color-accent-cyan);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Section spacing */
section.container {
    padding-top: 80px;
    padding-bottom: 60px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--color-accent-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 22px;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Countdown Timer */
.countdown-container {
    margin: 30px 0;
    padding: 24px 40px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    display: inline-block;
}

.countdown-label {
    font-size: 14px;
    color: var(--color-accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.countdown-separator {
    font-size: 32px;
    color: var(--color-accent-cyan);
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .countdown-container {
        padding: 20px 24px;
    }
    
    .countdown-number {
        font-size: 28px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-separator {
        font-size: 24px;
    }
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    padding: 140px 40px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    position: relative;
}

.page-header p {
    font-size: 20px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.card-simple {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: all var(--transition-base);
}

.card-simple:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
}

/* ==========================================================================
   Book Cards
   ========================================================================== */

.books-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.book-card {
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.book-card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.book-card.featured {
    border-color: rgba(16, 185, 129, 0.5);
}

.book-cover {
    height: 320px;
    background: linear-gradient(135deg, #1e3a5f, var(--color-bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.book-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.book-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-accent-green), #059669);
    color: var(--color-bg-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.book-info {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.book-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.book-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.book-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.book-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.book-meta-item {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.book-meta-item span {
    color: var(--color-text-secondary);
}

.book-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.book-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
}

.book-link {
    color: var(--color-accent-cyan);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.book-link:hover {
    color: var(--color-accent-green);
}

/* ==========================================================================
   Problem Section
   ========================================================================== */

.problem-section {
    background: var(--color-bg-secondary);
    padding: 100px 40px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-4px);
}

.problem-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent-red);
    margin-bottom: 10px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Framework Visual
   ========================================================================== */

.framework-visual {
    margin-top: 50px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-xl);
    padding: 50px;
}

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

.stage {
    background: linear-gradient(135deg, var(--color-bg-tertiary), #334155);
    border: 2px solid #475569;
    border-radius: var(--radius-md);
    padding: 20px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.stage:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-4px);
}

.stage-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 4px;
}

.stage-desc {
    font-size: 11px;
    color: var(--color-text-secondary);
}

.stage-arrow {
    font-size: 24px;
    color: #475569;
}

.framework-tagline {
    margin-top: 30px;
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
}

.framework-tagline strong {
    color: var(--color-accent-green);
}

/* ==========================================================================
   Credibility Bar
   ========================================================================== */

.credibility-bar {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 30px 40px;
}

.credibility-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.credibility-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-accent-cyan);
}

.credibility-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   Audience Section
   ========================================================================== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.audience-card {
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.audience-card:hover {
    border-color: var(--color-accent-green);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    border-radius: var(--radius-xl);
    padding: 80px;
    text-align: center;
    margin: 100px auto;
    max-width: 1000px;
    border: 1px solid var(--color-border-accent);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p strong {
    color: var(--color-accent-green);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Author Section
   ========================================================================== */

.author-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.author-photo {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #1e3a5f, var(--color-bg-secondary));
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.author-info h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.author-title {
    font-size: 18px;
    color: var(--color-accent-cyan);
    font-weight: 600;
    margin-bottom: 24px;
}

.author-bio {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.author-bio p {
    margin-bottom: 16px;
}

.author-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.author-social a {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-social a:hover {
    color: var(--color-accent-cyan);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */

.stats-bar {
    background: var(--color-bg-secondary);
    padding: 60px 40px;
}

.stats-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-accent-cyan);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Team Section
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.team-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card.aeryn .team-avatar { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1)); }
.team-card.rem .team-avatar { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(167, 139, 250, 0.1)); }
.team-card.aletheia .team-avatar { background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 211, 238, 0.1)); }

.team-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.team-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-intro {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-method:hover {
    border-color: var(--color-accent-cyan);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-container {
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #334155;
    border-radius: var(--radius-sm);
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition-base);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: #1e293b;
    color: #e2e8f0;
    padding: 10px;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 450px;
}

.newsletter-form .form-row {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #334155;
    border-radius: var(--radius-sm);
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    font-size: 15px;
}

.newsletter-form button {
    padding: 14px 24px;
    width: 100%;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

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

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Coming Soon Cards
   ========================================================================== */

.coming-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coming-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.coming-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.coming-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(6, 182, 212, 0.3);
    margin-bottom: 8px;
}

.coming-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.coming-subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.coming-date {
    font-size: 11px;
    color: var(--color-accent-amber);
    font-weight: 600;
}

/* ==========================================================================
   Resource Cards
   ========================================================================== */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
}

.resource-card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-format {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.resource-format span {
    background: rgba(6, 182, 212, 0.2);
    color: var(--color-accent-cyan);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

/* ==========================================================================
   Featured Download
   ========================================================================== */

.featured-download {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.featured-cover {
    background: linear-gradient(135deg, #1e3a5f, var(--color-bg-secondary));
    border-radius: var(--radius-md);
    min-height: 300px;
    overflow: hidden;
}

.featured-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-info h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.featured-subtitle {
    font-size: 18px;
    color: var(--color-accent-green);
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-description {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.meta-item {
    font-size: 14px;
    color: var(--color-text-muted);
}

.meta-item span {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* ==========================================================================
   Bundle Section
   ========================================================================== */

.bundle-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--color-border-accent);
    border-radius: var(--radius-xl);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bundle-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.bundle-card > p {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.bundle-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent-green);
    margin-bottom: 10px;
}

.bundle-price span {
    font-size: 18px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.bundle-note {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */

.mission-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid var(--color-border-accent);
    border-radius: var(--radius-xl);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.mission-card p strong {
    color: var(--color-accent-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: #050508;
    border-top: 1px solid var(--color-border);
    padding: 60px 40px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

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

.footer-column a {
    color: var(--color-text-muted);
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--color-text-muted);
    font-size: 14px;
}

.footer-social a:hover {
    color: var(--color-accent-cyan);
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--color-accent-cyan);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Simple Footer */
.footer-simple {
    background: #050508;
    border-top: 1px solid var(--color-border);
    padding: 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent-cyan);
    color: var(--color-bg-primary);
    padding: 8px;
    z-index: 100000;
}

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

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* WordPress Alignments */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

/* WordPress Captions */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
}

/* WordPress Gallery */
.gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Post Content */
.entry-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.entry-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2em;
    margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2em;
    margin-bottom: 1.5em;
    color: var(--color-text-secondary);
}

.entry-content li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-accent-cyan);
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   Legal Content (Privacy Policy, Terms of Use)
   ========================================================================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 0;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 10px;
    position: relative;
}

.legal-content ul li::marker {
    color: var(--color-accent-cyan);
}

.legal-content a {
    color: var(--color-accent-cyan);
}

.legal-content a:hover {
    color: var(--color-accent-green);
}

.legal-content strong {
    color: var(--color-text-primary);
}

/* Container narrow for legal pages */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .books-grid,
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audience-grid,
    .coming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .author-photo {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-download {
        grid-template-columns: 1fr;
    }
    
    .stats-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 4-column grids become 2 columns */
    .coming-books-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .site-header .container {
        position: relative;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-top: 1px solid var(--color-border);
        z-index: 999;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .books-grid,
    .problem-cards,
    .audience-grid,
    .coming-grid {
        grid-template-columns: 1fr;
    }
    
    .framework-stages {
        flex-direction: column;
    }
    
    .stage-arrow {
        transform: rotate(90deg);
    }
    
    .credibility-content {
        gap: 30px;
    }
    
    .stats-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 50px 30px;
        margin: 50px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Coming books 4-column grid → 2 columns on mobile */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    
    /* 3-column grids → 1 column on mobile */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* 2-column grids → 1 column on mobile */
    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Book meta wrapping on mobile */
    .book-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Card-simple full width on mobile */
    .card-simple {
        padding: 20px;
    }
    
    /* Framework stages flex direction */
    .framework-stages .stage {
        min-width: auto;
        width: 100%;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    /* Coming books 4-column grid → 1 column on small mobile */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .book-buttons {
        flex-direction: column;
    }
    
    .book-buttons .btn {
        width: 100%;
    }
    
    /* Ensure all inline grids are single column on very small screens */
    [style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   FORM STYLES - Mailchimp Integration
   ========================================================================== */

/* Form row for side-by-side inputs */
.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.form-row input {
    flex: 1;
}

/* Form message notifications */
.form-message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

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

/* Download form container */
.download-form-container {
    margin-top: 24px;
    padding: 24px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
}

.download-form-container p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
}

/* Select dropdown styling */
.newsletter-form select,
.download-form select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e2e8f0;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.newsletter-form select:focus,
.download-form select:focus {
    outline: none;
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.newsletter-form select option,
.download-form select option,
#chapter-preview-select option {
    background: #1a1a2e;
    color: #e2e8f0;
    padding: 12px;
}

#chapter-preview-select optgroup {
    background: #0f172a;
    color: #06b6d4;
    font-weight: 600;
    padding: 8px 0;
}

#chapter-preview-select option {
    background: #1e293b;
    color: #e2e8f0;
    padding: 10px 16px;
}

#chapter-preview-select option:hover,
#chapter-preview-select option:focus {
    background: #334155;
}

/* Coming soon badge */
.coming-soon-badge {
    display: inline-block;
    font-size: 12px;
    color: #f59e0b;
    font-weight: 600;
    margin-top: 8px;
}

/* Success button variant */
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

/* Footer form row responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-column .form-row input {
        width: 100%;
    }
}

/* Amazon Region Picker - v1.7 */
.amazon-region-picker {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.amazon-region-picker a {
    font-size: 18px;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
    padding: 4px;
}

.amazon-region-picker a:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Mobile responsive for region picker */
@media (max-width: 768px) {
    .amazon-region-picker {
        justify-content: center;
    }
}

/* Print Button with Flags - v1.7.4 */
.print-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.print-btn-with-flags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px !important;
    line-height: 1.3;
    cursor: default;
}

.print-btn-with-flags:hover {
    /* Override any button hover state since this isn't clickable */
    transform: none;
}

.print-flags {
    display: flex;
    gap: 6px;
    font-size: 16px;
}

.print-flags a {
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.2s ease;
    cursor: pointer;
}

.print-flags a:hover {
    opacity: 1;
    transform: scale(1.15);
}

.print-discount-note {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
}

/* v1.7.6 - Contrast and Mobile Table Fixes */

/* Improve contrast on muted text - #64748b is too dark, use #94a3b8 */
.books-page-muted-text,
.contrast-boost {
    color: #94a3b8 !important;
}

/* Mobile table improvements */
@media (max-width: 600px) {
    /* Tighter table cells on mobile */
    .entry-point-table th,
    .entry-point-table td {
        padding: 10px 8px !important;
        font-size: 11px !important;
    }
    
    /* Smaller price text on mobile */
    .entry-point-table .price-cell {
        font-size: 13px !important;
    }
}
