/**
 * Autism Awareness — v2 redesign (curated children photos + modern layout)
 */
.autism-kids.ak-v2 {
    --ak2-blue: #2563eb;
    --ak2-blue-soft: #dbeafe;
    --ak2-violet: #7c3aed;
    --ak2-mint: #10b981;
    --ak2-sun: #f59e0b;
    --ak2-rose: #f43f5e;
    --ak2-ink: #0f172a;
    --ak2-muted: #64748b;
    --ak2-bg: #f8fafc;
    --ak2-surface: #ffffff;
    --ak2-radius: 20px;
    --ak2-radius-lg: 28px;
    --ak2-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
    --ak2-font: 'Plus Jakarta Sans', 'Nunito', system-ui, sans-serif;
    --ak2-display: 'Fredoka', 'Baloo 2', cursive, sans-serif;
}

.autism-kids.ak-v2.congress-site {
    font-family: var(--ak2-font);
    background: var(--ak2-bg);
    color: var(--ak2-ink);
}

/* Header */
.autism-kids.ak-v2 .cg-utility {
    background: linear-gradient(90deg, #1d4ed8, #6d28d9);
    border: none;
}
.autism-kids.ak-v2 .cg-header {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ak2-blue-soft) !important;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06) !important;
}
.autism-kids.ak-v2 .cg-logo-text h1 {
    font-family: var(--ak2-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ak2-ink);
}
.autism-kids.ak-v2 .cg-nav a {
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.autism-kids.ak-v2 .cg-nav a.active,
.autism-kids.ak-v2 .cg-nav a:hover {
    background: var(--ak2-blue-soft);
    color: var(--ak2-blue);
}

/* Ticker */
.autism-kids.ak-v2 .cg-ticker {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}
.autism-kids.ak-v2 .cg-ticker-badge {
    background: linear-gradient(135deg, var(--ak2-blue), var(--ak2-violet));
}

/* Hero v2 */
.ak-hero-v2 {
    padding: 48px 20px 56px;
    max-width: 1200px;
    margin: 0 auto;
}
.ak-hero-v2-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 900px) {
    .ak-hero-v2-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ak-hero-v2-cta { justify-content: center; }
}
.ak-hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--ak2-blue-soft);
    color: var(--ak2-blue);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 16px;
}
.ak-hero-v2 h1 {
    font-family: var(--ak2-display);
    font-size: clamp(2rem, 5vw, 3.1rem);
    line-height: 1.12;
    font-weight: 600;
    color: var(--ak2-ink);
    margin-bottom: 16px;
}
.ak-hero-v2 h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--ak2-blue), var(--ak2-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ak-hero-v2-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--ak2-muted);
    max-width: 34rem;
    margin-bottom: 24px;
}
@media (max-width: 900px) {
    .ak-hero-v2-lead { margin-left: auto; margin-right: auto; }
}
.ak-hero-v2-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ak-btn-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
}
.ak-btn-v2-primary {
    background: linear-gradient(135deg, var(--ak2-blue), #4f46e5);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}
.ak-btn-v2-primary:hover { transform: translateY(-2px); }
.ak-btn-v2-ghost {
    background: #fff;
    color: var(--ak2-blue);
    border: 2px solid var(--ak2-blue-soft);
}
.ak-hero-v2-art {
    position: relative;
    border-radius: var(--ak2-radius-lg);
    overflow: hidden;
    box-shadow: var(--ak2-shadow);
    background: linear-gradient(145deg, #eff6ff, #f5f3ff);
    padding: 12px;
}
.ak-hero-photo-stack {
    position: relative;
    min-height: 320px;
}
.ak-hero-photo-main {
    width: 100%;
    max-width: 420px;
    border-radius: var(--ak2-radius-lg);
    box-shadow: var(--ak2-shadow);
    display: block;
    margin: 0 auto;
    object-fit: cover;
    aspect-ratio: 1;
}
.ak-hero-photo-sub {
    position: absolute;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
    bottom: 8px;
    left: 0;
}
.ak-hero-photo-sub-b {
    left: auto;
    right: 0;
    bottom: 48px;
}
@media (max-width: 900px) {
    .ak-hero-photo-sub { width: 80px; height: 80px; }
}

/* Photo showcase */
.ak-photo-showcase {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 20px;
}
.ak-photo-showcase-head {
    text-align: center;
    margin-bottom: 24px;
}
.ak-photo-showcase-head h2 {
    font-family: var(--ak2-display);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 8px;
}
.ak-photo-showcase-head p { color: var(--ak2-muted); }
.ak-photo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}
.ak-showcase-item {
    margin: 0;
    border-radius: var(--ak2-radius);
    overflow: hidden;
    position: relative;
    grid-column: span 3;
    min-height: 160px;
}
.ak-showcase-item.ak-showcase-large {
    grid-column: span 6;
    grid-row: span 2;
    min-height: 280px;
}
@media (max-width: 768px) {
    .ak-showcase-item,
    .ak-showcase-item.ak-showcase-large { grid-column: span 6; min-height: 140px; }
}
.ak-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 140px;
}
.ak-showcase-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.75));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}
.ak-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.ak-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ak2-ink);
}

/* Pillars */
.ak-pillars {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 20px;
}
.ak-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .ak-pillars-grid { grid-template-columns: 1fr; }
}
.ak-pillar {
    background: var(--ak2-surface);
    border-radius: var(--ak2-radius);
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ak-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--ak2-shadow);
}
.ak-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 14px;
}
.ak-pillar-icon.blue { background: #dbeafe; color: var(--ak2-blue); }
.ak-pillar-icon.violet { background: #ede9fe; color: var(--ak2-violet); }
.ak-pillar-icon.mint { background: #d1fae5; color: var(--ak2-mint); }
.ak-pillar h3 {
    font-family: var(--ak2-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.ak-pillar p { color: var(--ak2-muted); line-height: 1.55; font-size: 0.95rem; }

/* Bento */
.ak-bento {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 20px;
}
.ak-bento-head {
    text-align: center;
    margin-bottom: 28px;
}
.ak-bento-head h2 {
    font-family: var(--ak2-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
}
.ak-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.ak-bento-card {
    background: var(--ak2-surface);
    border-radius: var(--ak2-radius);
    padding: 24px;
    border: 1px solid #e2e8f0;
    grid-column: span 4;
}
.ak-bento-card.wide { grid-column: span 8; }
.ak-bento-card.tall { grid-column: span 4; min-height: 180px; }
@media (max-width: 900px) {
    .ak-bento-card,
    .ak-bento-card.wide,
    .ak-bento-card.tall { grid-column: span 12; }
}
.ak-bento-card h3 {
    font-family: var(--ak2-display);
    font-size: 1.1rem;
    margin: 12px 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ak-bento-card p { color: var(--ak2-muted); line-height: 1.5; font-size: 0.92rem; }
.ak-bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Quick links band */
.ak-quick-band {
    background: linear-gradient(135deg, #1e40af, #5b21b6);
    color: #fff;
    padding: 40px 20px;
    margin-bottom: 48px;
}
.ak-quick-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .ak-quick-inner { grid-template-columns: repeat(2, 1fr); }
}
.ak-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s, transform 0.15s;
}
.ak-quick-link:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff;
}
.ak-quick-link i { font-size: 1.5rem; }

/* Journey steps refresh */
.autism-kids.ak-v2 .ak-journey {
    background: #fff;
    border-radius: var(--ak2-radius-lg);
    margin: 0 20px 48px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--ak2-shadow);
}
.autism-kids.ak-v2 .ak-step {
    background: var(--ak2-bg);
    border: 1px solid #e2e8f0;
}
.autism-kids.ak-v2 .ak-step-icon {
    background: linear-gradient(135deg, var(--ak2-blue), var(--ak2-violet));
}

/* Main content cards */
.autism-kids.ak-v2 .home-split {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 28px;
    align-items: start;
}
@media (max-width: 960px) {
    .autism-kids.ak-v2 .home-split { grid-template-columns: 1fr; }
}
.autism-kids.ak-v2 .feature-card {
    border-radius: var(--ak2-radius);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.autism-kids.ak-v2 .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ak2-shadow);
}
.autism-kids.ak-v2 .notices-panel {
    border-radius: var(--ak2-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    position: sticky;
    top: 88px;
}
.autism-kids.ak-v2 .vg-stats-strip {
    background: linear-gradient(90deg, #eff6ff, #f5f3ff);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.autism-kids.ak-v2 .speaker-avatar.ak-speaker-initial {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ak2-blue), var(--ak2-violet));
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.autism-kids.ak-v2 #speakers-grid .speaker-card {
    text-align: center;
    border-radius: var(--ak2-radius);
    border: 1px solid #e2e8f0;
    padding: 20px;
    background: #fff;
}

/* CTA band */
.ak-cta-band {
    max-width: 1200px;
    margin: 48px auto;
    padding: 0 20px;
}
.ak-cta-band-inner {
    background: linear-gradient(120deg, #dbeafe, #ede9fe);
    border-radius: var(--ak2-radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #c7d2fe;
}
.ak-cta-band h2 {
    font-family: var(--ak2-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}
.ak-cta-band p {
    color: var(--ak2-muted);
    max-width: 32rem;
    margin: 0 auto 20px;
    line-height: 1.55;
}

/* FAQ */
.autism-kids.ak-v2 #faq-section .faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.autism-kids.ak-v2 .ak-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
}
.autism-kids.ak-v2 .ak-faq-q {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    background: #fff;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--ak2-ink);
    font-family: inherit;
}
.autism-kids.ak-v2 .ak-faq-a {
    padding: 0 20px 16px;
    color: var(--ak2-muted);
    line-height: 1.55;
    display: none;
}
.autism-kids.ak-v2 .ak-faq-item.is-open .ak-faq-a { display: block; }

/* Footer */
.autism-kids.ak-v2 .footer {
    background: var(--ak2-ink);
    color: #cbd5e1;
}
.autism-kids.ak-v2 .footer a { color: #93c5fd; }

/* Hide old photo hero */
.autism-kids.ak-v2 .ak-hero,
.autism-kids.ak-v2 .ak-photo-collage {
    display: none !important;
}

/* FAB */
.autism-kids.ak-v2 .cg-fab-register {
    background: linear-gradient(135deg, var(--ak2-blue), var(--ak2-violet));
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.4);
}

/* Reveal */
.ak-reveal-v2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.ak-reveal-v2.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .ak-reveal-v2 {
        opacity: 1;
        transform: none;
    }
}

/* Auth modal */
.autism-kids.ak-v2 .modal-content {
    border-radius: var(--ak2-radius-lg);
    border: 1px solid #e2e8f0;
}

/* Inner pages: only section content (no home hero, countdown, stats strip) */
body.autism-kids.ak-v2.ak-page-inner .main-content {
    padding-top: 8px;
}
body.autism-kids.ak-v2.ak-page-inner #aboutSection .section-head,
body.autism-kids.ak-v2.ak-page-inner #scheduleSection .section-head,
body.autism-kids.ak-v2.ak-page-inner #contactSection .section-head,
body.autism-kids.ak-v2.ak-page-inner #verifySection .section-head {
    margin-top: 0;
}

/* Public pre-registration promo (homepage) */
.ak-public-prereg-home {
    padding: 48px 20px 56px;
    background: linear-gradient(165deg, #eff6ff 0%, #f8fafc 50%, #ecfeff 100%);
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
}
.ak-public-prereg-home.hidden { display: none !important; }
.ak-public-prereg-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.ak-public-prereg-home h2 {
    font-family: var(--ak-display, Fredoka, sans-serif);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    color: #1e3a8a;
    margin: 8px 0 12px;
}
.ak-public-prereg-lead {
    color: #475569;
    max-width: 52ch;
    margin: 0 auto 28px;
    line-height: 1.55;
}
.ak-public-prereg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    text-align: left;
}
.ak-public-prereg-card {
    background: #fff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
}
.ak-public-prereg-card h3 {
    font-size: 1.05rem;
    color: #1d4ed8;
    margin: 0 0 8px;
}
.ak-public-prereg-card p {
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 14px;
    line-height: 1.45;
}
.ak-public-prereg-card .ak-btn-v2 {
    display: inline-flex;
    text-decoration: none;
}
