:root {
    --primary-black: #0e1111;
    --corporate-blue: #1a2a6c;
    --warning-yellow: #ffcc00;
    --clinical-white: #f4f4f4;
    --text-grey: #888;
}

body {
    background-color: var(--primary-black);
    color: var(--clinical-white);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Warning Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-content {
    background: #1a1a1a;
    padding: 4rem;
    border-top: 5px solid var(--warning-yellow);
    max-width: 600px;
    text-align: center;
}
.warning-icon {
    font-size: 3rem;
    color: var(--warning-yellow);
    margin-bottom: 1rem;
    font-weight: 900;
}

/* Typography */
h1 { font-size: 5rem; line-height: 0.9; margin-bottom: 2rem; font-weight: 900; letter-spacing: -2px; }
h2 { font-size: 3rem; text-transform: uppercase; letter-spacing: 2px; }
.highlight { color: var(--warning-yellow); }
.label { 
    text-transform: uppercase; 
    color: var(--warning-yellow); 
    font-family: 'Roboto Mono', monospace; 
    font-size: 0.9rem; 
    letter-spacing: 4px;
}

/* Nav */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 90%;
    z-index: 1000;
    background: rgba(14, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: grayscale(1) brightness(0.4);
}
.hero-content { z-index: 10; }

/* Checklist Section */
.checklist-section {
    position: relative;
    padding: 10rem 5%;
    display: flex;
    justify-content: flex-start;
}
.checklist-box {
    background: var(--warning-yellow);
    color: var(--primary-black);
    padding: 4rem;
    max-width: 500px;
    z-index: 10;
    transform: rotate(-2deg);
}
.check-list { list-style: none; margin-top: 2rem; }
.check-list li { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; }
.checklist-bg {
    position: absolute;
    top: 0; right: 0;
    width: 70%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Buttons */
.btn-main {
    background: var(--warning-yellow);
    color: #000;
    padding: 1.2rem 2.5rem;
    border: none;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s;
}
.btn-main:hover { transform: scale(1.05); }
.btn-compliance {
    background: transparent;
    border: 2px solid var(--warning-yellow);
    color: var(--warning-yellow);
    padding: 1rem 2rem;
    cursor: pointer;
}

/* Retail Section */
.retail-section {
    padding: 10rem 5%;
    background: linear-gradient(to bottom, #0e1111, #1a1a1a);
}
.flex-row { display: flex; align-items: center; gap: 6rem; }
.book-mockup img { 
    width: 100%; 
    max-width: 450px; 
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8));
    transform: perspective(1000px) rotateY(-15deg);
}

.retail-buttons { display: flex; gap: 1.5rem; margin-top: 3rem; }
.btn-retail {
    background: #222;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border: 1px solid #444;
    transition: 0.3s;
    font-size: 1.1rem;
    font-weight: 700;
}
.btn-retail span { display: block; font-size: 0.7rem; color: var(--text-grey); text-transform: uppercase; }
.btn-retail:hover { border-color: var(--warning-yellow); background: #000; }

/* Board Section - Adding the Female Leader */
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 4rem; }
.board-member { position: relative; overflow: hidden; height: 600px; }
.board-member img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: 0.5s; }
.board-member:hover img { filter: grayscale(0) brightness(0.8); transform: scale(1.05); }
.member-info { 
    position: absolute; bottom: 0; left: 0; padding: 2rem; 
    background: linear-gradient(transparent, #000); width: 100%; 
}

/* Merchandise Section */
.shop-section { padding: 8rem 5%; background: #000; }
.shop-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 3rem; 
    margin-top: 4rem; 
}
.shop-card { 
    background: #111; 
    border: 1px solid #222; 
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.shop-card:hover { transform: translateY(-15px); border-color: var(--warning-yellow); }
.product-img img { width: 100%; height: auto; display: block; filter: brightness(0.9); }
.product-details { padding: 1.5rem; text-align: center; }
.product-details h4 { font-size: 1rem; text-transform: uppercase; margin-bottom: 0.5rem; color: #eee; }
.price { display: block; font-family: 'Roboto Mono', monospace; color: var(--warning-yellow); margin-bottom: 1.5rem; }
.btn-add { 
    width: 100%; padding: 0.8rem; border: 1px solid #444; background: transparent; 
    color: #fff; cursor: pointer; font-weight: 900; letter-spacing: 1px; 
}
.btn-add:hover { background: #fff; color: #000; }


/* Author Section */
.author-flex { display: flex; gap: 4rem; padding: 10% 5%; align-items: center; }
.author-image-container img { width: 100%; max-width: 500px; border: 10px solid #1a1a1a; filter: grayscale(1); }
.author-copy { max-width: 600px; }