:root {
    --ink: #0f172a;
    --muted: #64748b;
    --paper: #f8fafc;
    --line: rgba(15, 23, 42, .12);
    --gold: #d4af37;
    --green: #16a34a;
    --cyan: #0891b2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: #e5e7eb;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

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

.site-nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: min(1180px, calc(100vw - 2rem));
    min-height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1.2rem;
    padding: .55rem .65rem .55rem 1rem;
    background: rgba(248,250,252,.84);
    box-shadow: 0 18px 44px rgba(15, 23, 42, .1);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-weight: 950;
    letter-spacing: .02em;
}

.brand img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: brightness(0);
}

.site-nav nav {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.site-nav nav a,
.nav-cta {
    border-radius: .9rem;
    padding: .8rem .95rem;
    color: #334155;
    font-size: .78rem;
    font-weight: 900;
}

.site-nav nav a:hover { background: rgba(15,23,42,.06); }

.nav-cta {
    color: #fff;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem clamp(1.2rem, 6vw, 6rem) 3rem;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(rgba(2, 6, 23, .46), rgba(2, 6, 23, .76)),
        linear-gradient(135deg, #111827 0%, #0f172a 38%, #155e75 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 8rem;
    background: linear-gradient(to bottom, transparent, #e5e7eb);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px);
    animation: gridDrift 18s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(54rem, 92vw);
    padding-top: 3rem;
}

.eyebrow {
    display: inline-flex;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 1rem 0;
    max-width: 10ch;
    font-size: clamp(3.8rem, 8.4vw, 8rem);
    line-height: .88;
    letter-spacing: 0;
    font-weight: 950;
}

.hero p {
    max-width: 41rem;
    color: #cbd5e1;
    font-size: clamp(1rem, 1.6vw, 1.28rem);
    line-height: 1.55;
    font-weight: 760;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.8rem;
}

.hero-actions a,
.final-cta a {
    min-height: 3.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    padding: 0 1.2rem;
    font-size: .8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: transform .18s ease, filter .18s ease;
}

.hero-actions a:hover,
.final-cta a:hover,
.price-card:hover,
.feature:hover,
.screen-shot:hover {
    transform: translateY(-4px);
}

.primary,
.final-cta a {
    color: #0f172a;
    background: #fff;
}

.secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
}

.mega-dashboard {
    position: absolute;
    right: clamp(-4rem, 4vw, 4rem);
    top: 13vh;
    width: min(56rem, 58vw);
    min-height: 34rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 1.35rem;
    padding: 1.2rem;
    background: rgba(248,250,252,.11);
    backdrop-filter: blur(16px);
    box-shadow: 0 40px 110px rgba(2,6,23,.42);
    transform: rotateX(8deg) rotateY(-14deg);
    animation: heroDevice 8s ease-in-out infinite;
}

.dash-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.dash-top span,
.dash-grid span,
.dash-grid small {
    color: #cbd5e1;
    font-size: .78rem;
    font-weight: 850;
}

.dash-top strong {
    font-size: 2.2rem;
    font-weight: 950;
}

.dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-top: 1.2rem;
}

.dash-grid article {
    border-radius: 1rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    padding: 1rem;
}

.dash-grid strong {
    display: block;
    margin: .45rem 0 .2rem;
    font-size: 1.25rem;
    font-weight: 950;
}

.dash-chart {
    height: 16rem;
    display: flex;
    align-items: end;
    gap: .8rem;
    margin-top: 2.3rem;
}

.dash-chart i {
    flex: 1;
    border-radius: .75rem .75rem .25rem .25rem;
    background: linear-gradient(180deg, #34d399, #0f766e);
    animation: barBreathe 3.8s ease-in-out infinite;
}

.dash-chart i:nth-child(2) { animation-delay: .2s; }
.dash-chart i:nth-child(3) { animation-delay: .4s; }
.dash-chart i:nth-child(4) { animation-delay: .6s; }
.dash-chart i:nth-child(5) { animation-delay: .8s; }

.float-window {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 15rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(248,250,252,.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(2,6,23,.34);
    animation: floatWindow 5.5s ease-in-out infinite;
}

.float-window span {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.1);
    color: #67e8f9;
}

.float-window strong {
    display: block;
    font-size: .88rem;
    font-weight: 950;
}

.float-window small {
    color: #cbd5e1;
    font-size: .74rem;
    font-weight: 800;
}

.fw-one { right: 7vw; bottom: 15vh; }
.fw-two { right: 38vw; top: 20vh; animation-delay: .7s; }
.fw-three { right: 22vw; bottom: 6vh; animation-delay: 1.2s; }

.metrics-band,
.section,
.showcase,
.decision-section,
.plans-section,
.final-cta {
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
}

.metrics-band {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .8rem;
    margin-top: -3rem;
    padding: .9rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(248,250,252,.9);
    box-shadow: 0 20px 60px rgba(15, 23, 42, .12);
    backdrop-filter: blur(12px);
}

.metrics-band article {
    padding: 1rem;
    border-radius: .9rem;
    background: #fff;
}

.metrics-band strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 950;
}

.metrics-band span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 850;
}

.section,
.showcase,
.ruppell-section,
.plans-section {
    padding: 6.5rem 0 0;
}

.section-head {
    max-width: 50rem;
    margin-bottom: 2rem;
}

.section-head h2,
.decision-copy h2,
.final-cta h2 {
    margin: .7rem 0;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .95;
    font-weight: 950;
}

.section-head p,
.decision-copy p,
.final-cta p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 760;
}

.feature-grid,
.gallery,
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature,
.screen-shot,
.price-card,
.decision-board {
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 1.05rem;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transition: transform .22s ease, box-shadow .22s ease;
}

.feature {
    padding: 1.3rem;
}

.feature span {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: .9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: var(--ink);
}

.feature h3 {
    margin: 1rem 0 .4rem;
    font-size: 1.1rem;
    font-weight: 950;
}

.feature p {
    color: var(--muted);
    line-height: 1.55;
    font-size: .9rem;
    font-weight: 750;
}

.ruppell-section {
    width: min(1180px, calc(100vw - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 1.1rem;
    align-items: stretch;
}

.ruppell-copy,
.ruppell-board {
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 1.05rem;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.ruppell-copy {
    padding: clamp(1.35rem, 3vw, 2.4rem);
}

.ruppell-copy h2 {
    margin: .75rem 0;
    font-size: clamp(2rem, 4.2vw, 4.25rem);
    line-height: .96;
    font-weight: 950;
}

.ruppell-copy p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 760;
}

.ruppell-points {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.2rem;
}

.ruppell-points span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 2.45rem;
    border-radius: .85rem;
    padding: 0 .8rem;
    background: #f8fafc;
    color: #334155;
    font-size: .75rem;
    font-weight: 900;
}

.ruppell-points i {
    font-size: 1rem;
}

.ruppell-board {
    position: relative;
    overflow: hidden;
    padding: 1.1rem;
    display: grid;
    gap: .8rem;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .96), rgba(30, 41, 59, .94)),
        #0f172a;
    color: #fff;
}

.ruppell-board::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 52px);
    pointer-events: none;
}

.ruppell-mark {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 1.2rem;
    background-color: #fff;
    -webkit-mask: url("/frontend/icones/ICON-ruppell-recolhido.ico") center / contain no-repeat;
    mask: url("/frontend/icones/ICON-ruppell-recolhido.ico") center / contain no-repeat;
}

.ruppell-board article {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: .95rem;
    padding: 1rem;
    background: rgba(255,255,255,.08);
}

.ruppell-board article span {
    color: #93c5fd;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.ruppell-board article strong {
    display: block;
    margin: .35rem 0 .18rem;
    font-size: 1.2rem;
    font-weight: 950;
}

.ruppell-board article small {
    color: #cbd5e1;
    font-size: .78rem;
    font-weight: 800;
}

.screen-shot {
    min-height: 18rem;
    padding: 1rem;
    overflow: hidden;
}

.real-shot {
    min-height: auto;
}

.shot-device {
    position: relative;
    border-radius: .95rem;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, .12);
    aspect-ratio: 16 / 9;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
    cursor: zoom-in;
}

.shot-device > img:not(.phone-shot) {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
}

.phone-shot {
    position: absolute;
    right: .7rem;
    bottom: .7rem;
    width: 22%;
    height: 72%;
    object-fit: cover;
    object-position: top;
    border-radius: .75rem;
    border: 3px solid #0f172a;
    box-shadow: 0 14px 34px rgba(2, 6, 23, .4);
    background: #fff;
    cursor: zoom-in;
}

.landing-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(2, 6, 23, .82);
    opacity: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity .22s ease;
}

.landing-lightbox.visible {
    display: flex;
    opacity: 1;
}

.landing-lightbox-card {
    position: relative;
    width: min(1180px, 96vw);
    max-height: 92vh;
    overflow: hidden;
    border-radius: 1rem;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 36px 120px rgba(0,0,0,.52);
    transform: translateY(14px) scale(.98);
    transition: transform .24s ease;
}

.landing-lightbox.visible .landing-lightbox-card {
    transform: translateY(0) scale(1);
}

.landing-lightbox img {
    display: block;
    width: 100%;
    max-height: 92vh;
    object-fit: contain;
    background: #0f172a;
}

.landing-lightbox-close {
    position: absolute;
    top: .7rem;
    right: .7rem;
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: .85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(15, 23, 42, .82);
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.shot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.shot-head span {
    color: var(--muted);
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.shot-head b {
    font-size: .9rem;
    font-weight: 950;
}

.shot-kpis,
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
}

.shot-kpis i,
.client-grid i,
.agenda-lines i,
.finance-list i,
.insight-lines i {
    font-style: normal;
    display: block;
    border-radius: .75rem;
    background: #f1f5f9;
    padding: .75rem;
    color: #334155;
    font-size: .75rem;
    font-weight: 850;
}

.shot-bars {
    height: 10rem;
    display: flex;
    align-items: end;
    gap: .7rem;
    margin-top: 1.2rem;
}

.shot-bars em {
    flex: 1;
    background: linear-gradient(180deg, #0f172a, #334155);
    border-radius: .65rem .65rem .2rem .2rem;
    animation: barBreathe 3s ease-in-out infinite;
}

.agenda-lines,
.finance-list,
.insight-lines {
    display: grid;
    gap: .7rem;
}

.ring-demo {
    width: 12rem;
    height: 12rem;
    margin: 1.2rem auto 0;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, #fff 0 48%, transparent 49%),
        conic-gradient(#0f172a 0 78%, #e2e8f0 78% 100%);
}

.ring-demo strong {
    font-size: 2.2rem;
    font-weight: 950;
}

.ring-demo span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 850;
}

.decision-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    padding: 7rem 0 0;
}

.decision-board {
    padding: 1rem;
    display: grid;
    gap: .85rem;
}

.compare-row {
    min-height: 4.5rem;
    border-radius: .9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    color: #334155;
}

.compare-row.active {
    color: #fff;
    background: #0f172a;
    transform: scale(1.02);
    box-shadow: 0 18px 38px rgba(15,23,42,.18);
}

.compare-row span {
    font-weight: 850;
}

.compare-row strong {
    font-weight: 950;
}

.price-card {
    padding: 1.5rem;
}

.price-card span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-card strong {
    display: block;
    margin: .7rem 0;
    font-size: 2rem;
    font-weight: 950;
}

.price-card p {
    color: var(--muted);
    line-height: 1.55;
    font-weight: 760;
}

.price-card.main {
    color: #fff;
    background: #0f172a;
    transform: translateY(-.7rem);
}

.price-card.main p,
.price-card.main span {
    color: #cbd5e1;
}

.final-cta {
    margin-top: 7rem;
    margin-bottom: 2rem;
    padding: clamp(2rem, 6vw, 5rem);
    border-radius: 1.35rem;
    color: #fff;
    background: #0f172a;
    overflow: hidden;
}

.final-cta h2 {
    max-width: 11ch;
}

.final-cta p {
    color: #cbd5e1;
    max-width: 42rem;
}

.final-cta a {
    margin-top: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 72px 0, 0 72px; }
}

@keyframes heroDevice {
    0%, 100% { transform: rotateX(8deg) rotateY(-14deg) translateY(0); }
    50% { transform: rotateX(8deg) rotateY(-14deg) translateY(-16px); }
}

@keyframes floatWindow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes barBreathe {
    0%, 100% { filter: brightness(1); transform: scaleY(1); }
    50% { filter: brightness(1.22); transform: scaleY(1.04); }
}

@media (max-width: 980px) {
    .site-nav nav { display: none; }

    .hero {
        align-items: end;
        padding-bottom: 4rem;
    }

    .mega-dashboard {
        width: 46rem;
        right: -12rem;
        opacity: .55;
    }

    .float-window { display: none; }

    .metrics-band,
    .feature-grid,
    .price-grid,
    .ruppell-section,
    .decision-section {
        grid-template-columns: 1fr 1fr;
    }

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

    .decision-section {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .site-nav {
        top: .7rem;
        width: calc(100vw - 1rem);
        min-height: 3.3rem;
        border-radius: 1rem;
        padding: .4rem .45rem .4rem .65rem;
    }

    .brand img {
        width: 2.15rem;
        height: 2.15rem;
    }

    .brand span {
        font-size: .9rem;
    }

    .nav-cta {
        padding: .65rem .8rem;
        font-size: .72rem;
        border-radius: .8rem;
    }

    .hero {
        min-height: 64vh;
        padding: 4.9rem 1rem 1.25rem;
        align-items: center;
    }

    .hero-content {
        padding-top: 0;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(2.05rem, 10.5vw, 3.25rem);
        max-width: 12ch;
        margin: .55rem 0;
        line-height: .94;
    }

    .hero p {
        font-size: .78rem;
        line-height: 1.4;
        max-width: 20rem;
    }

    .hero-actions {
        margin-top: .75rem;
        gap: .55rem;
    }

    .hero-actions a {
        min-height: 2.55rem;
        padding: 0 .75rem;
        font-size: .62rem;
        border-radius: .8rem;
    }

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

    .mega-dashboard {
        width: 26rem;
        min-height: 18rem;
        right: -17rem;
        top: 5.6rem;
        padding: .75rem;
        opacity: .25;
    }

    .dash-top strong {
        font-size: 1.2rem;
    }

    .dash-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .45rem;
    }

    .dash-grid article {
        padding: .55rem;
        border-radius: .65rem;
    }

    .dash-grid strong {
        font-size: .82rem;
    }

    .dash-grid span,
    .dash-grid small,
    .dash-top span {
        font-size: .58rem;
    }

    .dash-chart {
        height: 7rem;
        gap: .35rem;
        margin-top: .9rem;
    }

    .metrics-band,
    .feature-grid,
    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .6rem;
    }

    .ruppell-section {
        grid-template-columns: 1fr;
        width: calc(100vw - 1rem);
        gap: .6rem;
    }

    .ruppell-copy,
    .ruppell-board {
        border-radius: .9rem;
    }

    .ruppell-copy h2 {
        font-size: 1.9rem;
    }

    .metrics-band {
        width: calc(100vw - 1rem);
        margin-top: .6rem;
        padding: .55rem;
        gap: .45rem;
        border-radius: .9rem;
    }

    .metrics-band article {
        padding: .65rem;
        border-radius: .7rem;
    }

    .metrics-band strong {
        font-size: .95rem;
    }

    .metrics-band span {
        font-size: .6rem;
        line-height: 1.2;
        display: block;
    }

    .section,
    .showcase,
    .plans-section {
        width: calc(100vw - 1rem);
        padding-top: 3rem;
    }

    .section-head {
        margin-bottom: 1rem;
    }

    .section-head h2,
    .decision-copy h2,
    .final-cta h2 {
        font-size: clamp(1.45rem, 7.4vw, 2.05rem);
        line-height: 1.04;
        margin: .5rem 0;
    }

    .section-head p,
    .decision-copy p,
    .final-cta p {
        font-size: .76rem;
        line-height: 1.45;
    }

    .feature {
        padding: .72rem;
        border-radius: .8rem;
    }

    .feature span {
        width: 2.1rem;
        height: 2.1rem;
        border-radius: .65rem;
        font-size: 1.15rem;
    }

    .feature h3 {
        margin: .6rem 0 .25rem;
        font-size: .82rem;
        line-height: 1.15;
    }

    .feature p {
        font-size: .68rem;
        line-height: 1.35;
    }

    .shot-kpis {
        grid-template-columns: 1fr;
    }

    .gallery {
        display: flex;
        gap: .7rem;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-padding-left: .15rem;
        padding: .1rem .15rem .85rem;
        margin-left: -.15rem;
        margin-right: -.15rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery::-webkit-scrollbar {
        display: none;
    }

    .gallery::after {
        content: "";
        flex: 0 0 .15rem;
    }

    .screen-shot {
        flex: 0 0 min(82vw, 21rem);
        scroll-snap-align: start;
        gap: .7rem;
        padding: .65rem;
        border-radius: .85rem;
    }

    .shot-head {
        margin-bottom: .55rem;
    }

    .shot-head span {
        font-size: .62rem;
    }

    .shot-head b {
        font-size: .7rem;
    }

    .shot-device {
        border-radius: .75rem;
        aspect-ratio: 16 / 8.8;
    }

    .phone-shot {
        right: .4rem;
        bottom: .4rem;
        width: 19%;
        height: 66%;
        border-width: 2px;
        border-radius: .5rem;
    }

    .decision-section {
        width: calc(100vw - 1rem);
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 3rem;
    }

    .decision-board {
        padding: .65rem;
        border-radius: .85rem;
        gap: .5rem;
    }

    .compare-row {
        min-height: 3.2rem;
        border-radius: .7rem;
        padding: .7rem;
        font-size: .72rem;
        align-items: flex-start;
        flex-direction: column;
        gap: .2rem;
    }

    .price-card {
        padding: .8rem;
        border-radius: .85rem;
    }

    .price-card strong {
        font-size: .95rem;
        line-height: 1.12;
        margin: .35rem 0;
    }

    .price-card span {
        font-size: .58rem;
    }

    .price-card p {
        font-size: .68rem;
        line-height: 1.35;
        margin: 0;
    }

    .price-card.main {
        transform: none;
    }

    .landing-lightbox {
        padding: .65rem;
    }

    .landing-lightbox-card {
        width: 100%;
        border-radius: .85rem;
    }

    .landing-lightbox-close {
        top: .45rem;
        right: .45rem;
        width: 2.25rem;
        height: 2.25rem;
    }

    .final-cta {
        width: calc(100vw - 1rem);
        margin-top: 3rem;
        padding: 1.25rem;
        border-radius: .95rem;
    }

    .final-cta a {
        min-height: 2.8rem;
        font-size: .68rem;
        border-radius: .8rem;
    }
}
