﻿/*horoscope*/
.index-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 5rem);
    background: radial-gradient(circle at 12% 16%, rgba(255, 241, 200, 0.55), transparent 34%), radial-gradient(circle at 86% 20%, rgba(146, 230, 196, 0.5), transparent 35%), linear-gradient(145deg, #f7f4e8 0%, #e8f6ef 45%, #edf7ff 100%);
    border-bottom: 1px solid rgba(53, 98, 17, 0.2);
    isolation: isolate;
    background-size: 140% 140%;
    animation: heroGradientShift 14s ease-in-out infinite;
}

.index-hero::before,
.index-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(0.5px);
    pointer-events: none;
    z-index: -1;
    animation: heroFloat 11s ease-in-out infinite;
}

.index-hero::before {
    width: clamp(150px, 20vw, 280px);
    height: clamp(150px, 20vw, 280px);
    left: -3rem;
    top: 3rem;
    background: radial-gradient(circle, rgba(193, 92, 55, 0.35), rgba(193, 92, 55, 0));
}

.index-hero::after {
    width: clamp(220px, 26vw, 360px);
    height: clamp(220px, 26vw, 360px);
    right: -5rem;
    bottom: -3rem;
    background: radial-gradient(circle, rgba(13, 52, 37, 0.22), rgba(13, 52, 37, 0));
    animation-delay: 1.6s;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(1.3rem, 3vw, 2.2rem);
}

.hero-copy {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(53, 98, 17, 0.2);
    background: rgba(255, 255, 255, 0.78);
    color: #245d29;
    font-weight: 600;
    font-size: 0.84rem;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

    .hero-chip::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 95%);
        transform: translateX(-100%);
        animation: chipShine 3.8s ease-in-out infinite;
    }

.hero-title {
    margin: 1rem 0 0.6rem;
    font-size: clamp(1.8rem, 5vw, 3.7rem);
    line-height: 1.23;
    color: #0e281d;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.hero-subtitle {
    margin: 0 auto;
    max-width: 650px;
    color: rgba(13, 52, 37, 0.82);
    font-size: clamp(0.95rem, 1.7vw, 1.15rem);
    line-height: 1.9;
}

.hero-actions {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.62rem 1.1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    will-change: transform;
}

.hero-action-btn:hover {
    transform: translateY(-2px);
}

.hero-action-btn.primary {
    background: linear-gradient(135deg, #2f8a45, #2d6fcd);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(19, 84, 55, 0.25);
    animation: pulseSoft 2.8s ease-in-out infinite;
}

    .hero-action-btn.primary:hover {
        box-shadow: 0 16px 32px rgba(19, 84, 55, 0.3);
    }

.hero-action-btn.secondary {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(13, 52, 37, 0.18);
    color: #124530 !important;
    box-shadow: 0 8px 20px rgba(9, 38, 27, 0.08);
}

.hero-action-btn svg {
    width: 17px;
    height: 17px;
}

.hero-form-shell {
    position: relative;
    background:
        radial-gradient(740px 260px at 100% -8%, rgba(164, 210, 188, 0.17), transparent 70%),
        radial-gradient(480px 210px at -3% 105%, rgba(255, 233, 171, 0.22), transparent 72%),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(53, 98, 17, 0.18);
    border-radius: 30px;
    padding: clamp(1rem, 2.4vw, 1.65rem);
    box-shadow: 0 22px 46px rgba(9, 38, 27, 0.12);
    backdrop-filter: blur(14px);
    overflow: visible;
    isolation: isolate;
}

.hero-form-shell::before {
    content: "";
    position: absolute;
    inset: 0.65rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    pointer-events: none;
    z-index: 0;
}

.hero-form-shell::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    left: -68px;
    top: -82px;
    background: radial-gradient(circle, rgba(193, 92, 55, 0.18), rgba(193, 92, 55, 0));
    pointer-events: none;
    z-index: 0;
}

.hero-form-stage {
    position: relative;
    z-index: 1;
}

.hero-form-title-wrap {
    text-align: center;
    margin-bottom: 0.75rem;
}

.hero-form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    border-radius: 999px;
    border: 1px solid rgba(53, 98, 17, 0.25);
    background: rgba(255, 255, 255, 0.88);
    padding: 0.2rem 0.72rem;
    color: #1b5c3d;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.8;
}

.hero-form-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f8a45, #4d9d5a);
    box-shadow: 0 0 0 4px rgba(77, 157, 90, 0.18);
}

.hero-form-title {
    margin: 0;
    font-size: clamp(1.18rem, 2vw, 1.65rem);
    line-height: 1.48;
    font-weight: 900;
    color: #103c2a;
}

.hero-form-subtitle {
    margin: 0.3rem 0 0;
    font-size: clamp(0.82rem, 1.2vw, 0.96rem);
    color: rgba(13, 52, 37, 0.68);
    line-height: 1.85;
}

.index-hero .nl-blurred {
    border-bottom: none;
}

.index-hero .main {
    background: transparent;
}

.index-hero .hero-nl-form {
    max-width: 980px;
    margin: 0 auto 1.05rem;
    padding: clamp(0.9rem, 2vw, 1.25rem) clamp(0.75rem, 2.2vw, 1.2rem);
    border-radius: 22px;
    border: 1px solid rgba(53, 98, 17, 0.12);
    background: linear-gradient(165deg, rgba(250, 255, 252, 0.96), rgba(245, 251, 248, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 10px 24px rgba(9, 38, 27, 0.08);
    font-size: clamp(1.14rem, 2.6vw, 2rem);
    line-height: 2.08;
    color: #1b2430;
}

.index-hero .hero-nl-form .nl-field {
    display: inline-flex;
    align-items: center;
    margin-inline: 0.08rem;
}

.index-hero .hero-nl-form .nl-field-toggle,
.index-hero .hero-nl-form select {
    color: #2a6846;
    font-weight: 800;
    border: 1px dashed rgba(21, 80, 52, 0.38);
    border-bottom-width: 1px;
    border-radius: 12px;
    padding: 0.02rem 0.52rem;
    background: linear-gradient(180deg, rgba(236, 248, 240, 0.95), rgba(224, 242, 232, 0.92));
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    line-height: 1.65;
    min-height: 1.9em;
}

.index-hero .hero-nl-form .nl-field-toggle:hover {
    border-color: rgba(16, 93, 49, 0.52);
    color: #184e33;
    transform: translateY(-1px);
}

.index-hero .hero-nl-form .nl-field.nl-field-open .nl-field-toggle {
    border-style: solid;
    border-color: rgba(20, 97, 57, 0.55);
    background: linear-gradient(180deg, rgba(222, 245, 231, 0.98), rgba(210, 238, 221, 0.94));
    color: #124530;
}

.index-hero .hero-nl-form .nl-field ul {
    left: 50%;
    top: calc(100% + 0.48rem);
    font-size: 70%;
    padding: 0.28em;
    border-radius: 14px;
    border: 1px solid rgba(188, 229, 207, 0.42);
    background: linear-gradient(165deg, #185639 0%, #2e7a53 100%);
    box-shadow: 0 18px 34px rgba(9, 38, 27, 0.24);
    transform: translate(-50%, 0) scale(0.96);
    min-width: max-content;
    z-index: 10050;
}

.index-hero .hero-nl-form .nl-field.nl-field-open ul {
    transform: translate(-50%, 0) scale(1);
}

.index-hero .hero-nl-form .nl-dd ul li {
    padding: 0.34em 1.4em 0.34em 0.75em;
    border-radius: 10px;
    line-height: 1.45;
}

.index-hero .hero-nl-form .nl-dd ul li.nl-dd-checked {
    color: #d6ffe7;
    background: rgba(0, 0, 0, 0.18);
}

.index-hero .hero-nl-form .nl-dd ul li:hover {
    background: rgba(255, 255, 255, 0.13);
}

.index-hero .hero-nl-form .nl-submit > div {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.index-hero .hero-nl-form .nl-submit:hover > div {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 70, 38, 0.18);
}

.index-hero .hero-main-submit {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(16, 93, 49, 0.2);
    position: relative;
    isolation: isolate;
    --cta-shadow: rgba(16, 93, 49, 0.22);
    --cta-shadow-strong: rgba(16, 93, 49, 0.36);
    animation: ctaAttention 3.3s ease-in-out infinite;
}

.index-hero .hero-main-submit > div {
    background: linear-gradient(135deg, #2f8a45, #5a9f55);
    min-height: 50px;
    line-height: 50px;
    padding-left: 1.2em;
    padding-right: 1.2em;
    font-size: 0.42em;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.index-hero .hero-main-submit-label {
    display: flex;
    align-items: center;
}

.index-hero .hero-main-submit .icon {
    background: linear-gradient(135deg, #236338, #2f8246);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.86em;
}

.index-hero .hero-main-submit .icon svg {
    width: 21px;
    height: 21px;
}

.index-hero .hero-main-submit::before,
.index-hero .hero-secondary-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 48%, transparent 100%);
    transform: translateX(-115%);
    animation: ctaSweep 3.6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.index-hero .hero-main-submit:hover > div {
    transform: translateY(-1px);
}

.index-hero .hero-main-submit:active > div {
    transform: translateY(1px);
}

.index-hero .hero-list {
    border: 1px solid rgba(13, 52, 37, 0.17);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 247, 0.86));
    border-radius: 18px;
    padding: 0.72rem 0.96rem;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.index-hero .hero-list-note {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #1b2430;
    font-weight: 600;
    margin-inline-end: auto;
}

.index-hero .hero-list .nl-submit {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(10, 70, 38, 0.13);
    transform: translateZ(0);
}

.index-hero .hero-secondary-submit {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    box-shadow: 0 10px 20px rgba(125, 72, 80, 0.2);
    --cta-shadow: rgba(125, 72, 80, 0.22);
    --cta-shadow-strong: rgba(125, 72, 80, 0.36);
    animation: ctaAttention 3.4s ease-in-out infinite;
    animation-delay: 0.9s;
}

.index-hero .hero-secondary-submit > div {
    background: linear-gradient(135deg, #bc7a81, #cb949a);
    color: #fff;
}

.index-hero .hero-secondary-submit .icon {
    background: linear-gradient(135deg, #ae6a71, #bd7f86);
}

.index-hero .hero-list .nl-submit > div {
    min-height: 42px;
    line-height: 42px;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 0.92rem;
    letter-spacing: 0;
}

.index-hero .hero-list .nl-submit .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 980px) {
    .hero-form-shell {
        border-radius: 24px;
    }

    .hero-form-shell::before {
        inset: 0.5rem;
        border-radius: 20px;
    }

    .index-hero .hero-nl-form {
        line-height: 1.95;
    }
}

.business-invite-section {
    background:
        radial-gradient(500px 220px at 6% 0%, rgba(242, 232, 128, 0.22), transparent 72%),
        radial-gradient(560px 260px at 95% 98%, rgba(84, 182, 139, 0.18), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(242, 250, 246, 0.92) 100%);
}

.business-invite-shell {
    border: 1px solid rgba(53, 98, 17, 0.16);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(9, 38, 27, 0.1);
    backdrop-filter: blur(8px);
    padding: clamp(1rem, 2.2vw, 1.6rem);
}

.business-invite-head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 1rem;
}

.business-invite-kicker {
    display: inline-flex;
    padding: 0.2rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(53, 98, 17, 0.24);
    background-color: #f2faf6;
    color: #1c5e40;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.7;
}

.business-invite-title {
    margin: 0.45rem 0 0;
    color: #123f2b;
    font-size: clamp(1.3rem, 2.5vw, 2.2rem);
    line-height: 1.42;
    font-weight: 900;
}

.business-invite-description {
    margin: 0.48rem auto 0;
    color: #4e6356;
    font-size: clamp(0.9rem, 1.3vw, 1.02rem);
    line-height: 1.92;
}

.business-invite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.business-invite-card {
    border: 1px solid #d8e8df;
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f7fcf9 100%);
    padding: 0.85rem;
    box-shadow: 0 8px 18px rgba(13, 52, 37, 0.08);
}

.business-invite-card-top {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.3rem;
}

.business-invite-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #2f8a45, #4d9d5a);
    box-shadow: 0 8px 16px rgba(16, 93, 49, 0.24);
}

.business-invite-icon svg {
    width: 18px;
    height: 18px;
}

.business-invite-card h3 {
    margin: 0;
    color: #173728;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.6;
}

.business-invite-card p {
    margin: 0;
    color: #5a6d62;
    font-size: 0.9rem;
    line-height: 1.8;
}

.business-invite-code {
    margin: 0.58rem 0 0;
    border-radius: 12px;
    border: 1px solid #d5e3dc;
    background: #132822;
    color: #daf2e4;
    padding: 0.62rem;
    overflow: auto;
}

.business-invite-code code {
    font-size: 0.75rem;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}

.business-invite-copy-btn {
    margin-top: 0.52rem;
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    border: 1px solid #c3dccc;
    border-radius: 10px;
    background: #f4fbf7;
    color: #214732;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.6;
    padding: 0.24rem 0.62rem;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.business-invite-copy-btn svg {
    width: 15px;
    height: 15px;
}

.business-invite-copy-btn:hover {
    transform: translateY(-1px);
    background-color: #e9f8f0;
    border-color: #9fc7af;
}

.business-invite-actions {
    margin-top: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.business-invite-action {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.36rem 0.88rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.6;
    transition: transform .2s ease, box-shadow .2s ease;
}

.business-invite-action svg {
    width: 16px;
    height: 16px;
}

.business-invite-action.primary {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2f8a45, #3d9d64);
    box-shadow: 0 10px 20px rgba(16, 93, 49, 0.22);
}

.business-invite-action.secondary {
    color: #184530 !important;
    border: 1px solid rgba(13, 52, 37, 0.2);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 18px rgba(9, 38, 27, 0.08);
}

.business-invite-action:hover {
    transform: translateY(-1px);
}

.business-invite-note {
    margin: 0.7rem 0 0;
    text-align: center;
    color: #6c7f75;
    font-size: 0.84rem;
    line-height: 1.9;
}

.home-horoscope-preview {
    margin: clamp(1rem, 3vw, 2rem) auto 0;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(53, 98, 17, 0.14);
    border-radius: 22px;
    padding: clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 12px 28px rgba(9, 38, 27, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 100px;
}

.home-horoscope-preview .preview-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.home-horoscope-preview .preview-title {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: #123e2b;
}

.home-horoscope-preview .preview-sub {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: rgba(13, 52, 37, 0.66);
}

.home-horoscope-preview .preview-link {
    border-radius: 999px;
    background: linear-gradient(135deg, #2f8a45, #3c9f62);
    color: #fff !important;
    padding: 0rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(16, 93, 49, 0.2);
}

    .home-horoscope-preview .preview-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(16, 93, 49, 0.26);
    }

.home-horoscope-preview .active-horoscope {
    background: linear-gradient(165deg, rgba(243, 250, 246, 0.95), rgba(234, 245, 255, 0.9));
    border: 1px solid rgba(53, 98, 17, 0.16);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.home-horoscope-preview .active-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.home-horoscope-preview .active-logo {
    width: 100px;
    height: 100px;
    border-radius: 13px;
    background: linear-gradient(135deg, #6fbd81, #e4f5e7);
    place-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 5px;
}

.home-horoscope-preview .active-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #1b2430;
}

.home-horoscope-preview .active-date {
    font-size: 0.8rem;
    color: rgba(13, 52, 37, 0.63);
}

.home-horoscope-preview .active-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.8;
    color: #26333f;
}

.home-horoscope-preview .month-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.55rem;
}

.home-horoscope-preview .month-logo-card {
    border: 1px solid rgba(13, 52, 37, 0.14);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    padding: 0.52rem 0.35rem;
    text-align: center;
    display: grid;
    justify-content: center;
    gap: 10px;
}

.home-horoscope-preview .month-logo-card.active {
    border-color: rgba(47, 138, 69, 0.5);
    background: rgba(232, 246, 236, 0.95);
}

.home-horoscope-preview .month-glyph {
    width: 70px;
    height: 70px;
    border-radius: 11px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #6fbd81, #e4f5e7);
    padding: 5px;
}

.home-horoscope-preview .month-logo-card.active .month-glyph {
    background: linear-gradient(135deg, #2f8a45, #4d9d5a);
}

.home-horoscope-preview .month-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #294131;
    line-height: 1.35;
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: -1;
    animation: orbDrift 10s ease-in-out infinite;
}

    .hero-orb.orb-a {
        width: 110px;
        height: 110px;
        top: 12%;
        right: 14%;
    }

    .hero-orb.orb-b {
        width: 76px;
        height: 76px;
        bottom: 18%;
        left: 16%;
        animation-delay: 1.2s;
    }

.hero-entrance {
    opacity: 0;
    transform: translateY(18px);
    animation: heroReveal 0.8s ease forwards;
}

    .hero-entrance.delay-1 {
        animation-delay: 0.07s;
    }

    .hero-entrance.delay-2 {
        animation-delay: 0.16s;
    }

#back-to-top {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes heroGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes chipShine {
    0% {
        transform: translateX(-100%);
    }

    55%, 100% {
        transform: translateX(130%);
    }
}

@keyframes pulseSoft {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes orbDrift {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-16px) translateX(8px);
    }
}

@keyframes ctaAttention {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 16px var(--cta-shadow, rgba(10, 70, 38, 0.12));
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 12px 22px var(--cta-shadow-strong, rgba(10, 70, 38, 0.22));
    }
}

@keyframes ctaSweep {
    0% {
        transform: translateX(-115%);
    }

    45%, 100% {
        transform: translateX(130%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .index-hero::before,
    .index-hero::after,
    .hero-entrance,
    .hero-chip::after,
    .hero-action-btn.primary,
    .hero-orb,
    .hero-main-submit,
    .hero-secondary-submit,
    .hero-main-submit::before,
    .hero-secondary-submit::before {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 700px) {
    .hero-actions {
        gap: 0.55rem;
    }

    .hero-action-btn {
        font-size: 0.85rem;
        padding: 0.55rem 0.92rem;
    }

    .index-hero .hero-list .nl-submit > div {
        font-size: 0.86rem;
    }

    .hero-form-shell {
        border-radius: 20px;
        padding: 0.75rem;
    }

    .hero-form-shell::before {
        inset: 0.4rem;
        border-radius: 16px;
    }

    .hero-form-shell::after {
        width: 170px;
        height: 170px;
        left: -60px;
        top: -70px;
    }

    .index-hero .hero-nl-form {
        padding: 0.76rem 0.62rem;
        font-size: clamp(1.05rem, 6.3vw, 1.5rem);
        line-height: 1.9;
        border-radius: 16px;
    }

    .index-hero .hero-nl-form .nl-field-toggle,
    .index-hero .hero-nl-form select {
        border-radius: 10px;
        padding: 0 0.4rem;
    }

    .index-hero .hero-list {
        justify-content: center;
        gap: 0.6rem;
        border-radius: 14px;
    }

    .index-hero .hero-list-note {
        width: 100%;
        text-align: center;
        margin-inline-end: 0;
    }

    .business-invite-shell {
        border-radius: 16px;
        padding: 0.8rem;
    }

    .business-invite-grid {
        grid-template-columns: 1fr;
    }

    .business-invite-code code {
        font-size: 0.7rem;
    }

    .home-horoscope-preview .month-logos-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
