:root {
    /* Enhanced contrast palette */
    --terracotta: #B5432A;
    --terracotta-dark: #8B3420;
    --terracotta-light: #D4654A;
    --gold: #C9940A;
    --gold-light: #E8B84A;
    --gold-pale: #F5E6C8;
    
    /* Richer neutrals */
    --ink: #1A1614;
    --charcoal: #2D2622;
    --earth: #4A3F38;
    --stone: #6B5D54;
    --sand: #A69485;
    --parchment: #F7F3ED;
    --cream: #FFFDF8;
    --white: #FFFFFF;
    
    /* Semantic */
    --sage: #4A7C5E;
    --sage-light: #6B9B7D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--charcoal);
    line-height: 1.2;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circles {
    position: relative;
    width: 48px;
    height: 40px;
}

.logo-circle {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    top: 4px;
}

.logo-circle-left {
    left: 0;
    background: var(--terracotta);
}

.logo-circle-right {
    left: 16px;
    background: var(--gold);
    opacity: 0.9;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
}

.logo-text .culture { color: var(--terracotta); }
.logo-text .navigator { color: var(--charcoal); }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid rgba(181, 67, 42, 0.1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--earth);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover { color: var(--terracotta); }

.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(181, 67, 42, 0.3);
}

/* Brush stroke divider */
.brush-divider {
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 Q300,35 600,20 T1200,20' stroke='%23C9940A' stroke-width='2' fill='none' opacity='0.4'/%3E%3C/svg%3E") center no-repeat;
    background-size: 100% auto;
    margin: 0;
}

.brush-divider-dark {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 Q300,5 600,20 T1200,20' stroke='%23E8B84A' stroke-width='2' fill='none' opacity='0.5'/%3E%3C/svg%3E") center no-repeat;
    background-size: 100% auto;
}

/* Hero Section - Scenario Driven */
.hero {
    padding: 120px 5% 60px;
    background: linear-gradient(165deg, var(--parchment) 0%, var(--cream) 50%, var(--gold-pale) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 148, 10, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.hero-text h1 .scenario {
    display: block;
    font-size: 1.1rem;
    color: var(--terracotta);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-text h1 .highlight {
    color: var(--terracotta);
}

.hero-claim {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--earth);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 67, 42, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.hero-note {
    font-size: 0.9rem;
    color: var(--stone);
}

.hero-pitch {
    font-size: 0.95rem;
    color: var(--stone);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--sand);
    max-width: 450px;
    line-height: 1.7;
}

/* Hero Preview - Chat Interface */
.hero-preview {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(26, 22, 20, 0.15), 0 10px 30px rgba(26, 22, 20, 0.1);
    overflow: hidden;
    border: 1px solid rgba(181, 67, 42, 0.1);
}

.preview-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth) 100%);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dot-1 { background: var(--terracotta); }
.preview-dot-2 { background: var(--gold); }
.preview-dot-3 { background: var(--sage); }

.preview-query {
    background: var(--parchment);
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(181, 67, 42, 0.1);
    font-style: italic;
}

.preview-response {
    padding: 20px;
}

.preview-response h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--stone);
    margin-bottom: 12px;
}

.preview-framework {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--parchment) 100%);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--earth);
    margin: 0 6px 8px 0;
    border: 1px solid var(--gold);
}

.preview-action {
    margin-top: 16px;
    padding: 14px;
    background: linear-gradient(135deg, rgba(181, 67, 42, 0.08) 0%, rgba(201, 148, 10, 0.08) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--terracotta);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.preview-action-icon {
    color: var(--terracotta);
    font-weight: bold;
    font-size: 1.1rem;
}

.preview-action-text {
    font-size: 0.9rem;
    color: var(--earth);
    line-height: 1.5;
}

/* Framework Credibility Strip */
.framework-strip {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth) 100%);
    padding: 28px 5%;
    text-align: center;
}

.framework-strip-inner {
    max-width: 900px;
    margin: 0 auto;
}

.framework-strip p {
    color: #D4C9BE;
    font-size: 0.94rem;
    margin-bottom: 8px;
}

.framework-strip .coverage {
    color: #D4C9BE;
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* Framework badges removed - keeping CSS for reference */

/* Sections */
.section-alt {
    background: var(--parchment);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--stone);
    font-size: 1.10rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Scenarios Section */
#scenarios {
    padding: 42px 5%;
}

#scenarios .section-header {
    margin-bottom: 32px;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(181, 67, 42, 0.1);
    transition: all 0.3s;
}

.scenario-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 22, 20, 0.12);
}

.scenario-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.scenario-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--terracotta);
    margin-bottom: 10px;
}

.scenario-card p {
    font-size: 0.945rem;
    font-weight: 450;
    color: var(--earth);
    line-height: 1.6;
}

/* How It Works */
#how {
    padding: 60px 5%;
}

.journey {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--gold));
    opacity: 0.4;
}

.journey-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.journey-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(181, 67, 42, 0.3);
}

.journey-step:nth-child(2) .journey-circle {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    box-shadow: 0 4px 15px rgba(201, 148, 10, 0.3);
}

.journey-step:nth-child(3) .journey-circle {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    box-shadow: 0 4px 15px rgba(74, 124, 94, 0.3);
}

.journey-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.journey-step p {
    font-size: 0.945rem;
    font-weight: 450;
    color: var(--stone);
    max-width: 200px;
    margin: 0 auto;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    padding: 40px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.stat p {
    color: #D4C9BE;
    font-size: 0.99rem;
    font-weight: 500;
}

.stats-footnote {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.82rem;
}

/* Pricing Section */
#pricing {
    padding: 60px 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 750px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 2px solid var(--parchment);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(26, 22, 20, 0.12);
}

.pricing-card.featured {
    border-color: var(--terracotta);
    box-shadow: 0 10px 40px rgba(181, 67, 42, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 6px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--stone);
    font-weight: 400;
}

.pricing-queries {
    font-size: 0.95rem;
    color: var(--stone);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--parchment);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--earth);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--sage);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pro-strategy {
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(181, 67, 42, 0.08) 0%, rgba(201, 148, 10, 0.08) 100%);
    border-radius: 8px;
    border-left: 3px solid var(--terracotta);
}

.pro-strategy h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-bottom: 6px;
}

.pro-strategy p {
    font-size: 0.85rem;
    color: var(--earth);
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--stone);
    font-size: 0.95rem;
}

.pricing-note a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 500;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Section Dense */
.section-dense {
    padding: 50px 5%;
}

/* Educators Section */
.educators-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.educators-intro blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.educators-description {
    font-size: 1rem;
    color: var(--earth);
    line-height: 1.7;
    margin-bottom: 25px;
}

.educators-cta {
    margin-top: 20px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
    padding: 70px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 4'%3E%3Cpath d='M0,2 Q300,4 600,2 T1200,2' stroke='%23E8B84A' stroke-width='2' fill='none' opacity='0.35'/%3E%3C/svg%3E") center no-repeat;
    background-size: 100% auto;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 4'%3E%3Cpath d='M0,2 Q300,0 600,2 T1200,2' stroke='%23E8B84A' stroke-width='1.5' fill='none' opacity='0.25'/%3E%3C/svg%3E") center no-repeat;
    background-size: 100% auto;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--sand);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.final-cta .cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.final-cta .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.final-cta .btn-primary:hover {
    background: var(--gold-light);
}

.final-cta .btn-secondary {
    border-color: var(--sand);
    color: var(--sand);
    background: transparent;
}

.final-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal);
}

/* Footer */
footer {
    background: var(--ink);
    padding: 50px 5% 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand .logo-text {
    font-size: 1.6rem;
}

.footer-brand .logo-text .culture { color: var(--terracotta-light); }
.footer-brand .logo-text .navigator { color: var(--parchment); }

.footer-brand p {
    color: #D4C9BE;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul { list-style: none; }

.footer-links a {
    color: #D4C9BE;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
    font-weight: 500;
    color: #D4C9BE;
}

/* Hero Preview Authority (Desktop) */
@media (min-width: 901px) {
    .hero-preview {
        transform: scale(1.1);
        transform-origin: center;
    }
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-preview {
        order: -1;
    }

    .framework-strip-inner {
        padding: 0 10px;
    }

    .scenario-grid {
        grid-template-columns: 1fr;
    }

    .journey {
        flex-direction: column;
        gap: 30px;
    }

    .journey::before {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    nav ul {
        gap: 16px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
