/* ═══ HERO ═══ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: 16rem 0 4rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1023px) {
    .hero {
        padding: 13rem 0 4rem;
    }
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.2), transparent 45%);
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

[data-theme="dark"] .hero__video {
    opacity: 0.2;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
}

[data-theme="dark"] #heroCanvas {
    opacity: 0.3;
}

.hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle at 1px 1px, var(--border-a) 1px, transparent 0);
    background-size: 48px 48px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse 50% 50% at 65% 50%, black 10%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse 50% 50% at 65% 50%, black 10%, transparent 60%);
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero__content {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 4rem;
    }
}

.hero__text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__text {
        text-align: left;
    }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem 0.5rem 0.625rem;
    background: var(--surface);
    border: 1px solid var(--border-a);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    box-shadow: var(--sh-sm);
    color: var(--text-sec);
}

.hero__pulse {
    width: 10px;
    height: 10px;
    background: #E25B45;
    border-radius: 50%;
    position: relative;
}

.hero__pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid #E25B45;
    animation: ping 2s ease-out infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Countdown inside eyebrow */
.hero__countdown {
    display: inline-flex;
    gap: 0.25rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--burgundy);
    font-size: 0.8125rem;
}

[data-theme="dark"] .hero__countdown {
    color: var(--rose-light);
}

.hero__title {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-word {
    display: inline-block;
}

.hero__title em {
    font-style: italic;
    font-weight: 700;
    background: var(--grad-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__title-deco {
    display: block;
    width: 80px;
    height: 1.5px;
    background: var(--grad-rose);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .hero__title-deco {
        margin: 0.5rem 0 0;
    }
}

.hero__desc {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    color: var(--text-sec);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

@media (min-width: 1024px) {
    .hero__desc {
        margin: 0 0 2.5rem;
    }
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero__cta {
        justify-content: flex-start;
    }
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__img-wrap {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero__img-frame {
    position: relative;
    border-radius: 280px 280px 40px 40px;
    overflow: hidden;
    aspect-ratio: 3/4.2;
    box-shadow: var(--sh-xl);
}

.hero__img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(74, 30, 43, 0.25) 100%);
    pointer-events: none;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__img-frame:hover .hero__img {
    transform: scale(1.06);
}

.hero__img-ring {
    position: absolute;
    inset: -20px;
    border-radius: 300px 300px 60px 60px;
    border: 1px solid var(--border-a);
    pointer-events: none;
    opacity: 0.5;
}

.hero__cred {
    position: absolute;
    background: var(--surface);
    border-radius: 18px;
    padding: 0.875rem 1.125rem;
    box-shadow: var(--sh-md);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    z-index: 5;
}

.hero__cred-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-sec);
}

.hero__cred-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.hero__cred-value small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-sec);
}

.hero__cred--left {
    top: 15%;
    left: -12%;
    animation: cfloat 7s ease-in-out infinite;
}

.hero__cred--right {
    bottom: 22%;
    right: -8%;
    animation: cfloat 7s ease-in-out infinite -3s;
}

@keyframes cfloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1023px) {
    .hero__cred--left {
        left: 0;
        top: -3%;
    }

    .hero__cred--right {
        right: 0;
    }
}

.hero__proof {
    position: absolute;
    bottom: 1.75rem;
    left: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 5;
}

[data-theme="dark"] .hero__proof {
    background: rgba(44, 34, 38, 0.88);
}

.hero__avatars {
    display: flex;
}

.hero__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid var(--surface);
    margin-left: -9px;
    overflow: hidden;
}

.hero__avatar:first-child {
    margin-left: 0;
}

.hero__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__avatar--count {
    background: var(--grad-luxury);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__proof-text strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}

.hero__proof-text span {
    font-size: 0.75rem;
    color: var(--text-sec);
}

.hero__proof-rating {
    margin-left: auto;
    text-align: right;
}

.hero__stars {
    color: var(--gold);
    font-size: 0.6875rem;
    letter-spacing: 2px;
}

.hero__rating-num {
    font-family: var(--font-display);
    font-weight: 700;
}
