:root {
    --navy: #061936;
    --navy-2: #0a2f5f;
    --blue: #1399dc;
    --blue-2: #0e6fb8;
    --orange: #ff9f13;
    --green: #2f8b32;
    --ink: #071425;
    --muted: #5d6a7c;
    --line: #dbe3ee;
    --paper: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(6, 25, 54, .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 86px;
    padding: 8px clamp(18px, 4vw, 52px);
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
    background: rgba(6, 25, 54, .94);
    box-shadow: 0 16px 38px rgba(6, 25, 54, .25);
    backdrop-filter: blur(16px);
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(118px, 13vw, 178px);
    height: 70px;
    min-width: 0;
}

.brand img {
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(10px);
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .22));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 13px;
    color: rgba(255, 255, 255, .86);
    border-radius: 4px;
    font-size: .93rem;
    font-weight: 750;
}

.site-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .11);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 4px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(19, 153, 220, .2), rgba(255, 159, 19, .13));
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 159, 19, .7);
    background: linear-gradient(135deg, rgba(19, 153, 220, .34), rgba(255, 159, 19, .28));
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.section {
    padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-field {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(6, 25, 54, .94), rgba(8, 47, 95, .88)),
        radial-gradient(circle at 82% 20%, rgba(19, 153, 220, .45), transparent 34%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 2px, transparent 2px 110px),
        linear-gradient(180deg, #123e2e, #061936);
}

.section-field::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .2;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .9) 50%, transparent calc(50% + 1px)),
        radial-gradient(circle at 50% 50%, transparent 0 90px, rgba(255, 255, 255, .9) 91px 93px, transparent 94px),
        linear-gradient(0deg, transparent 16%, rgba(255, 255, 255, .75) 16.2%, transparent 16.5%, transparent 83.5%, rgba(255, 255, 255, .75) 83.8%, transparent 84%);
    pointer-events: none;
}

.hero {
    min-height: 100vh;
    padding-top: 128px;
    padding-right: clamp(18px, 5vw, 70px);
    padding-bottom: 28px;
    padding-left: clamp(18px, 5vw, 70px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
    max-width: 1220px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(2.32rem, 5.6vw, 5.52rem);
    line-height: .9;
    letter-spacing: 0;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    line-height: 1.15;
}

.hero-text {
    max-width: 670px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 19px;
    border: 0;
    border-radius: 4px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #111827;
    background: linear-gradient(135deg, #ffc14a, var(--orange));
    box-shadow: 0 15px 32px rgba(255, 159, 19, .28);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
}

.hero-visual {
    position: relative;
    min-height: 590px;
}

.hero-logo {
    position: absolute;
    z-index: 4;
    top: 28px;
    right: calc(4% + 160px);
    width: min(34.4vw, 291px);
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, .28));
}

.player-stack {
    position: absolute;
    inset: 145px 0 0 0;
}

.player-stack img {
    position: absolute;
    z-index: 2;
    width: 62%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, .85);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.player-stack img:first-child {
    right: 0;
    top: 0;
}

.player-stack img:last-child {
    left: 0;
    bottom: -40px;
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1220px;
    margin: 56px auto 0;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .16);
}

.hero-stats div {
    padding: 22px;
    background: rgba(6, 25, 54, .58);
    backdrop-filter: blur(8px);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 1.12rem;
    text-transform: uppercase;
}

.hero-stats span {
    color: rgba(255, 255, 255, .7);
}

.section-heading {
    max-width: 940px;
    margin: 0 auto 42px;
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    align-items: end;
    gap: 28px;
    max-width: 1220px;
}

.section-heading-row > p {
    color: var(--muted);
    font-size: 1.06rem;
}

.about-grid,
.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
    gap: 28px;
    max-width: 1160px;
    margin: 0 auto;
}

.about-copy {
    color: #223145;
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.principles {
    display: grid;
    gap: 14px;
}

.about-media {
    position: relative;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: end;
    gap: 18px;
    margin-top: 30px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(10, 47, 95, .12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(6, 25, 54, .94), rgba(10, 47, 95, .88)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 38px);
    color: var(--white);
    box-shadow: 0 16px 42px rgba(6, 25, 54, .14);
}

.about-media::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -34px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.about-media img {
    position: relative;
    z-index: 1;
    width: 150px;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .75);
    border-radius: 6px;
}

.about-media div {
    position: relative;
    z-index: 1;
}

.about-media strong,
.about-media span {
    display: block;
}

.about-media strong {
    margin-bottom: 6px;
    color: var(--orange);
    text-transform: uppercase;
}

.about-media span {
    color: rgba(255, 255, 255, .78);
}

.principles article,
.service-card,
.timeline article {
    border: 1px solid rgba(10, 47, 95, .12);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(6, 25, 54, .06);
}

.principles article {
    padding: 20px;
}

.principles span,
.service-card span,
.timeline span,
.athlete-info span {
    color: var(--blue-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.principles p,
.service-card p,
.timeline p,
.athlete-info p {
    margin-bottom: 0;
    color: var(--muted);
}

.section-dark {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(6, 25, 54, .98), rgba(10, 47, 95, .96)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 12px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    max-width: 1220px;
    margin: 0 auto;
}

.services-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    max-width: 1220px;
    margin: 0 auto 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(19, 153, 220, .16), rgba(255, 159, 19, .11)),
        rgba(255, 255, 255, .06);
}

.services-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, .16) 50%, transparent calc(50% + 1px)),
        radial-gradient(circle at 72% 50%, transparent 0 92px, rgba(255, 255, 255, .16) 93px 95px, transparent 96px);
    pointer-events: none;
}

.services-feature img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.services-feature div {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 28px 28px 28px 0;
}

.services-feature span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.services-feature p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.18rem;
}

.service-card {
    min-height: 238px;
    padding: 24px 20px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
    border-color: rgba(255, 255, 255, .14);
}

.service-card span {
    color: var(--orange);
}

.service-card p {
    color: rgba(255, 255, 255, .7);
}

.athlete-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1220px;
    margin: 0 auto;
}

.athlete-card {
    position: relative;
    aspect-ratio: 3 / 4;
    min-height: 0;
    overflow: hidden;
    border-radius: 6px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.athlete-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.athlete-card:hover img {
    transform: scale(1.045);
}

.athlete-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(6, 25, 54, .92));
}

.athlete-info {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px;
    color: var(--white);
}

.athlete-info span {
    color: var(--orange);
}

.athlete-info h3 {
    margin-bottom: 0;
}

.athlete-info p {
    color: rgba(255, 255, 255, .72);
}

.timeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1220px;
    margin: 0 auto;
}

.timeline article {
    padding: 26px 22px;
    color: var(--white);
    background: rgba(6, 25, 54, .72);
    border-color: rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
}

.timeline span {
    color: var(--orange);
}

.timeline p {
    color: rgba(255, 255, 255, .7);
}

.contact {
    background:
        linear-gradient(90deg, rgba(245, 248, 252, .96), rgba(245, 248, 252, .86)),
        repeating-linear-gradient(0deg, rgba(19, 153, 220, .07) 0 1px, transparent 1px 24px);
}

.contact-panel {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid rgba(10, 47, 95, .12);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.contact-copy p {
    color: var(--muted);
}

.contact-player {
    width: min(100%, 420px);
    aspect-ratio: 16 / 10;
    margin-top: 28px;
    object-fit: cover;
    border: 5px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(6, 25, 54, .18);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 2px;
}

.contact-list strong {
    color: var(--navy);
    font-size: .78rem;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-list a {
    color: var(--blue-2);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: #263850;
    font-size: .88rem;
    font-weight: 850;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fbfdff;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(19, 153, 220, .14);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.trap {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 24px;
    margin: 0;
    color: var(--green);
    font-weight: 750;
}

.form-status.is-error {
    color: #b42318;
}

.whatsapp-float {
    position: fixed;
    z-index: 30;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 159, 19, .32), transparent 54%),
        #1fb45b;
    box-shadow: 0 18px 36px rgba(6, 25, 54, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 42px rgba(6, 25, 54, .34);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 5vw, 70px);
    color: rgba(255, 255, 255, .74);
    background: #041226;
}

.site-footer img {
    width: 74px;
}

.site-footer p {
    margin: 0;
}

.site-footer nav {
    display: flex;
    gap: 14px;
}

.site-footer a:hover {
    color: var(--white);
}

@media (min-width: 1601px) {
    h1 {
        font-size: clamp(2.13rem, 5.15vw, 5.08rem);
    }
}

@media (min-width: 1281px) and (max-width: 1600px) {
    .brand {
        width: clamp(126px, 10vw, 154px);
    }

    .hero {
        padding-top: 210px;
    }

    h1 {
        font-size: clamp(3.36rem, 4.48vw, 4.48rem);
        line-height: .96;
    }
}

@media (max-width: 1280px) {
    .brand {
        width: clamp(112px, 12vw, 154px);
    }

    .hero {
        padding-top: 158px;
    }

    h1 {
        font-size: clamp(2.24rem, 4.92vw, 4.56rem);
        line-height: .94;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .contact-panel,
    .section-heading-row {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 560px;
    }

    .service-grid,
    .athlete-grid,
    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-nav {
        gap: 2px;
    }

    .site-nav a {
        padding-inline: 9px;
    }
}

@media (max-width: 760px) {
    .site-header {
        gap: 10px;
        min-height: 74px;
        padding: 7px 14px;
    }

    .brand {
        width: 108px;
        height: 58px;
    }

    .brand img {
        top: -10px;
        transform: translateY(6px);
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 74px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 6px;
        background: rgba(6, 25, 54, .97);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 106px;
        padding-bottom: 22px;
    }

    .hero-grid {
        gap: 24px;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2.25rem, 9.8vw, 3.2rem);
        line-height: .96;
    }

    h2 {
        font-size: clamp(1.85rem, 9vw, 3rem);
        line-height: 1.04;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 24px;
    }

    .hero-visual {
        min-height: 320px;
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .hero-logo {
        top: 36px;
        right: 132px;
        width: 206px;
        transform: none;
        opacity: .96;
    }

    .player-stack {
        inset: 108px 0 0 0;
    }

    .player-stack img {
        width: 58%;
        border-width: 3px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .hero-stats div {
        padding: 13px 16px;
    }

    .hero-stats strong {
        font-size: .98rem;
    }

    .hero-stats span {
        font-size: .9rem;
    }

    .hero-stats,
    .service-grid,
    .athlete-grid,
    .timeline {
        grid-template-columns: 1fr;
    }

    .social-links {
        gap: 5px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .about-media,
    .services-feature {
        grid-template-columns: 1fr;
    }

    .services-feature img {
        height: 240px;
    }

    .services-feature div {
        padding: 0 22px 24px;
    }

    .athlete-card {
        aspect-ratio: 4 / 5;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 29px;
        height: 29px;
    }
}

@media (max-width: 460px) {
    .hero-actions,
    .site-footer nav {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .brand {
        width: 96px;
        height: 54px;
    }

    .site-header {
        min-height: 68px;
        padding-inline: 12px;
    }

    .site-nav {
        top: 68px;
        left: 12px;
        right: 12px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .social-links svg {
        width: 17px;
        height: 17px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }

    .hero-visual {
        min-height: 245px;
    }

    .player-stack img {
        width: 64%;
        aspect-ratio: 4 / 4.7;
    }

    .hero-logo {
        display: none;
    }

    .player-stack {
        inset: 0;
    }

    .player-stack img:first-child {
        right: 0;
        top: 0;
    }

    .player-stack img:last-child {
        left: 0;
        bottom: 0;
        width: 58%;
    }

    .hero {
        padding-top: 94px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 22px;
    }

    .hero-stats div {
        padding: 11px 6px;
        text-align: center;
    }

    .hero-stats strong {
        font-size: .72rem;
        line-height: 1.15;
    }

    .hero-stats span {
        display: none;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2rem, 10vw, 2.75rem);
        line-height: .98;
    }

    .eyebrow {
        font-size: .72rem;
    }

    .athlete-card {
        aspect-ratio: 3 / 4;
    }

    .about-media {
        padding: 14px;
    }

    .about-media img {
        width: 100%;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 380px) {
    .brand {
        width: 88px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
    }

    .social-links svg {
        width: 15px;
        height: 15px;
    }

    .hero-visual {
        min-height: 260px;
    }

    .button {
        min-height: 46px;
        padding: 11px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
