@charset "UTF-8";

/* Phase 19 visual parity and motion layer — homepage only. */
body.marketing-body {
    --motion-green: #10b85c;
    --motion-green-dark: #087447;
    --motion-navy: #102a4c;
    --motion-orange: #f5a623;
    --cursor-x: 50vw;
    --cursor-y: 30vh;
    overflow-x: clip;
}

.marketing-motion-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--motion-orange), var(--motion-green));
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: right center;
    box-shadow: 0 0 12px rgba(16, 184, 92, .55);
}

.marketing-cursor-glow {
    position: fixed;
    z-index: 0;
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    left: var(--cursor-x);
    top: var(--cursor-y);
    border-radius: 50%;
    pointer-events: none;
    opacity: .12;
    filter: blur(8px);
    background: radial-gradient(circle, rgba(16,184,92,.32), rgba(16,184,92,0) 68%);
    transition: opacity .25s ease;
}

.site-header {
    transition: min-height .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 10px 35px rgba(16,42,76,.08);
}
.site-header.is-scrolled .navbar { min-height: 66px; }
.site-header .brand-logo { transition: transform .3s cubic-bezier(.2,.8,.2,1), filter .3s ease; }
.site-header a:hover .brand-logo { transform: translateY(-2px) scale(1.025); filter: drop-shadow(0 8px 13px rgba(16,184,92,.18)); }

.hero.motion-hero {
    isolation: isolate;
    min-height: 720px;
    background:
        linear-gradient(rgba(16,184,92,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,184,92,.026) 1px, transparent 1px),
        radial-gradient(circle at 88% 8%, rgba(16,184,92,.15), transparent 27%),
        radial-gradient(circle at 7% 76%, rgba(245,166,35,.12), transparent 26%),
        linear-gradient(180deg, #fff, #f8fdfa);
    background-size: 46px 46px, 46px 46px, auto, auto, auto;
}
.hero.motion-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--hero-light-x, 52%) var(--hero-light-y, 35%), rgba(255,255,255,.9), transparent 24%);
    opacity: .65;
}
.hero-aurora {
    position: absolute;
    z-index: -1;
    width: 72vw;
    height: 320px;
    right: 8vw;
    top: 90px;
    border-radius: 50%;
    filter: blur(65px);
    background: linear-gradient(90deg, rgba(16,184,92,.13), rgba(245,166,35,.08), rgba(16,42,76,.08));
    animation: auroraDrift 12s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero-ring {
    position: absolute;
    border: 1px dashed rgba(16,184,92,.16);
    border-radius: 50%;
    pointer-events: none;
    animation: spinRing 28s linear infinite;
}
.hero-ring-one { width: 430px; height: 430px; right: -230px; top: 150px; }
.hero-ring-two { width: 240px; height: 240px; left: 3%; top: 120px; animation-direction: reverse; animation-duration: 20s; }
.hero-ring::before,
.hero-ring::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--motion-green);
    box-shadow: 0 0 0 7px rgba(16,184,92,.09);
}
.hero-ring::before { top: 11%; left: 14%; }
.hero-ring::after { right: 5%; bottom: 28%; background: var(--motion-orange); box-shadow: 0 0 0 7px rgba(245,166,35,.09); }

.hero-copy .pill {
    position: relative;
    overflow: hidden;
    animation: pillFloat 4.4s ease-in-out infinite;
}
.hero-copy .pill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.9) 45%, transparent 70%);
    transform: translateX(130%);
    animation: pillShine 5s ease-in-out infinite;
}
.hero-copy h1 { text-wrap: balance; }
.hero-copy h1 strong {
    position: relative;
    display: inline-block;
    min-width: 7.5ch;
    background: linear-gradient(105deg, #087447 0%, #10b85c 42%, #f5a623 70%, #087447 100%);
    background-size: 250% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: headlineGradient 6s linear infinite;
}
.hero-copy h1 strong::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 2px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(16,184,92,.14), rgba(245,166,35,.25));
    transform: scaleX(0);
    transform-origin: right;
    animation: underlineDraw 1.05s .6s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-word-cycle.is-changing { animation: wordSwap .38s ease both; }
.hero-copy > p { animation: copyBreath 7s ease-in-out infinite; }
.hero-ctas .btn { position: relative; overflow: hidden; }
.hero-ctas .btn::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -40%;
    width: 30%;
    height: 260%;
    transform: rotate(22deg);
    background: rgba(255,255,255,.42);
    filter: blur(1px);
    transition: left .65s ease;
}
.hero-ctas .btn:hover::after { left: 125%; }
.hero-notes span { animation: noteIn .55s both; }
.hero-notes span:nth-child(2) { animation-delay: .12s; }
.hero-notes span:nth-child(3) { animation-delay: .24s; }

.dashboard-stage {
    position: relative;
    perspective: 1500px;
    z-index: 2;
}
.dashboard-mock.motion-dashboard {
    padding: 10px;
    border-radius: 24px;
    border-color: rgba(16,184,92,.19);
    box-shadow: 0 28px 80px rgba(16,42,76,.16), 0 0 0 1px rgba(255,255,255,.8) inset;
    transform-style: preserve-3d;
}
.dashboard-mock.motion-dashboard::after { inset-inline: 9%; bottom: -26px; height: 44px; opacity: .86; }
.mock-window-dots {
    display: flex;
    gap: 5px;
    position: absolute;
    left: 18px;
    top: 15px;
    z-index: 8;
}
.mock-window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #dce5e1; }
.mock-window-dots i:nth-child(2) { background: #f5a623; }
.mock-window-dots i:nth-child(3) { background: #10b85c; }
.motion-dashboard .mock-shell { min-height: 430px; grid-template-columns: 112px 1fr; }
.motion-dashboard .mock-side { position: relative; overflow: hidden; }
.motion-dashboard .mock-side::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -38px;
    bottom: -28px;
    border-radius: 50%;
    background: rgba(16,184,92,.07);
    animation: sidebarBlob 6s ease-in-out infinite;
}
.mock-menu span { position: relative; overflow: hidden; transition: transform .25s ease, background .25s ease; }
.mock-menu span::after { content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 2px; background: var(--motion-green); transform: scaleY(0); transition: .25s; }
.mock-menu span.active::after { transform: scaleY(1); }
.mock-menu span:nth-child(2) { animation: mockMenuPulse 7s 1s infinite; }
.mock-menu span:nth-child(5) { animation: mockMenuPulse 7s 3.2s infinite; }

.mock-top { position: relative; }
.mock-search { position: relative; overflow: hidden; }
.mock-search::before { content: "⌕ جستجو در کلاس‌آموز"; position: absolute; inset: 0; display: flex; align-items: center; padding-inline: 10px; color: #9aa8a1; font-size: 7px; }
.mock-search::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(16,184,92,.09), transparent); transform: translateX(120%); animation: searchSweep 5.5s infinite; }
.mock-top-actions { display: flex; align-items: center; gap: 6px; }
.mock-top-icon { width: 21px; height: 21px; border-radius: 7px; background: #f1f7f4; display: grid; place-items: center; font-size: 8px; color: #60756b; animation: topIconBob 4s ease-in-out infinite; }
.mock-top-icon:nth-child(2) { animation-delay: .7s; }
.mock-avatar { position: relative; box-shadow: 0 0 0 3px rgba(16,184,92,.1); animation: avatarGlow 3.4s ease-in-out infinite; }
.mock-avatar::after { content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #10b85c; border: 1px solid #fff; right: -1px; bottom: -1px; }

.motion-dashboard .mock-banner {
    min-height: 154px;
    padding: 27px 25px;
    background:
        radial-gradient(circle at 78% 15%, rgba(255,255,255,.15), transparent 24%),
        linear-gradient(125deg, #08984f 0%, #10b85c 58%, #33ce7a 100%);
}
.motion-dashboard .mock-banner::before,
.motion-dashboard .mock-banner::after { display: none; }
.mock-banner-copy { width: 52%; position: relative; z-index: 4; }
.mock-banner-copy h3 { font-size: 16px; line-height: 1.55; }
.mock-banner-copy p { font-size: 8px; }
.mock-banner-copy button { animation: bannerButton 4s ease-in-out infinite; }
.mock-pulse-dot { left: auto; right: 16px; top: 15px; width: 7px; height: 7px; }
.mock-visual-lab {
    position: absolute;
    z-index: 3;
    left: 19px;
    bottom: 17px;
    width: 43%;
    height: 116px;
    perspective: 700px;
}
.mock-monitor {
    position: absolute;
    width: 118px;
    height: 76px;
    left: 19px;
    top: 5px;
    border: 5px solid #fff;
    border-bottom-width: 8px;
    border-radius: 8px;
    background: #f6fbf8;
    box-shadow: 0 10px 18px rgba(6,89,51,.18);
    transform: rotateY(-7deg);
    animation: monitorFloat 4.8s ease-in-out infinite;
}
.mock-monitor::before { content: ""; position: absolute; width: 29px; height: 7px; background: #fff; bottom: -15px; left: 39px; border-radius: 2px; }
.mock-monitor::after { content: ""; position: absolute; width: 48px; height: 4px; background: rgba(255,255,255,.92); bottom: -18px; left: 30px; border-radius: 999px; }
.monitor-header { height: 12px; background: #e8f6ee; border-radius: 3px 3px 0 0; }
.monitor-grid { display: grid; grid-template-columns: 26px 1fr; height: calc(100% - 12px); }
.monitor-side { border-left: 1px solid #e1eee7; background: #fff; }
.monitor-side i { display: block; width: 15px; height: 3px; margin: 6px auto; border-radius: 999px; background: #dbe9e2; }
.monitor-side i:first-child { background: #10b85c; }
.monitor-chart { position: relative; overflow: hidden; }
.monitor-bars { position: absolute; inset: 24px 8px 8px; display: flex; align-items: end; gap: 4px; }
.monitor-bars i { flex: 1; height: var(--bar, 50%); border-radius: 3px 3px 0 0; background: linear-gradient(#18c86c, #0a9250); transform-origin: bottom; animation: barGrow 1.4s cubic-bezier(.2,.8,.2,1) both, barDance 5s 1.5s ease-in-out infinite; }
.monitor-bars i:nth-child(2) { animation-delay: .12s, 1.75s; }
.monitor-bars i:nth-child(3) { animation-delay: .24s, 2s; background: linear-gradient(#f6b544,#e89514); }
.monitor-bars i:nth-child(4) { animation-delay: .36s, 2.25s; }
.monitor-line { position: absolute; inset: 14px 8px auto; height: 28px; }
.monitor-line svg { width: 100%; height: 100%; overflow: visible; }
.monitor-line polyline { fill: none; stroke: #f5a623; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 120; stroke-dashoffset: 120; animation: lineDraw 2s .65s ease forwards; }
.mock-phone {
    position: absolute;
    width: 35px;
    height: 68px;
    left: 0;
    bottom: 3px;
    border: 4px solid #fff;
    border-radius: 8px;
    background: #effaf3;
    box-shadow: 0 10px 18px rgba(6,89,51,.17);
    animation: phoneBob 4s .6s ease-in-out infinite;
}
.mock-phone::before { content: ""; position: absolute; width: 12px; height: 2px; background: #d2e9dc; top: 3px; left: 7px; border-radius: 9px; }
.phone-chart { position: absolute; inset: 15px 5px 8px; border-radius: 5px; background: conic-gradient(#10b85c 0 68%, #f5a623 68% 84%, #dbece3 84%); animation: pieSpin 9s linear infinite; }
.phone-chart::after { content: ""; position: absolute; inset: 7px; background: #effaf3; border-radius: 50%; }
.mock-person {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 82px;
    animation: personSway 5s ease-in-out infinite;
}
.mock-person::before { content: ""; position: absolute; width: 21px; height: 21px; border-radius: 50%; top: 0; right: 8px; background: #ffd7b8; box-shadow: inset 5px 3px 0 #163451; }
.mock-person::after { content: ""; position: absolute; width: 36px; height: 57px; right: 1px; bottom: 0; border-radius: 18px 18px 8px 8px; background: linear-gradient(135deg,#102a4c,#1e5875); clip-path: polygon(19% 0,81% 0,100% 100%,0 100%); }
.person-arm { position: absolute; z-index: 3; width: 35px; height: 7px; border-radius: 999px; background: #ffd7b8; top: 37px; right: 24px; transform-origin: right; transform: rotate(-18deg); animation: armWave 3.5s ease-in-out infinite; }

.mock-stat { position: relative; overflow: hidden; }
.mock-stat::after { content: ""; position: absolute; right: 0; left: 0; bottom: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--motion-green),transparent); transform: translateX(110%); animation: statScan 5s infinite; }
.mock-stat:nth-child(2)::after { animation-delay: .7s; }
.mock-stat:nth-child(3)::after { animation-delay: 1.4s; }
.mock-stat:nth-child(4)::after { animation-delay: 2.1s; }
.mock-row b { animation: rowDotPulse 2.7s ease-in-out infinite; }
.mock-row:nth-child(2) b { animation-delay: .5s; }
.mock-row:nth-child(3) b { animation-delay: 1s; }

.motion-float-card {
    position: absolute;
    z-index: 10;
    min-width: 130px;
    border: 1px solid rgba(16,184,92,.18);
    border-radius: 15px;
    padding: 10px 12px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 40px rgba(16,42,76,.13);
    backdrop-filter: blur(12px);
    pointer-events: none;
}
.motion-float-card b { display: block; color: var(--motion-navy); font-size: 11px; }
.motion-float-card small { color: #708178; font-size: 8px; }
.motion-float-card .motion-icon { float: right; width: 27px; height: 27px; margin-left: 8px; display: grid; place-items: center; border-radius: 9px; background: #e5f8ed; color: #087447; }
.motion-card-live { top: 34px; right: -42px; animation: floatCardOne 5s ease-in-out infinite; }
.motion-card-score { left: -38px; top: 128px; animation: floatCardTwo 5.8s .5s ease-in-out infinite; }
.motion-card-payment { right: -30px; bottom: 32px; animation: floatCardThree 6.2s 1s ease-in-out infinite; }
.motion-orbit-chip {
    position: absolute;
    z-index: 9;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid #dcebe3;
    box-shadow: 0 11px 26px rgba(16,42,76,.1);
    font-size: 14px;
    pointer-events: none;
}
.motion-orbit-one { left: 8%; bottom: -11px; animation: orbitChip 6s infinite; }
.motion-orbit-two { right: 15%; top: -13px; animation: orbitChip 7s .9s infinite reverse; }

.trust-card { position: relative; }
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(16,184,92,.07), transparent);
    transform: translateX(120%);
    animation: trustSweep 7s infinite;
}
.trust-item .icon-circle { transition: transform .3s ease; }
.trust-item:hover .icon-circle { transform: translateY(-4px) rotate(7deg) scale(1.08); }

.motion-ticker-wrap {
    position: relative;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(16,184,92,.13);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 10px 26px rgba(16,42,76,.05);
    mask-image: linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.motion-ticker {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 0;
    animation: tickerMove 28s linear infinite;
}
.motion-ticker:hover { animation-play-state: paused; }
.motion-ticker span { display: inline-flex; align-items: center; gap: 7px; color: #49615a; font-size: 11px; font-weight: 800; white-space: nowrap; }
.motion-ticker span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--motion-green); box-shadow: 0 0 0 4px rgba(16,184,92,.09); }
.motion-ticker span:nth-child(3n)::before { background: var(--motion-orange); box-shadow: 0 0 0 4px rgba(245,166,35,.09); }

.section-heading { position: relative; }
.section-heading::after {
    content: "";
    position: absolute;
    width: 82px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg,var(--motion-green),var(--motion-orange));
    right: calc(50% - 41px);
    bottom: -17px;
    transform: scaleX(0);
    transform-origin: right;
}
.section-heading.is-visible::after { animation: headingLine 1s .2s ease forwards; }
.feature-card,
.analytics-panel,
.home-live-visual,
.audience-card,
.price-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.feature-card::before,
.analytics-panel::before,
.home-live-visual::before,
.audience-card::before,
.price-card::before,
.testimonial-card::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    left: var(--spot-x, -120px);
    top: var(--spot-y, -120px);
    background: radial-gradient(circle,rgba(16,184,92,.14),transparent 66%);
    opacity: 0;
    transition: opacity .25s ease;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.feature-card:hover::before,
.analytics-panel:hover::before,
.home-live-visual:hover::before,
.audience-card:hover::before,
.price-card:hover::before,
.testimonial-card:hover::before { opacity: 1; }
.feature-card .icon-circle { animation: iconFloat 4.8s ease-in-out infinite; }
.feature-card:nth-child(3n+2) .icon-circle { animation-delay: .7s; }
.feature-card:nth-child(3n) .icon-circle { animation-delay: 1.4s; }

[data-motion-reveal],
[data-motion-reveal="right"],
[data-motion-reveal="left"],
[data-motion-reveal="scale"],
[data-motion-reveal].is-visible { opacity: 1; transform: none; }

.motion-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.motion-particle {
    position: absolute;
    width: var(--particle-size, 5px);
    height: var(--particle-size, 5px);
    border-radius: var(--particle-radius, 50%);
    background: var(--particle-color, #10b85c);
    opacity: .28;
    animation: particleRise var(--particle-duration, 9s) linear infinite;
    animation-delay: var(--particle-delay, 0s);
}

@keyframes auroraDrift { to { transform: translate3d(-8vw,32px,0) scale(1.14); filter: blur(78px); } }
@keyframes spinRing { to { transform: rotate(360deg); } }
@keyframes pillFloat { 50% { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(16,184,92,.09); } }
@keyframes pillShine { 0%,62% { transform: translateX(130%); } 82%,100% { transform: translateX(-130%); } }
@keyframes headlineGradient { to { background-position: 250% center; } }
@keyframes underlineDraw { to { transform: scaleX(1); } }
@keyframes wordSwap { 45% { opacity: 0; transform: translateY(10px); } 55% { opacity: 0; transform: translateY(-10px); } }
@keyframes copyBreath { 50% { color: #526d64; } }
@keyframes noteIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes sidebarBlob { 50% { transform: translate(-12px,-10px) scale(1.12); } }
@keyframes mockMenuPulse { 50% { background: #e8f8ef; color: #087447; transform: translateX(-2px); } }
@keyframes searchSweep { 0%,62% { transform: translateX(120%); } 82%,100% { transform: translateX(-120%); } }
@keyframes topIconBob { 50% { transform: translateY(-2px); background: #e8f8ef; } }
@keyframes avatarGlow { 50% { box-shadow: 0 0 0 5px rgba(16,184,92,.08),0 6px 14px rgba(16,42,76,.1); transform: scale(1.04); } }
@keyframes bannerButton { 50% { transform: translateY(-2px); box-shadow: 0 7px 16px rgba(6,89,51,.17); } }
@keyframes monitorFloat { 50% { transform: rotateY(-4deg) translateY(-5px); } }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes barDance { 50% { transform: scaleY(.78); filter: brightness(1.08); } }
@keyframes lineDraw { to { stroke-dashoffset: 0; } }
@keyframes phoneBob { 50% { transform: translateY(-7px) rotate(-2deg); } }
@keyframes pieSpin { to { transform: rotate(360deg); } }
@keyframes personSway { 50% { transform: translateY(-3px) rotate(1deg); } }
@keyframes armWave { 50% { transform: rotate(-7deg); } }
@keyframes statScan { 0%,66% { transform: translateX(110%); } 88%,100% { transform: translateX(-110%); } }
@keyframes rowDotPulse { 50% { color: #10b85c; transform: scale(1.3); } }
@keyframes floatCardOne { 50% { transform: translate3d(-7px,-10px,0) rotate(-1deg); } }
@keyframes floatCardTwo { 50% { transform: translate3d(7px,-8px,0) rotate(1deg); } }
@keyframes floatCardThree { 50% { transform: translate3d(-5px,9px,0) rotate(-1deg); } }
@keyframes orbitChip { 50% { transform: translateY(-9px) rotate(8deg); box-shadow: 0 17px 28px rgba(16,42,76,.14); } }
@keyframes trustSweep { 0%,70% { transform: translateX(120%); } 92%,100% { transform: translateX(-120%); } }
@keyframes tickerMove { to { transform: translateX(50%); } }
@keyframes headingLine { to { transform: scaleX(1); } }
@keyframes iconFloat { 50% { transform: translateY(-5px) rotate(4deg); box-shadow: 0 9px 20px rgba(16,184,92,.13); } }
@keyframes particleRise { 0% { transform: translateY(110%) rotate(0); opacity: 0; } 12% { opacity: .28; } 88% { opacity: .18; } 100% { transform: translateY(-120px) rotate(260deg); opacity: 0; } }

@media (max-width: 1120px) {
    .motion-float-card { display: none; }
}
@media (max-width: 920px) {
    .hero.motion-hero { min-height: auto; }
    .dashboard-stage { max-width: 720px; margin: 0 auto; }
    .motion-dashboard .mock-shell { min-height: 405px; }
}
@media (max-width: 620px) {
    .hero-ring-two, .marketing-cursor-glow { display: none; }
    .dashboard-mock.motion-dashboard { padding: 6px; border-radius: 18px; }
    .motion-dashboard .mock-shell { min-height: 330px; grid-template-columns: 76px 1fr; }
    .motion-dashboard .mock-side { padding: 9px 6px; }
    .motion-dashboard .mock-side-logo { width: 58px; }
    .motion-dashboard .mock-menu span { height: 21px; font-size: 6px; padding-inline: 5px; }
    .motion-dashboard .mock-main { padding: 8px; }
    .motion-dashboard .mock-banner { min-height: 115px; padding: 18px 14px; }
    .mock-banner-copy h3 { font-size: 11px; }
    .mock-banner-copy p { font-size: 6px; margin-bottom: 8px; }
    .mock-banner-copy button { font-size: 6px; padding: 5px 8px; }
    .mock-visual-lab { transform: scale(.75); transform-origin: left bottom; left: 2px; bottom: 5px; }
    .mock-stats { gap: 4px; }
    .mock-stat { padding: 4px; min-height: 43px; }
    .mock-stat b { font-size: 10px; }
    .mock-stat small { font-size: 5px; }
    .mock-lists { gap: 4px; }
    .mock-card { padding: 6px; }
    .mock-card h4 { font-size: 7px; }
    .mock-row { font-size: 5px; min-height: 18px; }
    .motion-ticker-wrap { border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-motion-progress { display: none; }
    .marketing-cursor-glow { display: none; }
    .hero-aurora,
    .hero-ring,
    .hero-copy .pill,
    .hero-copy .pill::after,
    .hero-copy h1 strong,
    .hero-copy h1 strong::after,
    .hero-copy > p,
    .hero-notes span,
    .motion-dashboard .mock-side::after,
    .mock-menu span,
    .mock-search::after,
    .mock-top-icon,
    .mock-avatar,
    .mock-banner-copy button,
    .mock-monitor,
    .monitor-bars i,
    .monitor-line polyline,
    .mock-phone,
    .phone-chart,
    .mock-person,
    .person-arm,
    .mock-stat::after,
    .mock-row b,
    .motion-float-card,
    .motion-orbit-chip,
    .trust-card::before,
    .motion-ticker,
    .feature-card .icon-circle,
    .motion-particle { animation: none !important; }
    [data-motion-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
