.hero-section {
    --hero-parallax-x: 0px;
    --hero-parallax-y: 0px;
    --hero-card-rotate-x: 0deg;
    --hero-card-rotate-y: 0deg;
    --hero-card-shift-x: 0px;
    --hero-card-shift-y: 0px;
    --hero-glow-shift-x: 0px;
    --hero-glow-shift-y: 0px;

    position: relative;
    overflow: hidden;
    padding: 4.95rem 0 5.75rem;
    background: #040406;
    isolation: isolate;
}

/* =========================
   CAPAS DE FONDO
========================= */

.hero-bg,
.hero-overlay,
.hero-atmosphere,
.hero-noise,
.hero-grid-lines,
.hero-glow,
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg {
    z-index: 0;
    background: url("/static/core/img/hero.d577f27089c3.webp") center center / cover no-repeat;
    transform: translate3d(calc(var(--hero-parallax-x) * 0.55), calc(var(--hero-parallax-y) * 0.55), 0) scale(1.07);
    filter: saturate(0.62) contrast(1.06) brightness(0.78);
    will-change: transform;
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(4, 4, 8, 0.98) 0%,
            rgba(4, 4, 8, 0.92) 16%,
            rgba(4, 4, 8, 0.38) 42%,
            rgba(4, 4, 8, 0.06) 55%,
            rgba(4, 4, 8, 0.34) 68%,
            rgba(4, 4, 8, 0.8) 84%,
            rgba(4, 4, 8, 0.94) 100%
        ),
        linear-gradient(180deg,
            rgba(3, 3, 7, 0.7) 0%,
            rgba(3, 3, 7, 0.16) 26%,
            rgba(3, 3, 7, 0.08) 58%,
            rgba(3, 3, 7, 0.5) 100%
        ),
        radial-gradient(circle at 56% 56%, rgba(var(--accent-soft-rgb), 0.16), transparent 16%);
}

.hero-atmosphere {
    z-index: 2;
    inset: -8%;
    background:
        radial-gradient(circle at 52% 50%, rgba(var(--accent-rgb), 0.16), transparent 13%),
        radial-gradient(circle at 66% 28%, rgba(var(--accent-soft-rgb), 0.11), transparent 17%),
        radial-gradient(circle at 43% 76%, rgba(var(--accent-rgb), 0.11), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(var(--accent-deep-rgb), 0.14), transparent 21%);
    filter: blur(2.2rem);
    opacity: 0.94;
    transform: translate3d(calc(var(--hero-parallax-x) * 0.22), calc(var(--hero-parallax-y) * 0.22), 0);
    animation: heroAtmosphereShift 10s ease-in-out infinite alternate;
}

.hero-glow {
    z-index: 2;
    filter: blur(3.2rem);
    opacity: 0.5;
    transform: translate3d(var(--hero-glow-shift-x), var(--hero-glow-shift-y), 0);
    will-change: transform;
}

.hero-glow-left {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 55%);
    inset: 18% auto auto 12%;
    width: 26rem;
    height: 26rem;
}

.hero-glow-right {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 58%);
    inset: 14% 8% auto auto;
    width: 30rem;
    height: 30rem;
}

.hero-grid-lines {
    z-index: 2;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 0.0625rem, transparent 0.0625rem),
        linear-gradient(90deg, rgba(255,255,255,0.05) 0.0625rem, transparent 0.0625rem);
    background-size: 7rem 7rem;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,0.75), transparent 78%);
}

.hero-noise {
    z-index: 3;
    opacity: 0.055;
    background-image:
        linear-gradient(transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
    background-size: 100% 0.35rem;
    mix-blend-mode: soft-light;
}

.hero-particles {
    z-index: 3;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: rgba(var(--accent-soft-rgb), 0.65);
    box-shadow: 0 0 0.8rem rgba(var(--accent-rgb), 0.45);
    opacity: 0.6;
    animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 18%;
    top: 72%;
    animation-duration: 12s;
    animation-delay: 0s;
}
.hero-particles span:nth-child(2) {
    left: 42%;
    top: 66%;
    animation-duration: 15s;
    animation-delay: -3s;
}
.hero-particles span:nth-child(3) {
    left: 58%;
    top: 38%;
    animation-duration: 14s;
    animation-delay: -2s;
}
.hero-particles span:nth-child(4) {
    left: 72%;
    top: 60%;
    animation-duration: 16s;
    animation-delay: -6s;
}
.hero-particles span:nth-child(5) {
    left: 84%;
    top: 22%;
    animation-duration: 13s;
    animation-delay: -4s;
}
.hero-particles span:nth-child(6) {
    left: 34%;
    top: 20%;
    animation-duration: 17s;
    animation-delay: -7s;
}

/* =========================
   CONTENIDO
========================= */

.hero-section .container {
    position: relative;
    z-index: 5;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(22rem, 0.82fr);
    align-items: start;
    column-gap: 5rem;
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
    max-width: 58rem;
    padding-top: 0.8rem;
}

.eyebrow {
    margin: 0 0 1.35rem;
    color: #c4c4cc;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-content::before {
    content: "";
    display: block;
    width: 6rem;
    height: 0.0625rem;
    margin-bottom: 1.6rem;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.95), rgba(var(--accent-rgb), 0));
    opacity: 0.92;
}

.hero-content h1 {
    margin: 0;
    max-width: 12.4ch;
    font-family: var(--font-heading);
    font-size: clamp(3.1rem, 4vw, 5rem);
    line-height: 1;
    letter-spacing: 0.01em;
    text-wrap: balance;
    color: #f5f3f0;
    text-shadow:
        0 0 1rem rgba(0, 0, 0, 0.2),
        0 0 2.7rem rgba(0, 0, 0, 0.14),
        0 0 4.5rem rgba(0, 0, 0, 0.08);
}

.hero-content h1 span {
    display: block;
    margin-top: 0.1em;
    color: #e5ddd6;
    text-shadow:
        0 0 1.15rem rgba(var(--accent-rgb), 0.12),
        0 0 2.1rem rgba(0, 0, 0, 0.12);
}

.hero-text {
    max-width: 43rem;
    margin: 1.9rem 0 0;
    color: rgba(226, 226, 232, 0.84);
    font-size: 1.05rem;
    line-height: 1.88;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.12);
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 2.25rem;
    width: 100%;
}

.hero-actions .btn {
    min-width: 12.4rem;
    min-height: 3.15rem;
    padding: 0 1.3rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.05rem;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.hero-actions .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.hero-actions .btn::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    transform: translateY(-50%);
    background: currentColor;
    opacity: 0.82;
    box-shadow: 0 0 0.85rem currentColor;
}

.hero-actions .btn:hover::after {
    transform: translateX(140%);
}

.hero-actions .btn-primary {
    background:
        linear-gradient(135deg, rgba(var(--accent-soft-rgb), 0.98), rgba(var(--accent-deep-rgb), 0.94));
    border-color: rgba(var(--accent-rgb), 0.95);
    box-shadow:
        0 1rem 2.4rem rgba(var(--accent-deep-rgb), 0.28),
        inset 0 0 0 0.0625rem rgba(255,255,255,0.04);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-0.12rem);
    background:
        linear-gradient(135deg, rgba(var(--accent-soft-rgb), 1), rgba(var(--accent-hover-rgb), 0.96));
    box-shadow:
        0 1.25rem 2.8rem rgba(var(--accent-deep-rgb), 0.34),
        0 0 1.5rem rgba(var(--accent-rgb), 0.18);
}

.hero-actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.11);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.014));
    box-shadow:
        inset 0 0 0 0.0625rem rgba(255,255,255,0.024),
        0 0.9rem 1.9rem rgba(0, 0, 0, 0.12);
}

.hero-actions .btn-secondary:hover {
    transform: translateY(-0.12rem);
    border-color: rgba(var(--accent-rgb), 0.28);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    box-shadow:
        inset 0 0 0 0.0625rem rgba(255,255,255,0.03),
        0 1rem 2.15rem rgba(0, 0, 0, 0.18),
        0 0 1rem rgba(var(--accent-rgb), 0.05);
}

/* =========================
   PANEL DERECHO
========================= */

.hero-panel {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 1.8rem;
    transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 2%), 0);
    will-change: transform;
}

.hero-card {
    position: relative;
    width: min(100%, 25.5rem);
    padding: 1.7rem 1.55rem 1.5rem;
    border-radius: 1.45rem;
    overflow: hidden;
    transform:
        perspective(1200px)
        rotateX(var(--hero-card-rotate-x))
        rotateY(var(--hero-card-rotate-y));
    transform-style: preserve-3d;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
        linear-gradient(135deg, rgba(18,18,24,0.84), rgba(8,8,12,0.76));
    border: 0.0625rem solid rgba(255,255,255,0.08);
    backdrop-filter: blur(1.125rem);
    -webkit-backdrop-filter: blur(1.125rem);
    box-shadow:
        0 1.2rem 2.8rem rgba(0, 0, 0, 0.28),
        0 0 2rem rgba(var(--accent-rgb), 0.06),
        inset 0 0 0.08rem rgba(255,255,255,0.05);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 100% 16%, rgba(var(--accent-rgb), 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.035), transparent 24%);
    opacity: 0.92;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 0.0625rem rgba(255,255,255,0.025);
}

.hero-card:hover {
    transform: translateY(-0.1rem);
    border-color: rgba(var(--accent-rgb), 0.18);
    box-shadow:
        0 1.4rem 3.1rem rgba(0, 0, 0, 0.32),
        0 0 2.4rem rgba(var(--accent-rgb), 0.08),
        inset 0 0 0.08rem rgba(255,255,255,0.06);
}

.card-label,
.hero-card h2,
.hero-card-text,
.card-list,
.hero-card-divider,
.side-note {
    position: relative;
    z-index: 1;
    transform: translateZ(1.2rem);
}

.card-label {
    margin: 0 0 0.95rem;
    color: #c4c4cc;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-card h2 {
    margin: 0;
    width: 100%;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.55vw, 1.55rem);
    line-height: 1.18;
    color: #f0eeeb;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.hero-card-text {
    margin: 1.1rem 0 0;
    color: rgba(219, 219, 226, 0.74);
    font-size: 0.91rem;
    line-height: 1.68;
}

.card-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.card-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.card-list-item p {
    margin: 0;
    color: #dcdce2;
    font-size: 0.88rem;
    line-height: 1.45;
}

.list-dot {
    flex-shrink: 0;
    width: 0.58rem;
    height: 0.58rem;
    margin-top: 0.34rem;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow:
        0 0 0.95rem rgba(var(--accent-rgb), 0.5),
        0 0 1.8rem rgba(var(--accent-rgb), 0.22);
}

.hero-card-divider {
    width: 100%;
    height: 0.0625rem;
    margin: 1.3rem 0 1.05rem;
    background: rgba(255, 255, 255, 0.08);
}

.side-note {
    width: 100%;
}

.side-note-label {
    margin: 0 0 0.55rem;
    color: #c4c4cc;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.side-note-text {
    margin: 0;
    color: rgba(219, 219, 226, 0.76);
    font-size: 0.89rem;
    line-height: 1.58;
}

.side-note-text strong {
    color: #f3f1ee;
}

/* =========================
   LINEA INFERIOR
========================= */

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.0625rem;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.08) 20%,
        rgba(255,255,255,0.06) 80%,
        rgba(255,255,255,0) 100%
    );
    z-index: 6;
}

/* =========================
   ANIMACIONES
========================= */

@keyframes heroAtmosphereShift {
    0% {
        transform: translate3d(calc(var(--hero-parallax-x) * 0.18), calc(var(--hero-parallax-y) * 0.18), 0) scale(1);
        opacity: 0.72;
    }
    100% {
        transform: translate3d(calc(var(--hero-parallax-x) * 0.24), calc(var(--hero-parallax-y) * 0.24), 0) scale(1.04);
        opacity: 0.95;
    }
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0;
    }
    12% {
        opacity: 0.6;
    }
    50% {
        transform: translate3d(1rem, -2rem, 0) scale(1);
        opacity: 0.75;
    }
    100% {
        transform: translate3d(-0.6rem, -4.5rem, 0) scale(1.08);
        opacity: 0;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 120rem) {
    .hero-section {
        padding: 5.7rem 0 6.5rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.24fr) minmax(23rem, 0.8fr);
        column-gap: 5.4rem;
    }

    .hero-content {
        max-width: 60rem;
    }

    .hero-content h1 {
        max-width: 12.8ch;
        font-size: clamp(3.45rem, 3.4vw, 5.4rem);
    }

    .hero-text {
        max-width: 45rem;
        font-size: 1.08rem;
    }

    .hero-panel {
        padding-top: 2.2rem;
        transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 1%), 0);
    }

    .hero-card {
        width: min(100%, 27rem);
        padding: 1.85rem 1.7rem 1.6rem;
    }

    .hero-card h2 {
        font-size: clamp(1.24rem, 1.35vw, 1.62rem);
    }
}

@media (min-width: 110rem) and (max-width: 119.99rem) {
    .hero-section {
        padding: 4.15rem 0 5rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.14fr) minmax(21rem, 25rem);
        column-gap: 4.6rem;
    }

    .hero-content {
        max-width: 47rem;
    }

    .hero-content h1 {
        font-size: clamp(2.95rem, 3.55vw, 4.25rem);
        max-width: 12.3ch;
    }

    .hero-text {
        max-width: 39rem;
        font-size: 1.02rem;
    }

    .hero-panel {
        padding-top: 1.9rem;
        transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 1%), 0);
    }

    .hero-card {
        width: min(100%, 24.8rem);
        padding: 1.7rem 1.5rem 1.45rem;
    }

    .hero-card h2 {
        font-size: clamp(1.16rem, 1.35vw, 1.48rem);
    }

    .hero-card-text,
    .card-list-item p,
    .side-note-text {
        font-size: 0.89rem;
    }
}

@media (max-width: 110rem) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.14fr) minmax(20rem, 23.5rem);
        column-gap: 4rem;
    }

    .hero-content {
        max-width: 46rem;
    }

    .hero-content h1 {
        font-size: clamp(2.65rem, 3.4vw, 3.85rem);
        max-width: 12.2ch;
    }

    .hero-text {
        max-width: 37rem;
    }

    .hero-panel {
        padding-top: 1.8rem;
        transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 1%), 0);
    }

    .hero-card {
        width: min(100%, 23.2rem);
        padding: 1.6rem 1.4rem 1.3rem;
    }

    .hero-card h2 {
        font-size: clamp(1.12rem, 1.35vw, 1.38rem);
    }
}

@media (max-width: 90rem) {
    .hero-section {
        padding: 4.4rem 0 5.1rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 21rem);
        column-gap: 2.9rem;
    }

    .hero-content {
        max-width: 40rem;
    }

    .hero-content h1 {
        max-width: 12.1ch;
        font-size: clamp(2.35rem, 3.05vw, 3.25rem);
    }

    .hero-text {
        max-width: 33rem;
        font-size: 0.99rem;
    }

    .hero-panel {
        align-self: stretch;
        padding-top: 1.4rem;
        transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 1%), 0);
    }

    .hero-card {
        width: min(100%, 20.4rem);
        padding: 1.45rem 1.2rem 1.15rem;
    }

    .hero-card h2 {
        font-size: clamp(1.04rem, 1.15vw, 1.22rem);
    }

    .hero-card-text,
    .card-list-item p,
    .side-note-text {
        font-size: 0.84rem;
    }
}

@media (max-width: 80rem) {
    .hero-section {
        padding: 4.65rem 0 5.3rem;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(17rem, 19rem);
        column-gap: 2.35rem;
    }

    .hero-content {
        max-width: 37rem;
    }

    .hero-content h1 {
        max-width: 12ch;
        font-size: clamp(2.12rem, 2.82vw, 2.95rem);
    }

    .hero-text {
        max-width: 30rem;
    }

    .hero-panel {
        padding-top: 1rem;
        transform: translate3d(var(--hero-card-shift-x), calc(var(--hero-card-shift-y) - 1%), 0);
    }

    .hero-card {
        width: min(100%, 18.4rem);
        padding: 1.3rem 1.05rem 1.05rem;
    }

    .hero-card h2 {
        font-size: clamp(0.98rem, 1.1vw, 1.15rem);
        line-height: 1.2;
    }

    .hero-card-text,
    .card-list-item p,
    .side-note-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 64rem) {
    .hero-section {
        padding: 4.95rem 0 5.65rem;
    }

    .hero-bg {
        background-position: 66% center;
        transform: scale(1.02);
        filter: saturate(1.06) contrast(1.04) brightness(0.8);
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(4, 4, 8, 0.88) 0%,
                rgba(4, 4, 8, 0.48) 24%,
                rgba(4, 4, 8, 0.32) 56%,
                rgba(4, 4, 8, 0.86) 100%
            ),
            linear-gradient(90deg, rgba(4, 4, 8, 0.78) 0%, rgba(4, 4, 8, 0.28) 48%, rgba(4, 4, 8, 0.8) 100%),
            radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.16), transparent 28%);
    }

    .hero-atmosphere,
    .hero-glow,
    .hero-particles,
    .hero-grid-lines {
        opacity: 0.7;
        filter: blur(1.4rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        row-gap: 2.65rem;
    }

    .hero-content,
    .hero-text {
        max-width: 100%;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }

    .hero-panel {
        justify-content: flex-start;
        padding-top: 0;
        transform: none;
    }

    .hero-card {
        width: 100%;
        max-width: 100%;
        padding: 1.55rem 1.4rem 1.3rem;
        transform: none;
    }

    .hero-card h2 {
        font-size: clamp(1.12rem, 3vw, 1.45rem);
    }
}

@media (max-width: 48rem) {
    .hero-section {
        padding: 4.5rem 0 5rem;
    }

    .hero-content::before {
        width: 4.4rem;
        margin-bottom: 1.2rem;
    }

    .eyebrow {
        margin-bottom: 1rem;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
    }

    .hero-content h1 {
        font-size: clamp(1.95rem, 8.5vw, 2.65rem);
        line-height: 1.02;
    }

    .hero-text {
        margin-top: 1.45rem;
        font-size: 0.96rem;
        line-height: 1.74;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.9rem;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 100%;
    }

    .hero-card {
        padding: 1.35rem 1.15rem 1.1rem;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .card-list {
        gap: 0.78rem;
    }

    .hero-card-divider {
        margin: 1.15rem 0 0.95rem;
    }
}

@media (max-width: 30rem) {
    .hero-section {
        padding: 3.95rem 0 4.5rem;
    }

    .hero-bg {
        background-position: 70% center;
        transform: scale(1.01);
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(4, 4, 8, 0.88) 0%,
                rgba(4, 4, 8, 0.5) 26%,
                rgba(4, 4, 8, 0.34) 58%,
                rgba(4, 4, 8, 0.88) 100%
            ),
            linear-gradient(90deg, rgba(4, 4, 8, 0.8) 0%, rgba(4, 4, 8, 0.38) 42%, rgba(4, 4, 8, 0.84) 100%);
    }

    .hero-grid {
        row-gap: 2rem;
    }

    .hero-content h1 {
        font-size: clamp(1.82rem, 8.4vw, 2.25rem);
    }

    .hero-text {
        line-height: 1.68;
    }

    .hero-card {
        padding: 1.2rem 1rem 0.95rem;
        border-radius: 1.35rem;
    }

    .hero-text,
    .hero-card-text,
    .card-list-item p,
    .side-note-text {
        font-size: 0.9rem;
    }

    .card-list-item {
        gap: 0.75rem;
    }

    .list-dot {
        width: 0.66rem;
        height: 0.66rem;
    }
}
