:root {
    --navy-950: #020b19;
    --navy-900: #04152d;
    --navy-800: #062247;
    --navy-700: #0b315f;
    --cyan: #00d8cc;
    --cyan-dark: #00a99f;
    --blue: #1769ff;
    --white: #ffffff;
    --off-white: #f5f8fa;
    --text: #122238;
    --muted: #647184;
    --line: rgba(7, 34, 71, .12);
    --shadow-sm: 0 8px 25px rgba(3, 20, 42, .08);
    --shadow-md: 0 18px 50px rgba(3, 20, 42, .12);
    --shadow-lg: 0 30px 80px rgba(2, 18, 42, .20);
    --radius: 22px;
    --max-width: 1380px;
    --transition: 280ms cubic-bezier(.2, .7, .2, 1);
}
/* reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    min-width: 320px;
    background: var(--off-white);
    color: var(--text);
    font-family:Inter,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
}
button,a {
    -webkit-tap-highlight-color: transparent;
}
/* utilidades */
.section-container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}
/* seccion-hero */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 80% 35%,rgba(0,216,204,.18),transparent 26%),radial-gradient(circle at 10% 100%,rgba(23,105,255,.15),transparent 28%),linear-gradient(115deg,var(--navy-950) 0%,
    var(--navy-900) 55%,#071f3e 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .45;
    background-image:linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(
        to right,
        black,
        transparent 85%
    );
}
.hero-grid::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,transparent 0 48%,rgba(0,216,204,.08) 48.2%,transparent 49%);
}
.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-glow-one {
    top: -260px;
    right: 5%;
    background: rgba(0,216,204,.14);
}
.hero-glow-two {
    bottom: -330px;
    left: 5%;
    background: rgba(23,105,255,.14);
}
.hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 250px minmax(420px, 1fr) 420px;
    align-items: center;
    gap: 35px;
    padding: 85px 0;
}
.anniversary-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}
.anniversary-number {
    font-size: 150px;
    line-height: .72;
    font-weight: 950;
    letter-spacing: 1px;
    font-family: 'Titan One', sans-serif;
    background: linear-gradient(145deg,#1769ff 10%,#00d8cc 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.anniversary-copy {
    display: flex;
    flex-direction: column;
    padding-top: 12px;
    font-size: 15px;
    font-family: 'monospace', sans-serif;
    line-height: 18px;
    letter-spacing: 0px;
}
.anniversary-copy span {
    color: rgba(255,255,255,.72);
}
.anniversary-copy strong {
    color: var(--cyan);
}
.hero-title {
    position: relative;
}
.eyebrow,
.section-kicker {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'Geologica', sans-serif;
}
.hero-title h1 {
    margin-top: 12px;
    font-size: clamp(58px, 6.7vw, 100px);
    line-height: 105px;
    font-family: 'Rammetto One', sans-serif;
    letter-spacing: -1px;
    font-weight: 950;
}
.hero-title h1 span {
    display: block;
    color: var(--cyan);
}
.hero-description {
    max-width: 560px;
    margin-top: 28px;
    color: rgba(255,255,255,.72);
    font-size: 20px;
    letter-spacing: 0.2px;
    font-family: 'Figtree', sans-serif;
    line-height: 25px;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.4px;
    font-weight: 900;
    cursor: pointer;
    transition: transform var(--transition),background var(--transition),color var(--transition),border-color var(--transition),box-shadow var(--transition);
}
.btn:hover {
    transform: translateY(-3px);
}
.btn-primary {
    color: var(--navy-950);
    background: var(--cyan);
    box-shadow: 0 10px 30px rgba(0,216,204,.22);
}
.btn-primary:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0,216,204,.25);
}
.btn-outline {
    color: white;
    border-color: rgba(255,255,255,.20);
    background: rgba(255,255,255,.04);
}
.btn-outline:hover {
    border-color: rgba(0,216,204,.55);
    background: rgba(0,216,204,.08);
}
.btn-dark {
    color: white;
    background: #001e45;
}
.hero-product {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
}
.hero-product-ring {
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(0,216,204,.35);
    border-radius: 50%;
    box-shadow:
        0 0 0 30px rgba(0,216,204,.025),
        0 0 0 70px rgba(0,216,204,.018);
    animation: pulseRing 4s ease-in-out infinite;
}
.hero-product-image {
    position: relative;
    z-index: 2;
    width: min(100%, 390px);
    min-height: 320px;
    display: grid;
    place-items: center;
}
.hero-product-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 30px 30px rgba(0,0,0,.35));
    animation: productFloat 5s ease-in-out infinite;
}
.placeholder-content {
    display: none;
    width: 230px;
    height: 230px;
    place-items: center;
    align-content: center;
    border: 1px dashed rgba(0,216,204,.55);
    border-radius: 50%;
    text-align: center;
    background: rgba(0,216,204,.05);
}
.placeholder-content span, .placeholder-content strong, .placeholder-content small {
    display: block;
}
.placeholder-content span {
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: 2px;
}
.placeholder-content strong {
    margin: 4px 0;
    font-size: 24px;
}
.placeholder-content small {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}
.hero-product-image.image-placeholder .placeholder-content {
    display: grid;
}
.hero-floating-card {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 17px;
    background: rgba(4,21,45,.78);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
}
.floating-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--navy-950);
    background: var(--cyan);
    font-size: 20px;
    font-weight: 950;
}
.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}
.hero-floating-card strong {
    font-size: 13px;
}
.hero-floating-card small {
    margin-top: 2px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
}
.hero-bottom-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg,transparent,var(--cyan),var(--blue),transparent);
}

@media (max-width: 1024px) {
    .hero-title h1 {line-height: 80px;}
    .eyebrow, .section-kicker {font-size: 12px;}
    .hero-description {font-size: 15px; line-height: 18px;}
    .anniversary-copy {font-size: 12px; line-height: 15px;}
}
@media (max-width: 768px) {
    .hero-title h1 {line-height: 70px;}
    .anniversary-copy {font-size: 15px;line-height:  18px;;}
}
@media (max-width: 595px) {
    .hero-description {line-height:18px;margin-inline: auto;}
}

/* seccion-beneficios */
.benefits-section {
    position: relative;
    z-index: 5;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,.07);
}
.benefits-section .section-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.benefit {
    min-height: 105px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-right: 1px solid var(--line);
}
.benefit:last-child {
    border-right: 0;
}
.benefit-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan-dark);
    font-size: 19px;
    font-weight: 900;
}
.benefit strong,
.benefit span {
    display: block;
}
.benefit strong {
    color: var(--navy-800);
    font-size: 17px;
    font-family: 'Geologica', sans-serif;
}
.benefit span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .benefit strong {font-size:15px; line-height: 18px;}
    .benefit span {margin-top:10px; font-size: 13px; line-height: 16px;}
}
@media (max-width: 768px) {
    .benefit strong {font-size: 17px; line-height: 20px;}
}

/* seccion-ofertas */
.offers-section {
    padding: 100px 0 110px;
    background: var(--off-white);
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
}
@font-face {
    font-family: 'Sunday Magical';
    src: url("../fonts/Sunday\ Magical.ttf");
}
.section-heading h2 {
    margin-top: 10px;
    color: var(--navy-900);
    font-size: clamp(42px, 5vw, 65px);
    line-height: .95;
    font-weight: 800;
    font-family: 'Geologica', sans-serif;
    letter-spacing: -3px;
}
.section-heading h2 span {
    color: var(--cyan-dark);
}
.section-heading > p {
    max-width: 420px;
    color: #000000;
    font-size: 28px;
    line-height: 21px;
    letter-spacing: 1px;
    font-family: 'Sunday Magical', sans-serif;
}

@media (max-width: 768px) {
    .section-heading > p {font-size: 21px;line-height:20px;}
}
@media (max-width: 595px) {
    .section-heading h2 {letter-spacing: -1px;font-size: 35px;}
}
@media (max-width: 395px) {
    .section-heading h2 {font-size: 30px;}
    .section-heading > p {font-size: 19px;line-height: 18px;}
}

/* tarjetas-producto */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(6,34,71,.08);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}
.product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(0,216,204,.30);
    box-shadow: var(--shadow-md);
}
.discount {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    min-width: 67px;
    padding: 8px 10px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg,#00bdb3,#00d8cc);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,216,204,.22);
    font-family: 'Figtree', sans-serif;
}
.discount strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}
.discount small {
    display: block;
    margin-top: 3px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
}
.product-image {
    height: 350px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 16px;
    background: radial-gradient(circle,#ffffff 10%,#eef4f7 100%);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 55px;
    transition: transform var(--transition);
}
.product-card:hover .product-image img {
    transform: scale(1.06);
}
.product-placeholder {
    display: none;
    padding: 30px;
    text-align: center;
    color: var(--muted);
}
.product-image.image-placeholder .product-placeholder {
    display: block;
}
.product-placeholder strong {
    display: block;
    color: var(--navy-700);
    font-size: 17px;
}
.product-placeholder small {
    display: block;
    margin-top: 5px;
    font-size: 11px;
}
.product-category {
    color: var(--cyan-dark);
    font-size: 13px;
    font-family: 'Geologica', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
}
.product-card h3 {
    min-height: 35px;
    margin-top: 7px;
    color: var(--navy-900);
    font-size: 15px;
    font-family: 'Geologica', sans-serif;
    line-height: 20px;
}
.product-features {
    min-height: 82px;
    margin: 12px 0 16px;
    padding-left: 17px;
    color: var(--muted);
    font-size: 14px;
    font-family: 'Figtree', sans-serif;
    line-height: 1.75;
    letter-spacing: 0.5px;
}
.product-prices {
    margin-top: auto;
}
.old-price {
    color: #8a94a1;
    font-size: 13px;
    font-family: 'Figtree', sans-serif;
    text-decoration: line-through;
}
.current-price {
    margin-top: 2px;
    color: var(--cyan-dark);
    font-size: 26px;
    font-weight: 700;
    font-family: 'Geologica', sans-serif;
    letter-spacing: 0px;
}
.current-price small {
    font-size: 11px;
    letter-spacing: 0;
}
.product-button {
    width: 100%;
    margin-top: 14px;
}

@media (max-width: 1024px) {
    .product-image {height: 450px;}
    .product-card h3 {font-size: 20px;}
    .product-image img {height: inherit;}
}
@media (max-width: 768px) {
    .product-card h3 {line-height: 23px;}
}
@media (max-width: 595px) {
    .product-button {margin-top:25px;}
}
@media (max-width: 425px) {
    .product-card h3 {line-height: 22px;font-size: 18px;}
}
@media (max-width: 395px) {
    .product-card h3 {font-size: 15px;line-height: 19px;}
    .product-features {font-size: 13px;}
}

/* seccion-banner */
.anniversary-banner {
    position: relative;
    overflow: hidden;
    color: white;
    background:radial-gradient(circle at 80% 50%,rgba(0,216,204,.16),transparent 35%),var(--navy-900);
}
.banner-pattern {
    position: absolute;
    inset: 0;
    opacity: .25;
    background-image:
        linear-gradient(135deg, transparent 48%, rgba(0,216,204,.3) 49%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(23,105,255,.3) 49%, transparent 50%);
    background-size: 100px 100px;
}
.banner-content {
    position: relative;
    z-index: 2;
    min-height: 220px;
    display: grid;
    grid-template-columns: 75px 1fr auto;
    align-items: center;
    gap: 25px;
}
.banner-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,216,204,.55);
    border-radius: 20px;
    color: var(--cyan);
    font-size: 29px;
}
.banner-content p {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    font-family: 'Geologica', sans-serif;
}
.banner-content h2 {
    margin-top: 10px;
    font-size: clamp(28px, 4vw, 45px);
    font-weight: 100;
    font-family: 'Rammetto One', sans-serif;
}
.banner-validity {
    min-width: 230px;
    padding-left: 30px;
    border-left: 1px solid rgba(255,255,255,.14);
}
.banner-validity span, .banner-validity strong, .banner-validity small {
    display: block;
}
.banner-validity span {
    color: rgba(255,255,255,.55);
    font-family: 'Geologica', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}
.banner-validity strong {
    margin-top: 3px;
    color: var(--cyan);
    font-size: 30px;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
}
.banner-validity small {
    margin-top: 2px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .banner-content h2 {line-height: 50px;}
}
@media (max-width: 595px) {
    .banner-content p {font-size:11px;}
    .banner-content h2 {font-size:25px;}
    .banner-validity span {font-size:10px;}
    .banner-validity strong {font-size:25px;}
    .banner-validity small {font-size:13px;}
}
@media (max-width: 425px) {
    .banner-content p {font-size: 11px;}
    .banner-content h2 {line-height: 30px;}
    .banner-validity strong {font-size: 20px;}
}

/* seccion-contacto */
.cta-section {
    padding: 100px 0;
    background: white;
}
.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.cta-content h2 {
    margin-top: 10px;
    color: var(--navy-900);
    font-size: clamp(40px, 5vw, 65px);
    line-height: 70px;
    letter-spacing: -3px;
    font-family: 'Geologica', sans-serif;
    font-weight: 800;
}
.cta-content h2 span {
    color: var(--cyan-dark);
}
.cta-description {
    max-width: 600px;
    margin-top: 20px;
    color: #000000;
    font-family: 'Geologica', sans-serif;
    letter-spacing: 0.2px;
    font-size: 16px;
    font-weight: 200;
    line-height: 23px;
}
.cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 1024px) {
    .cta-content h2 {line-height: 55px;}
}
@media (max-width: 768px) {
    .cta-content h2 {line-height: 45px;letter-spacing:-1px;}
}
@media (max-width: 595px) {
    .cta-description {font-size:14px; line-height: 19px;}
}
@media (max-width: 425px) {
    .cta-content h2 {line-height: 38px; font-size: clamp(35px, 5vw, 65px);}
    .cta-description {font-size: 14px; line-height: 18px;}
}
@media (max-width: 395px) {
    .cta-content h2 {line-height: 33px;font-size: 30px;}
    .cta-description {font-size: 12px;line-height: 15px;}
}

/* animaciones */
@keyframes productFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-13px);
    }
}
@keyframes pulseRing {
    0%, 100% {
        transform: scale(.96);
        opacity: .65;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* responsive-general */
@media (max-width: 1180px) {
    .hero-content {
        grid-template-columns: 190px 1fr 320px;
    }
    .anniversary-number {
        font-size: 120px;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 900px) {
    .main-nav,
    .nav-cta {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .main-nav.open {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 24px 25px;
        background: rgba(2,11,25,.98);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .main-nav.open a {
        padding: 13px 0;
    }
    .hero-content {
        grid-template-columns: 1fr 300px;
    }
    .anniversary-badge {
        grid-column: 1 / -1;
    }
    .hero-product {
        grid-column: 2;
        grid-row: 2;
    }
    .hero-title {
        grid-column: 1;
        grid-row: 2;
    }
    .benefits-section .section-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit:nth-child(2) {
        border-right: 0;
    }
    .benefit:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
    .banner-content {
        grid-template-columns: 65px 1fr;
        padding: 35px 0;
    }
    .banner-validity {
        grid-column: 2;
        padding-left: 0;
        border-left: 0;
    }
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions {
        flex-direction: row;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 680px) {
    .section-container, .nav-container, .hero-content {
        width: min(calc(100% - 32px), var(--max-width));
    }
    .hero {
        min-height: auto;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 65px 0;
    }
    .anniversary-badge {
        justify-content: center;
    }
    .anniversary-number {
        font-size: 105px;
        letter-spacing: -7px;
    }
    .anniversary-copy {
        font-size: 15px;
    }
    .hero-title {
        text-align: center;
    }
    .hero-title h1 {
        font-size: clamp(54px, 16vw, 76px);
        letter-spacing: -3px;
        line-height: 80px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-product {
        min-height: 320px;
        margin-top: 15px;
    }
    .hero-product-ring {
        width: 260px;
        height: 260px;
    }
    .hero-floating-card {
        right: 3%;
    }
    .benefits-section .section-container {
        grid-template-columns: 1fr;
    }
    .benefit, .benefit:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .benefit:last-child {
        border-bottom: 0;
    }
    .offers-section, .cta-section {
        padding: 70px 0;
    }
    .section-heading {
        display: block;
    }
    .section-heading > p {
        margin-top: 18px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-image {
        height: 260px;
    }
    .banner-content {
        display: block;
        padding: 45px 0;
    }
    .banner-icon {
        margin-bottom: 20px;
    }
    .banner-validity {
        margin-top: 25px;
    }
    .cta-actions {
        width: 100%;
        flex-direction: column;
    }
    .cta-actions .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom .section-container {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        display: block;
    }
    .footer-bottom .section-container span {
        display: block;
    }
    .footer-bottom .section-container span + span {
        margin-top: 5px;
    }
}

@media (max-width: 395px) {
    .hero-title h1 {line-height: 63px;}
}

/* accesibilidad */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* popup */
.anniversary-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: opacity 320ms ease, visibility 320ms ease;
}
.anniversary-popup.is-visible {
    visibility: visible;
    opacity: 1;
}
.anniversary-popup * {
    box-sizing: border-box;
}
.anniversary-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 7, 18, .80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.anniversary-popup__dialog {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 38px;
    border: 1px solid rgba(0,216,204,.28);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 5%, rgba(0,216,204,.20), transparent 30%),
        linear-gradient(135deg, #04152d, #020b19);
    box-shadow: 0 40px 100px rgba(0,0,0,.48);
    transform: translateY(25px) scale(.97);
    transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.anniversary-popup.is-visible .anniversary-popup__dialog {
    transform: translateY(0) scale(1);
}
.anniversary-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.06);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform .28s ease, background .28s ease;
}
.anniversary-popup__close:hover {
    transform: rotate(90deg);
    background: rgba(0,216,204,.16);
}
.anniversary-popup__tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border: 1px solid rgba(0,216,204,.34);
    border-radius: 999px;
    color: #00d8cc;
    background: rgba(0,216,204,.07);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}
.anniversary-popup__dialog h2 {
    max-width: 680px;
    margin: 0;
    padding-right: 46px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    letter-spacing: -2px;
}
.anniversary-popup__dialog h2 span {
    display: block;
    color: #00d8cc;
}
.anniversary-popup__intro {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.65;
}
.anniversary-popup__products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-top: 28px;
}
.popup-product {
    min-width: 0;
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 13px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    background: rgba(255,255,255,.055);
}
.popup-product__image {
    height: 80px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}
.popup-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
}
.popup-product__discount {
    color: #00d8cc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.popup-product h3 {
    margin: 4px 0 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.3;
}
.popup-product__price {
    margin-top: 7px;
    color: #00d8cc;
    font-size: 17px;
    font-weight: 900;
}
.anniversary-popup__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
}
.anniversary-popup__footer small {
    color: rgba(255,255,255,.42);
    font-size: 10px;
}
body.popup-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .anniversary-popup__products {
        grid-template-columns: 1fr;
    }
    .popup-product {
        grid-template-columns: 95px 1fr;
    }
}
@media (max-width: 680px) {
    .anniversary-popup {
        align-items: flex-end;
        padding: 12px;
    }
    .anniversary-popup__dialog {
        max-height: 92vh;
        padding: 28px 18px 22px;
        border-radius: 24px 24px 16px 16px;
    }
    .anniversary-popup__dialog h2 {
        font-size: 34px;
    }
    .anniversary-popup__footer {
        align-items: stretch;
        flex-direction: column;
    }
    .anniversary-popup__footer .btn {
        width: 100%;
    }
}