.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; }
.editorial-shadow { box-shadow: 0 20px 40px rgba(22,28,34,0.07); }
.glass-card { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.3); }
body { font-family: 'Manrope', sans-serif; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Offer card hover */
.offer-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 28px 56px rgba(22,28,34,0.12); }

/* Framework number accent */
.fw-num { font-family: 'Newsreader', serif; font-size: 5rem; font-weight: 300; font-style: italic; color: rgba(36,56,156,0.08); line-height: 1; position: absolute; top: -1rem; left: -0.5rem; }

/* Grain texture overlay on dark sections */
.grain::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none; border-radius: inherit;
}

/* Testimonial card */
.testimonial-card { position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Newsreader', serif; font-size: 6rem; color: rgba(36,56,156,0.08); position: absolute; top: -1rem; left: 1.5rem; line-height: 1; }

/* Stats bar */
.stat-divider { width: 1px; height: 40px; background: rgba(36,56,156,0.12); }

/* Program badge */
.program-badge { display: inline-block; font-family: 'Roboto Mono', monospace; font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 2px; }

/* Scroll indicator */
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.scroll-indicator { animation: scrollBounce 2s infinite; }

/* Gold accent line */
.gold-line { width: 40px; height: 2px; background: #c9a96e; display: block; }

/* Nav scrolled */
header.scrolled { background: rgba(247,249,255,0.92) !important; box-shadow: 0 4px 20px rgba(22,28,34,0.06); }

@media (max-width: 768px) {
    h1 { font-size: clamp(3rem, 12vw, 5rem) !important; }
    h2 { font-size: clamp(2.2rem, 9vw, 4rem) !important; }
    #mobile-menu { display: none; }
    #mobile-menu.active { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
}
