/* ===================================
   Grace Berman - News/Media Design
   Primary: #0f172a (deep ink)
   Secondary: #f8fafc (crisp white)
   Accent: #06b6d4 (cyan/teal)
   Highlight: #f97316 (orange)
   =================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

a {
    color: #06b6d4;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0891b2;
}

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

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background-color: #0f172a;
    color: #f8fafc;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

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

.logo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.logo a:hover {
    color: #06b6d4;
}

.credential {
    font-size: 0.75rem;
    font-weight: 500;
    color: #06b6d4;
    margin-left: 0.5rem;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #f8fafc;
}

.nav-cta {
    background-color: #06b6d4;
    color: #0f172a !important;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta:hover {
    background-color: #0891b2;
    color: #0f172a !important;
}

/* Hero Section */
.hero-news {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #06b6d4;
    margin-bottom: 1rem;
}

.hero-text h1 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-size: 3.25rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.broadcast-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.broadcast-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f8fafc;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #06b6d4;
    color: #0f172a;
}

.btn-primary:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #f8fafc;
    border-color: #f8fafc;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

/* Featured Bar */
.featured-bar {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.featured-bar .container-wide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.featured-orgs {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.org {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.separator {
    width: 4px;
    height: 4px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

/* Quote Feature */
.quote-feature {
    padding: 6rem 0;
    background-color: #ffffff;
}

.statement {
    border-left: 4px solid #06b6d4;
    padding-left: 2.5rem;
}

.statement p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    line-height: 1.5;
    color: #0f172a;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.statement cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-style: normal;
    color: #64748b;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #64748b;
}

.section-header .text-link {
    font-size: 1rem;
    font-weight: 600;
}

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

.section-header h2 {
    margin: 0;
}

/* Topics Section */
.topics-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.topic-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: #06b6d4;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.topic-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.topic-card h3 {
    margin-bottom: 1rem;
    color: #0f172a;
}

.topic-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Video Feature */
.video-feature {
    padding: 6rem 0;
    background-color: #ffffff;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background-color: #0f172a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-meta h3 {
    margin-bottom: 1rem;
    color: #0f172a;
}

.video-meta p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.text-link {
    color: #06b6d4;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link:hover {
    color: #0891b2;
    gap: 0.75rem;
}

/* Insights Section */
.insights-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insight-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.insight-card:hover {
    border-color: #06b6d4;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.insight-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    border-color: #06b6d4;
}

.insight-card.featured h3,
.insight-card.featured h3 a {
    color: #f8fafc;
}

.insight-card.featured p {
    color: #cbd5e1;
}

.insight-card.featured time {
    color: #94a3b8;
}

.insight-card.featured .card-link {
    color: #06b6d4;
}

.card-label {
    position: absolute;
    top: -0.75rem;
    left: 2rem;
    background-color: #f97316;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
}

.insight-card time {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.insight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.insight-card h3 a {
    color: #0f172a;
}

.insight-card h3 a:hover {
    color: #06b6d4;
}

.insight-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    text-align: center;
}

.cta-content h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background-color: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col h5 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p {
    line-height: 1.7;
    color: #94a3b8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.875rem;
}

/* About Page */
.page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-hero h1 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
}

.page-hero .lead {
    max-width: 700px;
    margin: 0 auto;
}

.bio-section {
    padding: 6rem 0;
}

.bio-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.bio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bio-text h2 {
    margin-bottom: 1.5rem;
}

.bio-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.credentials-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.credential-badge {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.credential-badge h3 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.credential-badge p {
    font-size: 0.875rem;
    color: #64748b;
}

.timeline-section {
    padding: 6rem 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 2.5rem;
    bottom: -3rem;
    width: 2px;
    background-color: #e2e8f0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #06b6d4;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Article Page */
.article-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 6rem 0 4rem;
}

.article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #94a3b8;
}

.article-category {
    color: #06b6d4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.article-header h1 {
    color: #f8fafc;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.article-subtitle {
    font-size: 1.375rem;
    color: #cbd5e1;
    font-weight: 300;
    line-height: 1.6;
}

.article-body {
    padding: 6rem 0;
}

.article-content {
    max-width: 700px;
    margin: 0 auto;
}

.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.author-info p {
    color: #64748b;
    font-size: 0.95rem;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.article-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.article-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    border-left: 4px solid #06b6d4;
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #1e293b;
    font-size: 1.25rem;
}

/* Media Page */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.media-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.media-item:hover {
    border-color: #06b6d4;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.media-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    background-color: #0f172a;
    overflow: hidden;
}

.media-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content {
    padding: 2rem;
}

.media-content time {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.media-content h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.media-content p {
    color: #64748b;
    line-height: 1.7;
}

.press-kit {
    padding: 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    color: #f8fafc;
    text-align: center;
    margin-top: 4rem;
}

.press-kit h2 {
    color: #f8fafc;
    margin-bottom: 1rem;
}

.press-kit p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.press-resources {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .video-container {
        grid-template-columns: 1fr;
    }

    .bio-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bio-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .insight-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.125rem;
    }

    .statement p {
        font-size: 1.5rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-header h1 {
        font-size: 2.25rem;
    }

    .article-subtitle {
        font-size: 1.125rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 1.5rem;
    }

    .timeline-item::before {
        left: 100px;
    }

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

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container,
    .container-wide,
    .container-narrow {
        padding: 0 1rem;
    }

    .hero-news {
        padding: 4rem 0 3rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
    }

    .press-resources {
        flex-direction: column;
    }
}
