/* Better Managers Club - The Future of Management 
   Premium, warm, modern, high-contrast, ultra-clean design
*/

:root {
    /* Core Palette */
    --bg-warm-white: #FCFAf8;
    /* Very soft warm off-white */
    --bg-light-gray: #F4F0EB;
    /* Slightly darker warm tone */
    --text-dark: #12100E;
    /* Near-black / soft slate */
    --text-body: #4A443E;
    /* Warmer dark gray for readable text */
    --bg-espresso: #1A1614;
    /* Very dark espresso */
    --bg-charcoal: #25201D;
    /* Softer dark for contrast blocks */
    --text-light: #FCFAf8;
    /* Light text on dark */

    /* Accents */
    --cta-primary: #E65A20;
    /* Vibrant warm orange */
    --cta-hover: #D04F18;
    --highlight: #E58D20;
    /* Golden/amber */
    --accent: #B82C00;
    /* Deep orange-red */

    --border-light: rgba(18, 16, 14, 0.06);
    --border-dark: rgba(252, 250, 248, 0.08);

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1140px;
    --container-padding: 2rem;
    --section-padding: 8rem 0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    /* Shadows - Extremely soft and premium */
    --shadow-sm: 0 4px 12px rgba(18, 16, 14, 0.03);
    --shadow-md: 0 12px 32px rgba(18, 16, 14, 0.05);
    --shadow-lg: 0 24px 64px rgba(18, 16, 14, 0.07);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-display,
.eyebrow {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.bg-espresso h1,
.bg-espresso h2,
.bg-espresso h3,
.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3 {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.max-w-lg {
    max-width: 800px;
}

.max-w-read {
    max-width: 700px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 3rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.py-12 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pt-xl {
    padding-top: 8rem;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-full {
    border-radius: 100px;
}

.border-dark {
    border: 1px solid var(--border-dark);
}

.inline-block {
    display: inline-block;
}

.border-top {
    border-top: 1px solid var(--border-light);
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

.align-center {
    align-items: center;
}

.flex-1 {
    flex: 1;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.pr-0 {
    padding-right: 0;
}

.bg-warm-white {
    background-color: var(--bg-warm-white);
}

.bg-light-gray {
    background-color: var(--bg-light-gray);
}

.bg-espresso {
    background-color: var(--bg-espresso);
    color: rgba(252, 250, 248, 0.8);
}

.bg-charcoal {
    background-color: var(--bg-charcoal);
    color: rgba(252, 250, 248, 0.8);
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

.text-body {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.bg-espresso .text-large,
.bg-charcoal .text-large {
    color: var(--text-light);
}

.text-xl {
    font-size: 1.5rem;
}

.text-sm {
    font-size: 0.95rem;
}

.text-dim {
    opacity: 0.6;
}

.text-tight {
    letter-spacing: -0.03em;
}

.font-medium {
    font-weight: 500;
}

.fw-semibold {
    font-weight: 600;
}

.highlight-color {
    color: var(--highlight);
}

.accent-color {
    color: var(--accent);
}

.highlight-bg {
    background-color: var(--bg-warm-white);
}

.border-highlight {
    border: 1px solid rgba(229, 141, 32, 0.3) !important;
}

.hover-highlight:hover {
    color: var(--highlight);
}

/* Typography Scale */
.clamp-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.clamp-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    text-align: center;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: rgba(252, 250, 248, 0.7);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 3.5rem;
    line-height: 1.5;
    text-align: center;
}

.text-dark .hero-subtitle {
    color: var(--text-body);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 3.5rem;
    line-height: 1.5;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--highlight);
    background: rgba(229, 141, 32, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.text-dark .eyebrow {
    color: var(--cta-primary);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.2rem 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

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

.logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    font-family: var(--font-body);
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--cta-primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 90, 32, 0.25);
}

.btn-small {
    padding: 0.7rem 1.75rem;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(230, 90, 32, 0.4);
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-subtext {
    font-size: 0.85rem;
    color: rgba(252, 250, 248, 0.5);
}

.text-dark .cta-subtext {
    color: var(--text-body);
}

.text-center .cta-wrapper,
.justify-center {
    align-items: center;
}

/* Sections Base */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid & Cards Base */
.grid {
    display: grid;
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--border-light);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card.dark-card {
    background: var(--bg-charcoal);
    color: rgba(252, 250, 248, 0.8);
    border: 1px solid var(--border-dark);
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
}

.dark-card p {
    color: rgba(252, 250, 248, 0.6);
}

.icon-wrap {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Section 2: Shift */
.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.shift-col {
    padding: 4rem 3.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.ai-col {
    background: var(--bg-light-gray);
    color: rgba(18, 16, 14, 0.6);
}

.human-col {
    background: #fff;
    color: var(--text-body);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.col-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ai-col .col-title {
    opacity: 0.8;
}

.highlight-text {
    color: var(--cta-primary);
}

.clean-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.clean-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.4;
}

.ai-col .clean-list li {
    opacity: 0.7;
}

.clean-list .icon {
    font-weight: 700;
    opacity: 0.4;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.human-col .icon.plus {
    color: var(--cta-primary);
    opacity: 1;
}

/* Section 3: Pain - Split Layout */
.section.pain {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: flex-start;
}

.split-sidebar {
    padding-right: 4rem;
}

.sticky-content {
    position: sticky;
    top: 140px;
    max-width: 400px;
}

.split-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pain-card-v2 {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pain-card-v2:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(230, 90, 32, 0.3);
}

.card-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cta-primary);
    opacity: 0.5;
    line-height: 1.1;
    padding-top: 0.15rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

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

    .split-sidebar {
        padding-right: 0;
    }

    .sticky-content {
        position: static;
        margin-bottom: 1rem;
    }

    .pain-card-v2:hover {
        transform: translateY(-5px);
    }
}

/* Section 4: Opportunity */
.opportunity-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.benefit-item {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: rgba(252, 250, 248, 0.8);
}

.benefit-item.highlight-text {
    color: var(--highlight);
}

.benefit-divider {
    width: 4px;
    height: 4px;
    background-color: rgba(252, 250, 248, 0.2);
    border-radius: 50%;
}

/* Section 5: Identity */
.identity-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 3rem;
    gap: 1.5rem;
}

.identity-card {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.card-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cta-primary);
    margin-bottom: 1rem;
}

/* Section 6: Product - Mosaic Layout */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mosaic-grid .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mosaic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mosaic-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding-bottom: 4rem;
}

.mosaic-wide {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
    padding: 3rem 4rem;
}

.mosaic-standard {
    grid-column: span 1;
}

.mosaic-full {
    grid-column: 1 / -1;
    padding: 3rem 4rem;
}

.mosaic-full .fw-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.mosaic-full .fw-text {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
}

.mosaic-full h3 {
    margin: 0;
    min-width: 200px;
    font-size: 1.5rem;
}

.mosaic-full p {
    margin: 0;
    font-size: 1.125rem;
}

.block-icon {
    margin-bottom: 0;
}

/* Section 7: Immediate Value */
.value-row {
    align-items: center;
}

.value-content {
    padding-right: 5rem;
}

.toolkit-mockup {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 460px;
}

.mockup-header {
    background: #fff;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-light);
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-dot {
    width: 8px;
    height: 8px;
    background: var(--cta-primary);
    border-radius: 50%;
    opacity: 0.8;
}

.mockup-body {
    padding: 0;
    background: var(--bg-warm-white);
}

.lesson-row {
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: rgba(18, 16, 14, 0.6);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.lesson-row:last-child {
    border-bottom: none;
}

.lesson-row.active {
    color: var(--text-dark);
    font-weight: 600;
    background: #fff;
    border-left: 3px solid var(--cta-primary);
}

.play-icon {
    font-size: 0.65rem;
    opacity: 0.3;
    transform: translateY(1px);
}

.lesson-row.active .play-icon {
    color: var(--cta-primary);
    opacity: 1;
}

/* Animations */
.fade-up,
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-up {
    transform: translateY(20px);
}

.fade-in-left {
    transform: translateX(-20px);
}

.fade-in-right {
    transform: translateX(20px);
}

.fade-up.visible,
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.stagger-cards>* {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-cards.visible>*:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.stagger-cards.visible>*:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.stagger-cards.visible>*:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.stagger-cards.visible>*:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.stagger-cards.visible>*:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .shift-grid {
        gap: 1.5rem;
    }

    .shift-col {
        padding: 3rem 2.5rem;
    }

    .value-row {
        flex-direction: column;
        gap: 4rem;
    }

    .value-content {
        padding-right: 0;
    }

    .toolkit-mockup {
        margin: 0 auto;
    }
}

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

    .hero {
        padding-top: 8rem;
    }

    .section {
        padding: 5rem 0;
    }

    .pt-xl {
        padding-top: 5rem;
    }

    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .mosaic-tall,
    .mosaic-wide,
    .mosaic-standard,
    .mosaic-full {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 2.5rem 2rem;
    }

    .mosaic-full .fw-content,
    .mosaic-full .fw-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .block-icon {
        margin-bottom: 1.5rem;
    }

    .mosaic-full h3 {
        width: auto;
        font-size: 1.35rem;
    }

    .d-none-md {
        display: none;
    }

    .d-none-sm {
        display: none;
    }

    .card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .d-none-sm {
        display: none;
    }
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-dark);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(252, 250, 248, 0.4);
}

.footer-link {
    color: rgba(252, 250, 248, 0.6);
    font-weight: 500;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}