/* VARIABLES FOR PRESET C: BOLD ACCENT */
:root {
    --motion-bg: #FAFAFA;
    --motion-surface: #EAEAEA;
    --motion-dark: #1A1A1A;
    --motion-dark-tone: #292929;
    --motion-accent: #E85D04;
    --motion-accent-hover: #DC2F02;
    --motion-text: #2C2C2C;
    --motion-text-light: #FFFFFF;
    
    --motion-gradient: linear-gradient(135deg, #FFBA08 0%, #E85D04 100%);
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --pad-section: 10dvh;
    --rad-soft: 16px;
    --shadow-raised: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--motion-text);
    background-color: var(--motion-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* TYPOGRAPHY */
.headline-primary {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.headline-secondary {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.bold-minor-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.intro-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    opacity: 0.9;
}

.standard-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--motion-text);
}

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

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

/* LAYOUT UTILITIES */
.core-bounding-box {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--pad-section) 0;
}

.max-narrow {
    max-width: 800px;
}

/* HEADER (Preset C: Accent Background) */
.top-navigate {
    background: var(--motion-accent);
    color: var(--motion-text-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-raised);
}

.navigate-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.site-links-wrap {
    display: flex;
    gap: 2.5rem;
}

.site-links-wrap a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

.site-links-wrap a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--motion-text-light);
    transition: width 0.3s;
}

.site-links-wrap a:hover::after,
.site-links-wrap a:focus::after {
    width: 100%;
}

.mobile-checkbox {
    display: none;
}

.hamburger-trigger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

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

/* BUTTONS */
.action-pill-accent {
    display: inline-block;
    background: var(--motion-accent);
    color: var(--motion-text-light);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--motion-accent);
    box-shadow: var(--shadow-raised);
}

.action-pill-accent:hover {
    background: var(--motion-accent-hover);
    border-color: var(--motion-accent-hover);
    transform: translateY(-2px);
}

.action-pill-light {
    display: inline-block;
    background: var(--motion-text-light);
    color: var(--motion-accent);
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-raised);
}

.action-pill-light:hover {
    background: var(--motion-surface);
    transform: translateY(-2px);
}

.distribute-full {
    width: 100%;
    text-align: center;
}

/* INDEX: HERO PRESET C */
.landing-intro-burst {
    min-height: 90vh;
    background: var(--motion-gradient);
    color: var(--motion-text-light);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.giant-bg-number {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-size: 40vw;
    font-family: var(--font-display);
    font-weight: 900;
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.burst-content-left {
    flex: 1.2;
    padding: 5% 5% 5% 10%;
    position: relative;
    z-index: 2;
}

.burst-visual-right {
    flex: 0.8;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-abstract-art {
    width: 100%;
    height: 500px;
    position: relative;
}

.hero-abstract-art::before,
.hero-abstract-art::after {
    content: '';
    position: absolute;
    background: var(--motion-text-light);
    opacity: 0.2;
}

.hero-abstract-art::before {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    right: 20%;
}

.hero-abstract-art::after {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 15%;
    transform: rotate(30deg);
}

/* INDEX: CONTENT POLYGON */
.vitality-polygon-area {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    position: relative;
    margin: -4dvh 0;
    z-index: 5;
}

.polygon-overlay {
    background: rgba(0,0,0,0.4);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--pad-section) 5%;
}

.polygon-text-box {
    background: rgba(255,255,255,0.92);
    padding: 3rem;
    border-radius: var(--rad-soft);
    max-width: 800px;
    text-align: center;
    box-shadow: var(--shadow-raised);
}

/* INDEX: FEATURES NUMBERS PRESET C */
.habit-numbers-grid-wrap {
    background: var(--motion-surface);
}

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

.number-item {
    position: relative;
}

.huge-accent-num {
    display: block;
    font-size: 5rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--motion-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

/* INDEX: HOW IT WORKS PRESET C */
.progress-pathway-zone {
    background: var(--motion-bg);
}

.learning-path {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.learning-path::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: var(--motion-accent);
    z-index: 1;
}

.path-node {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.node-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.node-circle.fill {
    background: var(--motion-accent);
    color: var(--motion-text-light);
}

.node-circle.outline {
    background: var(--motion-bg);
    border: 6px solid var(--motion-accent);
    color: var(--motion-accent);
}

/* CTA STRIP PRESET C */
.action-dark-strip {
    background: var(--motion-dark);
    padding: var(--pad-section) 5%;
}

.strip-flex-box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.strip-flex-box h2 {
    margin: 0;
    flex: 1;
}

/* EXPERT PAGE */
.expert-minimal-head {
    background: var(--motion-surface);
    padding-top: calc(var(--pad-section) * 1.5);
    padding-bottom: var(--pad-section);
}

.bio-split-zone {
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}

.bio-text-side {
    flex: 0 0 55%;
    padding: var(--pad-section) 8%;
    background: var(--motion-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bio-image-side {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
}

.benefit-marker-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefit-marker-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-marker-list .marker {
    width: 12px;
    height: 12px;
    background: var(--motion-accent);
    border-radius: 50%;
    margin-right: 1rem;
}

.metrics-row {
    background: var(--motion-dark-tone);
    color: var(--motion-text-light);
}

.metrics-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.metric-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--motion-accent);
    line-height: 1;
}

.metric-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.closing-wisdom-area {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wisdom-overlay {
    background: rgba(0,0,0,0.6);
    color: var(--motion-text-light);
    padding: var(--pad-section) 5%;
    text-align: center;
}

.wisdom-overlay p {
    color: var(--motion-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* RESERVE PAGE */
.enrollment-split-wrap {
    background: var(--motion-bg);
}

.enrollment-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.enroll-form-area {
    flex: 0 0 60%;
}

.enroll-info-area {
    flex: 0 0 35%;
}

.form-backdrop-panel {
    background: var(--motion-text-light);
    padding: 3rem;
    border-radius: var(--rad-soft);
    box-shadow: var(--shadow-raised);
    border-top: 6px solid var(--motion-accent);
}

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

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #CCC;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--motion-surface);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--motion-accent);
    background: var(--motion-text-light);
}

.input-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-checkbox-wrap input {
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
}

.input-checkbox-wrap label {
    font-size: 0.95rem;
}

.input-checkbox-wrap a {
    color: var(--motion-accent);
    text-decoration: underline;
}

.direct-contact-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.direct-contact-note a {
    color: var(--motion-accent);
    font-weight: bold;
}

.info-module {
    background: var(--motion-surface);
    padding: 2rem;
    border-radius: var(--rad-soft);
}

.colored-bullet-list {
    list-style: none;
    counter-reset: custom-counter;
}

.colored-bullet-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.colored-bullet-list li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    background: var(--motion-accent);
    color: var(--motion-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.knowledge-accordion-zone {
    background: var(--motion-surface);
}

.question-block {
    background: var(--motion-text-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow-raised);
    overflow: hidden;
}

.question-title {
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    background: var(--motion-dark-tone);
    color: var(--motion-text-light);
    list-style: none;
}

.question-title::-webkit-details-marker {
    display: none;
}

.answer-text {
    padding: 1.5rem;
    border-top: 1px solid #EEE;
    color: var(--motion-text);
}

/* LEGAL PAGES */
.legal-document-wrap {
    background: var(--motion-bg);
}

/* FOOTER */
.bottom-info {
    background: var(--motion-dark);
    color: var(--motion-text-light);
    padding: 4rem 5% 2rem;
}

.bottom-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.bottom-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
}

.bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.bottom-links a:hover {
    color: var(--motion-accent);
}

.disclaimer-area {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* COOKIE BANNER */
.cookie-notice-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--motion-dark);
    color: var(--motion-text-light);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-notice-bar p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 70%;
}

.cookie-toggles {
    display: flex;
    gap: 1rem;
}

.cookie-btn-fill {
    background: var(--motion-accent);
    color: var(--motion-text-light);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
}

.cookie-btn-outline {
    background: transparent;
    color: var(--motion-text-light);
    border: 1px solid var(--motion-text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .burst-content-left {
        padding: 5%;
    }
    .hero-abstract-art {
        display: none;
    }
    .action-dark-strip .strip-flex-box {
        flex-direction: column;
        text-align: center;
    }
    .bio-split-zone {
        flex-direction: column;
    }
    .bio-image-side {
        min-height: 400px;
    }
    .learning-path {
        flex-direction: column;
        gap: 3rem;
    }
    .learning-path::before {
        left: 40px;
        top: 0;
        width: 4px;
        height: 100%;
    }
    .path-node {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    .node-circle {
        margin: 0 2rem 0 0;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hamburger-trigger {
        display: flex;
    }
    .site-links-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--motion-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
        box-shadow: var(--shadow-raised);
    }
    .mobile-checkbox:checked ~ .site-links-wrap {
        display: flex;
    }
    .headline-primary {
        font-size: 2rem;
    }
    .vitality-polygon-area {
        clip-path: none;
        margin: 0;
    }
    .enrollment-layout {
        flex-direction: column;
    }
    .cookie-notice-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .cookie-notice-bar p {
        max-width: 100%;
    }
    .bottom-flex-wrapper {
        flex-direction: column;
        text-align: center;
    }
}