/* =========================================================
Public: Homepage
========================================================= */
.hero {
    width: min(1180px, calc(100% - 48px));
    min-height: 78vh;
    margin: 0 auto;
    padding: 86px 0 80px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 52px;
    position: relative;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: 10%;
    top: -34px;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.55;
    z-index: -1;
}

.hero h1 {
    max-width: 720px;
    margin: 18px 0 24px;
    font-size: clamp(54px, 8vw, 96px);
}

.hero-title-accent {
    display: inline;
    color: var(--green);
    white-space: normal;
    background-image: linear-gradient(rgba(215, 159, 144, 0.36), rgba(215, 159, 144, 0.36));
    background-repeat: no-repeat;
    background-size: 0% 0.07em;
    background-position: 0 95%;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    transition:
        background-size 2000ms cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 2000ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero h1:hover .hero-title-accent,
.hero-title-accent:hover {
    background-size: 100% 0.07em;
    text-shadow: 0 4px 14px rgba(215, 159, 144, 0.34);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 30px;
    color: var(--dark-gray);
    font-size: 19px;
}

.hero-motto-line {
    max-width: 620px;
    margin: -12px 0 0;
    color: var(--navy);
    font-family: var(--font-subtitle);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    opacity: 0.78;
    animation: slideUp var(--transition-slow) 460ms both;
}

.hero h1 {
    animation: slideUp var(--transition-slow) 180ms both;
}

.hero-description {
    animation: slideUp var(--transition-slow) 340ms both;
}

.hero-buttons {
    margin-top: 28px;
    animation: slideUp var(--transition-slow) 560ms both;
}

.hero-images {
    position: relative;
    min-height: 530px;
}

.hero-images::before,
.hero-images::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-images::before {
    width: 310px;
    height: 310px;
    right: 0;
    top: 8px;
    background: var(--green);
}

.hero-images::after {
    width: 240px;
    height: 240px;
    left: 8px;
    bottom: 18px;
    background: var(--rose);
}

.hero-image-item {
    position: absolute;
    z-index: 1;
    animation: scaleIn var(--transition-slow) 420ms both;
}

.hero-image-hover {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 8px solid var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-hover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
}

.hero-images:hover .image-large .hero-image-hover {
    transform: translate3d(0, -6px, 0) scale(1.015);
}

.hero-images:hover .image-small.top .hero-image-hover {
    transform: translate3d(2px, -5px, 0) rotate(1deg);
}

.hero-images:hover .image-small.bottom .hero-image-hover {
    transform: translate3d(-2px, 5px, 0) rotate(-1deg);
}

.image-large {
    width: 350px;
    height: 410px;
    right: 68px;
    top: 72px;
}

.image-small {
    width: 190px;
    height: 220px;
}

.image-small.top {
    right: 0;
    top: 8px;
}

.image-small.bottom {
    left: 22px;
    bottom: 34px;
}

.hero-scroll-indicator {
    position: absolute;
    right: 48px;
    bottom: 34px;
    width: 34px;
    height: 34px;
    opacity: 0;
    color: var(--navy);
    text-decoration: none;
    animation:
        heroScrollFadeIn 500ms ease-out 1.15s forwards,
        heroScrollBounce 1.6s cubic-bezier(0.45, 0, 0.55, 1) 1.65s infinite;
    transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.hero-scroll-indicator::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    border-radius: 2px;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

@keyframes heroScrollFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.85;
    }
}

@keyframes heroScrollBounce {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 6px, 0);
    }
}

.play-block {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 72px;
    padding: 42px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
    color: var(--white);
    background: var(--navy);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition-normal);
}

.js-enabled .feature-banner-reveal {
    opacity: 0;
    transform: scale(0.7);
    transition:
        opacity 650ms ease-out,
        transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .feature-banner-reveal.is-visible {
    opacity: 1;
    transform: scale(1);
}

.js-enabled .feature-banner-reveal.is-visible:hover {
    transform: translate3d(0, -4px, 0) scale(1);
}

.play-block:hover {
    transform: translateY(-4px);
}

.play-block::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    bottom: -80px;
    border-radius: 50%;
    background: var(--rose);
}

.js-enabled .feature-banner-reveal::after {
    transform: translate3d(12px, 12px, 0) scale(0);
    transition:
        transform 1600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .feature-banner-reveal.is-visible::after {
    transform: translate3d(0, 0, 0) scale(1);
}

.feature-banner-reveal.is-visible:hover::after {
    transform: translate3d(-4px, -4px, 0) scale(1.08);
}

.js-enabled .feature-banner-reveal.is-visible:hover::after {
    transform: translate3d(-4px, -4px, 0) scale(1.08);
}

.js-enabled .feature-kicker,
.js-enabled .feature-title,
.js-enabled .feature-copy {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
}

.js-enabled .feature-kicker {
    transition:
        opacity 900ms ease-out 150ms,
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
}

.js-enabled .feature-title {
    transition:
        opacity 1000ms ease-out 300ms,
        transform 1000ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.js-enabled .feature-copy {
    transition:
        opacity 900ms ease-out 600ms,
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1) 600ms;
}

.js-enabled .feature-banner-reveal.is-visible .feature-kicker,
.js-enabled .feature-banner-reveal.is-visible .feature-title,
.js-enabled .feature-banner-reveal.is-visible .feature-copy {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.play-block .small-title,
.play-block h2,
.play-block p {
    position: relative;
    z-index: 1;
}

.play-block .small-title {
    color: var(--rose);
}

.play-block h2 {
    color: var(--white);
    font-size: clamp(34px, 5vw, 54px);
}

.play-block p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.about-description {
    max-width: 760px;
    margin: 0 auto 44px;
    color: var(--dark-gray);
    font-size: 18px;
}

.about-section {
    padding-bottom: 38px;
}

.about-section .section-title {
    margin-bottom: 16px;
}

.memory-band {
    padding-top: 38px;
}

.js-enabled .memory-band .info-card.reveal-card {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 460ms ease-out,
        transform 460ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.js-enabled .memory-band .info-card.reveal-card.is-visible {
    opacity: 1;
    transform: scale(1);
}

.feature {
    min-height: 220px;
    background:
        linear-gradient(135deg, var(--white) 0%, var(--white) 68%, var(--cream) 68%),
        var(--white);
}

.feature:nth-child(2n) {
    background:
        linear-gradient(135deg, var(--white) 0%, var(--white) 68%, var(--green-soft) 68%),
        var(--white);
}

