/* ===================================
   ABC Circle — Landing Page (v2)
   Unified Ivory/Teal Institutional Theme
   Matching blueprint.html aesthetic
   =================================== */

:root {
    --ivory: #FAFAF7;
    --surface: #FFFFFF;
    --teal-dark: #1A3A3A;
    --teal-mid: #2A5555;
    --teal-accent: #3D7A7A;
    --teal-light: #E8F0EF;
    --teal-subtle: #F2F7F6;
    --border: #E2E0DB;
    --border-dark: #C8C4BD;
    --text: #1C1C1C;
    --text-mid: #3A3A3A;
    --muted: #6B6B6B;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 4px;
}

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

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

body {
    font-family: var(--font-sans);
    background: var(--ivory);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection {
    background: var(--teal-light);
    color: var(--teal-dark);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 1.25rem 0;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    padding: 0.875rem 0;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-mark {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.3s var(--ease);
}

.nav-menu a:hover { color: var(--text); }

.nav-cta {
    background: var(--teal-dark) !important;
    color: var(--surface) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius);
    font-weight: 600 !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--teal-mid) !important;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 0.5rem 0;
    padding-top: 0.75rem;
    margin-top: 0;
    z-index: 9999;
}
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted) !important;
    background: none !important;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    color: var(--teal-dark) !important;
    background: var(--teal-subtle) !important;
    padding-left: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 9001;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s var(--ease);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--teal-dark);
    color: var(--surface);
}

.btn-primary:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 58, 58, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-dark);
    border: 1.5px solid var(--teal-dark);
}

.btn-secondary:hover {
    background: var(--teal-dark);
    color: var(--surface);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    border: 1px solid rgba(26, 58, 58, 0.08);
    margin-bottom: 1.5rem;
}

.label {
    display: inline-block;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-accent);
    margin-bottom: 1.25rem;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, var(--teal-subtle), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-dark);
    margin-bottom: 2.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--ivory);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal-accent);
    border-radius: 50%;
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--teal-dark);
    margin-bottom: 2rem;
}

.title-line { display: block; }

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

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid var(--border-dark);
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--teal-accent);
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Hide canvas (no longer needed in this theme) */
.hero-canvas,
.join-canvas { display: none; }

/* ===== IMPACT BAND ===== */
.impact-band {
    background: var(--teal-dark);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.impact-track {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.impact-item {
    text-align: center;
    flex: 1;
    white-space: nowrap;
}

.impact-number {
    display: inline;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--surface);
    letter-spacing: -0.04em;
    line-height: 1;
}

.impact-suffix {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--teal-light);
    letter-spacing: -0.02em;
}

.impact-label {
    display: block;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-top: 0.75rem;
}

.impact-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ===== SECTION FULLSCREEN ===== */
.section-fullscreen {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 700;
    color: rgba(26, 58, 58, 0.02);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.mega-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
}

.text-accent {
    color: var(--teal-accent);
}

.lead-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px;
}

/* ===== CHALLENGE SECTION ===== */
.challenge {
    background: var(--ivory);
    border-top: 1px solid var(--border);
}

.challenge-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.info-card-glow { display: none; }

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.info-card:hover {
    border-color: rgba(61, 122, 122, 0.25);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.info-card:hover::after {
    transform: scaleX(1);
}

.info-card-number {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--teal-accent);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.info-card p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.8;
}

.info-card-line { display: none; }

/* ===== SYSTEM SECTION ===== */
.system {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.system-header {
    text-align: center;
    margin-bottom: 4rem;
}

.system-intro {
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
}

.pillars-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-slide {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.pillar-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.pillar-slide:hover {
    border-color: rgba(61, 122, 122, 0.25);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

.pillar-slide:hover::before {
    transform: scaleX(1);
}

.pillar-visual { display: none; }

.pillar-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--teal-accent);
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.pillar-body h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.pillar-body p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ===== COLLABORATE SECTION ===== */
.collaborate {
    background: var(--ivory);
    border-top: 1px solid var(--border);
}

.collab-header {
    text-align: center;
    margin-bottom: 4rem;
}

.collab-intro {
    font-size: clamp(1rem, 1.4vw, 1.0625rem);
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.collab-card {
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.collab-card:hover {
    transform: translateY(-6px);
}

.collab-card-inner {
    position: relative;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.collab-card:hover .collab-card-inner {
    border-color: rgba(61, 122, 122, 0.25);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.collab-card-bg { display: none; }

.collab-card-content {
    position: relative;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collab-icon {
    color: var(--teal-accent);
    margin-bottom: 1.5rem;
}

.collab-audience {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal-accent);
    margin-bottom: 1rem;
}

.collab-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

.collab-card-content p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    flex: 1;
}

.collab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--teal-dark);
    transition: all 0.3s var(--ease);
}

.collab-link:hover {
    color: var(--teal-accent);
    gap: 0.75rem;
}

/* ===== JOIN SECTION ===== */
.join {
    position: relative;
    padding: 7rem 0;
    background: var(--teal-dark);
    text-align: center;
    overflow: hidden;
}

.join-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(61, 122, 122, 0.3), transparent 60%);
    pointer-events: none;
}

.join-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.join-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--surface);
}

.join-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.join-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.join .btn-primary {
    background: var(--surface);
    color: var(--teal-dark);
}

.join .btn-primary:hover {
    background: var(--teal-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.join .btn-secondary {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.join .btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--surface);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--ivory);
    border-top: 1px solid var(--border);
}

.footer-top, .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.875rem;
}

.footer-logo .logo-mark {
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
}

.footer-logo .logo-text {
    font-size: 1.0625rem;
}

.footer-brand p {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 320px;
}

.footer-links, .footer-nav-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    font-size: 0.8125rem;
    color: var(--muted);
    transition: all 0.3s var(--ease);
}

.footer-col a:hover {
    color: var(--teal-dark);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom > p {
    font-size: 0.6875rem;
    color: var(--border-dark);
}

.portal-link {
    font-size: 0.625rem;
    color: var(--border-dark);
    border: 1px solid var(--border);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.portal-link:hover {
    color: var(--muted);
    border-color: var(--border-dark);
}

.portal-link span {
    opacity: 0.6;
    font-style: italic;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .challenge-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pillars-wrapper {
        grid-template-columns: 1fr 1fr;
    }

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

    .impact-track {
        flex-wrap: wrap;
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--surface);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s var(--ease);
        z-index: 9000;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }

    .hero { min-height: 85vh; padding: 7rem 1.5rem 3rem; }
    .hero-title { font-size: 2.25rem; }
    .hero-scroll-indicator { display: none; }

    .impact-track { flex-direction: column; gap: 2rem; }
    .impact-divider { width: 48px; height: 1px; }

    .section-fullscreen { padding: 5rem 0; }

    .pillars-wrapper { grid-template-columns: 1fr; }
    .collab-grid { grid-template-columns: 1fr; }

    .join { padding: 5rem 0; }
    .join-actions { flex-direction: column; align-items: center; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .hero-title { font-size: 1.875rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }

    .mega-title { font-size: 1.875rem; }
    .info-card { padding: 2rem; }
    .pillar-slide { padding: 2rem 1.5rem; }
    .collab-card-content { padding: 2rem 1.5rem; }

    .btn { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
    .btn-lg { padding: 1rem 2rem; }
}

/* ===== ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--teal-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    [data-animate] { opacity: 1; transform: none; }
}

/* ===== COMPASSION SIP NAV HIGHLIGHT ===== */
.nav-sip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--teal-dark);
    color: #fff !important;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all 0.25s ease;
}
.nav-sip-link:hover {
    background: var(--teal-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 58, 58, 0.25);
}
.nav-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.125rem 0.4rem;
    border-radius: 8px;
    line-height: 1.4;
}
