/* 首页 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 {
    --hero-field-purple: 87, 81, 213;
    --hero-field-green: 16, 169, 95;
    --hero-field-ink: 31, 32, 46;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(54px, 7vh, 74px) 0 clamp(48px, 6vh, 72px);
    min-height: 78vh;
    color: var(--color-text-primary);
    background:
        radial-gradient(ellipse at 12% 18%, rgba(var(--hero-field-purple), 0.12) 0%, rgba(var(--hero-field-purple), 0.035) 28%, rgba(var(--hero-field-purple), 0) 54%),
        radial-gradient(ellipse at 86% 24%, rgba(var(--hero-field-green), 0.13) 0%, rgba(var(--hero-field-green), 0.046) 30%, rgba(var(--hero-field-green), 0) 58%),
        radial-gradient(ellipse at 62% 74%, rgba(126, 115, 235, 0.075) 0%, rgba(126, 115, 235, 0.02) 30%, rgba(126, 115, 235, 0) 58%),
        linear-gradient(112deg, #fffefd 0%, #fbf9ff 42%, #f3fbf6 100%);
    scroll-margin-top: 96px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -18% -10% -12%;
    background:
        linear-gradient(104deg, rgba(var(--hero-field-purple), 0.04) 1px, transparent 1px),
        linear-gradient(16deg, rgba(var(--hero-field-green), 0.036) 1px, transparent 1px),
        radial-gradient(ellipse at 18% 34%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 34%);
    background-size: 188px 188px, 236px 236px, 100% 100%;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.72) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.72) 100%);
    opacity: 0.32;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    will-change: background-position, opacity;
    animation: heroGridDrift 58s linear infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: -24% -12% -18%;
    background:
        radial-gradient(ellipse at 2% 38%, rgba(var(--hero-field-purple), 0.075) 0%, rgba(var(--hero-field-purple), 0.028) 30%, rgba(var(--hero-field-purple), 0) 56%),
        radial-gradient(ellipse at 58% 46%, rgba(124, 111, 232, 0.07) 0%, rgba(124, 111, 232, 0.022) 32%, rgba(124, 111, 232, 0) 58%),
        radial-gradient(ellipse at 92% 46%, rgba(var(--hero-field-green), 0.14) 0%, rgba(var(--hero-field-green), 0.052) 34%, rgba(var(--hero-field-green), 0) 62%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.28) 100%);
    opacity: 0.9;
    transition: opacity 0.6s ease;
    pointer-events: none;
    will-change: transform, opacity;
    animation: heroAuroraBreath 46s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

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

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

#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(1480px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(10px, 1.2vw, 28px) 0 clamp(78px, 6.8vw, 126px);
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(520px, 0.98fr);
    gap: clamp(0px, 0.15vw, 4px);
    align-items: start;
}

.hero-intro {
    --hero-stack-gap: clamp(11px, 1.25vw, 18px);
    --hero-block-gap: clamp(9px, 1vw, 14px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--hero-stack-gap);
    max-width: 690px;
    min-height: 0;
    padding-top: clamp(0px, 0.45vw, 8px);
}

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

.hero-site-card {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: min(100%, 330px);
    min-height: 42px;
    padding: 8px 10px 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(87, 81, 213, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 246, 255, 0.9) 100%),
        radial-gradient(circle at 8% 0%, rgba(var(--hero-field-purple), 0.12) 0%, rgba(var(--hero-field-purple), 0) 48%);
    box-shadow: 0 12px 22px rgba(56, 47, 118, 0.08);
    color: rgba(33, 31, 59, 0.82);
    cursor: grab;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.hero-site-card:hover,
.hero-site-card:focus-visible,
.hero-site-card.is-bookmark-dragging {
    z-index: 12;
    transform: translateY(-2px);
    border-color: rgba(87, 81, 213, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 243, 255, 0.94) 100%),
        radial-gradient(circle at 8% 0%, rgba(var(--hero-field-purple), 0.16) 0%, rgba(var(--hero-field-purple), 0) 52%);
    box-shadow: 0 18px 30px rgba(56, 47, 118, 0.14);
}

.hero-site-card:active,
.hero-site-card.is-bookmark-dragging {
    cursor: grabbing;
}

.hero-site-card:focus-visible {
    outline: 2px solid rgba(87, 81, 213, 0.38);
    outline-offset: 3px;
}

.hero-site-card__icon,
.hero-site-card__grip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hero-site-card__icon {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-xs);
    background: rgba(87, 81, 213, 0.08);
}

.hero-site-card__icon i {
    color: var(--color-brand-700);
    font-size: 13px;
}

.hero-site-card__domain {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-site-card__grip {
    color: rgba(79, 74, 109, 0.42);
    font-size: 0.74rem;
    transition: color 0.22s ease, transform 0.22s ease;
}

.hero-site-card:hover .hero-site-card__grip,
.hero-site-card:focus-visible .hero-site-card__grip,
.hero-site-card.is-bookmark-dragging .hero-site-card__grip {
    color: rgba(75, 70, 201, 0.72);
    transform: translateY(-1px);
}

.hero-site-card__hint {
    position: absolute;
    left: 12px;
    bottom: calc(100% + 8px);
    z-index: 16;
    width: max-content;
    max-width: 220px;
    padding: 7px 10px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(87, 81, 213, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(43, 38, 89, 0.14);
    color: rgba(48, 44, 89, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-site-card:hover .hero-site-card__hint,
.hero-site-card:focus-visible .hero-site-card__hint,
.hero-site-card.is-bookmark-dragging .hero-site-card__hint {
    opacity: 1;
    transform: translateY(-2px);
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: clamp(9px, 1vw, 14px);
}

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

.hero-title-primary {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 1.4vw, 18px);
    font-family: var(--font-title-serif);
    font-size: clamp(3.15rem, 5.6vw, 4.65rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0;
    color: #19181d;
    overflow-wrap: break-word;
}

.hero-title-primary::after {
    content: '';
    width: clamp(48px, 5.8vw, 76px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--hero-field-purple), 0.86) 0%, rgba(132, 118, 232, 0.54) 58%, rgba(var(--hero-field-green), 0.38) 100%);
    box-shadow: 0 8px 18px rgba(var(--hero-field-purple), 0.13);
}

.hero-title-secondary {
    max-width: min(37ch, 100%);
    font-size: clamp(1.06rem, 1.45vw, 1.34rem);
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: 0;
    color: #353b73;
    overflow-wrap: break-word;
}

.hero-subtitle {
    display: grid;
    gap: clamp(7px, 0.75vw, 10px);
    max-width: 54ch;
    font-size: clamp(0.9rem, 0.92vw, 0.96rem);
    color: rgba(34, 36, 49, 0.74);
    line-height: 1.56;
}

.hero-subtitle p {
    margin: 0;
    overflow-wrap: break-word;
}

.hero-source-ref {
    display: inline-flex;
    align-items: center;
    margin-left: 0.28em;
    color: rgba(75, 70, 201, 0.44);
    font-size: 0.68em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transform: translateY(-0.04em);
    transition: color 0.2s ease, transform 0.2s ease;
}

.hero-source-ref:hover,
.hero-source-ref:focus-visible {
    color: rgba(75, 70, 201, 0.82);
    transform: translateY(-0.08em);
}

.hero-source-ref:focus-visible {
    border-radius: 3px;
    outline: 2px solid rgba(75, 70, 201, 0.22);
    outline-offset: 2px;
}

.hero-guidance {
    margin: 0;
    max-width: 49ch;
    padding: 9px 15px 9px 17px;
    border-left: 3px solid rgba(var(--hero-field-purple), 0.32);
    border-radius: 0 14px 14px 0;
    background: linear-gradient(90deg, rgba(109, 98, 226, 0.1) 0%, rgba(109, 98, 226, 0.035) 74%, transparent 100%);
    border-top: 1px solid rgba(87, 81, 213, 0.08);
    border-right: 1px solid rgba(87, 81, 213, 0.06);
    border-bottom: 1px solid rgba(87, 81, 213, 0.06);
    box-shadow: 0 12px 22px rgba(87, 81, 213, 0.045);
    color: #433d71;
    font-size: 0.9rem;
    line-height: 1.48;
    overflow-wrap: break-word;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: min(100%, 720px);
    min-width: 0;
    min-height: 0;
    padding-top: 0;
    padding-left: 0;
    margin-left: clamp(-132px, -6.8vw, -62px);
    isolation: auto;
    perspective: 1200px;
    overflow: visible;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: clamp(-84px, -5.8vw, -48px);
    left: clamp(-168px, -10vw, -104px);
    width: clamp(660px, 54vw, 880px);
    height: clamp(420px, 36vw, 610px);
    border-radius: 44% 56% 58% 42% / 38% 46% 54% 62%;
    background:
        radial-gradient(ellipse at 12% 20%, rgba(var(--hero-field-purple), 0.16) 0%, rgba(var(--hero-field-purple), 0.052) 34%, rgba(var(--hero-field-purple), 0) 72%),
        radial-gradient(ellipse at 62% 45%, rgba(112, 99, 246, 0.082) 0%, rgba(112, 99, 246, 0.024) 36%, transparent 72%),
        radial-gradient(ellipse at 88% 70%, rgba(var(--hero-field-green), 0.18) 0%, rgba(var(--hero-field-green), 0.056) 38%, rgba(var(--hero-field-green), 0) 78%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    filter: blur(28px);
    opacity: 0.82;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-7deg);
    will-change: transform, opacity;
    animation: heroHaloFloat 34s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: clamp(-72px, -4.5vw, -34px);
    left: clamp(-150px, -8.6vw, -82px);
    width: clamp(640px, 52vw, 840px);
    height: clamp(310px, 28vw, 460px);
    border-radius: 46% 54% 62% 38% / 36% 52% 48% 64%;
    background:
        linear-gradient(132deg, rgba(var(--hero-field-purple), 0) 0%, rgba(var(--hero-field-purple), 0.09) 22%, rgba(116, 101, 234, 0.052) 48%, rgba(var(--hero-field-green), 0.088) 82%, rgba(var(--hero-field-green), 0) 100%),
        repeating-linear-gradient(132deg, rgba(87, 81, 213, 0.046) 0 1px, transparent 1px 34px);
    -webkit-mask-image: radial-gradient(ellipse at 58% 52%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0) 78%);
    mask-image: radial-gradient(ellipse at 58% 52%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0) 78%);
    filter: blur(10px);
    opacity: 0.72;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-7deg);
    animation: heroAlgorithmFieldFlow 72s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-visual-shell {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(87, 81, 213, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(ellipse at 5% 20%, rgba(var(--hero-field-purple), 0.115) 0%, rgba(var(--hero-field-purple), 0.034) 38%, transparent 70%),
        radial-gradient(ellipse at 91% 68%, rgba(var(--hero-field-green), 0.14) 0%, rgba(var(--hero-field-green), 0.042) 36%, transparent 72%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.44) 0%, rgba(250, 248, 255, 0.3) 48%, rgba(244, 253, 248, 0.4) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.64),
        inset 0 -1px 0 rgba(87, 81, 213, 0.035),
        0 24px 58px rgba(49, 43, 122, 0.052);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.hero-visual-shell::before {
    content: '';
    position: absolute;
    inset: -92px -86px -66px -146px;
    border-radius: 54px;
    background:
        radial-gradient(ellipse at 8% 14%, rgba(var(--hero-field-purple), 0.13) 0%, rgba(var(--hero-field-purple), 0.036) 42%, transparent 76%),
        radial-gradient(ellipse at 86% 70%, rgba(var(--hero-field-green), 0.15) 0%, rgba(var(--hero-field-green), 0.042) 42%, transparent 76%),
        linear-gradient(132deg, rgba(var(--hero-field-purple), 0.04) 0%, rgba(255, 255, 255, 0.14) 45%, rgba(var(--hero-field-green), 0.05) 100%);
    filter: blur(18px);
    opacity: 0.82;
    pointer-events: none;
    z-index: -2;
}

.hero-visual-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(92deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.24)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 48%);
    opacity: 0.48;
    pointer-events: none;
    z-index: -1;
}

.hero-proof-strip,
.hero-site-availability {
    position: relative;
    z-index: 1;
}

.hero-algorithm-flow {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: clamp(222px, 16.2vw, 264px);
    border: 1px solid rgba(87, 81, 213, 0.058);
    border-radius: 20px;
    background:
        radial-gradient(ellipse at 5% 20%, rgba(var(--hero-field-purple), 0.116) 0%, rgba(var(--hero-field-purple), 0.034) 36%, transparent 66%),
        radial-gradient(ellipse at 92% 68%, rgba(var(--hero-field-green), 0.15) 0%, rgba(var(--hero-field-green), 0.044) 34%, transparent 68%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(250, 248, 255, 0.34) 48%, rgba(244, 253, 248, 0.42) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -1px 0 rgba(87, 81, 213, 0.045),
        0 14px 32px rgba(54, 48, 146, 0.035);
    overflow: hidden;
    isolation: isolate;
}

.hero-algorithm-flow::before {
    content: '';
    position: absolute;
    inset: -62%;
    border-radius: 40% 60% 54% 46% / 46% 44% 56% 54%;
    background:
        radial-gradient(ellipse at 11% 16%, rgba(106, 94, 244, 0.2) 0%, rgba(106, 94, 244, 0.056) 34%, transparent 66%),
        radial-gradient(ellipse at 52% 44%, rgba(126, 111, 255, 0.09) 0%, rgba(126, 111, 255, 0.03) 28%, transparent 58%),
        radial-gradient(ellipse at 86% 72%, rgba(22, 174, 101, 0.22) 0%, rgba(22, 174, 101, 0.074) 31%, transparent 66%),
        conic-gradient(from 230deg at 58% 52%, transparent 0deg, rgba(112, 99, 246, 0.084) 64deg, transparent 142deg, rgba(22, 174, 101, 0.098) 224deg, transparent 320deg);
    filter: blur(28px);
    opacity: 0.7;
    transform: translate3d(-5%, -4%, 0) scale(1.04) rotate(-7deg);
    transform-origin: center;
    pointer-events: none;
    z-index: 0;
    will-change: transform, opacity;
    animation: heroAlgorithmFieldFlow 84s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-algorithm-flow::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(var(--hero-field-purple), 0.026) 1px, transparent 1px),
        linear-gradient(180deg, rgba(22, 122, 76, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 254, 251, 0.78) 0%, transparent 24%, transparent 78%, rgba(255, 254, 251, 0.7) 100%);
    background-size: 72px 72px, 72px 72px, 100% 100%;
    -webkit-mask-image: radial-gradient(ellipse at 52% 50%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.14) 100%);
    mask-image: radial-gradient(ellipse at 52% 50%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.14) 100%);
    opacity: 0.28;
    pointer-events: none;
    z-index: 1;
    will-change: background-position;
    animation: heroAlgorithmGridDrift 116s linear infinite;
}

.hero-algorithm-flow__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1;
    pointer-events: none;
}

.hero-algorithm-flow__content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(174px, 1.06fr) minmax(88px, 0.32fr) minmax(136px, 0.62fr);
    align-items: center;
    gap: clamp(14px, 1.25vw, 20px);
    min-height: inherit;
    padding: clamp(22px, 1.8vw, 28px) clamp(22px, 2vw, 30px);
    pointer-events: none;
}

.hero-algorithm-flow__metric {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.hero-algorithm-flow__metric--after {
    text-align: right;
    justify-items: end;
}

.hero-algorithm-flow__label {
    color: rgba(43, 45, 59, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
}

.hero-algorithm-flow__metric strong {
    color: #1f2030;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(1.88rem, 2.65vw, 2.34rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero-algorithm-flow__metric--before strong {
    color: #4a438f;
    opacity: 0.9;
    text-shadow:
        0 12px 26px rgba(var(--hero-field-purple), 0.12),
        10px 0 18px rgba(var(--hero-field-purple), 0.08);
}

.hero-algorithm-flow__metric--after strong {
    color: #0a7f4d;
    text-shadow:
        0 12px 26px rgba(var(--hero-field-green), 0.18),
        0 0 1px rgba(255, 255, 255, 0.9);
}

.hero-algorithm-flow__river {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-width: 86px;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 12px;
    border: 1px solid rgba(87, 81, 213, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 248, 255, 0.72)),
        linear-gradient(104deg, rgba(var(--hero-field-purple), 0.08), rgba(255, 255, 255, 0.08) 52%, rgba(var(--hero-field-green), 0.072));
    color: #4941bd;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        inset 0 -1px 0 rgba(var(--hero-field-purple), 0.052),
        0 8px 18px rgba(43, 38, 89, 0.052),
        0 0 0 6px rgba(255, 255, 255, 0.18),
        0 0 20px rgba(var(--hero-field-green), 0.07);
    position: relative;
    animation: heroProcessorPulse 30s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.hero-algorithm-flow__river span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.hero-proof-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 0;
    min-height: 58px;
    padding: 9px 0;
    border: 1px solid rgba(87, 81, 213, 0.065);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.56),
        0 8px 18px rgba(54, 48, 146, 0.028);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-proof-item {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 0 14px;
    border-right: 1px solid rgba(87, 81, 213, 0.1);
}

.hero-proof-item:last-child {
    border-right: 0;
}

.hero-proof-item strong {
    color: #1d1b2a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.hero-proof-item span {
    color: rgba(35, 37, 52, 0.56);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-proof-item--update strong {
    color: rgba(22, 122, 76, 0.92);
}

.hero-site-availability {
    position: relative;
    isolation: isolate;
    display: grid;
    gap: 7px;
    padding: 10px 12px 11px;
    margin-top: 0;
    border: 1px solid rgba(87, 81, 213, 0.062);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 8px 18px rgba(54, 48, 146, 0.026);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-site-availability::before {
    content: none;
}

.hero-site-availability__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.hero-site-availability__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.hero-site-availability__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(33, 28, 79, 0.7);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.hero-site-availability__scope-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 16px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid rgba(87, 81, 213, 0.12);
    background: rgba(246, 242, 251, 0.92);
    color: rgba(70, 63, 122, 0.74);
    font-size: 0.62rem;
    font-weight: 650;
    line-height: 1;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.hero-site-availability__scope-tag[hidden],
.hero-site-availability__scope-tag:empty {
    display: none !important;
}

.hero-site-availability__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 3;
}

.hero-site-availability__info-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hero-site-availability__info-trigger {
    appearance: none;
    font: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid rgba(87, 81, 213, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: rgba(70, 63, 122, 0.82);
    box-shadow: 0 6px 12px rgba(56, 47, 118, 0.08);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-site-availability__info-trigger:hover,
.hero-site-availability__info-trigger:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(87, 81, 213, 0.22);
    box-shadow: 0 10px 18px rgba(56, 47, 118, 0.12);
    outline: none;
}

.hero-site-availability__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    font: inherit;
    min-height: 20px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(22, 22, 21, 0.08);
    background: rgba(248, 247, 251, 0.94);
    color: rgba(43, 45, 59, 0.78);
    font-size: 0.62rem;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
}

.hero-site-availability__badge[data-status='idle'] {
    border-color: var(--color-state-success-border);
    background: var(--color-state-success-bg);
    color: var(--color-state-success-strong);
}

.hero-site-availability__badge[data-status='queue'] {
    border-color: var(--color-state-warning-border);
    background: var(--color-state-warning-bg);
    color: var(--color-state-warning-strong);
}

.hero-site-availability__badge[data-status='unavailable'] {
    border-color: var(--color-state-danger-border);
    background: var(--color-state-danger-bg);
    color: var(--color-state-danger-strong);
}

.hero-site-availability__badge[data-status='unknown'],
.hero-site-availability__badge[data-status='loading'] {
    border-color: rgba(96, 81, 61, 0.12);
    background: rgba(248, 247, 243, 0.92);
    color: rgba(43, 45, 59, 0.7);
}

.hero-site-availability__badge:focus-visible {
    outline: 2px solid rgba(87, 81, 213, 0.24);
    outline-offset: 2px;
}

.hero-site-availability__band {
    display: block;
}

.hero-site-availability__track {
    display: grid;
    gap: 2px;
    grid-template-columns: repeat(15, minmax(0, 1fr));
    align-items: end;
    min-height: 14px;
}

.hero-site-availability__slot {
    display: block;
    justify-self: center;
    width: clamp(3px, 38%, 5px);
    height: 12px;
    border-radius: 2px;
    background: rgba(96, 81, 61, 0.1);
}

.hero-site-availability__slot[data-status='idle'] {
    background: linear-gradient(180deg, rgba(22, 122, 76, 0.94) 0%, rgba(22, 122, 76, 0.78) 100%);
}

.hero-site-availability__slot[data-status='queue'] {
    background: linear-gradient(180deg, rgba(180, 83, 9, 0.92) 0%, rgba(217, 119, 6, 0.78) 100%);
}

.hero-site-availability__slot[data-status='unavailable'] {
    background: linear-gradient(180deg, rgba(180, 35, 24, 0.92) 0%, rgba(180, 35, 24, 0.74) 100%);
}

.hero-site-availability__slot[data-status='unknown'] {
    background: rgba(108, 102, 94, 0.16);
}

.hero-site-availability__axis {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: rgba(43, 45, 59, 0.5);
    font-size: 0.62rem;
    letter-spacing: 0.03em;
}

.hero-site-availability__popover {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    z-index: 18;
    display: grid;
    gap: 8px;
    width: min(248px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(71, 63, 122, 0.18);
    border-radius: 14px;
    background: #fffdf9;
    box-shadow: 0 16px 30px rgba(34, 27, 74, 0.16);
}

.hero-site-availability__popover[hidden] {
    display: none !important;
}

.hero-site-availability__popover-head {
    display: grid;
    gap: 4px;
}

.hero-site-availability__popover-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    width: fit-content;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(243, 239, 251, 0.96);
    color: rgba(70, 63, 122, 0.82);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-site-availability__popover-state {
    color: rgba(27, 30, 47, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
}

.hero-site-availability__popover-state[data-status='idle'] {
    color: rgba(22, 122, 76, 0.92);
}

.hero-site-availability__popover-state[data-status='queue'] {
    color: rgba(168, 80, 14, 0.92);
}

.hero-site-availability__popover-state[data-status='unavailable'] {
    color: rgba(160, 36, 30, 0.92);
}

.hero-site-availability__popover-summary {
    margin: 0;
    color: rgba(34, 37, 55, 0.84);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-site-availability__legend {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-site-availability__legend-item {
    position: relative;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid rgba(87, 81, 213, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.hero-site-availability__legend-item[data-current='true'] {
    border-color: rgba(87, 81, 213, 0.18);
    background: rgba(250, 248, 255, 0.98);
    box-shadow: inset 0 0 0 1px rgba(87, 81, 213, 0.04);
}

.hero-site-availability__legend-item[data-current='true']::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(46, 138, 91, 0.98) 0%, rgba(30, 120, 71, 0.98) 100%);
    box-shadow: 0 4px 10px rgba(46, 138, 91, 0.18);
}

.hero-site-availability__legend-item[data-current='true']::before {
    content: '';
    position: absolute;
    top: 11px;
    right: 12px;
    width: 4px;
    height: 7px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.98);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
    z-index: 1;
}

.hero-site-availability__legend-dot {
    display: block;
    width: 4px;
    height: 16px;
    border-radius: 2px;
    margin: 2px auto 0;
    background: rgba(108, 102, 94, 0.18);
}

.hero-site-availability__legend-dot[data-status='idle'] {
    background: rgba(22, 122, 76, 0.9);
}

.hero-site-availability__legend-dot[data-status='queue'] {
    background: rgba(180, 83, 9, 0.9);
}

.hero-site-availability__legend-dot[data-status='unavailable'] {
    background: rgba(180, 35, 24, 0.9);
}

.hero-site-availability__legend-copy {
    display: grid;
    gap: 2px;
    padding-right: 22px;
}

.hero-site-availability__legend-title {
    color: rgba(31, 34, 51, 0.9);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-site-availability__legend-description,
.hero-site-availability__updated {
    color: rgba(43, 45, 59, 0.66);
    font-size: 0.62rem;
    line-height: 1.4;
}

.hero-site-availability__updated {
    display: block;
    padding-top: 6px;
    border-top: 1px solid rgba(87, 81, 213, 0.08);
}

@media (max-width: 720px) {
    .hero-site-availability__header {
        align-items: flex-start;
        gap: 10px;
    }

    .hero-site-availability__actions {
        margin-left: auto;
    }

    .hero-site-availability__popover {
        right: 0;
        width: min(244px, calc(100vw - 28px));
        padding: 10px;
    }
}

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

.hero-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    max-width: min(720px, 100%);
}

.hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(20, 83, 45, 0.16);
    background: rgba(240, 253, 244, 0.78);
    color: rgba(21, 87, 48, 0.9);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 18px rgba(21, 87, 48, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-trust-chip i {
    font-size: 12px;
}

.price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    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: 12.5px;
    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(210px, max-content) minmax(0, 1fr);
    gap: clamp(12px, 1.45vw, 20px);
    align-items: start;
    margin-top: 0;
}

.hero-cta-button {
    align-self: flex-start;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: clamp(204px, 22vw, 232px);
    padding: clamp(14px, 1.55vw, 16px) clamp(26px, 3.2vw, 34px);
    border-radius: 16px;
    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(0.98rem, 1.35vw, 1.08rem);
    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(204px, 22vw, 232px) !important;
    padding: clamp(14px, 1.55vw, 16px) clamp(26px, 3.2vw, 34px) !important;
    border-radius: 16px !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(0.98rem, 1.35vw, 1.08rem) !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;
    grid-template-columns: repeat(2, max-content);
    gap: 8px 18px;
    align-content: start;
    justify-content: start;
    justify-items: start;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 0;
    padding: 0;
    color: rgba(53, 58, 76, 0.88);
    font-size: clamp(0.8rem, 0.9vw, 0.88rem);
    font-weight: 560;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.24s ease, transform 0.24s ease;
}

.hero-link i,
.hero-link .ui-icon {
    color: rgba(75, 70, 201, 0.88);
    font-size: 0.86rem;
    flex-shrink: 0;
}

.hero-link span {
    position: relative;
    display: inline-block;
}

.hero-link span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: currentColor;
    opacity: 0.22;
    transform: scaleX(1);
    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.42;
    transform: scaleX(1);
}

.hero-link--must-read {
    color: rgba(47, 52, 112, 0.92);
}

.hero-link--must-read .ui-icon,
.hero-link--must-read i {
    color: #4b46c9;
}

.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: 54px 28px, -46px 42px, 0 0;
    }
}

@keyframes heroAuroraBreath {
    from {
        opacity: 0.82;
        transform: translate3d(-1.2%, -0.6%, 0) scale(1);
    }

    to {
        opacity: 0.96;
        transform: translate3d(2.4%, 1.4%, 0) scale(1.08);
    }
}

@keyframes heroHaloFloat {
    from {
        opacity: 0.72;
        transform: translate3d(-1%, -1%, 0) scale(0.98);
    }

    to {
        opacity: 0.98;
        transform: translate3d(2%, 2.4%, 0) scale(1.08);
    }
}

@keyframes heroAlgorithmFieldFlow {
    from {
        opacity: 0.62;
        transform: translate3d(-4%, -3%, 0) scale(1.02) rotate(0deg);
    }

    to {
        opacity: 0.8;
        transform: translate3d(4%, 3%, 0) scale(1.1) rotate(3deg);
    }
}

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

    to {
        background-position: 84px 48px, -72px 78px, 0 0;
    }
}

@keyframes heroProcessorPulse {
    from {
        border-color: rgba(87, 81, 213, 0.16);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.96),
            inset 0 -1px 0 rgba(87, 81, 213, 0.07),
            0 12px 26px rgba(43, 38, 89, 0.08),
            0 0 0 6px rgba(255, 255, 255, 0.32);
    }

    to {
        border-color: rgba(16, 169, 95, 0.18);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.98),
            inset 0 -1px 0 rgba(16, 169, 95, 0.07),
            0 13px 28px rgba(43, 38, 89, 0.09),
            0 0 0 6px rgba(255, 255, 255, 0.4);
    }
}

@media (min-width: 1280px) {
    .hero-container {
        grid-template-columns: minmax(0, 1.3fr) minmax(clamp(560px, 42vw, 620px), 1fr);
        gap: clamp(0px, 0.12vw, 4px);
        padding-left: clamp(138px, 9.6vw, 190px);
        padding-right: clamp(4px, 0.8vw, 18px);
    }

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

}

@media (max-width: 1200px) {
    .hero-container {
        width: min(1180px, 94vw);
        max-width: 100%;
        grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.94fr);
        gap: clamp(6px, 1vw, 16px);
        padding-left: clamp(72px, 6.6vw, 104px);
        padding-right: clamp(12px, 1.6vw, 28px);
    }

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

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

    .hero-site-availability__band {
        gap: 10px;
    }

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

@media (max-width: 1180px) {
    .hero-container {
        width: min(960px, 92vw);
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 clamp(18px, 3vw, 30px);
    }

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

    .hero-visual {
        width: min(100%, 680px);
        margin-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 920px) {
    .hero-container {
        width: min(820px, 92vw);
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

@media (max-width: 1024px) {
    .hero-section {
        min-height: 0;
        padding: 64px 0 46px;
    }

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

    .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;
        width: min(100%, 680px);
        margin-left: 0;
    }
}

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

    .hero-section::before {
        background-size: 148px 148px, 184px 184px, 100% 100%;
        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;
        border-left-width: 2px;
        border-radius: 0 14px 14px 0;
    }

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

    .hero-trust-signals {
        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: grid !important;
        grid-template-columns: repeat(2, max-content);
        justify-content: center;
        width: auto;
    }

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

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

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

    .hero-community,
    .hero-headline,
    .hero-actions,
    .hero-title,
    .hero-subtitle,
    .hero-cta-button,
    .hero-site-card,
    .price-chip,
    .hero-pricing-compact,
    .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: 54px 0 36px;
    }

    .hero-intro {
        gap: 16px;
    }

    .hero-community {
        order: 1;
    }

    .hero-headline {
        display: contents;
    }

    .hero-title {
        order: 2;
    }

    .hero-actions {
        order: 3;
        margin-top: 0;
    }

    .hero-subtitle {
        order: 4;
    }

    .hero-trust-signals {
        order: 5;
    }

    .hero-guidance {
        order: 6;
    }

    .hero-pricing,
    .hero-pricing-compact {
        order: 7;
    }

    .hero-browser-guidance {
        order: 8;
    }

    .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: 50px 0 34px;
    }

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

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

    .hero-site-card {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .hero-community {
        position: static;
        display: inline-flex;
        justify-content: center;
    }

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

@media (max-width: 560px) {
    .hero-algorithm-flow__content {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        padding: 16px 15px;
    }

    .hero-algorithm-flow__river {
        justify-self: start;
        min-height: 36px;
        padding: 0 16px;
        order: 2;
    }

    .hero-algorithm-flow__metric--after {
        text-align: left;
        order: 3;
    }

    .hero-algorithm-flow__metric strong {
        font-size: 2.08rem;
    }

    .hero-proof-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 0;
        padding: 7px;
        gap: 5px;
    }

    .hero-proof-item {
        padding: 7px 6px;
        border-right: 0;
        border-radius: 9px;
        background: rgba(255, 255, 255, 0.48);
    }

    .hero-proof-item strong {
        font-size: 0.86rem;
    }

    .hero-proof-item span {
        font-size: 0.6rem;
    }

    .hero-site-availability__header {
        align-items: flex-start;
        gap: 6px;
    }

    .hero-site-availability__meta {
        flex-wrap: wrap;
    }

    .hero-site-availability__band {
        gap: 6px;
    }

    .hero-site-availability__axis {
        font-size: 0.64rem;
    }
}

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

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

    .hero-kpi-item:hover,
    .hero-link:hover,
    .hero-cta-button:hover,
    .hero-browser-guidance__dismiss:hover,
    .hero-site-card:hover,
    .hero-site-card:focus-visible,
    .hero-site-card.is-bookmark-dragging {
        transform: none !important;
    }
}
