/* ═══════════════════════════════════════════════════
   TYPE MEDIA — Snapshot Pre-Registration
   White Minimal Theme. Clean. Sharp. Editorial.
   ═══════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────── */
:root {
    --bg: #ffffff;
    --bg-off: #fafafa;
    --surface: #f5f5f5;
    --surface-2: #eeeeee;
    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);
    --border-strong: rgba(0, 0, 0, 0.15);
    --text: #111111;
    --text-2: #555555;
    --text-3: #999999;
    --accent-soft: rgba(0, 0, 0, 0.04);
    --white: #ffffff;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --max-w: 1140px;
    --nav-h: 60px;
}

/* ── Reset ──────────────────────────────────────── */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-h) + 24px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ── Focus ──────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--text);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    transform: translateY(-200%);
    transition: transform var(--transition);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ── Container ──────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Nav ────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    animation: navDrop 0.6s var(--ease-out-expo) backwards;
}

@keyframes navDrop {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--nav-h);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    flex-shrink: 0;
}
.nav-brand img { height: 28px; width: 28px; border-radius: 6px; }

.nav-links { display: flex; gap: 4px; }
.nav-link {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.3px;
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--text); background: var(--accent-soft); }

.nav-right { display: flex; align-items: center; gap: 4px; }

.nav-home {
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.3px;
    transition: color var(--transition), background var(--transition);
}
.nav-home:hover { color: var(--text); background: var(--accent-soft); }

.nav-social {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-3);
    transition: color var(--transition), background var(--transition);
}
.nav-social:hover { color: var(--text); background: var(--accent-soft); }

.nav-toggle {
    display: none;
    width: 34px;
    height: 34px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 16px 24px;
    display: none;
    flex-direction: column;
    gap: 2px;
    border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-link {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-2);
}
.mobile-link:hover { color: var(--text); background: var(--accent-soft); }
.mobile-socials {
    display: flex;
    gap: 20px;
    padding: 14px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
}
.mobile-socials a { font-size: 13px; color: var(--text-3); }
.mobile-socials a:hover { color: var(--text); }

@media (max-width: 880px) {
    .nav-links,
    .nav-home,
    .nav-social { display: none; }
    .nav-toggle { display: flex; }
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: opacity var(--transition), transform var(--transition), border-color var(--transition);
}
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-outline:hover { border-color: var(--text); }

/* Arrows move the way they point, so hover confirms where the link goes. */
.arrow-down,
.arrow-out {
    display: inline-block;
    transition: transform var(--transition);
}
.btn:hover .arrow-down { transform: translateY(3px); }
.nav-home:hover .arrow-out { transform: translate(2px, -2px); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-h) + 72px) 24px 80px;
}
.hero-content {
    text-align: center;
    max-width: 660px;
    width: 100%;
}

.eyebrow {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-2);
    margin-bottom: 36px;
}

.hero-logo {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    border-radius: 20px;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 6vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

/* Each line rises out of its own mask. Padding + negative margin keep
   the descenders in "Register" and "snapshot" from being clipped. */
.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.14em;
    margin-bottom: -0.14em;
}
.hero-line > span {
    display: block;
    transform: translateY(110%);
    animation: lineUp 0.85s var(--ease-out-expo) forwards;
    animation-delay: var(--d, 0s);
}

.hero-sub {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 460px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

/* ── Hero load sequence ─────────────────────────
   Runs from CSS alone, so it plays even if main.js
   never loads. Order: eyebrow → logo → title lines →
   sub → buttons → the rail drawing itself. */
.hero-anim,
.hero-pop {
    opacity: 0;
    animation-duration: 0.7s;
    animation-timing-function: var(--ease-out-expo);
    animation-fill-mode: forwards;
    animation-delay: var(--d, 0s);
}
.hero-anim { animation-name: fadeUp; }
.hero-pop { animation-name: popIn; }

@keyframes lineUp {
    to { transform: translateY(0); }
}
@keyframes popIn {
    from { opacity: 0; transform: scale(0.86); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes drawX {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@keyframes drawY {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
@keyframes dotIn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

/* ── Phase rail (signature) ─────────────────────── */
.phases {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
.phases::before {
    content: '';
    position: absolute;
    left: 16.667%;
    right: 16.667%;
    top: 44px;
    height: 1px;
    background: var(--border-strong);
    transform-origin: left center;
    animation: drawX 0.9s var(--ease-out-expo) 0.58s backwards;
}

.phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 8px;
    opacity: 0;
    animation: fadeUp 0.6s var(--ease-out-expo) forwards;
}
.phase:nth-child(1) { animation-delay: 0.74s; }
.phase:nth-child(2) { animation-delay: 0.86s; }
.phase:nth-child(3) { animation-delay: 0.98s; }

.phase-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--border-strong);
    box-shadow: 0 0 0 5px var(--bg);
    flex-shrink: 0;
    animation: dotIn 0.5s var(--ease-out-expo) backwards;
}
.phase:nth-child(1) .phase-dot { animation-delay: 0.78s; }
.phase:nth-child(2) .phase-dot { animation-delay: 0.9s; }
.phase:nth-child(3) .phase-dot { animation-delay: 1.02s; }
.phase.is-current .phase-dot {
    background: var(--text);
    border-color: var(--text);
}
.phase.is-current .phase-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--text);
    opacity: 0;
    /* Starts only once the rail has finished drawing. */
    animation: pulse 2.4s var(--ease-out-expo) 1.6s infinite;
}

.phase-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: -0.1px;
}
.phase.is-current .phase-name { color: var(--text); }

.phase-state {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-3);
    text-transform: uppercase;
    margin-top: -8px;
}
.phase.is-current .phase-state { color: var(--text-2); }

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.9); }
    70%, 100% { opacity: 0; transform: scale(2.1); }
}

/* ── Section furniture ──────────────────────────── */
.section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-3);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 48px;
}

/* ── How it works ───────────────────────────────── */
.how {
    padding: 88px 0 100px;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}

.step {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.step.is-current { border-color: var(--text); }

.step-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 3px 9px;
    border-radius: 100px;
    background: var(--surface);
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.step.is-current .step-tag { background: var(--text); color: var(--white); }

.step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    padding-right: 72px;
}
.step p {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
}

/* ── Eligibility ────────────────────────────────── */
.rules {
    padding: 100px 0;
    text-align: center;
}
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    text-align: left;
}
.rules-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}
.rules-text p {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}
.rules-text p:last-child { margin-bottom: 0; }
.rules-text strong { color: var(--text); font-weight: 600; }
.rules-text a {
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid var(--border-strong);
    transition: border-color var(--transition);
}
.rules-text a:hover { border-color: var(--text); }

.rules-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.info-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}
.info-card-icon {
    transition: transform 0.35s var(--ease-out-expo);
}
.info-card:hover .info-card-icon { transform: scale(1.15) rotate(-6deg); }
.info-card-icon { font-size: 20px; line-height: 1; margin-bottom: 12px; }
.info-card h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 6px;
}
.info-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── FAQ ────────────────────────────────────────── */
.faq {
    padding: 88px 0 100px;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item[open] { border-color: var(--border-strong); }

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    cursor: pointer;
    list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }

.faq-chevron {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-right: 1.5px solid var(--text-3);
    border-bottom: 1.5px solid var(--text-3);
    transform: translateY(-2px) rotate(45deg);
    transition: transform var(--transition), border-color var(--transition);
}
.faq-item[open] .faq-chevron {
    transform: translateY(1px) rotate(-135deg);
    border-color: var(--text);
}

.faq-a {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 58ch;
}
.faq-a a {
    color: var(--text);
    font-weight: 600;
    border-bottom: 1px solid var(--border-strong);
    transition: border-color var(--transition);
}
.faq-a a:hover { border-color: var(--text); }

/* Smooth open where supported; instant elsewhere. */
@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
    .faq-item::details-content {
        height: 0;
        overflow: hidden;
        transition: height var(--transition), content-visibility var(--transition) allow-discrete;
    }
    .faq-item[open]::details-content { height: auto; }
}

/* ── CTA ────────────────────────────────────────── */
.cta { padding: 100px 0; }
.cta-box {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 56px;
    text-align: center;
}
.cta-box h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}
/* Class, not `.cta-box > p` — that selector also matched .cta-note and
   overrode its spacing and width. */
.cta-lead {
    font-size: 15px;
    color: var(--text-2);
    max-width: 420px;
    margin: 0 auto 28px;
}
.cta-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-note {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.8;
    color: var(--text-3);
    max-width: 520px;
    margin: 32px auto 0;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

/* ── Footer ─────────────────────────────────────── */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
}
.footer-brand img { height: 24px; width: 24px; border-radius: 4px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
    font-size: 12px;
    color: var(--text-3);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: var(--text-3);
    margin-top: 16px;
}

/* ── Reveal ─────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Runs immediately without JS; main.js pauses it and resumes on scroll,
   so a JS failure shows the content rather than hiding it. */
.reveal {
    opacity: 0;
    animation: fadeUp 0.5s var(--ease-out-expo) forwards;
}

/* ── Scrollbar & selection ──────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
::selection { background: var(--text); color: var(--white); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 880px) {
    .rules-grid { grid-template-columns: 1fr; gap: 40px; }
    .how-grid { grid-template-columns: 1fr; }
    .step h3 { padding-right: 84px; }
}

@media (max-width: 640px) {
    .hero { padding: calc(var(--nav-h) + 56px) 20px 64px; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 56px; }
    .btn { width: 100%; }

    /* Rail turns vertical rather than compressing. */
    .phases {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 36px;
        text-align: left;
    }
    .phases::before {
        left: 4px;
        right: auto;
        top: 42px;
        bottom: 14px;
        width: 1px;
        height: auto;
        transform-origin: center top;
        animation-name: drawY;
    }
    .phase {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 0;
        flex-wrap: wrap;
    }
    .phase-state { margin-top: 0; margin-left: auto; }

    /* Tag moves into the flow so the heading gets the full width. */
    .step-tag {
        position: static;
        display: inline-block;
        margin-bottom: 14px;
    }
    .step h3 { padding-right: 0; }

    .how, .faq { padding: 64px 0 72px; }
    .rules { padding: 72px 0; }
    .cta { padding: 72px 0; }
    .cta-box { padding: 36px 20px; }
    .section-title { margin-bottom: 32px; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
}

/* ── Print ──────────────────────────────────────── */
@media print {
    .nav, .mobile-menu, .skip-link { display: none; }
    .hero { min-height: 0; padding-top: 24px; }
    .reveal, .hero-anim, .hero-pop, .phase { opacity: 1; animation: none; }
    .hero-line > span, .phase-dot, .phases::before { transform: none; animation: none; }
    .faq-item[open]::details-content,
    .faq-item::details-content { height: auto; }
}

/* ── Reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Every animated element is pinned to its finished state, so nothing
       depends on an animation actually running to become visible. */
    .reveal,
    .hero-anim,
    .hero-pop,
    .phase {
        opacity: 1;
        animation: none;
    }
    .hero-pop { transform: none; }
    .hero-line > span { transform: none; animation: none; }
    .phases::before { transform: none; animation: none; }
    .phase-dot { opacity: 1; transform: none; animation: none; }
    .nav { animation: none; }

    .phase.is-current .phase-dot::after { display: none; }
    .btn-primary:hover,
    .step:hover,
    .info-card:hover { transform: none; }
    .info-card:hover .info-card-icon,
    .btn:hover .arrow-down,
    .nav-home:hover .arrow-out { transform: none; }
}
