/* =========================================================
   ADEKUNLE PORTFOLIO
   Global Design System
========================================================= */

:root {
    --bg: #09090b;
    --bg-soft: #0f1013;
    --surface: #121318;
    --surface-2: #17191f;

    --text: #f4f4f5;
    --muted: #9a9ca5;
    --subtle: #656873;

    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);

    --accent: #6ea8ff;
    --accent-soft: rgba(110, 168, 255, 0.12);

    --max-width: 1180px;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --mono: "DM Mono", monospace;
    --sans: "Manrope", system-ui, sans-serif;

    --transition-fast: 180ms ease;
    --transition: 300ms ease;
    --transition-slow: 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.3;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 64px 64px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );

    z-index: -2;
}

body::after {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");

    z-index: -1;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

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

::selection {
    background: var(--accent);
    color: var(--bg);
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin-inline: auto;
}

.section {
    padding: 132px 0;
}

.eyebrow {
    margin: 0 0 22px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.4;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.status-dot {
    display: inline-block;

    width: 6px;
    height: 6px;

    margin-right: 8px;

    border-radius: 50%;

    background: #7bd88f;

    box-shadow:
        0 0 0 5px rgba(123, 216, 143, 0.08);
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.scroll-progress {
    position: fixed;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--accent);

    z-index: 1000;
}


/* =========================================================
   CURSOR GLOW
========================================================= */

.cursor-glow {
    position: fixed;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    opacity: 0.08;

    background:
        radial-gradient(
            circle,
            var(--accent),
            transparent 66%
        );

    transform: translate(-50%, -50%);
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
    position: fixed;

    inset: 0 0 auto;

    z-index: 100;

    background:
        rgba(9, 9, 11, 0.72);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid transparent;

    transition:
        border-color var(--transition);
}

.site-header.scrolled {
    border-color: var(--line);
}

.nav {
    min-height: 76px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: var(--mono);

    font-size: 0.86rem;
    font-weight: 500;

    letter-spacing: 0.14em;
}

.brand span {
    color: var(--accent);
}

.nav-menu {
    display: flex;

    align-items: center;

    gap: 28px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.72rem;
}

.nav-menu a {
    transition:
        color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text);
}

.nav-resume {
    padding: 10px 14px;

    border:
        1px solid var(--line-strong);

    border-radius: 999px;

    color: var(--text) !important;

    transition:
        border-color var(--transition),
        background var(--transition);
}

.nav-resume:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background: transparent;

    color: var(--text);

    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 1px;

    background: var(--text);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100svh;

    display: grid;

    align-items: center;

    padding-top: 100px;
}
.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);

    gap: 100px;

    align-items: center;
}

.hero h1 {
    max-width: 900px;

    margin: 0;

    font-size:
        clamp(
            3.8rem,
            8vw,
            7.8rem
        );

    line-height: 0.94;

    letter-spacing: -0.075em;

    font-weight: 700;
}

.hero h1 em {
    color: var(--muted);
    font-style: normal;
}

.hero-description {
    max-width: 620px;

    margin: 34px 0 28px;

    color: var(--muted);

    font-size:
        clamp(
            1rem,
            1.4vw,
            1.16rem
        );

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.button {
    display: inline-flex;

    align-items: center;

    gap: 16px;

    padding: 13px 18px;

    border-radius: 999px;

    font-size: 0.8rem;
    font-weight: 600;

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

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

.button-primary {
    background: var(--text);
    color: var(--bg);
}

.button-primary:hover {
    background: #ffffff;
}

.button-ghost {
    border:
        1px solid var(--line-strong);

    color: var(--text);
}

.button-ghost:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.hero-stack {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 52px;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.66rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.hero-stack i {
    color: var(--accent);

    font-style: normal;
}


/* =========================================================
   HERO TERMINAL
========================================================= */

.hero-aside {
    padding-bottom: 0;
    transform: translateY(10px);
}

.terminal-card {
    overflow: hidden;

    border:
        1px solid var(--line);

    border-radius: var(--radius-md);

    background:
        rgba(18, 19, 24, 0.72);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.24);
}

.terminal-top {
    height: 44px;
    display: flex;

    align-items: center;

    gap: 6px;

    padding: 0 12px;

    border-bottom:
        1px solid var(--line);
}

.terminal-top > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #353740;
}

.terminal-top small {
    margin-inline: auto;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.6rem;
}

.terminal-body {
    padding: 30px;

    font-family: var(--mono);
    font-size: 0.68rem;

    line-height: 1.8;
}

.terminal-body p {
    margin: 0;
}

.prompt {
    margin-right: 8px;

    color: var(--accent);
}

.terminal-value {
    margin-bottom: 11px !important;

    color: #d8d9de;
}

.online {
    color: #7bd88f;
}

.hero-note {
    margin: 16px 2px 0;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.65rem;

    line-height: 1.6;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 64px;
}

.section-heading h2,
.split-section h2,
.github-card h2,
.contact h2 {
    margin: 0;

    font-size:
        clamp(
            2.8rem,
            5.6vw,
            5.7rem
        );

    line-height: 0.98;

    letter-spacing: -0.065em;

    font-weight: 700;
}

.section-heading h2 em,
.split-section h2 em,
.github-card h2 em,
.contact h2 em {
    color: var(--muted);

    font-style: normal;
}

.section-intro {
    max-width: 300px;

    margin: 0;

    color: var(--muted);

    font-size: 0.88rem;

    line-height: 1.8;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {
    border-top:
        1px solid var(--line);
}

.project {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, 0.75fr);

    gap: 58px;

    align-items: center;

    padding: 70px 0;

    border-bottom:
        1px solid var(--line);
}

.project:nth-child(even) {
    grid-template-columns:
        minmax(300px, 0.75fr)
        minmax(0, 1.45fr);
}

.project:nth-child(even) .project-visual {
    order: 2;
}

.project-visual {
    min-width: 0;
}


/* =========================================================
   PROJECT VISUAL PLACEHOLDER
========================================================= */

.project-placeholder {
    min-height: 430px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
    justify-content: space-between;

    padding: 28px;

    border:
        1px solid var(--line-strong);

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            135deg,
            #12141a,
            #0d0e11
        );

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.3);

    transition:
        transform var(--transition-slow),
        border-color var(--transition);
}

.project:hover .project-placeholder {
    transform: translateY(-6px);

    border-color:
        rgba(110, 168, 255, 0.3);
}

.project-placeholder span {
    color: var(--accent);

    font-family: var(--mono);
    font-size: 0.65rem;
}

.project-placeholder p {
    margin: 0;

    font-size:
        clamp(
            2rem,
            5vw,
            5rem
        );

    font-weight: 700;

    line-height: 0.9;

    letter-spacing: -0.07em;
}


/* =========================================================
   PROJECT IMAGES
========================================================= */

.project-image {
    overflow: hidden;

    border:
        1px solid var(--line-strong);

    border-radius: var(--radius-md);

    background: var(--surface);

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.3);

    transition:
        transform var(--transition-slow),
        border-color var(--transition);
}

.project-image img {
    width: 100%;
    height: auto;

    display: block;

    transition:
        transform 700ms cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}

.project:hover .project-image {
    transform: translateY(-6px);

    border-color:
        rgba(110, 168, 255, 0.3);
}

.project:hover .project-image img {
    transform: scale(1.02);
}

/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {
    align-self: center;
}

.project-meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 16px;

    margin-bottom: 20px;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.6rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.project-info h3 {
    margin: 0;

    font-size:
        clamp(
            2rem,
            4vw,
            4rem
        );

    line-height: 1;

    letter-spacing: -0.06em;
}

.project-info > p {
    margin: 22px 0;

    color: var(--muted);

    font-size: 0.88rem;

    line-height: 1.8;
}

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.tags span {
    padding: 6px 9px;

    border:
        1px solid var(--line);

    border-radius: 999px;

    color: #b9bbc3;

    font-family: var(--mono);
    font-size: 0.59rem;
}

.project-links {
    display: flex;

    gap: 20px;

    margin-top: 24px;
}

.project-links a {
    padding-bottom: 4px;

    border-bottom:
        1px solid var(--line-strong);

    color: var(--text);

    font-family: var(--mono);
    font-size: 0.65rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.project-links a:hover {
    color: var(--accent);

    border-color: var(--accent);
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    border-top:
        1px solid var(--line);
}

.split-section {
    display: grid;

    grid-template-columns:
        minmax(180px, 0.65fr)
        minmax(0, 1.35fr);

    gap: 80px;
}

.section-label {
    padding-top: 16px;

    border-top:
        1px solid var(--line-strong);
}

.big-number {
    display: block;

    margin-top: 70px;

    color: #1b1d22;

    font-size:
        clamp(
            6rem,
            14vw,
            12rem
        );

    line-height: 0.8;

    letter-spacing: -0.09em;

    font-weight: 800;
}

.section-label small {
    display: block;

    margin-top: 25px;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.58rem;
}

.about-copy {
    max-width: 750px;
}

.about-copy h2 {
    margin-bottom: 42px;
}

.about-copy p {
    max-width: 650px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.95;
}

.about-copy .lead {
    color: var(--text);

    font-size: 1.25rem;

    line-height: 1.7;
}

.about-facts {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;

    padding-top: 20px;

    border-top:
        1px solid var(--line);
}

.about-facts small {
    display: block;

    margin-bottom: 8px;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.57rem;

    text-transform: uppercase;
}

.about-facts strong {
    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================================================
   STACK
========================================================= */

.stack {
    border-top:
        1px solid var(--line);
}

.stack-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid var(--line);

    border-left:
        1px solid var(--line);
}

.stack-group {
    min-height: 310px;

    position: relative;

    padding: 24px;

    border-right:
        1px solid var(--line);

    border-bottom:
        1px solid var(--line);
}

.stack-index {
    color: var(--accent);

    font-family: var(--mono);
    font-size: 0.58rem;
}

.stack-group h3 {
    margin: 100px 0 20px;

    font-size: 1.2rem;

    letter-spacing: -0.03em;
}

.stack-group p {
    margin: 0;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.75rem;

    line-height: 2;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    border-top:
        1px solid var(--line);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top:
        1px solid var(--line);
}

.process-item {
    min-height: 230px;

    margin-right: 24px;

    padding: 24px 24px 20px 0;

    border-right:
        1px solid var(--line);
}

.process-item:last-child {
    margin-right: 0;

    border-right: 0;
}

.process-item > span {
    color: var(--accent);

    font-family: var(--mono);
    font-size: 0.6rem;
}

.process-item h3 {
    margin: 80px 0 14px;

    font-size: 1.2rem;
}

.process-item p {
    max-width: 230px;

    margin: 0;

    color: var(--muted);

    font-size: 0.78rem;

    line-height: 1.75;
}


/* =========================================================
   GITHUB
========================================================= */

.github-section {
    border-top:
        1px solid var(--line);
}

.github-card {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    padding: 60px;

    border:
        1px solid var(--line-strong);

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            #111319,
            #0d0e11
        );
}

.github-card p:not(.eyebrow) {
    max-width: 470px;

    margin: 25px 0 0;

    color: var(--muted);
}

.round-link {
    width: 145px;
    height: 145px;

    flex-shrink: 0;

    display: grid;

    place-content: center;

    border:
        1px solid var(--line-strong);

    border-radius: 50%;

    text-align: center;

    font-family: var(--mono);
    font-size: 0.65rem;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.round-link span {
    margin-left: 5px;

    color: var(--accent);
}

.round-link:hover {
    color: var(--bg);

    background: var(--text);

    transform: rotate(-6deg);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    border-top:
        1px solid var(--line);
}

.contact-inner {
    padding:
        70px 0
        30px;

    text-align: center;
}

.contact h2 {
    font-size:
        clamp(
            4rem,
            10vw,
            9.5rem
        );
}

.contact-inner > p:not(.eyebrow) {
    margin: 30px 0;

    color: var(--muted);

    font-size: 1rem;
}

.email-link {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 8px;

    border-bottom:
        1px solid var(--line-strong);

    color: var(--text);

    font-family: var(--mono);

    font-size:
        clamp(
            0.9rem,
            2vw,
            1.15rem
        );

    transition:
        color var(--transition),
        border-color var(--transition);
}

.email-link:hover {
    color: var(--accent);

    border-color: var(--accent);
}

.contact-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    margin-top: 45px;

    color: var(--muted);

    font-family: var(--mono);
    font-size: 0.63rem;
}

.contact-links a {
    transition:
        color var(--transition-fast);
}

.contact-links a:hover {
    color: var(--text);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 24px 0;

    border-top:
        1px solid var(--line);
}

.footer-inner {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;
}

.footer-inner p {
    margin: 0;

    color: var(--subtle);

    font-family: var(--mono);
    font-size: 0.55rem;
}

.footer-inner p:nth-child(2) {
    text-align: center;
}

.footer-inner p:last-child {
    text-align: right;
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity 0.8s ease,
        transform
            0.8s
            cubic-bezier(
                0.2,
                0.7,
                0.2,
                1
            );
}

.reveal.visible {
    opacity: 1;

    transform: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        max-width: 620px;
    }

    .project,
    .project:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project:nth-child(even) .project-visual {
        order: 0;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .big-number {
        margin-top: 10px;
    }

    .stack-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process-item:nth-child(2) {
        margin-right: 0;

        border-right: 0;
    }

    .process-item:nth-child(n + 3) {
        padding-top: 24px;

        border-top:
            1px solid var(--line);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {

    .container {
        width:
            min(
                calc(100% - 32px),
                var(--max-width)
            );
    }

    .section {
        padding: 90px 0;
    }


    /* Navigation */

    .nav {
        min-height: 68px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;

        top: 68px;

        left: 16px;
        right: 16px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 18px;

        border:
            1px solid var(--line);

        border-radius: var(--radius-md);

        background:
            rgba(14, 15, 18, 0.96);

        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.4);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 11px 10px;
    }

    .nav-resume {
        margin-top: 6px;

        text-align: center;
    }


    /* Hero */

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size:
            clamp(
                3.4rem,
                15vw,
                5.3rem
            );
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stack {
        margin-top: 36px;
    }


    /* Headings */

    .section-heading {
        display: block;

        margin-bottom: 45px;
    }

    .section-intro {
        margin-top: 25px;
    }


    /* Projects */

    .project {
        padding: 48px 0;
    }

    .project-placeholder {
        min-height: 280px;
    }

    .project-info h3 {
        font-size: 2.5rem;
    }

    .project-meta {
        font-size: 0.52rem;
    }


    /* About */

    .split-section {
        gap: 35px;
    }

    .about-copy h2,
    .section-heading h2,
    .github-card h2 {
        font-size: 3.2rem;
    }

    .about-copy .lead {
        font-size: 1.05rem;
    }

    .about-facts {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* Stack */

    .stack-grid {
        grid-template-columns: 1fr;
    }

    .stack-group {
        min-height: 220px;
    }

    .stack-group h3 {
        margin:
            55px 0
            14px;
    }


    /* Process */

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item,
    .process-item:nth-child(2) {
        margin-right: 0;

        border-right: 0;
    }

    .process-item:nth-child(n + 2) {
        padding-top: 24px;

        border-top:
            1px solid var(--line);
    }

    .process-item h3 {
        margin-top: 45px;
    }


    /* GitHub */

    .github-card {
        display: block;

        padding: 32px;
    }

    .round-link {
        width: 110px;
        height: 110px;

        margin-top: 35px;
    }


    /* Contact */

    .contact h2 {
        font-size:
            clamp(
                3.7rem,
                16vw,
                6rem
            );
    }

    .email-link {
        font-size: 0.72rem;
    }


    /* Footer */

    .footer-inner {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .footer-inner p,
    .footer-inner p:nth-child(2),
    .footer-inner p:last-child {
        text-align: left;
    }


    /* Cursor */

    .cursor-glow {
        display: none;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}