/**
 * Trust2 — About section (full premium futuristic)
 */

body.frontend-futuristic .fe-about-section {
    --fe-about-accent: var(--color-primary);
    --fe-about-accent-dim: color-mix(in srgb, var(--color-primary) 18%, transparent);
    --fe-stat-glow: color-mix(in srgb, var(--color-primary) 14%, transparent);
    --fe-stat-glow-strong: color-mix(in srgb, var(--color-primary) 35%, transparent);
    --fe-stat-glow-border: color-mix(in srgb, var(--color-primary) 28%, transparent);
    --fe-stat-icon-bg: color-mix(in srgb, var(--color-primary) 10%, transparent);
    --fe-stat-icon-border: color-mix(in srgb, var(--color-primary) 24%, transparent);
    --fe-stat-number-mid: color-mix(in srgb, var(--color-primary) 40%, #ffffff);
    --fe-about-card: rgba(10, 16, 28, 0.88);
    --fe-about-border: var(--fe-border);
    position: relative;
    overflow: hidden;
}

body.frontend-futuristic .fe-about-section .linear-left {
    display: none !important;
}

/* Background — match Currency Exchange (fe-markets-section) */
body.frontend-futuristic .fe-about-section__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    color: rgba(255, 255, 255, 0.06);
}

body.frontend-futuristic .fe-about-bg__grid {
    width: 100%;
    height: 100%;
    animation: feAboutGridDrift 55s linear infinite;
}

body.frontend-futuristic .fe-about-bg__hex {
    position: absolute;
    right: -40px;
    bottom: 10%;
    width: min(280px, 50vw);
    height: auto;
    color: var(--color-primary);
    opacity: 0.5;
    animation: feAboutHexSpin 40s linear infinite;
}

body.frontend-futuristic .fe-about-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
}

body.frontend-futuristic .fe-about-bg__orb--1 {
    width: 420px;
    height: 420px;
    top: 8%;
    left: -8%;
    background: color-mix(in srgb, var(--color-primary) 30%, transparent);
    animation: feAboutOrb 17s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-bg__orb--2 {
    width: 360px;
    height: 360px;
    bottom: 0;
    right: -5%;
    background: rgba(99, 102, 241, 0.16);
    animation: feAboutOrb 21s ease-in-out infinite reverse;
}

body.frontend-futuristic .fe-about-section .container {
    position: relative;
    z-index: 1;
}

body.frontend-futuristic .fe-about-shell {
    position: relative;
}

/* —— Copy column —— */
body.frontend-futuristic .fe-about-copy {
    max-width: 34rem;
}

body.frontend-futuristic .fe-about-title {
    font-size: clamp(2rem, 4.5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 1.1rem;
}

body.frontend-futuristic .fe-about-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #94a3b8;
    margin: 0 0 1.75rem;
    max-width: 32rem;
}

/* —— Feature pills (2-col grid) —— */
body.frontend-futuristic .fe-about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.25rem;
    margin: 0 0 2rem;
    padding: 0;
}

body.frontend-futuristic .fe-about-pill {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

body.frontend-futuristic .fe-about-pill__icon {
    position: relative;
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--color-primary);
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--color-primary) 16%, rgba(8, 14, 24, 0.92)),
        rgba(8, 14, 24, 0.98)
    );
    border: 1px solid color-mix(in srgb, var(--color-primary) 42%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 22px color-mix(in srgb, var(--color-primary) 32%, transparent);
    overflow: visible;
}

body.frontend-futuristic .fe-about-pill__icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 13px;
    border: 1px dashed color-mix(in srgb, var(--color-primary) 28%, transparent);
    opacity: 0.55;
    pointer-events: none;
    animation: feAboutIconRing 6s linear infinite;
}

body.frontend-futuristic .fe-about-pill:hover .fe-about-pill__icon {
    border-color: color-mix(in srgb, var(--color-primary) 65%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 28px color-mix(in srgb, var(--color-primary) 45%, transparent);
}

body.frontend-futuristic .fe-about-pill__icon > i,
body.frontend-futuristic .fe-about-pill__icon [class*=" bi-"],
body.frontend-futuristic .fe-about-pill__icon [class^="bi-"],
body.frontend-futuristic .fe-about-pill__icon [class*=" la-"],
body.frontend-futuristic .fe-about-pill__icon [class^="la-"] {
    position: relative;
    z-index: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem !important;
    line-height: 1 !important;
    color: var(--color-primary) !important;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--color-primary) 55%, transparent));
}

body.frontend-futuristic .fe-about-pill__icon > i::before,
body.frontend-futuristic .fe-about-pill__icon [class*=" bi-"]::before,
body.frontend-futuristic .fe-about-pill__icon [class^="bi-"]::before {
    font-family: "bootstrap-icons" !important;
}

body.frontend-futuristic .fe-about-pill__icon .las::before,
body.frontend-futuristic .fe-about-pill__icon .lab::before,
body.frontend-futuristic .fe-about-pill__icon [class*=" la-"]::before {
    font-family: "Line Awesome Free" !important;
    font-weight: 900 !important;
}

body.frontend-futuristic .fe-about-pill__icon > svg {
    position: relative;
    z-index: 1;
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--color-primary) 55%, transparent));
}

@keyframes feAboutIconRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

body.frontend-futuristic .fe-about-pill__text {
    font-size: 0.92rem;
    font-weight: 500;
    color: #e2e8f0;
    line-height: 1.4;
}

/* —— Stats (3-col vertical + glow) —— */
body.frontend-futuristic .fe-about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

body.frontend-futuristic .fe-about-section .fe-about-stat,
body.frontend-futuristic .fe-about-section .fe-about-stat.counter-single,
body.frontend-futuristic .fe-about-section .counter-single.fe-about-stat {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 172px;
    padding: 1.75rem 1.1rem 1.5rem !important;
    border-radius: 20px !important;
    background: linear-gradient(165deg, rgba(18, 26, 40, 0.98) 0%, rgba(10, 14, 24, 0.99) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    box-shadow:
        0 4px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

body.frontend-futuristic .fe-about-section .fe-about-stat::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--fe-stat-glow), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body.frontend-futuristic .fe-about-section .fe-about-stat::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, var(--fe-stat-glow-strong), rgba(255, 255, 255, 0.06) 40%, var(--fe-stat-glow));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

body.frontend-futuristic .fe-about-section .fe-about-stat:hover {
    transform: translateY(-3px);
    border-color: var(--fe-stat-glow-border) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 28px var(--fe-stat-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body.frontend-futuristic .fe-about-section .fe-about-stat:hover::after {
    opacity: 1;
}

body.frontend-futuristic .fe-about-stat__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 0 1rem;
    padding: 0;
    border-radius: 12px;
    background: var(--fe-stat-icon-bg) !important;
    border: 1px solid var(--fe-stat-icon-border) !important;
    color: var(--color-primary);
    box-shadow: 0 0 20px var(--fe-stat-glow);
}

body.frontend-futuristic .fe-about-stat__icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 1.75;
    filter: drop-shadow(0 0 6px color-mix(in srgb, var(--color-primary) 50%, transparent));
}

body.frontend-futuristic .fe-about-stat__value-wrap {
    position: relative;
    z-index: 1;
    margin: 0 0 0.5rem;
    line-height: 1;
    width: 100%;
}

body.frontend-futuristic .fe-about-section .fe-about-stat__value,
body.frontend-futuristic .fe-about-section .fe-about-stat h3.fe-about-stat__value,
body.frontend-futuristic .fe-about-section .counter-single.fe-about-stat h3 {
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    -webkit-text-stroke: 0 !important;
    text-stroke: none !important;
    background: linear-gradient(90deg, #fefefe 0%, var(--fe-stat-number-mid) 42%, var(--color-primary) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    filter: none !important;
}

body.frontend-futuristic .fe-about-section .fe-about-stat__value--text {
    background: linear-gradient(90deg, #fefefe 0%, var(--fe-stat-number-mid) 42%, var(--color-primary) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

body.frontend-futuristic .fe-about-section .fe-about-stat__value.odometer {
    display: inline-block;
    vertical-align: baseline;
}

body.frontend-futuristic .fe-about-section .fe-about-stat__value .odometer-digit,
body.frontend-futuristic .fe-about-section .fe-about-stat__value .odometer-value {
    background: linear-gradient(90deg, #fefefe 0%, var(--fe-stat-number-mid) 42%, var(--color-primary) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--color-primary) !important;
}

body.frontend-futuristic .fe-about-section .fe-about-stat .smaller-count {
    font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
    min-width: 0 !important;
    line-height: 1.1 !important;
}

body.frontend-futuristic .fe-about-section .fe-about-stat__label,
body.frontend-futuristic .fe-about-section .fe-about-stat p.fe-about-stat__label,
body.frontend-futuristic .fe-about-section .counter-single.fe-about-stat p {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    padding: 0;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    line-height: 1.45;
    color: #7a8ba3 !important;
    letter-spacing: 0;
    background: none !important;
    -webkit-text-fill-color: #7a8ba3 !important;
}

body.frontend-futuristic .fe-about-section .counter-wrap .counter-single {
    border-radius: 20px !important;
}

body.frontend-futuristic .fe-about-section .counter-wrap .counter-single h3 {
    -webkit-text-stroke: 0 !important;
    text-stroke: none !important;
    color: transparent !important;
}

/* —— Motion graphics banner (illustrator style) —— */
body.frontend-futuristic .fe-about-visual {
    position: relative;
    display: flex !important;
    visibility: visible !important;
    min-height: 520px;
    padding: 1rem 0;
}

body.frontend-futuristic .fe-about-motion {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    margin: 0 auto;
}

body.frontend-futuristic .fe-about-motion__holo {
    position: absolute;
    inset: 5% 0;
    pointer-events: none;
    z-index: 0;
}

body.frontend-futuristic .fe-about-motion__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent);
}

body.frontend-futuristic .fe-about-motion__ring--1 {
    inset: 8% 10%;
    animation: feAboutRingPulse 5s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-motion__ring--2 {
    inset: 18% 20%;
    border-color: rgba(139, 92, 246, 0.2);
    animation: feAboutRingPulse 5s ease-in-out infinite 1.2s;
}

body.frontend-futuristic .fe-about-motion__scanline {
    position: absolute;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
    animation: feAboutScan 6s linear infinite;
}

body.frontend-futuristic .fe-about-motion__aura {
    position: absolute;
    inset: 12% 5%;
    background: radial-gradient(ellipse at 55% 45%, color-mix(in srgb, var(--color-primary) 22%, transparent), transparent 68%);
    z-index: 0;
    animation: feAboutAura 4s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-motion__panel {
    position: absolute;
    border-radius: 20px;
    overflow: visible;
    z-index: 2;
}

body.frontend-futuristic .fe-about-motion__frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(14, 20, 34, 0.95), rgba(6, 10, 18, 0.98));
    border: 1px solid var(--fe-border);
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.5),
        0 0 0 1px color-mix(in srgb, var(--color-primary) 12%, transparent) inset;
}

body.frontend-futuristic .fe-about-motion__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary) 70%, transparent), rgba(255, 255, 255, 0.08) 45%, rgba(139, 92, 246, 0.45));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 4;
}

body.frontend-futuristic .fe-about-motion__panel--data {
    width: 68%;
    left: 0;
    right: auto;
    bottom: 4%;
    z-index: 1;
    transform: none;
    animation: feAboutFloat 7s ease-in-out infinite 0.4s;
}

body.frontend-futuristic .fe-about-motion__panel--city {
    width: 56%;
    left: auto;
    right: 0;
    top: 0;
    z-index: 2;
    transform: none;
    animation: feAboutFloat 6s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-motion__panel--hero {
    width: 80%;
    left: 50%;
    top: 16%;
    z-index: 3;
    transform: translateX(-50%);
    animation: feAboutFloatCenter 6.5s ease-in-out infinite 1s;
}

body.frontend-futuristic .fe-about-motion__panel--data .fe-about-motion__frame {
    min-height: 200px;
}

body.frontend-futuristic .fe-about-motion__panel--city .fe-about-motion__frame {
    min-height: 175px;
}

body.frontend-futuristic .fe-about-motion__panel--hero .fe-about-motion__frame {
    min-height: 320px;
}

/* Override main.css .about-image img { max-width: 320px } */
body.frontend-futuristic .fe-about-section .about-image .fe-about-motion__img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.58;
    z-index: 1;
    mix-blend-mode: normal;
    border-radius: 0;
    margin: 0;
}

body.frontend-futuristic .fe-about-motion__img--hero {
    opacity: 0.62;
}

body.frontend-futuristic .fe-about-motion__img--blend {
    object-fit: contain;
    object-position: center;
    padding: 0.35rem;
    opacity: 0.55;
}

body.frontend-futuristic .fe-about-motion__svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    opacity: 1;
}

body.frontend-futuristic .fe-about-motion__coins {
    position: absolute;
    right: -4%;
    bottom: 0;
    width: 130px;
    z-index: 5;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.55));
    animation: feAboutCoinBob 4s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-motion__coins svg {
    width: 100%;
    height: auto;
}

body.frontend-futuristic .fe-about-motion__particles span {
    position: absolute;
    left: var(--px);
    top: var(--py);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px color-mix(in srgb, var(--color-primary) 80%, transparent);
    animation: feAboutParticle 3.5s ease-in-out infinite;
    animation-delay: var(--pd);
}

/* SVG animations */
body.frontend-futuristic .fe-about-motion__btc {
    animation: feAboutBtcFloat 5s ease-in-out infinite;
    transform-origin: 220px 185px;
}

body.frontend-futuristic .fe-about-motion__orbit {
    transform-origin: center;
    animation: feAboutSpin 22s linear infinite;
}

body.frontend-futuristic .fe-about-motion__bar {
    transform-origin: bottom center;
    animation: feAboutBarPulse 2.4s ease-in-out infinite;
    animation-delay: calc(var(--bar-i, 0) * 0.1s);
}

body.frontend-futuristic .fe-about-motion__win {
    animation: feAboutWinBlink 3s ease-in-out infinite;
    animation-delay: var(--win-d, 0s);
}

body.frontend-futuristic .fe-about-motion__trail,
body.frontend-futuristic .fe-about-motion__map {
    stroke-dasharray: 420;
    stroke-dashoffset: 420;
    animation: feAboutDraw 5s ease-in-out infinite;
}

body.frontend-futuristic .fe-about-motion__dot,
body.frontend-futuristic .fe-about-motion__pulse {
    animation: feAboutDotPulse 2.5s ease-in-out infinite;
    animation-delay: var(--dot-d, 0s);
}

body.frontend-futuristic .fe-about-motion__coin {
    animation: feAboutCoinStack 3s ease-in-out infinite;
    animation-delay: calc(var(--coin-i, 0) * 0.18s);
}

body.frontend-futuristic .fe-about-motion__scan {
    animation: feAboutScanH 4s ease-in-out infinite;
}

/* Hide legacy about markup */
body.frontend-futuristic .fe-about-section .about-list li i {
    display: none;
}

body.frontend-futuristic .fe-about-section .about-image > img:not(.fe-about-motion__img) {
    display: none;
}

/* —— Responsive —— */
@media (max-width: 991px) {
    body.frontend-futuristic .fe-about-copy {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    body.frontend-futuristic .fe-about-lead {
        margin-left: auto;
        margin-right: auto;
    }

    body.frontend-futuristic .fe-about-features {
        grid-template-columns: 1fr;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    body.frontend-futuristic .fe-about-stats {
        max-width: 100%;
    }

    body.frontend-futuristic .fe-about-visual {
        min-height: 400px;
        margin-top: 1rem;
    }

    body.frontend-futuristic .fe-about-motion {
        min-height: 400px;
    }
}

@media (max-width: 991px) {
    body.frontend-futuristic .fe-about-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat h3.fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat .smaller-count {
        font-size: clamp(1.35rem, 3.2vw, 1.65rem) !important;
    }
}

@media (max-width: 767px) {
    body.frontend-futuristic .fe-about-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        max-width: 100%;
        width: 100%;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat,
    body.frontend-futuristic .fe-about-section .fe-about-stat.counter-single {
        min-height: auto !important;
        padding: 1.5rem 1.25rem 1.35rem !important;
        width: 100%;
    }

    body.frontend-futuristic .fe-about-stat__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.1rem;
    }

    body.frontend-futuristic .fe-about-stat__icon svg {
        width: 1.65rem;
        height: 1.65rem;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat h3.fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat .smaller-count,
    body.frontend-futuristic .fe-about-section .fe-about-stat__value--text {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat__label {
        font-size: 0.9375rem !important;
    }

    body.frontend-futuristic .fe-about-features {
        grid-template-columns: 1fr;
    }

    body.frontend-futuristic .fe-about-motion__panel--hero {
        width: 88%;
        transform: translateX(-50%);
    }

    body.frontend-futuristic .fe-about-motion__panel--hero .fe-about-motion__frame {
        min-height: 260px;
    }
}

@media (max-width: 575px) {
    body.frontend-futuristic .fe-about-title {
        font-size: 1.75rem;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat h3.fe-about-stat__value,
    body.frontend-futuristic .fe-about-section .fe-about-stat .smaller-count,
    body.frontend-futuristic .fe-about-section .fe-about-stat__value--text {
        font-size: 2rem !important;
    }

    body.frontend-futuristic .fe-about-section .fe-about-stat__label {
        font-size: 1rem !important;
    }

    body.frontend-futuristic .fe-about-motion {
        min-height: 340px;
    }
}

@keyframes feAboutGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(48px, 48px); }
}

@keyframes feAboutHexSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes feAboutOrb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -16px); }
}

@keyframes feAboutParticle {
    0%, 100% { opacity: 0.15; transform: scale(0.7); }
    50% { opacity: 1; transform: scale(1.2); }
}

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

@keyframes feAboutFloatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-14px); }
}

@keyframes feAboutAura {
    0%, 100% { opacity: 0.75; }
    50% { opacity: 1; }
}

@keyframes feAboutRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50% { transform: scale(1.03); opacity: 0.7; }
}

@keyframes feAboutRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes feAboutScan {
    0% { top: 10%; opacity: 0; }
    15% { opacity: 0.6; }
    85% { opacity: 0.6; }
    100% { top: 90%; opacity: 0; }
}

@keyframes feAboutScanH {
    0%, 100% { opacity: 0.2; transform: translateX(-8%); }
    50% { opacity: 0.7; transform: translateX(8%); }
}

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

@keyframes feAboutSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes feAboutBarPulse {
    0%, 100% { transform: scaleY(0.78); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

@keyframes feAboutWinBlink {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.9; }
}

@keyframes feAboutDraw {
    0% { stroke-dashoffset: 420; opacity: 0.35; }
    50% { stroke-dashoffset: 0; opacity: 0.85; }
    100% { stroke-dashoffset: -420; opacity: 0.35; }
}

@keyframes feAboutDotPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

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

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

@media (prefers-reduced-motion: reduce) {
    body.frontend-futuristic .fe-about-bg__grid,
    body.frontend-futuristic .fe-about-bg__hex,
    body.frontend-futuristic .fe-about-bg__orb,
    body.frontend-futuristic .fe-about-motion__panel,
    body.frontend-futuristic .fe-about-motion__btc,
    body.frontend-futuristic .fe-about-motion__orbit,
    body.frontend-futuristic .fe-about-motion__coins,
    body.frontend-futuristic .fe-about-motion__scanline,
    body.frontend-futuristic .fe-about-pill__icon::after {
        animation: none !important;
    }

    body.frontend-futuristic .fe-about-motion__panel--hero {
        transform: translateX(-50%);
    }
}
