/* ============================================
   ЦЯРИН FLEX+ — Premium Supplement Website
   Design: Modern, unique, trust-first
   ============================================ */

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

:root {
    --c-bg: #ffffff;
    --c-dark: #0a1628;
    --c-dark-2: #1a2645;
    --c-navy: #16264a;
    --c-purple: #6b46c1;
    --c-purple-light: #8b5cf6;
    --c-violet: #7c3aed;
    --c-pink: #ec4899;
    --c-coral: #f97316;
    --c-orange: #fb923c;
    --c-yellow: #fbbf24;
    --c-text: #1e293b;
    --c-text-light: #64748b;
    --c-text-muted: #94a3b8;
    --c-border: #e2e8f0;
    --c-white: #ffffff;
    --c-offwhite: #f8fafc;
    --c-grad-1: #1e1b4b;
    --c-grad-2: #4c1d95;
    --c-grad-3: #831843;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-med: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 60px rgba(107,70,193,0.25);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Manrope', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- STICKY CTA ---------- */
.sticky-cta {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
    max-width: 600px; margin: 0 auto; padding: 10px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sticky-price { font-size: 1.4rem; font-weight: 800; color: var(--c-white); }
.sticky-caps { font-size: 0.8rem; color: var(--c-text-muted); display: block; }
.sticky-btn {
    background: linear-gradient(135deg, var(--c-coral), var(--c-pink));
    color: white; padding: 10px 20px; border-radius: 50px;
    font-weight: 700; font-size: 0.9rem; text-decoration: none;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
    transition: transform 0.2s; box-shadow: 0 4px 15px rgba(249,115,22,0.4);
}
.sticky-btn:hover { transform: scale(1.05); }

/* ---------- HERO ---------- */
.hero {
    position: relative; min-height: 100vh; overflow: hidden;
    background: radial-gradient(ellipse at 30% 20%, #1e1b4b 0%, #0a1628 50%, #050810 100%);
    display: flex; flex-direction: column; justify-content: center;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(107,70,193,0.3) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(236,72,153,0.15) 0%, transparent 50%);
}

/* Animated orbs */
.hero-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -100px; right: -150px; background: radial-gradient(circle, #6b46c1, transparent); animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, #ec4899, transparent); animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; top: 50%; left: 40%; background: radial-gradient(circle, #f97316, transparent); animation-delay: -10s; opacity: 0.3; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-container {
    position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
    padding: 120px 24px 80px; display: grid;
    grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    width: 100%;
}

.hero-content { animation: fadeInUp 1s ease-out; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px; border-radius: 50px; font-size: 0.82rem; color: rgba(255,255,255,0.85);
    margin-bottom: 24px; backdrop-filter: blur(10px);
}
.badge-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; box-shadow: 0 0 10px #10b981; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 800; line-height: 0.95;
    margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-title-accent {
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title-sub {
    font-size: clamp(2.2rem, 6vw, 4rem); color: var(--c-coral);
    font-weight: 800; text-shadow: 0 0 40px rgba(249,115,22,0.5);
}
.hero-title-sub .plus { color: var(--c-pink); margin-left: 4px; }

.hero-subtitle {
    font-size: 1.15rem; color: rgba(255,255,255,0.7); line-height: 1.7;
    margin-bottom: 36px; max-width: 500px;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); font-weight: 700; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-pink) 100%);
    color: white; padding: 16px 32px; border-radius: 50px;
    font-weight: 700; font-size: 1.05rem; text-decoration: none;
    border: none; cursor: pointer; transition: all var(--transition);
    box-shadow: 0 8px 25px rgba(249,115,22,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(249,115,22,0.55); }
.btn-large { padding: 18px 40px; font-size: 1.15rem; }
.btn-pulse { animation: pulse-glow 3s ease-in-out infinite; }
@keyframes pulse-glow {
    0%,100% { box-shadow: 0 8px 25px rgba(249,115,22,0.4); }
    50% { box-shadow: 0 8px 35px rgba(249,115,22,0.7), 0 0 60px rgba(236,72,153,0.3); }
}

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9); padding: 16px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1.05rem; text-decoration: none;
    transition: all var(--transition); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: white; display: block; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); display: block; line-height: 1.3; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    animation: fadeIn 1.2s ease-out;
}
.hero-product-glow {
    position: absolute; width: 80%; height: 80%; border-radius: 50%;
    background: radial-gradient(circle, rgba(107,70,193,0.4), transparent 70%);
    filter: blur(40px); animation: pulse-glow-bg 4s ease-in-out infinite;
}
@keyframes pulse-glow-bg { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.1); opacity: 0.6; } }

.hero-product-img {
    position: relative; z-index: 2;
    max-height: 550px; object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: float-product 6s ease-in-out infinite;
}
@keyframes float-product { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-size: 0.8rem;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- SECTION COMMON ---------- */
.section-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-purple);
    margin-bottom: 12px; padding: 6px 14px; border-radius: 50px;
    background: rgba(107,70,193,0.08); border: 1px solid rgba(107,70,193,0.15);
}
.section-tag-center { display: block; text-align: center; margin: 0 auto 12px; width: fit-content; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: var(--c-dark); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-title-center { text-align: center; }

.section-intro {
    font-size: 1.1rem; color: var(--c-text-light); line-height: 1.7; margin-bottom: 48px; max-width: 600px;
}
.section-intro-center { margin: 0 auto 48px; text-align: center; }

/* ---------- PROBLEM ---------- */
.problem { padding: 120px 0; background: var(--c-offwhite); }

.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card {
    background: white; border-radius: var(--radius-md); padding: 32px;
    box-shadow: var(--shadow-soft); border: 1px solid var(--c-border);
    transition: all var(--transition);
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); border-color: rgba(107,70,193,0.3); }
.problem-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(107,70,193,0.08), rgba(236,72,153,0.08));
    color: var(--c-purple); margin-bottom: 20px;
}
.problem-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--c-dark); margin-bottom: 10px; }
.problem-card p { font-size: 0.92rem; color: var(--c-text-light); line-height: 1.6; }

/* ---------- SOLUTION ---------- */
.solution { padding: 120px 0; background: white; }
.solution-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.solution-img-wrap { position: relative; }
.solution-img {
    border-radius: var(--radius-lg); width: 100%; aspect-ratio: 1; object-fit: cover;
    box-shadow: var(--shadow-med);
}
.solution-img-glow {
    position: absolute; inset: 0; border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 50%, rgba(107,70,193,0.15), transparent 70%);
    transform: scale(1.15); z-index: -1;
}

.solution-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.feature { display: flex; gap: 16px; align-items: start; }
.feature-check {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
    color: white; display: flex; align-items: center; justify-content: center;
}
.feature h4 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 4px; }
.feature p { font-size: 0.92rem; color: var(--c-text-light); }

/* ---------- INGREDIENTS ---------- */
.ingredients { padding: 120px 0; background: linear-gradient(180deg, var(--c-offwhite), white); }

.ingredients-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 32px; }

.ingredient-card {
    background: white; border-radius: var(--radius-md); padding: 28px 20px;
    text-align: center; border: 1px solid var(--c-border);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.ingredient-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-pink), var(--c-coral));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.ingredient-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-med); }
.ingredient-card:hover::before { transform: scaleX(1); }

.ingredient-header { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 16px; }

.ingredient-icon {
    width: 64px; height: 64px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 0.82rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.msm-icon { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.chondroitin-icon { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.turmeric-icon { background: linear-gradient(135deg, #f59e0b, #f97316); }
.omega-icon { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.boswellia-icon { background: linear-gradient(135deg, #10b981, #14b8a6); }

.ingredient-amount { font-size: 1.1rem; font-weight: 800; color: var(--c-dark); }

.ingredient-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--c-dark); margin-bottom: 4px; }
.ingredient-subtitle { font-size: 0.78rem; color: var(--c-text-muted); margin-bottom: 12px; font-weight: 600; }
.ingredient-desc { font-size: 0.85rem; color: var(--c-text-light); line-height: 1.6; text-align: left; }

.ingredients-note { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.note-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--c-text-muted); }
.note-item svg { color: var(--c-purple); }

/* ---------- LAB SECTION ---------- */
.lab-section { padding: 120px 0; background: var(--c-dark); color: white; }
.lab-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lab-section .section-tag { color: var(--c-coral); background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); }
.lab-section .section-title { color: white; }
.lab-section .section-intro { color: rgba(255,255,255,0.7); }

.lab-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.lab-feature { display: flex; gap: 20px; }
.lab-feature-num {
    flex-shrink: 0; font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--c-coral), var(--c-pink));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; min-width: 40px;
}
.lab-feature h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.lab-feature p { font-size: 0.92rem; color: rgba(255,255,255,0.6); }

.lab-img { border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 120px 0; background: var(--c-offwhite); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: white; border-radius: var(--radius-md); padding: 32px;
    box-shadow: var(--shadow-soft); border: 1px solid var(--c-border);
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }

.testimonial-stars { color: var(--c-yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: 0.95rem; color: var(--c-text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.testimonial-author h4 { font-size: 0.95rem; font-weight: 700; color: var(--c-dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--c-text-muted); }

/* ---------- LIFESTYLE / CTA ---------- */
.lifestyle-cta { padding: 120px 0; background: white; }
.lifestyle-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.lifestyle-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-med); }

.lifestyle-pricing { margin: 32px 0; }
.price-box {
    background: linear-gradient(135deg, rgba(107,70,193,0.05), rgba(236,72,153,0.05));
    border: 2px solid rgba(107,70,193,0.15); border-radius: var(--radius-md);
    padding: 32px; display: flex; align-items: center; gap: 24px;
}
.price-amount { font-size: 3rem; font-weight: 800; color: var(--c-purple); }
.price-details { display: flex; flex-direction: column; gap: 4px; font-size: 0.95rem; color: var(--c-text-light); }
.price-details span:first-child { font-weight: 700; color: var(--c-dark); font-size: 1.05rem; }

.lifestyle-phone-cta { margin-bottom: 28px; }
.phone-hours { font-size: 0.88rem; color: var(--c-text-muted); margin-top: 12px; }

.lifestyle-benefits { display: flex; flex-direction: column; gap: 12px; }
.benefit-row { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--c-text); }
.benefit-row svg { color: #10b981; flex-shrink: 0; }

/* ---------- USAGE ---------- */
.usage { padding: 120px 0; background: var(--c-offwhite); }
.usage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }

.usage-card {
    background: white; border-radius: var(--radius-md); padding: 36px;
    text-align: center; border: 1px solid var(--c-border); transition: all var(--transition);
}
.usage-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.usage-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
    color: white; font-size: 1.4rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.usage-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-dark); margin-bottom: 10px; }
.usage-card p { font-size: 0.92rem; color: var(--c-text-light); }
.usage-card strong { color: var(--c-dark); }

.usage-warnings {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.15);
    border-radius: var(--radius-md); padding: 20px;
}
.warning-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--c-text-muted); }
.warning-item svg { color: #f59e0b; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
.footer { background: var(--c-dark); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }

.footer-brand h3 { font-size: 1.5rem; font-weight: 800; color: white; margin-bottom: 8px; }
.footer-plus { color: var(--c-coral); font-size: 1.1rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.5); max-width: 300px; }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-col li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col li a:hover { color: white; }
.footer-phone { color: var(--c-coral) !important; font-weight: 600 !important; }

.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.footer-disclaimer { font-size: 0.75rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 968px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero-visual img { max-height: 350px; }
    .hero-cta, .hero-stats { justify-content: center; }
    .hero-subtitle { margin: 0 auto 36px; }

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

    .solution-layout, .lifestyle-layout, .lab-layout { grid-template-columns: 1fr; gap: 40px; }
    .solution-visual { order: 1; }
    .solution-content { order: 2; }
    .lab-visual { order: 1; }
    .lab-content { order: 2; }

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

    .testimonials-grid { grid-template-columns: 1fr; }
    .usage-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }

    .sticky-cta-inner { padding: 8px 16px; }
    .sticky-caps { display: none; }
    .sticky-btn { padding: 8px 16px; font-size: 0.85rem; }
    .sticky-price { font-size: 1.2rem; }

    .hero-container { padding: 90px 16px 60px; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1rem; }
    .hero-stats { gap: 12px; }
    .stat-num { font-size: 1.6rem; }

    .problem-grid { grid-template-columns: 1fr; }
    .ingredients-grid { grid-template-columns: 1fr; }

    .price-box { flex-direction: column; text-align: center; gap: 12px; padding: 24px; }
    .price-amount { font-size: 2.4rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .usage-warnings { flex-direction: column; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
/* Cards are visible by default. JS adds .reveal class + observer triggers .visible */
/* If JS doesn't load, content is still visible */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Fallback: if JS fails, show everything after 2s */
.no-js .reveal, .reveal-fallback { opacity: 1 !important; transform: none !important; }