/* ========================================
   FRACTAL ACCELERATOR - SHARED STYLES
   Design System: Classic Macintosh (Snow White)
   ======================================== */

/* ========================================
   1. CSS VARIABLES (Design Tokens)
   ======================================== */
:root {
    /* Color Palette - Snow White Era */
    --color-platinum: #E8E8E8;
    --color-fog: #F5F5F0;
    --color-charcoal: #2C2C2C;
    --color-slate: #5A5A5A;
    --color-white: #FFFFFF;
    --color-line: #D0D0D0;
    --color-error: #8B0000;

    /* Typography */
    --font-primary: "Geneva", "Chicago", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Font Sizes */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 36px;
    --text-4xl: 48px;

    /* Spacing Scale */
    --space-1: 2px;
    --space-2: 4px;
    --space-3: 8px;
    --space-4: 12px;
    --space-5: 16px;
    --space-6: 24px;
    --space-7: 32px;
    --space-8: 48px;
    --space-9: 64px;

    /* Layout */
    --max-width: 960px;
}

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-charcoal);
    background: var(--color-fog);
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   3. HEADER & NAVIGATION
   ======================================== */
header {
    background: var(--color-platinum);
    border-bottom: 3px solid var(--color-charcoal);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-5) var(--space-7);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--text-xl);
    font-weight: 700;
    text-decoration: none;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: var(--space-5);
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* ========================================
   4. BUTTONS
   ======================================== */
.btn-primary,
.btn-secondary {
    background-color: white;
    color: #C7547C;
    border: 3px solid #C7547C;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 0 #C7547C;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-primary:hover,
.btn-secondary:hover {
    background-color: #C7547C;
    color: white;
}

.btn-primary:active,
.btn-secondary:active {
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
}

/* ========================================
   5. LAYOUT
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}


main {
    padding: var(--space-9) 0;
    min-height: calc(100vh - 200px);
}

section {
    padding: var(--space-8) 0;
}

/* ========================================
   6. WINDOW COMPONENTS (Classic Mac Style)
   ======================================== */
.window {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-7);
}

.window-title {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid var(--color-charcoal);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.window-title-with-dots {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.window-title-with-dots::before {
    content: "\25FE \25FE \25FE";
    font-size: var(--text-xs);
    letter-spacing: 2px;
}

.window-content {
    padding: var(--space-6);
}

/* Hero Window (larger shadow) */
.hero-window {
    background: var(--color-white);
    border: 3px solid var(--color-charcoal);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.hero-title-bar {
    background: var(--color-platinum);
    padding: var(--space-3);
    border-bottom: 3px solid var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.hero-title-bar::before {
    content: "\25FE \25FE \25FE";
    font-size: var(--text-xs);
    letter-spacing: 2px;
}

.hero-content {
    padding: var(--space-7);
    background: var(--color-white);
    text-align: center;
}

/* ========================================
   7. HERO SECTION
   ======================================== */
.hero {
    padding: var(--space-9) 0 var(--space-8);
}

.hero-icon {
    width: 80px;
    height: auto;
    margin: 0 auto var(--space-6);
    opacity: 0.8;
}

.hero h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    color: var(--color-charcoal);
}

.hero-subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-7);
    line-height: 1.5;
    color: var(--color-slate);
}

.hero-ctas {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   8. SECTION STYLES
   ======================================== */
.section-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    font-weight: 700;
    color: var(--color-slate);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-7);
    color: var(--color-charcoal);
    padding-bottom: var(--space-4);
    border-bottom: 3px solid var(--color-charcoal);
    display: inline-block;
}

.section-content {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.section-content p {
    margin-bottom: var(--space-4);
}

.section-content ul {
    list-style: none;
    margin-bottom: var(--space-4);
}

.section-content li {
    padding-left: var(--space-5);
    margin-bottom: var(--space-3);
    position: relative;
    line-height: 1.6;
}

.section-content li:before,
.cohort-list li:before,
.benefits-list li:before,
.bullet-list li:before {
    content: "\25AA";
    position: absolute;
    left: 0;
    font-weight: 700;
}

.section-content strong {
    font-weight: 700;
}

/* ========================================
   9. STATS
   ======================================== */
.stats {
    padding: var(--space-8) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.stat-box {
    background: var(--color-platinum);
    border: 2px solid var(--color-charcoal);
    padding: var(--space-6);
    text-align: center;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.15);
}

.stat-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-3);
    color: var(--color-charcoal);
}

.stat-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* ========================================
   10. PARTNERS
   ======================================== */
.partners {
    padding: var(--space-7) 0;
    background: var(--color-platinum);
    border-top: 2px solid var(--color-line);
    border-bottom: 2px solid var(--color-line);
}

.partners-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: var(--space-5);
    font-weight: 700;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

.partner-logo {
    padding: var(--space-3);
    background: var(--color-white);
    border: 1px solid var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    min-width: 120px;
}

.partner-logo img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* ========================================
   11. COHORT DETAILS
   ======================================== */
.cohort-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.cohort-detail {
    background: var(--color-platinum);
    padding: var(--space-4);
    border: 2px solid var(--color-charcoal);
}

.cohort-detail h4 {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
    font-weight: 700;
}

.cohort-detail p {
    font-size: var(--text-lg);
    font-weight: 700;
}

.cohort-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.cohort-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.cohort-list li {
    padding-left: var(--space-5);
    margin-bottom: var(--space-3);
    position: relative;
    font-size: var(--text-base);
    line-height: 1.5;
}

/* bullet style consolidated into shared rule in section 8 */

.cohort-price {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.cohort-price-note {
    font-size: var(--text-sm);
    color: var(--color-slate);
    margin-bottom: var(--space-6);
}

.cohort-ctas {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* ========================================
   12. VALUE PROPS
   ======================================== */
.value-props {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}

.value-prop h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--color-charcoal);
}

.value-prop h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-top: var(--space-5);
    margin-bottom: var(--space-2);
}

.value-prop p {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.value-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-link:hover {
    text-decoration: underline;
}

/* ========================================
   13. TESTIMONIALS
   ======================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.testimonials-featured {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.testimonials-featured .testimonial-video-card {
    margin-bottom: 0;
    max-width: 300px;
    width: 100%;
}

.testimonials-featured .testimonial-video-card .window-content {
    padding: 0;
}

.testimonial-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: #000;
}

.testimonials-featured .testimonial-role {
    padding: var(--space-3) var(--space-4);
}

.testimonial-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-name {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.testimonial-role {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate);
    margin-bottom: var(--space-4);
    font-weight: 700;
}

.testimonial-quote {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-4);
    font-style: italic;
}

.testimonial-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-link:hover {
    text-decoration: underline;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

/* ========================================
   14. FAQ
   ======================================== */
.faq-list {
    display: grid;
    gap: var(--space-6);
}

.faq-question {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.faq-answer {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.faq-answer p {
    margin-bottom: var(--space-3);
}

.faq-answer ul {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.faq-answer li {
    margin-bottom: var(--space-2);
}

.faq-answer strong {
    color: var(--color-charcoal);
    font-weight: 700;
}

.faq-answer a {
    color: var(--color-charcoal);
    text-decoration: underline;
    font-weight: 700;
}

.faq-answer a:hover {
    color: var(--color-slate);
}

.faq-link {
    text-decoration: none;
    color: var(--color-charcoal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
}

.faq-link:hover {
    text-decoration: underline;
}

.highlight {
    background: var(--color-platinum);
    padding: var(--space-1) var(--space-2);
    border: 1px solid var(--color-charcoal);
    font-weight: 700;
    color: var(--color-charcoal);
}

/* FAQ Section (faq.html specific) */
.faq-section {
    padding: var(--space-8) 0;
}

.faq-category {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-7);
}

.category-title-bar {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-5);
    border-bottom: 2px solid var(--color-charcoal);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-content {
    padding: var(--space-6);
}

.faq-item {
    padding-bottom: var(--space-6);
    margin-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-line);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-cta {
    background: var(--color-white);
    border: 3px solid var(--color-charcoal);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: var(--space-7);
}

.faq-cta .category-title-bar {
    border-bottom: 3px solid var(--color-charcoal);
}

/* ========================================
   15. FINAL CTA
   ======================================== */
.final-cta {
    text-align: center;
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-9) 0;
    border-top: 4px solid var(--color-charcoal);
    border-bottom: 4px solid var(--color-charcoal);
}

.final-cta h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.final-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-7);
}

.final-cta .btn-primary {
    background-color: white;
    color: #C7547C;
    border-color: #C7547C;
}

.final-cta .btn-primary:hover {
    background-color: #C7547C;
    color: white;
}

.final-cta-note {
    font-size: var(--text-sm);
    margin-top: var(--space-6);
}

.final-cta-note a {
    color: var(--color-platinum);
    font-weight: 700;
}

/* CTA Section (alternative style) */
.cta-section {
    padding: var(--space-8) 0 var(--space-9);
}

.cta-window {
    background: var(--color-white);
    border: 3px solid var(--color-charcoal);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.cta-title-bar {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-5);
    border-bottom: 3px solid var(--color-charcoal);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.cta-content {
    padding: var(--space-8);
    text-align: center;
}

.cta-content h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--color-slate);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

/* ========================================
   16. FOOTER
   ======================================== */
footer {
    background: var(--color-platinum);
    padding: var(--space-7) 0 var(--space-6);
    border-top: 3px solid var(--color-charcoal);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: var(--space-7);
    margin-bottom: var(--space-6);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-2);
}

.footer-section a {
    text-decoration: none;
    color: var(--color-charcoal);
    font-size: var(--text-sm);
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: var(--space-5);
    border-top: 2px solid var(--color-charcoal);
}

.footer-text {
    text-align: center;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-text p {
    margin-bottom: var(--space-2);
}

.footer-text a {
    color: var(--color-charcoal);
    font-weight: 700;
}

/* ========================================
   17. MODAL
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    background: var(--color-white);
    border: 3px solid var(--color-charcoal);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-title-bar {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-4);
    border-bottom: 3px solid var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-text {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.modal-title-text::before {
    content: "\25FE \25FE \25FE";
    font-size: var(--text-xs);
    letter-spacing: 2px;
}

.modal-close {
    background: var(--color-charcoal);
    color: var(--color-white);
    border: 2px solid var(--color-charcoal);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--text-sm);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.modal-close:active {
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
}

.modal-content {
    padding: var(--space-7);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.modal-header h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-charcoal);
}

.modal-header p {
    font-size: var(--text-base);
    color: var(--color-slate);
}

.modal-form-group {
    margin-bottom: var(--space-5);
}

.modal-form-group label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-form-group input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-size: var(--text-base);
    font-family: var(--font-primary);
}

.modal-form-group input:focus {
    outline: none;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.modal-form-group input::placeholder {
    color: var(--color-slate);
}

.modal-submit {
    width: 100%;
    background-color: white;
    color: #C7547C;
    border: 3px solid #C7547C;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 0 #C7547C;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: var(--font-primary);
    margin-top: var(--space-4);
}

.modal-submit:hover {
    background-color: #C7547C;
    color: white;
}

.modal-submit:active {
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
}

.modal-submit:disabled {
    background: var(--color-platinum);
    color: var(--color-slate);
    border-color: var(--color-slate);
    cursor: not-allowed;
    box-shadow: none;
}

/* ========================================
   18. FORMS (apply.html)
   ======================================== */
.form-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.form-header h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--color-charcoal);
}

.form-header p {
    font-size: var(--text-lg);
    color: var(--color-slate);
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-7);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-line);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--color-platinum);
    border: 2px solid var(--color-charcoal);
    color: var(--color-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.step.active .step-number {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.step-label {
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate);
}

.step.active .step-label {
    color: var(--color-charcoal);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-3);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.optional {
    color: var(--color-slate);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"] {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: none;
}

input:focus {
    outline: none;
    border-color: var(--color-charcoal);
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);
}

input::placeholder {
    color: var(--color-slate);
}

.error-message {
    color: var(--color-error);
    font-size: var(--text-xs);
    margin-top: var(--space-2);
    display: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group.error input {
    border-color: var(--color-error);
    background: #FFF5F5;
}

.form-group.error .error-message {
    display: block;
}

.btn {
    width: 100%;
    background-color: white;
    color: #C7547C;
    border: 3px solid #C7547C;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 4px 4px 0 #C7547C;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-family: var(--font-primary);
    margin-top: var(--space-5);
}

.btn:hover {
    background-color: #C7547C;
    color: white;
}

.btn:active {
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translate(1px, 1px);
}

.btn:disabled {
    background: var(--color-platinum);
    color: var(--color-slate);
    border-color: var(--color-slate);
    cursor: not-allowed;
    box-shadow: none;
}

.booking-container {
    display: none;
}

.booking-container.active {
    display: block;
}

.booking-iframe {
    width: 100%;
    height: 700px;
    border: 2px solid var(--color-charcoal);
    background: var(--color-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-charcoal);
    text-decoration: none;
    margin-bottom: var(--space-6);
    font-weight: 700;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-link:hover {
    text-decoration: underline;
}

/* ========================================
   18b. AMA FORM STYLES
   ======================================== */
textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    color: var(--color-charcoal);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    resize: vertical;
}

textarea:focus {
    outline: none;
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);
}

textarea::placeholder {
    color: var(--color-slate);
}

.form-group.error textarea {
    border-color: var(--color-error);
    background: #FFF5F5;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-3);
}

.radio-option {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
}

.radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-charcoal);
    cursor: pointer;
    accent-color: var(--color-charcoal);
}

.radio-option span {
    font-size: var(--text-base);
}

.alert-error {
    padding: var(--space-4) var(--space-5);
    border: 2px solid var(--color-error);
    background: #FFF5F5;
    color: var(--color-error);
    margin-bottom: var(--space-5);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: none;
}

.success-message {
    text-align: center;
    padding: var(--space-7) 0;
}

.success-message h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.success-message p {
    color: var(--color-slate);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

/* ========================================
   19. TEAM PAGE
   ======================================== */
.stats-section {
    padding: var(--space-8) 0;
}

.stats-window {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

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

.stat {
    padding: var(--space-6);
    text-align: center;
    border-right: 2px solid var(--color-charcoal);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    display: block;
}

.team-section {
    padding: var(--space-8) 0;
}

.team-member {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-7);
}

.member-title-bar {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid var(--color-charcoal);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.member-content {
    padding: var(--space-6);
}

.member-header {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 2px solid var(--color-line);
}

.member-photo {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-charcoal);
    background: var(--color-platinum);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-3xl);
    font-weight: 700;
    flex-shrink: 0;
}

.member-info h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.member-role {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.member-experience {
    font-size: var(--text-sm);
    color: var(--color-slate);
    line-height: 1.6;
    margin-bottom: var(--space-1);
}

.member-bio {
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-5);
    color: var(--color-charcoal);
}

.member-quote {
    background: var(--color-platinum);
    border: 2px solid var(--color-charcoal);
    padding: var(--space-5);
    margin-bottom: var(--space-5);
}

.quote-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: var(--space-3);
    display: block;
}

.member-quote p {
    font-size: var(--text-base);
    line-height: 1.6;
    font-style: italic;
}

.engineer-quote {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    border-left: 4px solid var(--color-charcoal);
    padding: var(--space-4);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.engineer-quote strong {
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--text-xs);
    letter-spacing: 0.05em;
}

.differentiators {
    padding: var(--space-8) 0;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.diff-card {
    background: var(--color-white);
    border: 2px solid var(--color-charcoal);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.diff-card-title {
    background: var(--color-platinum);
    padding: var(--space-3) var(--space-4);
    border-bottom: 2px solid var(--color-charcoal);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diff-card-content {
    padding: var(--space-5);
}

.diff-card p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-slate);
}

/* ========================================
   20. SCHOLARSHIP PAGE
   ======================================== */
.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto var(--space-6);
    display: block;
    border: 2px solid var(--color-charcoal);
}

.hero-highlight {
    background: var(--color-platinum);
    padding: var(--space-5);
    border: 2px solid var(--color-charcoal);
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
    font-weight: 700;
}

.criteria-grid {
    display: grid;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.criteria-item {
    background: var(--color-platinum);
    padding: var(--space-5);
    border: 2px solid var(--color-charcoal);
}

.criteria-item h4 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.criteria-item p {
    font-size: var(--text-base);
    line-height: 1.5;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.timeline-item {
    background: var(--color-white);
    padding: var(--space-5);
    border: 2px solid var(--color-charcoal);
}

.timeline-item h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item p {
    font-size: var(--text-base);
    font-weight: 700;
}

/* ========================================
   21. CONTENT TEXT (hire.html, etc.)
   ======================================== */
.content-text {
    font-size: var(--text-base);
    line-height: 1.5;
    margin-bottom: var(--space-5);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.benefits-list li {
    padding-left: var(--space-5);
    margin-bottom: var(--space-3);
    position: relative;
    font-size: var(--text-base);
    line-height: 1.5;
}

/* bullet style consolidated into shared rule in section 8 */

/* ========================================
   21b. PORTAL FEATURES (hire page)
   ======================================== */
.portal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

/* ========================================
   22. SHARED COMPONENT CLASSES
   ======================================== */

/* Photo grid (community preview, etc.) */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
}

.photo-grid-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #000;
    box-shadow: 4px 4px 0 #000;
}

/* Value prop card images */
.value-prop-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: var(--space-4);
    border-radius: 4px;
}

/* Alumni spotlight cards (outcomes, testimonials) */
.alumni-layout {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.alumni-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid var(--color-charcoal);
    flex-shrink: 0;
}

.alumni-info {
    flex: 1;
    min-width: 250px;
}

.alumni-transition {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #C7547C;
    margin-bottom: var(--space-2);
}

.alumni-role {
    margin-bottom: var(--space-3);
}

.alumni-tags {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.alumni-tag {
    padding: 6px 12px;
    background: var(--color-fog);
    border: 2px solid var(--color-charcoal);
    font-weight: 700;
    font-size: var(--text-sm);
}

.alumni-details {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 2px solid var(--color-line);
}

.alumni-quote {
    font-size: var(--text-lg);
    font-style: italic;
    padding: var(--space-4);
    background: var(--color-fog);
    border-left: 4px solid #C7547C;
}

/* Mini alumni cards (outcomes "more alumni" grid) */
.alumni-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

/* Testimonial transition label (inline in testimonial grid) */
.testimonial-transition {
    font-weight: 700;
    color: #C7547C;
    margin-bottom: var(--space-2);
}

/* Section with fog background */
.section-fog {
    background: var(--color-fog);
    padding: var(--space-8) 0;
}

/* Shared bullet list style */
.bullet-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.bullet-list li {
    padding-left: var(--space-5);
    margin-bottom: var(--space-3);
    position: relative;
    line-height: 1.6;
}

/* bullet style consolidated into shared rule in section 8 */

/* Center-text utility for CTA links */
.text-center-mt {
    margin-top: var(--space-6);
    text-align: center;
}

/* ========================================
   23. RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: var(--space-6);
    }

    .footer-section {
        flex: 0 1 45%;
        min-width: 200px;
    }
}

/* ========================================
   24. RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--text-2xl);
    }

    .stats-grid,
    .partners-grid,
    .cohort-details,
    .testimonials,
    .testimonials-featured,
    .testimonial-grid,
    .value-props,
    .portal-features,
    .alumni-mini-grid {
        grid-template-columns: 1fr;
    }

    .alumni-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .testimonial-video-wrap {
        padding-bottom: 177.78%;
        max-width: 315px;
        margin: 0 auto;
    }

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

    .stat {
        border-right: none;
        border-bottom: 2px solid var(--color-charcoal);
    }

    .stat:nth-child(odd) {
        border-right: 2px solid var(--color-charcoal);
    }

    .stat:last-child,
    .stat:nth-last-child(2) {
        border-bottom: none;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-6);
    }

    .footer-section {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .hero-ctas,
    .cohort-ctas {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: var(--space-2);
    }

    .modal-content {
        padding: var(--space-6) var(--space-5);
    }

    .window-content {
        padding: var(--space-6) var(--space-5);
    }

    .form-header h1 {
        font-size: var(--text-2xl);
    }

    .step-label {
        display: none;
    }

    .booking-iframe {
        height: 600px;
    }

    .faq-question {
        font-size: var(--text-base);
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: var(--space-5);
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

    .section-title {
        font-size: var(--text-2xl);
    }
}

