:root {
    --primary: #0a1628;
    --accent: #ff6b35;
    --secondary: #004e89;
    --light: #f5f3f0;
    --mid: #8b9dc3;
    --dark: #1a1d2e;
}

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

body {
    font-family: 'Space Mono', monospace;
    background: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 78, 137, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #f5f3f0 0%, #e8e4df 100%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

header {
    padding: 2rem 5%;
    background: var(--primary);
    border-bottom: 4px solid var(--accent);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
    font-style: italic;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--mid);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

.event-date {
    color: var(--mid);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5% 4rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary);
    max-width: 900px;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--accent);
    opacity: 0.3;
    animation: underlineExpand 1.2s ease-out 1s both;
}

@keyframes underlineExpand {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.7;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border: 2px solid var(--primary);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.4s; }
.card:nth-child(2) { animation-delay: 0.5s; }
.card:nth-child(3) { animation-delay: 0.6s; }

.card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0 var(--accent);
}

.card-number {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.7;
}

.content-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--accent);
}

.thread-list {
    list-style: none;
    margin: 2rem 0;
}

.thread-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-left: 4px solid var(--secondary);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.thread-item:hover {
    border-left-color: var(--accent);
    transform: translateX(8px);
}

.thread-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.thread-item p {
    color: var(--secondary);
    line-height: 1.7;
}

/* =============================================
   PARTICIPANT SHOWCASE — new section
   ============================================= */

.participants-section {
    max-width: 1200px;
    margin: 5rem auto 2rem;
    padding: 0 5%;
}

.participants-banner {
    background: var(--primary);
    border: 4px solid var(--accent);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.participants-banner::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(255,107,53,0.08);
    border-radius: 50%;
}

.participants-banner::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 30%;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(0,78,137,0.08);
    border-radius: 50%;
}

.participants-banner-inner {
    position: relative;
    z-index: 1;
}

.participants-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.participants-headline {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.participants-headline em {
    color: var(--accent);
    font-style: italic;
}

.participants-subtext {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.7;
    max-width: 680px;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 3rem;
    border: 2px solid var(--primary);
    background: white;
}

.stat-block {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 2px solid var(--primary);
    position: relative;
}

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

.stat-number {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sector-card {
    background: white;
    border: 2px solid var(--primary);
    padding: 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--accent);
}

.sector-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.sector-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--mid);
    margin-bottom: 0.75rem;
}

.sector-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sector-orgs {
    font-size: 0.8rem;
    color: var(--secondary);
    line-height: 1.7;
}

.ind-federal { background-color: #004e89; }
.ind-university { background-color: #7f52cc; }
.ind-k12 { background-color: #3a8c4e; }
.ind-nonprofit { background-color: #ff6b35; }
.ind-industry { background-color: #c97a10; }
.ind-state { background-color: #b84040; }

/* =============================================
   CTA — workshop is happening
   ============================================= */

.workshop-live-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 4rem 5%;
    text-align: center;
}

.live-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
}

.live-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.1;
}

.live-description {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.live-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 3px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: left 0.4s ease;
}

.live-button span {
    position: relative;
    z-index: 1;
}

.live-button:hover::before { left: 0; }
.live-button:hover { border-color: var(--accent); }

/* Values */
.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 5%;
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, var(--accent) 48%, var(--accent) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--secondary) 48%, var(--secondary) 52%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.03;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    border: 2px solid var(--mid);
    transition: border-color 0.3s ease;
}

.value-item:hover { border-color: var(--accent); }

.value-icon { font-size: 2rem; margin-bottom: 1rem; }

.value-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.results-status {
    max-width: 900px;
    margin: 4rem auto;
    padding: 3rem 5%;
    background: white;
    border: 2px solid var(--primary);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.results-status p {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.results-grid {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.results-card {
    background: white;
    border: 2px solid var(--primary);
    padding: 1.75rem;
}

.results-card h3 {
    font-family: 'Fraunces', serif;
    color: var(--primary);
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.results-card p {
    color: var(--secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

.status-note {
    display: inline-block;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    padding: 0.45rem 1rem;
    text-transform: uppercase;
}

/* Planning committee */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
}

.page-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary);
}

.page-title .highlight {
    color: var(--accent);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 800px;
    line-height: 1.7;
}

.committee-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5% 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.committee-member {
    background: white;
    border: 2px solid var(--primary);
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.committee-member:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0 var(--accent);
}

.member-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent);
}

.member-photo.placeholder {
    background: linear-gradient(135deg, var(--mid) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 4rem;
    color: white;
    font-weight: 600;
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-title {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-org {
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.member-email {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--mid);
}

.member-email a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.member-email a:hover {
    color: var(--accent);
}

.member-bio {
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.7;
}

.coming-soon {
    font-style: italic;
    color: var(--mid);
    font-size: 0.9rem;
}

.committee-page footer {
    margin-top: 4rem;
}

.committee-page .footer-content {
    display: block;
    text-align: center;
}

.committee-page .footer-content p {
    font-size: 0.85rem;
}

.committee-page .footer-content a {
    color: var(--accent);
    text-decoration: none;
}

.committee-page .footer-content a:hover {
    text-decoration: underline;
}

footer {
    background: var(--dark);
    color: var(--mid);
    padding: 3rem 5%;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Fraunces', serif;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: var(--mid);
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-section a:hover { color: var(--accent); }

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    text-align: center;
    font-size: 0.85rem;
    color: var(--mid);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    nav { width: 100%; justify-content: center; }
    header { padding: 1.5rem 5%; }
    .header-content { flex-direction: column; align-items: flex-start; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-block:nth-child(2) { border-right: none; }
    .stat-block:nth-child(3) { border-top: 2px solid var(--primary); }
    .sector-grid { grid-template-columns: 1fr; }
    .participants-banner { padding: 2rem; }
    .results-status { padding: 2rem 5%; }
    .page-title { font-size: 2.5rem; }
    .committee-grid { grid-template-columns: 1fr; }
    .member-photo { height: 250px; }
}
