/* Font - Franklin Gothic ATF */
@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Med.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Med_Italic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Bold_Italic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Hvy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Franklin Gothic ATF';
    src: url('assets/fonts/Franklin_Gothic_ATF_Hvy_Italic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

/* CSS Variables */
:root {
    --coral: #E15A4A;
    --coral-dark: #D14A3A;
    --text-dark: #2D2D2D;
    --text-gray: #666666;
    --bg-light: #FAFAFA;
    --bg-footer: #F5F5F5;
    --white: #FFFFFF;
    --font-family: 'Franklin Gothic ATF', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 20px 40px;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--coral);
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.signin-link {
    font-size: 16px;
    color: var(--coral);
    font-weight: 500;
}

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

.nav-link-active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Page Header Spacer - for sub-pages */
.page-header-spacer {
    height: 120px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.circles-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circle Tracks */
.circle-track {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* Ring 7 - Outermost, faintest, slowest */
.ring-7 {
    width: 2400px;
    height: 2400px;
    opacity: 0;
}

/* Ring 6 */
.ring-6 {
    width: 2100px;
    height: 2100px;
    opacity: 0;
}

/* Ring 5 */
.ring-5 {
    width: 1800px;
    height: 1800px;
    opacity: 0;
}

/* Ring 4 */
.ring-4 {
    width: 1520px;
    height: 1520px;
    opacity: 0;
}

/* Ring 3 */
.ring-3 {
    width: 1260px;
    height: 1260px;
    opacity: 0;
}

.outer-circle {
    width: 920px;
    height: 920px;
}

.inner-circle {
    width: 680px;
    height: 680px;
}

/* Balls - positioned with CSS custom properties for each position */
.ball {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
}

/* Outer Circle Balls - 24 balls with varied sizes */
.outer-circle .ball {
    --total: 24;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 440px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
}

/* Inner Circle Balls - 12 balls */
.inner-circle .ball {
    --total: 12;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
}

/* Ring 7 Balls - 44 balls */
.ring-7 .ball {
    --total: 44;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 1170px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
    width: 55px;
    height: 55px;
}

/* Ring 6 Balls - 40 balls */
.ring-6 .ball {
    --total: 40;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 1020px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
    width: 60px;
    height: 60px;
}

/* Ring 5 Balls - 36 balls */
.ring-5 .ball {
    --total: 36;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 870px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
    width: 65px;
    height: 65px;
}

/* Ring 4 Balls - 32 balls */
.ring-4 .ball {
    --total: 32;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 730px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
    width: 70px;
    height: 70px;
}

/* Ring 3 Balls - 28 balls */
.ring-3 .ball {
    --total: 28;
    --angle: calc(360deg / var(--total) * var(--i));
    --radius: 600px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(-1 * var(--radius)));
    width: 75px;
    height: 75px;
}

/* Uniform ball sizes for outer circle */
.outer-circle .ball {
    width: 85px;
    height: 85px;
}

/* Uniform ball sizes for inner circle */
.inner-circle .ball {
    width: 90px;
    height: 90px;
}

.ball img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    will-change: transform;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 580px;
    z-index: 10;
    background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 35%, rgba(255,255,255,0.85) 55%, rgba(255,255,255,0.5) 70%, transparent 85%);
    padding: 100px 80px;
    border-radius: 50%;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
    color: var(--coral);
    font-weight: 700;
}

.hero-content .subtitle {
    font-size: 21px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
}

/* Description Section */
.description {
    padding: 60px 40px 100px;
    display: flex;
    justify-content: center;
}

.description-content {
    max-width: 600px;
    text-align: left;
}

.description-content > p {
    margin-bottom: 18px;
}

.description-content > p:last-of-type {
    margin-bottom: 36px;
}

.description-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.cta-link {
    display: block;
    font-size: 22px;
    color: var(--coral);
    text-decoration: underline;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-link:hover {
    color: var(--coral-dark);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--coral);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 24px;
    border-radius: 8px;
    transition: background 0.2s;
    text-align: center;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--coral-dark);
}

/* Supported By */
.supported-by {
    margin-top: 70px;
}

.supported-by-label {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supported-by-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.supporter-logo {
    width: 50%;
    object-fit: contain;
}

/* Footer */
.footer {
    background: var(--bg-footer);
    padding: 50px 40px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.footer-brand address a {
    color: var(--coral);
}

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

.footer-flag {
    margin-bottom: 15px;
}

.flag-icon {
    font-size: 20px;
}

.copyright {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.footer-column a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--coral);
}

/* ======================= */
/* SECTION BASE STYLES */
/* ======================= */
.section {
    padding: 120px 40px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 80px;
    max-width: 600px;
}

/* ======================= */
/* QUOTES */
/* ======================= */
.quote {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
    border-left: 4px solid var(--coral);
    padding-left: 40px;
}

.quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.quote cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-gray);
    font-weight: 500;
}

.quote-large {
    text-align: center;
    border-left: none;
    padding-left: 0;
    padding: 80px 40px;
    background: var(--bg-footer);
    border-radius: 24px;
    margin: 80px 0;
}

.quote-large p {
    font-size: 28px;
    max-width: 800px;
    margin: 0 auto 24px;
}

/* ======================= */
/* FEATURED IMAGES */
/* ======================= */
.featured-image {
    width: 100%;
    margin: 80px 0;
    border-radius: 24px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    min-height: 400px;
}

/* ======================= */
/* VIDEO EMBEDS */
/* ======================= */
.video-embed {
    margin: 80px 0;
}

.video-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 16px;
}

/* ======================= */
/* SFAI ARTISTS SECTION */
/* ======================= */
.section-artists {
    background: var(--white);
}

.artist-story {
    margin-bottom: 120px;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.artist-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid var(--bg-footer);
}

.artist-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.artist-title {
    font-size: 18px;
    color: var(--text-gray);
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.artist-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.artist-gallery {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

/* ======================= */
/* CROQUI SECTION */
/* ======================= */
.section-croqui {
    background: var(--bg-footer);
}

.feature {
    margin-bottom: 160px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

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

.feature-header {
    margin-bottom: 60px;
}

.feature-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral);
    background: rgba(225, 90, 74, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.feature-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 700px;
}

.feature-media {
    margin-bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
}

.feature-video {
    width: 100%;
    display: block;
    min-height: 500px;
    object-fit: cover;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.feature-visual {
    margin-bottom: 60px;
}

.feature-diagram {
    width: 100%;
    border-radius: 24px;
    background: var(--white);
}

.feature-quote {
    max-width: 800px;
    margin-top: 60px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

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

.stat-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ======================= */
/* ABOUT SECTION */
/* ======================= */
.section-about {
    background: var(--white);
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-block-reverse {
    direction: rtl;
}

.about-block-reverse > * {
    direction: ltr;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    min-height: 400px;
}

.about-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ======================= */
/* SECTION RESPONSIVE */
/* ======================= */
@media (max-width: 1000px) {
    .section {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .artist-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .about-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-block-reverse {
        direction: ltr;
    }

    .feature-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

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

    .artist-headshot {
        width: 100px;
        height: 100px;
    }

    .artist-name {
        font-size: 24px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .stats-grid,
    .stats-grid-3 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-box {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .feature-title {
        font-size: 32px;
    }

    .feature-description {
        font-size: 17px;
    }

    .feature-video {
        min-height: 300px;
    }

    .quote p {
        font-size: 18px;
    }

    .quote-large {
        padding: 40px 24px;
        margin: 40px 0;
    }

    .quote-large p {
        font-size: 20px;
    }

    .featured-image {
        border-radius: 16px;
        margin: 40px 0;
    }

    .featured-image img {
        min-height: 250px;
    }

    .about-text h3 {
        font-size: 24px;
    }

    .about-image img {
        min-height: 280px;
    }
}

/* Responsive */
@media (max-width: 1400px) {
    .ring-7 {
        display: none;
    }
}

@media (max-width: 1200px) {
    .ring-6 {
        display: none;
    }
}

@media (max-width: 1000px) {
    .ring-5 {
        display: none;
    }
}

@media (max-width: 900px) {
    .ring-4, .ring-3 {
        display: none;
    }

    .hero {
        padding-top: 80px;
        overflow: visible;
    }

    .circles-container {
        width: 100vw;
        height: 100vh;
        transform: translateY(-5vh);
    }

    .outer-circle {
        width: 660px;
        height: 660px;
    }

    .outer-circle .ball {
        --radius: 315px;
    }

    .outer-circle .ball {
        width: 66px !important;
        height: 66px !important;
    }

    .inner-circle {
        width: 450px;
        height: 450px;
    }

    .inner-circle .ball {
        --radius: 210px;
        width: 58px !important;
        height: 58px !important;
    }

    .hero-content {
        padding: 55px 45px;
        max-width: 380px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        padding-top: 60px;
    }

    .circles-container {
        transform: translateY(-7vh);
    }

    .outer-circle {
        width: 560px;
        height: 560px;
    }

    .outer-circle .ball {
        --radius: 265px;
    }

    .outer-circle .ball {
        width: 58px !important;
        height: 58px !important;
    }

    .inner-circle {
        width: 370px;
        height: 370px;
    }

    .inner-circle .ball {
        --radius: 170px;
        width: 52px !important;
        height: 52px !important;
    }

    .hero-content {
        padding: 40px 30px;
        max-width: 310px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content .subtitle {
        font-size: 15px;
    }

    .description {
        padding: 40px 20px 60px;
    }

    .cta-link {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 20px;
        font-size: 16px;
        white-space: normal;
    }

    .supported-by {
        margin-top: 60px;
    }

    .supporter-logo {
        width: 50%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 50px;
    }

    .circles-container {
        transform: translateY(-8vh);
    }

    .outer-circle {
        width: 460px;
        height: 460px;
    }

    .outer-circle .ball {
        --radius: 215px;
    }

    .outer-circle .ball {
        width: 50px !important;
        height: 50px !important;
    }

    .inner-circle {
        width: 300px;
        height: 300px;
    }

    .inner-circle .ball {
        --radius: 135px;
        width: 45px !important;
        height: 45px !important;
    }

    .hero-content {
        padding: 30px 20px;
        max-width: 260px;
    }

    .hero-content h1 {
        font-size: 21px;
    }

    .hero-content .subtitle {
        font-size: 14px;
    }

    .ball img {
        border: 2px solid var(--white);
    }
}

/* ======================= */
/* MODAL STYLES */
/* ======================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 50px 60px;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--coral);
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-family);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.2s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-submit-btn {
    background: var(--coral);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-family);
    margin-top: 16px;
}

.form-submit-btn:hover {
    background: var(--coral-dark);
}

.form-message {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 40px 30px;
        width: 95%;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .modal-close {
        right: 20px;
        top: 20px;
        font-size: 30px;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }

    .form-submit-btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ======================= */
/* REPORT MODAL */
/* ======================= */
.report-modal-content {
    max-width: 960px;
    padding: 60px 70px;
    margin: 3% auto;
    max-height: 90vh;
    overflow-y: auto;
}

.report-modal-content::-webkit-scrollbar {
    width: 6px;
}

.report-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.report-modal-content::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.report-modal-content::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Report Header */
.report-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--coral);
}

.report-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* Report Sections */
.report-section {
    margin-bottom: 48px;
}

.report-section:last-child {
    margin-bottom: 0;
}

.report-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.report-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Metrics Grid - 2 rows, 3 columns */
.report-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.report-metric-card {
    background: var(--bg-light);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.report-metric-card:hover {
    border-color: var(--coral);
}

.report-metric-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.report-metric-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.report-metric-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Creations Grid */
.report-creations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.report-creation-card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s;
}

.report-creation-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.report-creation-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
}

.report-creation-info {
    padding: 12px 14px;
}

.report-creation-caption {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-creation-meta {
    font-size: 11px;
    color: var(--text-gray);
    font-family: monospace;
}

/* Models List */
.report-models-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.report-model-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-light);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.report-model-item:hover {
    border-color: var(--coral);
}

.report-model-item.report-model-major {
    background: var(--white);
    border: 2px solid var(--coral);
}

.report-model-item.report-model-major .report-model-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.report-model-name {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.report-model-link {
    font-size: 12px;
    color: var(--coral);
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 12px;
    transition: opacity 0.2s;
}

.report-model-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.report-models-note {
    font-size: 13px;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
    padding-top: 8px;
}

/* Report Modal Responsive */
@media (max-width: 1000px) {
    .report-modal-content {
        max-width: 90%;
        padding: 50px 40px;
    }

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

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

@media (max-width: 768px) {
    .report-modal-content {
        margin: 2% auto;
        padding: 40px 24px;
        width: 96%;
        max-height: 94vh;
    }

    .report-title {
        font-size: 24px;
    }

    .report-section-title {
        font-size: 18px;
    }

    .report-metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .report-metric-card {
        padding: 20px 16px;
    }

    .report-metric-value {
        font-size: 28px;
    }

    .report-metric-label {
        font-size: 11px;
    }

    .report-metric-desc {
        font-size: 11px;
    }

    .report-creations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .report-model-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .report-modal-content {
        padding: 30px 18px;
    }

    .report-metrics-grid {
        grid-template-columns: 1fr;
    }

    .report-creations-grid {
        grid-template-columns: 1fr;
    }

    .report-metric-value {
        font-size: 32px;
    }
}

/* ======================= */
/* EARLY ADOPTERS MODAL */
/* ======================= */
.early-adopters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.early-adopter-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #e8e8e8;
}

.early-adopter-card:last-child {
    border-bottom: none;
}

.early-adopter-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e8e8e8;
    transition: border-color 0.2s;
}

.early-adopter-card:hover .early-adopter-photo {
    border-color: var(--coral);
}

.early-adopter-info {
    flex: 1;
    min-width: 0;
}

.early-adopter-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.early-adopter-title {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .early-adopter-card {
        gap: 16px;
        padding: 18px 0;
    }

    .early-adopter-photo {
        width: 60px;
        height: 60px;
    }

    .early-adopter-name {
        font-size: 17px;
    }

    .early-adopter-title {
        font-size: 13px;
    }
}
