.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: min(100svh, 940px);
    padding-top: calc(var(--header-h) + clamp(40px, 6vw, 90px));
    background: radial-gradient(120% 90% at 50% 0%, #3a1a52 0%, #2a1139 45%, #1c0b27 100%);
    color: #f2e7f7;
    text-align: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
}

.hero-blob-violet {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -60px;
    background: rgba(163, 79, 191, .55);
}

.hero-blob-coral {
    width: 420px;
    height: 420px;
    right: -80px;
    top: 90px;
    background: rgba(245, 138, 109, .38);
}

.hero-blob-sand {
    width: 380px;
    height: 380px;
    left: 30%;
    bottom: -160px;
    background: rgba(232, 192, 138, .26);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .6) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: .05;
    -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
    mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent);
}

.hero-orbit {
    position: absolute;
    top: 46%;
    left: 50%;
    width: min(980px, 118vw);
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(205, 154, 220, .38);
}

.orbit-ring-1 {
    transform: rotate(-24deg) scaleY(.62);
    animation: orbit-breathe 12s ease-in-out infinite;
}

.orbit-ring-2 {
    inset: 12%;
    border-color: rgba(245, 138, 109, .34);
    border-width: 2px;
    transform: rotate(28deg) scaleY(.52);
}

.orbit-ring-3 {
    inset: 26%;
    border-style: dashed;
    border-color: rgba(232, 192, 138, .3);
    animation: spin-slow 60s linear infinite;
}

.orbit-planet {
    position: absolute;
    inset: 0;
    animation: spin-slow 22s linear infinite;
}

.orbit-planet::before {
    content: "";
    position: absolute;
    top: 6%;
    left: 50%;
    width: clamp(38px, 5vw, 74px);
    height: clamp(38px, 5vw, 74px);
    margin-left: -2.5vw;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, #ffb99f, var(--coral) 55%, var(--coral-2));
    box-shadow: 0 0 60px rgba(245, 138, 109, .65);
}

@keyframes orbit-breathe {
    50% {
        transform: rotate(-24deg) scaleY(.72) scaleX(1.03);
    }
}

.hero-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(20px, 3vw, 40px);
    padding-bottom: clamp(30px, 4vw, 60px);
    z-index: 1;
}

.hero .eyebrow {
    color: var(--sand);
    justify-content: center;
}

.hero-title {
    margin-bottom: 24px;
    color: #fff;
}

.hero-line {
    display: block;
}

.hero-line span {
    display: inline-block;
    margin-right: .22em;
    opacity: 0;
    transform: translateY(70%) rotate(3deg);
    animation: word-rise .95s cubic-bezier(.2, .85, .3, 1) forwards;
}

.hero-line span:nth-child(1) {
    animation-delay: .15s;
}

.hero-line span:nth-child(2) {
    animation-delay: .24s;
}

.hero-line span:nth-child(3) {
    animation-delay: .33s;
}

.hero-line span:nth-child(4) {
    animation-delay: .42s;
}

.hero-line span:nth-child(5) {
    animation-delay: .51s;
}

.hero-line-accent span {
    background: linear-gradient(100deg, var(--violet-soft), var(--coral) 70%, var(--sand));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-line-accent span:nth-child(1) {
    animation-delay: .6s;
}

.hero-line-accent span:nth-child(2) {
    animation-delay: .69s;
}

@keyframes word-rise {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.hero-lead {
    max-width: 62ch;
    margin-inline: auto;
    font-size: clamp(1rem, 1.15vw, 1.22rem);
    color: rgba(242, 231, 247, .82);
    opacity: 0;
    animation: word-rise .9s ease .82s forwards;
}

.hero .btn-ghost {
    border-color: rgba(255, 255, 255, .38);
    color: #fff;
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
    border-color: var(--coral);
    color: var(--coral);
}

.hero-actions {
    justify-content: center;
    margin-top: 34px;
    opacity: 0;
    animation: word-rise .9s ease .95s forwards;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
    opacity: 0;
    animation: word-rise .9s ease 1.08s forwards;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    font-size: .85rem;
    color: rgba(242, 231, 247, .88);
}

.hero-chip i {
    color: var(--coral);
    font-size: .82rem;
}

.hero-ribbon {
    position: relative;
    z-index: 3;
    padding-block: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
}

.hero-ribbon .marquee-track span {
    color: rgba(242, 231, 247, .72);
}

.intro-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

.intro-media {
    position: relative;
}

.intro-badge {
    position: absolute;
    right: -10px;
    bottom: 34px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    border-radius: 999px;
    background: var(--plum);
    color: #fff;
    box-shadow: var(--shadow-m);
    font-family: var(--head);
    font-size: .84rem;
    font-weight: 600;
}

.intro-badge i {
    color: var(--coral);
}

.intro-copy .stat-row {
    margin-top: 38px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
    padding: 32px 30px;
    border-radius: var(--radius-l);
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(170deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    color: #fff;
    transition: transform .45s cubic-bezier(.2, .8, .3, 1), border-color .45s ease, background .45s ease;
}

.solution-card:hover {
    color: #fff;
    border-color: var(--coral);
    background: linear-gradient(170deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
}

.solution-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.1rem;
    color: var(--coral);
    background: rgba(245, 138, 109, .16);
}

.solution-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.solution-card p {
    margin: 0;
    font-size: .94rem;
    color: rgba(241, 230, 245, .78);
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
    font-family: var(--head);
    font-size: .88rem;
    font-weight: 600;
    color: var(--coral);
}

.solution-card:hover .solution-link i {
    transform: translateX(5px);
}

.solution-link i {
    transition: transform .35s ease;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 64px);
    align-items: center;
}

.partner-copy .btn-main {
    margin-top: 12px;
}

.partner-media {
    position: relative;
}

.partner-list {
    margin: 26px 0 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    padding: 36px 22px 32px;
    border-radius: var(--radius-l);
    background: var(--ivory);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform .45s cubic-bezier(.2, .8, .3, 1), box-shadow .45s ease;
}

.value-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s cubic-bezier(.2, .8, .3, 1);
    display: none;
}

.value-card h3{
    transition: 300ms;
}

/* .value-card:hover {
    box-shadow: var(--shadow-m);
} */

.value-card:hover h3{
    color: var(--violet);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    display: grid;
    place-items: center;
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    aspect-ratio: 1;
    margin-right: 16px;
    border-radius: 88px;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(140deg, var(--violet-2), var(--violet));
    box-shadow: 0 12px 26px rgba(124, 58, 151, .3);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.value-card p {
    color: var(--muted);
    font-size: .95rem;
    margin: 0;
}

@media (max-width: 1199.98px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .intro-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .intro-media {
        max-width: 460px;
        margin: auto;
    }

    .hero {
        min-height: 88svh;
        padding-bottom: 0;
    }

    .hero-orbit {
        width: 118vw;
        top: 44%;
        opacity: .55;
    }

    .hero-blob {
        opacity: .25;
    }

    .hero-blob-coral {
        right: -140px;
        top: 40px;
    }
}

@media (max-width: 575.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .intro-badge {
        right: 0;
        bottom: 12px;
        padding: 12px 18px;
        font-size: .78rem;
    }

    .solution-card {
        padding: 26px 22px;
    }
}