.home-page {
    background:
        linear-gradient(180deg, #050a14 0%, #0a111c 48%, #08111a 100%);
}

.home-page::before,
.home-page::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
}

.home-page::before {
    background:
        radial-gradient(ellipse 600px 420px at 18% 9%, rgba(52, 215, 177, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 520px 460px at 84% 68%, rgba(94, 236, 201, 0.06) 0%, transparent 72%);
}

.home-page::after {
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 198, 123, 0.07) 48%, transparent 60%);
    opacity: 0.45;
    transform: translateY(42vh);
}

.home-page .ambient-light {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 600px 400px at 20% 10%, rgba(52, 215, 177, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 60%, rgba(94, 236, 201, 0.05) 0%, transparent 70%);
    filter: none;
    animation: none;
    z-index: -2;
}

/* grid-overlay removido */

.home-page .navbar {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ─── Hero ─── */
.hero-home {
    min-height: auto;
    align-items: flex-start;
    gap: 3.2rem;
    padding-top: 8.6rem;
}

.hero-copy {
    flex: 0 1 540px;
}

.home-page .hero h1 {
    font-size: clamp(3.3rem, 5vw, 5.2rem);
    letter-spacing: -0.05em;
}

.home-page .hero-description {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.75;
}

/* ─── Hero Proof Pills ─── */
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.hero-proof span {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-color);
    font-size: 0.92rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition);
}

.hero-proof span:hover {
    background: rgba(52, 215, 177, 0.1);
    border-color: rgba(52, 215, 177, 0.25);
    transform: translateY(-2px);
}

.hero-proof span i {
    font-size: 0.82rem;
    color: var(--primary-light);
}

/* ─── Stats ─── */
.home-page .stats {
    gap: 1.5rem;
    padding-top: 1.6rem;
}

.home-page .stat-item {
    gap: 0.45rem;
    max-width: 230px;
}

.home-page .stat-number {
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    font-weight: 800;
    color: var(--primary-light);
}

.home-page .stat-label {
    font-size: 0.96rem;
    line-height: 1.5;
}

/* ─── Hero Showcase ─── */
.hero-showcase {
    flex: 1 1 640px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    overflow: hidden;
}

.showcase-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-panel:hover {
    border-color: rgba(52, 215, 177, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.showcase-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%);
    pointer-events: none;
}

.showcase-panel-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1rem;
    align-items: center;
}

.showcase-meta {
    padding: 0.5rem 0.35rem 0.5rem 0.3rem;
}

.showcase-kicker,
.feature-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.2rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(52, 215, 177, 0.12);
    border: 1px solid rgba(52, 215, 177, 0.18);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.showcase-meta h2 {
    margin-top: 1rem;
    font-size: clamp(1.7rem, 2.3vw, 2.6rem);
    line-height: 1.08;
}

.showcase-image {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 22px;
}

.showcase-image-wide {
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 22px;
    max-height: 480px;
}

.showcase-image-tall {
    aspect-ratio: 10 / 18;
    max-height: 420px;
    object-position: top;
}

.showcase-caption {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.95rem 0.2rem 0.15rem;
}

.showcase-caption strong {
    font-size: 1.12rem;
}

.showcase-caption span {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ─── Features Section ─── */
.features-home {
    padding-top: 2.2rem;
    background: transparent;
}

.home-page #features,
.home-page #recaps,
.home-page #ecosystem,
.home-page #premium,
.home-page #download {
    scroll-margin-top: 112px;
}

.features-home .section-header {
    max-width: 760px;
    margin: 0 auto 2.8rem;
}

.features-home .section-header h2 {
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.04;
}

.features-home .section-header p {
    line-height: 1.7;
}

.feature-stories {
    display: grid;
    gap: 1.5rem;
}

.feature-story {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature-story:hover {
    border-color: rgba(52, 215, 177, 0.15);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.feature-story:nth-child(even) .feature-copy {
    order: 2;
}

.feature-story:nth-child(even) .feature-media {
    order: 1;
}

.feature-copy {
    padding: 0.75rem 0.9rem;
}

.feature-copy h3 {
    margin: 1rem 0 1rem;
    font-size: clamp(1.7rem, 2.4vw, 2.5rem);
    line-height: 1.08;
}

.feature-copy p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.feature-points {
    list-style: none;
    display: grid;
    gap: 0.72rem;
}

.feature-points li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-color);
    line-height: 1.5;
}

.feature-points li::before {
    content: '';
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(52, 215, 177, 0.12);
}

/* ─── Feature Media — imagens contidas ─── */
.feature-media {
    display: grid;
    gap: 1rem;
    overflow: hidden;
}

.feature-media-duo {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: stretch;
}

.feature-media-equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-media-stack {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.screen-stack-column {
    display: grid;
    gap: 1rem;
}

.screen-shot {
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.4s ease;
}

.screen-shot:hover {
    transform: scale(1.02);
}

.screen-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    border-radius: 18px;
}

.screen-shot-tall {
    aspect-ratio: 10 / 18;
    max-height: 520px;
}

.screen-shot-wide {
    aspect-ratio: 16 / 10;
}

.screen-shot-card {
    aspect-ratio: 16 / 10;
}

/* Recaps */
.recap-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.92fr);
    gap: clamp(1.5rem, 5vw, 5rem);
    align-items: center;
    width: 100%;
    margin: 5rem 0 0;
    padding: 0 max(1rem, calc((100vw - 1180px) / 2));
    position: relative;
}

.recap-section::before {
    content: "";
    position: absolute;
    inset: -3rem 0 auto;
    height: 65%;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 22%, rgba(52, 215, 177, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent);
    z-index: -1;
}

.recap-copy {
    padding: 0;
}

.premium-lock-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1rem 0 0.15rem;
    padding: 0.58rem 0.9rem;
    border-radius: 999px;
    color: #ffe3a1;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(226, 184, 107, 0.12);
    border: 1px solid rgba(226, 184, 107, 0.42);
    box-shadow: 0 0 24px rgba(226, 184, 107, 0.12);
}

.premium-lock-badge i {
    color: #f0bf61;
}

.recap-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3.45rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.recap-copy p {
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 620px;
}

.recap-stage {
    align-self: center;
}

.recap-screen-image {
    width: min(100%, 560px);
    display: block;
    margin-left: auto;
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

@media (min-width: 981px) {
    .recap-screen-image {
        width: min(100%, 430px);
        max-height: min(72vh, 680px);
        object-fit: contain;
    }
}

.recap-details {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.recap-detail {
    padding: 1.25rem 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.recap-detail:last-child {
    border-right: 0;
}

.recap-detail strong {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 0.35rem;
}

.recap-detail span {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Open links */
.open-landing {
    min-height: 100vh;
    padding: 9rem 5% 4rem;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    align-items: center;
}

.open-card {
    max-width: 720px;
}

.open-card h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    margin: 1rem 0;
}

.open-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 620px;
}

.open-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: rgba(52, 215, 177, 0.13);
    border: 1px solid rgba(52, 215, 177, 0.24);
    color: var(--primary-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.open-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.mini-player-card {
    min-height: 420px;
    border-radius: 34px;
    padding: 1.4rem;
    background:
        radial-gradient(circle at 50% 18%, rgba(52, 215, 177, 0.2), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.mini-disc {
    width: min(72vw, 260px);
    height: min(72vw, 260px);
    border-radius: 50%;
    margin: 0 auto 2rem;
    background:
        radial-gradient(circle, #050a14 0 14%, transparent 15%),
        conic-gradient(from 120deg, #34d7b1, #ffa15c, #5eecc9, #34d7b1);
    box-shadow: 0 28px 80px rgba(52, 215, 177, 0.16);
}

.mini-player-card strong,
.mini-player-card span {
    display: block;
}

.mini-player-card strong {
    font-size: 1.45rem;
    line-height: 1.15;
}

.mini-player-card span {
    color: var(--text-secondary);
    margin-top: 0.35rem;
}

/* ─── Ecosystem ─── */
.home-page .ecosystem-section {
    margin-top: 2rem;
}

/* Premium */
.premium-site-section {
    width: 100%;
    margin: 5rem 0 2rem;
    padding: 0 max(1rem, calc((100vw - 1180px) / 2));
    display: grid;
    gap: 2.6rem;
    position: relative;
}

.premium-site-section::before {
    content: "";
    position: absolute;
    inset: -3rem 0 auto;
    height: 52%;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 18%, rgba(52, 215, 177, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    z-index: -1;
}

.premium-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}

.premium-story-copy {
    padding: 0;
    align-self: center;
}

.premium-kicker {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.premium-story-copy h2 {
    max-width: 720px;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0.9rem 0 1.2rem;
}

.premium-story-copy p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 620px;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.premium-story-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.premium-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.premium-benefit-grid span {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
    line-height: 1.45;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    padding: 1.15rem 1.25rem;
}

.premium-benefit-grid span:last-child {
    border-right: 0;
}

.premium-benefit-grid i {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-light);
    background: rgba(52, 215, 177, 0.12);
}

.premium-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-plan {
    min-height: 560px;
    padding: 0 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.premium-plan:last-child {
    border-right: 0;
}

.premium-plan-image {
    width: calc(100% + 2.8rem);
    margin: 0 -1.4rem 1.2rem;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.premium-plan-body {
    padding: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.premium-plan-label {
    color: var(--primary-light);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

.premium-price-row {
    margin-top: 1rem;
    min-height: 4.1rem;
    display: flex;
    align-items: center;
}

.premium-plan strong {
    color: #fff;
    display: inline-block;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1;
    letter-spacing: 0;
}

.premium-plan small {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 800;
    font-size: 1rem;
}

.premium-plan p {
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 1rem 0 1.2rem;
}

.premium-plan ul {
    list-style: none;
    padding: 0;
    margin: auto 0 1.1rem;
    display: grid;
    gap: 0.65rem;
}

.premium-plan li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.35;
}

.premium-plan li::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 0.55rem;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 18px rgba(52, 215, 177, 0.5);
}

.premium-plan .btn-primary,
.premium-plan .btn-secondary {
    justify-content: center;
    margin: 0.15rem 0 0;
}

.premium-disabled-button {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.15rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(135deg, rgba(98, 108, 124, 0.72), rgba(60, 67, 79, 0.84));
    cursor: not-allowed;
    font: inherit;
    font-weight: 900;
    opacity: 0.86;
}

.btn-unavailable,
.btn-unavailable:hover,
.btn-download-disabled,
.btn-download-disabled:hover {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    background: linear-gradient(135deg, rgba(98, 108, 124, 0.72), rgba(60, 67, 79, 0.84));
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.platform-card-disabled {
    opacity: 0.74;
}

.home-page .platform-card-disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

.premium-app-note {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
    line-height: 1.4;
    padding: 0.75rem 0 0.15rem;
}

/* ─── Download ─── */
.home-page .download-container {
    background:
        linear-gradient(180deg, rgba(52, 215, 177, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    position: relative;
}

.home-page .download-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.home-page .download-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 0.8rem;
}

.home-page .download-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.home-page .platform-card {
    background: rgba(7, 14, 24, 0.9);
    transition: var(--transition);
}

.home-page .platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 215, 177, 0.3);
}

/* ─── Responsive ─── */
@media (max-width: 1120px) {
    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-panel-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .premium-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .hero-home,
    .recap-section,
    .recap-stage,
    .premium-site-section,
    .open-landing,
    .feature-story,
    .feature-media-stack {
        grid-template-columns: 1fr;
    }

    .premium-story-card {
        grid-template-columns: 1fr;
    }

    .premium-story-image {
        min-height: 280px;
        max-height: 420px;
    }

    .premium-plans {
        grid-template-columns: 1fr;
    }

    .premium-plan {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .premium-plan:last-child {
        border-bottom: 0;
    }

    .hero-home {
        display: grid;
    }

    .feature-story:nth-child(even) .feature-copy,
    .feature-story:nth-child(even) .feature-media {
        order: initial;
    }

    .feature-copy {
        padding: 0.25rem 0.1rem;
    }

    .screen-shot-tall {
        max-height: 480px;
    }

    .recap-screen-image {
        margin: 0 auto;
    }
}

@media (max-width: 720px) {
    .hero-home {
        padding-top: 7.8rem;
        gap: 2rem;
    }

    .home-page .hero h1 {
        font-size: 2.95rem;
    }

    .showcase-panel,
    .feature-story {
        padding: 1rem;
        border-radius: 24px;
    }

    .recap-details {
        grid-template-columns: 1fr;
    }

    .recap-detail {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }

    .recap-detail:last-child {
        border-bottom: 0;
    }

    .premium-benefit-grid {
        grid-template-columns: 1fr;
    }

    .premium-plan {
        min-height: auto;
    }

    .feature-media-duo,
    .feature-media-equal,
    .feature-media-stack {
        grid-template-columns: 1fr;
    }

    .showcase-image-tall,
    .screen-shot-tall {
        aspect-ratio: 10 / 16;
        max-height: 400px;
    }

    .screen-shot-wide,
    .screen-shot-card {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-proof {
        gap: 0.5rem;
    }

    .hero-proof span,
    .showcase-kicker,
    .feature-index {
        font-size: 0.75rem;
    }

    .home-page .hero h1 {
        font-size: 2.45rem;
    }

    .home-page .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .screen-shot-tall {
        max-height: 360px;
    }
}
