/* 首页 Hero 模块样式 */

.animate__delay-1s {
    animation-delay: 0.2s;
}

.animate__delay-2s {
    animation-delay: 0.4s;
}

.animate__delay-3s {
    animation-delay: 0.6s;
}

.animate__delay-4s {
    animation-delay: 0.8s;
}

.animate__delay-5s {
    animation-delay: 1s;
}

.animate__delay-6s {
    animation-delay: 1.2s;
}

.animate__zoomIn {
    animation-duration: 0.6s;
}

.animate__fadeInDown {
    animation-duration: 0.5s;
}

.animate__fadeInUp {
    animation-duration: 0.7s;
}

.animate__fadeInRight {
    animation-duration: 0.8s;
}

.hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(96px, 11vh, 126px) 0 clamp(74px, 9vh, 104px);
    min-height: 72vh;
    color: var(--color-text-primary);
    background:
        radial-gradient(circle at 14% 18%, rgba(109, 98, 226, 0.15) 0%, rgba(109, 98, 226, 0.052) 18%, rgba(109, 98, 226, 0) 42%),
        radial-gradient(circle at 78% 16%, rgba(87, 81, 213, 0.12) 0%, rgba(87, 81, 213, 0.042) 24%, rgba(87, 81, 213, 0) 48%),
        radial-gradient(circle at 28% 82%, rgba(184, 138, 47, 0.055) 0%, rgba(184, 138, 47, 0.016) 18%, rgba(184, 138, 47, 0) 34%),
        radial-gradient(circle at 84% 74%, rgba(126, 115, 235, 0.065) 0%, rgba(126, 115, 235, 0.02) 22%, rgba(126, 115, 235, 0) 36%),
        linear-gradient(180deg, #fffdfb 0%, #fefcf9 44%, #faf5ee 100%);
    scroll-margin-top: 96px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 22, 21, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 22, 21, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 34%);
    background-size: 180px 180px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0) 86%);
    opacity: 0.26;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    will-change: background-position, opacity;
    animation: heroGridDrift 28s linear infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 74% 24%, rgba(125, 116, 233, 0.085) 0%, rgba(125, 116, 233, 0.024) 28%, rgba(125, 116, 233, 0) 44%),
        radial-gradient(circle at 56% 74%, rgba(255, 235, 206, 0.14) 0%, rgba(255, 235, 206, 0.04) 22%, rgba(255, 235, 206, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 32%, rgba(252, 248, 241, 0.62) 100%);
    opacity: 0.8;
    transition: opacity 0.6s ease;
    pointer-events: none;
    will-change: transform, opacity;
    animation: heroAuroraBreath 24s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-section.hero-scrolled::before {
    opacity: 0.26;
    transform: translateY(-10px);
}

.hero-section.hero-scrolled::after {
    opacity: 0.88;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    mix-blend-mode: soft-light;
    transition: opacity 0.4s ease;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(1360px, 96vw);
    margin: 0 auto;
    padding: 0 clamp(20px, 3.6vw, 48px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(392px, 0.84fr);
    gap: clamp(48px, 5.8vw, 98px);
    align-items: start;
}

.hero-intro {
    --hero-stack-gap: clamp(18px, 2vw, 26px);
    --hero-block-gap: clamp(12px, 1.8vw, 18px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--hero-stack-gap);
    max-width: min(100%, 780px);
    padding-top: clamp(4px, 0.8vw, 10px);
}

.hero-community {
    position: absolute;
    inset: 0 0 auto auto;
    display: none;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.community-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(96, 81, 61, 0.12);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.88) 0%, rgba(245, 239, 229, 0.8) 100%);
    color: rgba(22, 22, 21, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 12px 22px rgba(29, 31, 45, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.community-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(29, 31, 45, 0.12);
    border-color: rgba(87, 81, 213, 0.16);
}

.community-badge i {
    color: var(--color-brand-700);
    font-size: 13px;
}

.community-badge--domain {
    cursor: default;
    letter-spacing: 0.06em;
}

.community-badge--domain:hover {
    transform: none;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: var(--hero-block-gap);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.4vw, 18px);
}

.hero-title-primary {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(14px, 1.8vw, 20px);
    font-family: var(--font-title-serif);
    font-size: clamp(3.45rem, 6.6vw, 5.2rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #19181d;
    text-wrap: balance;
}

.hero-title-primary::after {
    content: '';
    width: clamp(52px, 7vw, 88px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(87, 81, 213, 0.96) 0%, rgba(132, 118, 232, 0.84) 68%, rgba(184, 138, 47, 0.4) 100%);
    box-shadow: 0 8px 18px rgba(87, 81, 213, 0.16);
}

.hero-title-secondary {
    max-width: min(34ch, 100%);
    font-size: clamp(1.14rem, 1.7vw, 1.56rem);
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: 0.005em;
    color: #353b73;
    text-wrap: pretty;
}

.hero-subtitle {
    display: grid;
    gap: clamp(10px, 1vw, 14px);
    max-width: 66ch;
    font-size: clamp(0.96rem, 1.08vw, 1.02rem);
    color: rgba(34, 36, 49, 0.74);
    line-height: 1.82;
}

.hero-subtitle p {
    margin: 0;
    text-wrap: pretty;
}

.hero-guidance {
    margin: 0;
    max-width: 64ch;
    padding: 13px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(109, 98, 226, 0.16) 0%, rgba(109, 98, 226, 0.07) 100%);
    border: 1px solid rgba(87, 81, 213, 0.2);
    box-shadow: 0 12px 22px rgba(87, 81, 213, 0.08);
    color: #433d71;
    font-size: 0.95rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 0;
    padding-top: clamp(10px, 1.5vw, 20px);
    padding-left: clamp(18px, 2.8vw, 40px);
    isolation: isolate;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: clamp(8px, 2vw, 22px);
    right: clamp(12px, 2vw, 24px);
    width: clamp(260px, 26vw, 360px);
    height: clamp(260px, 26vw, 360px);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(104, 96, 226, 0.24) 0%, rgba(104, 96, 226, 0.09) 34%, rgba(104, 96, 226, 0) 72%),
        radial-gradient(circle at 28% 70%, rgba(217, 185, 122, 0.14) 0%, rgba(217, 185, 122, 0) 54%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    animation: heroHaloFloat 16s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-kpi-card {
    position: relative;
    width: min(100%, 652px);
    min-height: 0;
    padding: clamp(30px, 3.1vw, 42px);
    border-radius: 20px;
    border: 1px solid rgba(87, 81, 213, 0.15);
    background: linear-gradient(180deg, rgba(255, 254, 251, 0.99) 0%, rgba(249, 245, 241, 0.97) 100%);
    box-shadow: 0 30px 54px rgba(43, 38, 89, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    margin-left: auto;
    z-index: 1;
}

.hero-kpi-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(87, 81, 213, 0) 0%, rgba(87, 81, 213, 0.28) 34%, rgba(184, 138, 47, 0.18) 66%, rgba(87, 81, 213, 0) 100%);
}

.hero-kpi-card::after {
    content: '';
    position: absolute;
    inset: auto -96px -116px auto;
    width: 316px;
    height: 316px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 81, 213, 0.12) 0%, rgba(87, 81, 213, 0.03) 38%, rgba(87, 81, 213, 0) 74%);
    pointer-events: none;
}

.hero-kpi-header,
.hero-kpi-grid,
.hero-kpi-footnote {
    position: relative;
    z-index: 1;
}

.hero-kpi-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-kpi-header .community-badge {
    padding: 10px 18px;
    background: linear-gradient(180deg, rgba(249, 244, 255, 0.94) 0%, rgba(243, 237, 251, 0.92) 100%);
    border-color: rgba(87, 81, 213, 0.2);
    box-shadow: 0 12px 22px rgba(56, 47, 118, 0.1);
}

.hero-kpi-header .community-badge--domain {
    font-size: 0.88rem;
    letter-spacing: 0.05em;
}

.hero-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(238px, 1fr));
    gap: 0;
    border-top: 1px solid rgba(87, 81, 213, 0.1);
    border-left: 1px solid rgba(87, 81, 213, 0.1);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 252, 247, 0.92);
}

.hero-kpi-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    min-height: clamp(150px, 14vw, 188px);
    padding: clamp(22px, 2.1vw, 28px);
    border-right: 1px solid rgba(87, 81, 213, 0.1);
    border-bottom: 1px solid rgba(87, 81, 213, 0.1);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(246, 242, 251, 0.92) 100%);
    transition: background 0.24s ease, border-color 0.24s ease;
}

.hero-kpi-item:nth-child(2n) {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(242, 236, 249, 0.92) 100%);
}

.hero-kpi-item:hover {
    background: rgba(255, 255, 255, 0.99);
    border-color: rgba(87, 81, 213, 0.16);
}

.hero-kpi-value {
    font-family: var(--font-title-serif);
    font-size: clamp(1.9rem, 3.2vw, 2.82rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #1c1b22;
}

.hero-kpi-label {
    font-size: clamp(0.82rem, 0.96vw, 0.92rem);
    font-weight: 600;
    line-height: 1.42;
    color: rgba(22, 22, 21, 0.6);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-kpi-footnote {
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(43, 45, 59, 0.56);
    letter-spacing: 0.02em;
}

.hero-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    max-width: min(640px, 100%);
}

.price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(96, 81, 61, 0.12);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.88) 0%, rgba(245, 238, 249, 0.84) 100%);
    color: rgba(51, 52, 69, 0.76);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 10px 18px rgba(56, 47, 118, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.price-chip i {
    color: var(--color-brand-700);
}

.hero-pricing-compact {
    display: none;
    margin-top: 6px;
    color: rgba(22, 22, 21, 0.68);
    font-size: 13px;
    line-height: 1.7;
}

.hero-actions {
    display: grid;
    grid-template-columns: minmax(220px, max-content) minmax(0, 1fr);
    gap: clamp(18px, 2.4vw, 30px);
    align-items: start;
    margin-top: clamp(12px, 1.8vw, 18px);
}

.hero-cta-button {
    align-self: flex-start;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: clamp(214px, 24vw, 252px);
    padding: clamp(18px, 2.6vw, 22px) clamp(30px, 4vw, 40px);
    border-radius: 18px;
    border: 1px solid rgba(24, 28, 46, 0.16);
    background: linear-gradient(135deg, #202535 0%, #4048b4 72%, #5562d4 100%);
    color: var(--color-text-inverse);
    box-shadow: 0 20px 34px rgba(32, 37, 53, 0.2);
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    font-weight: 650;
    letter-spacing: 0.03em;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
    overflow: hidden;
}

.hero-cta-button.btn,
.hero-cta-button.btn-primary {
    min-width: clamp(214px, 24vw, 252px) !important;
    padding: clamp(18px, 2.6vw, 22px) clamp(30px, 4vw, 40px) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(24, 28, 46, 0.16) !important;
    background: linear-gradient(135deg, #202535 0%, #4048b4 72%, #5562d4 100%) !important;
    color: var(--color-text-inverse) !important;
    box-shadow: 0 20px 34px rgba(32, 37, 53, 0.2) !important;
    font-size: clamp(1.02rem, 1.8vw, 1.18rem) !important;
    font-weight: 650 !important;
    letter-spacing: 0.03em !important;
}

.hero-cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0) 74%);
    transform: translateX(-130%);
    transition: transform 0.7s ease;
}

.hero-cta-button:hover::before,
.hero-cta-button:focus-visible::before {
    transform: translateX(130%);
}

.hero-cta-button:hover,
.hero-cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 26px 42px rgba(32, 37, 53, 0.24);
    background: linear-gradient(135deg, #1d2231 0%, #3943ad 72%, #4d5dcf 100%);
}

.hero-actions .hero-cta-button {
    justify-self: flex-start;
}

.hero-secondary-links {
    display: grid;
    gap: 12px;
    align-content: start;
    min-width: 0;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #353a4c;
    font-size: clamp(0.92rem, 1.2vw, 0.98rem);
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.24s ease, transform 0.24s ease;
}

.hero-link i,
.hero-link .ui-icon {
    color: var(--color-brand-700);
    font-size: 0.94rem;
}

.hero-link span {
    position: relative;
}

.hero-link span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    opacity: 0.18;
    transform: scaleX(0.98);
    transform-origin: left center;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-link:hover,
.hero-link:focus-visible {
    color: #1f2335;
    transform: translateX(2px);
}

.hero-link:hover span::after,
.hero-link:focus-visible span::after {
    opacity: 0.38;
    transform: scaleX(1);
}

.hero-browser-guidance {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    margin-top: 2px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(96, 81, 61, 0.12);
    background: linear-gradient(135deg, rgba(255, 250, 243, 0.92) 0%, rgba(244, 239, 248, 0.96) 100%);
    box-shadow: 0 14px 28px rgba(49, 74, 111, 0.07);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-browser-guidance[hidden] {
    display: none !important;
}

.hero-browser-guidance[data-tone="warning"] {
    border-color: rgba(180, 83, 9, 0.16);
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.98) 0%, rgba(255, 247, 237, 0.98) 100%);
    box-shadow: 0 14px 28px rgba(180, 83, 9, 0.08);
}

.hero-browser-guidance__main {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.hero-browser-guidance__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-browser-guidance__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1d4ed8;
    background: rgba(219, 234, 254, 0.92);
}

.hero-browser-guidance[data-tone="warning"] .hero-browser-guidance__badge {
    color: #b45309;
    background: rgba(254, 243, 199, 0.92);
}

.hero-browser-guidance__title {
    margin: 0;
    font-size: clamp(0.98rem, 1.2vw, 1.06rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.5;
}

.hero-browser-guidance__body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.68;
    color: rgba(22, 22, 21, 0.66);
}

.hero-browser-guidance__dismiss {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(22, 22, 21, 0.52);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 2px 0;
    cursor: pointer;
    transition: color 0.22s ease, transform 0.22s ease;
}

.hero-browser-guidance__dismiss:hover,
.hero-browser-guidance__dismiss:focus-visible {
    color: var(--color-text-primary);
    transform: translateY(-1px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGridDrift {
    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 18px 10px, -16px 22px, 0 0;
    }
}

@keyframes heroAuroraBreath {
    from {
        opacity: 0.9;
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        opacity: 1;
        transform: translate3d(-1.5%, 1.2%, 0) scale(1.05);
    }
}

@keyframes heroHaloFloat {
    from {
        opacity: 0.84;
        transform: translate3d(0, 0, 0) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translate3d(-2%, 3%, 0) scale(1.04);
    }
}

@media (min-width: 1280px) {
    .hero-container {
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.88fr);
        gap: clamp(54px, 6vw, 102px);
    }

    .hero-title-secondary {
        max-width: min(36ch, 100%);
    }

    .hero-kpi-card {
        width: min(100%, 668px);
    }
}

@media (max-width: 1200px) {
    .hero-container {
        width: min(1180px, 94vw);
        grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.8fr);
        gap: clamp(36px, 4.8vw, 64px);
    }

    .hero-intro {
        max-width: min(100%, 724px);
    }

    .hero-title-secondary {
        max-width: min(32ch, 100%);
    }

    .hero-kpi-card {
        width: min(100%, 584px);
        padding: 28px 30px;
    }

    .hero-kpi-item {
        min-height: 138px;
    }

    .hero-actions {
        grid-template-columns: minmax(210px, max-content) minmax(0, 1fr);
    }
}

@media (max-width: 920px) {
    .hero-visual {
        display: none !important;
    }

    .hero-container {
        width: min(820px, 92vw);
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-intro,
    .hero-title-secondary,
    .hero-subtitle {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 78px 0 58px;
    }

    .hero-container {
        width: min(780px, 92vw);
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-intro {
        max-width: none;
    }

    .hero-title-secondary,
    .hero-subtitle {
        max-width: none;
    }

    .hero-visual {
        justify-content: flex-start;
        padding-top: 0;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 72px 0 50px;
    }

    .hero-section::before {
        background-size: 132px 132px;
        opacity: 0.22;
    }

    .hero-container {
        width: min(680px, 92vw);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-intro {
        --hero-stack-gap: 20px;
        --hero-block-gap: 16px;
        align-items: center;
        text-align: center;
        padding-top: 0;
    }

    .hero-community {
        position: static;
        display: inline-flex;
        justify-content: center;
    }

    .hero-title {
        align-items: center;
    }

    .hero-title-primary {
        justify-content: center;
        font-size: clamp(2.7rem, 10vw, 3.8rem);
    }

    .hero-title-secondary {
        max-width: 22ch;
        font-size: clamp(1.08rem, 4.5vw, 1.36rem);
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.95rem;
    }

    .hero-guidance {
        max-width: 100%;
        text-align: left;
    }

    .hero-pricing {
        justify-content: center;
    }

    .hero-actions {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: stretch;
    }

    .hero-cta-button,
    .hero-cta-button.btn,
    .hero-cta-button.btn-primary {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center;
    }

    .hero-secondary-links {
        display: none !important;
    }

    .hero-browser-guidance {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 10px;
    }

    .hero-browser-guidance__dismiss {
        justify-self: flex-end;
    }

    .hero-visual {
        display: none !important;
    }

    #particles-js {
        display: none !important;
    }

    .hero-community,
    .hero-headline,
    .hero-actions,
    .hero-title,
    .hero-subtitle,
    .hero-cta-button,
    .community-badge,
    .price-chip,
    .hero-pricing-compact,
    .hero-kpi-card,
    .hero-kpi-item,
    .hero-link {
        animation: none !important;
        transform: none !important;
    }

    .animate__animated,
    .animate__fadeInDown,
    .animate__zoomIn,
    .animate__fadeInUp,
    .animate__fadeInRight,
    .animate__delay-1s,
    .animate__delay-2s,
    .animate__delay-3s,
    .animate__delay-4s {
        animation: none !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;
    }
}

@media (max-width: 560px) {
    .hero-section {
        padding: 66px 0 42px;
    }

    .hero-title-primary {
        font-size: clamp(2.45rem, 11vw, 3.14rem);
    }

    .hero-title-primary::after {
        width: 42px;
    }

    .hero-pricing {
        display: none;
    }

    .hero-pricing-compact {
        display: block;
    }

    .hero-browser-guidance {
        padding: 14px 15px;
        border-radius: 18px;
    }
}

@media (max-width: 420px) {
    .hero-section {
        padding: 62px 0 38px;
    }

    .hero-container {
        width: min(100%, calc(100vw - 20px));
    }

    .hero-title-secondary {
        max-width: none;
    }

    .community-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after,
    .hero-visual::before,
    #particles-js,
    .hero-kpi-item,
    .hero-link,
    .hero-cta-button,
    .hero-cta-button::before,
    .hero-browser-guidance__dismiss,
    .community-badge {
        transition: none !important;
    }

    .hero-section::before,
    .hero-section::after,
    .hero-visual::before {
        animation: none !important;
    }

    .hero-kpi-item:hover,
    .hero-link:hover,
    .hero-cta-button:hover,
    .hero-browser-guidance__dismiss:hover,
    .community-badge:hover {
        transform: none !important;
    }
}
