/* ============================================================
   Project CRM – Welcome / Home Page Styles
   Font: Inter + Outfit via Google Fonts
   Stack: Bootstrap 5 + Custom CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Outfit:wght@400;600;700;800&display=swap&font-display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --clr-bg:       #050816;
    --clr-primary:  #6366f1;
    --clr-accent:   #a855f7;
    --clr-pink:     #ec4899;
    --clr-cyan:     #22d3ee;
    --clr-card:     rgba(15, 23, 42, 0.75);
    --clr-border:   rgba(255, 255, 255, 0.08);
    --clr-text:     #f1f5f9;
    --clr-muted:    #94a3b8;
    --radius-lg:    24px;
    --radius-pill:  50px;
    --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Inter', sans-serif;
    background-color: var(--clr-bg) !important;
    color: var(--clr-text) !important;
    margin: 0;
    overflow-x: hidden;
    position: relative;
}

/* ── Animated Background Canvas ─────────────────────────── */
#bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(99,102,241,.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(168,85,247,.20) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 90%, rgba(236,72,153,.15) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* ── Navbar ──────────────────────────────────────────────── */
.crm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
}

.crm-navbar.scrolled {
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--clr-border);
    padding: 0.7rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(99,102,241,.4);
    flex-shrink: 0;
}

.nav-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.nav-logo-text span {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-login {
    color: var(--clr-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-nav-login:hover {
    color: #fff;
    border-color: var(--clr-border);
    background: rgba(255,255,255,.05);
}

.btn-nav-register {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99,102,241,.35);
    border: 1px solid transparent;
}

.btn-nav-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,.5);
    color: #fff;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.3);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #a5b4fc;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.8s ease both;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-cyan);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: fadeSlideDown 0.9s ease 0.1s both;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 40%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--clr-muted);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    animation: fadeSlideDown 1s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeSlideDown 1.1s ease 0.3s both;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(99,102,241,.4);
    border: none;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99,102,241,.55);
    color: #fff;
}

.btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-secondary-cta:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Hero Stats ──────────────────────────────────────────── */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    animation: fadeSlideDown 1.2s ease 0.4s both;
}

.stat-item { text-align: left; }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a5b4fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--clr-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* ── Hero Visual (right side) ────────────────────────────── */
.hero-visual {
    position: relative;
    animation: fadeSlideLeft 1s ease 0.3s both;
}

.dashboard-mockup {
    background: var(--clr-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.04),
        0 25px 60px rgba(0,0,0,.6),
        0 0 80px rgba(99,102,241,.12);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(168,85,247,.04));
    border-radius: var(--radius-lg);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red   { background: #ff5f57; }
.dot-yellow{ background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-title {
    font-size: 0.78rem;
    color: var(--clr-muted);
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 1rem;
}

.mockup-stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.mockup-stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.mockup-stat-val.indigo { color: #818cf8; }
.mockup-stat-val.purple { color: #c084fc; }
.mockup-stat-val.pink   { color: #f472b6; }

.mockup-stat-lbl {
    font-size: 0.68rem;
    color: var(--clr-muted);
    margin-top: 4px;
}

.mockup-chart {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    overflow: hidden;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--clr-primary), var(--clr-accent));
    opacity: 0.7;
    animation: growBar 1.5s ease both;
}

@keyframes growBar {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); transform-origin: bottom; }
}

.mockup-users {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--clr-bg);
    margin-left: -8px;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.mockup-avatar:first-child { margin-left: 0; }
.av1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.av2 { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.av3 { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
.av4 { background: linear-gradient(135deg, #f59e0b, #d97706); }

.mockup-online-text {
    font-size: 0.75rem;
    color: var(--clr-muted);
    margin-left: 6px;
}

.online-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 4px;
    animation: pulse-dot 2s infinite;
}

/* Floating cards around mockup */
.float-card {
    position: absolute;
    background: var(--clr-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    animation: floatY 4s ease-in-out infinite;
}

.float-card-1 {
    top: -20px;
    right: -25px;
    font-size: 0.75rem;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20px;
    left: -30px;
    font-size: 0.75rem;
    animation-delay: -2s;
}

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.fi-green  { background: rgba(34,197,94,.15); color: #22c55e; }
.fi-yellow { background: rgba(245,158,11,.15); color: #f59e0b; }

/* ── Features Section ────────────────────────────────────── */
.features-section {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a5b4fc;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--clr-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--clr-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    content-visibility: auto;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,.06), transparent);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-lg);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,.35);
    box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(99,102,241,.12);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.fi-indigo  { background: rgba(99,102,241,.15); color: #818cf8; }
.fi-purple  { background: rgba(168,85,247,.15); color: #c084fc; }
.fi-pink    { background: rgba(236,72,153,.15); color: #f472b6; }
.fi-cyan2   { background: rgba(34,211,238,.15); color: #22d3ee; }
.fi-amber   { background: rgba(245,158,11,.15); color: #fbbf24; }
.fi-emerald { background: rgba(52,211,153,.15); color: #34d399; }

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--clr-muted);
    line-height: 1.65;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #818cf8;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.feature-link:hover { gap: 10px; color: #a5b4fc; }

/* ── Stats / CTA Band ────────────────────────────────────── */
.stats-band {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(168,85,247,.08));
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.stats-band .stat-big {
    text-align: center;
    padding: 1rem;
}

.stat-big-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a5b4fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-big-lbl {
    font-size: 0.95rem;
    color: var(--clr-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ── How It Works ────────────────────────────────────────── */
.how-section {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 25px rgba(99,102,241,.4);
    position: relative;
    z-index: 1;
}

.step-connector {
    position: absolute;
    top: calc(2rem + 28px);
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, rgba(99,102,241,.4), transparent);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--clr-muted);
    line-height: 1.6;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
    position: relative;
    z-index: 10;
    padding: 6rem 0;
    background: rgba(99,102,241,.04);
    border-top: 1px solid var(--clr-border);
}

.testimonial-card {
    background: var(--clr-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99,102,241,.3);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.author-role {
    font-size: 0.78rem;
    color: var(--clr-muted);
}

/* ── Final CTA Section ───────────────────────────────────── */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 7rem 0;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99,102,241,.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--clr-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ──────────────────────────────────────────────── */
.crm-footer {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    border-top: 1px solid var(--clr-border);
    background: rgba(5,8,22,.8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
}

.footer-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--clr-muted);
}

.footer-links-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    font-size: 0.88rem;
    color: var(--clr-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--clr-muted);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--clr-muted);
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(99,102,241,.2);
    border-color: rgba(99,102,241,.4);
    color: #818cf8;
    transform: translateY(-2px);
}

/* ── Animations ──────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    @keyframes fadeSlideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeSlideLeft {
        from { opacity: 0; transform: translateX(40px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    @keyframes float {
        0% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, -50px) rotate(10deg); }
        100% { transform: translate(0, 0) rotate(0deg); }
    }
}

/* Scroll-reveal */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-section { padding: 6rem 0 4rem; }
    .hero-visual { margin-top: 3rem; }
    .hero-stats { gap: 1.5rem; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .step-connector { display: none; }
    .float-card { display: none; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── GPU Acceleration Hints ──────────────────────────────── */
.crm-navbar,
.hero-visual,
.dashboard-mockup,
.float-card {
    will-change: transform;
    transform: translateZ(0);
}

/* ── Content Visibility (off-screen sections lazy render) ── */
.features-section,
.stats-band,
.how-section,
.testimonials-section,
.cta-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* ── Reduced Motion (accessibility) ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ── High Contrast Mode ──────────────────────────────────── */
@media (prefers-contrast: high) {
    :root {
        --clr-border: rgba(255, 255, 255, 0.3);
        --clr-muted: #cbd5e1;
    }
}

/* ── Print Styles ────────────────────────────────────────── */
@media print {
    .crm-navbar,
    .float-card,
    #bg-canvas,
    .bg-overlay,
    .hero-actions,
    .crm-footer { display: none !important; }
    body { background: #fff; color: #000; }
    .hero-title, .section-title { color: #000; -webkit-text-fill-color: #000; }
}

