/* Computer Cleanup product page styles. Shared site tokens/components are loaded from molus-site.css first. */
:root {
    --bg: #fcfcfb;
    --panel: #ffffff;
    --ink: #0f1115;
    --body: #4a5260;
    --muted: #7d8593;
    --line: #ececea;
    --soft: #f5f5f3;
    --softer: #fafaf8;
    --green: #00b25c;
    --blue: #0078d4;
    --blue-hover: #006bbe;
    --shadow-card: 0 1px 2px rgba(15,17,21,0.04), 0 8px 24px rgba(15,17,21,0.06);
    --shadow-window: 0 30px 60px rgba(15,17,21,0.10), 0 4px 14px rgba(15,17,21,0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--blue); }
ul { list-style: none; }

/* ---------------- TOPBAR ---------------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(252, 252, 251, 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ink);
}
.brand img {
    width: 42px;
    height: 42px;
}
.nav-links {
    display: flex;
    gap: 1.6rem;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.92rem;
    color: var(--body);
    font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.topbar .btn-download {
    margin-left: 1rem;
}
.topbar .btn-store {
    margin-left: 0;
    padding: 0.55rem 0.95rem;
    font-size: 0.88rem;
}
@media (max-width: 720px) {
    .nav-links { display: none; }
    .topbar .btn-download { margin-left: auto; }
}

/* ---------------- BUTTONS ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,120,212,0.18); }
.btn-windows {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.btn-windows:hover { background: var(--blue-hover); color: #fff; border-color: var(--blue-hover); }
.btn-store {
    background: #fff;
    color: var(--ink);
    border-color: #d8d8d4;
}
.btn-store:hover { color: var(--ink); border-color: var(--ink); }
.btn-download {
    padding: 0.55rem 1.1rem;
    font-size: 0.88rem;
}
.btn .dl-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.ms-tile {
    display: inline-grid;
    grid-template-columns: 8px 8px;
    grid-template-rows: 8px 8px;
    gap: 2px;
    flex: 0 0 auto;
}
.ms-tile span { display: block; }
.ms-tile .r { background: #F25022; }
.ms-tile .g { background: #7FBA00; }
.ms-tile .b { background: #00A4EF; }
.ms-tile .y { background: #FFB900; }
/* ---------------- HERO ---------------- */
.hero {
    text-align: center;
    padding: 1.8rem 1.5rem 3.5rem;
}
.hero img.hero-logo {
    max-width: 210px;
    width: 48vw;
    height: auto;
    margin-bottom: 1.2rem;
}
.cta-row {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    max-width: 1080px;
    margin: 0 auto 1rem;
    padding: 0 0.5rem;
}
@media (max-width: 880px) {
    .hero-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
    .hero-pillars { grid-template-columns: 1fr; }
}
.pillar {
    display: block;
    min-width: 0;
    text-align: left;
    padding: 1.35rem 1.2rem 1.3rem;
    background: #fff;
    border: 1px solid #d7dee8;
    border-radius: 10px;
    color: var(--ink);
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 1px 2px rgba(15,17,21,0.10),
        0 8px 18px rgba(15,17,21,0.08);
}
.pillar:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.95),
        0 2px 4px rgba(15,17,21,0.12),
        0 12px 24px rgba(15,17,21,0.10);
    border-color: #c8d2df;
    color: var(--ink);
}
.pillar-icon {
    width: 36px;
    height: 36px;
    background: var(--pillar-bg, var(--soft));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}
.pillar-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--pillar-color, var(--ink));
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.pillar.delete { --pillar-bg: #ffe4e7; --pillar-color: #f0525f; }
.pillar.restore { --pillar-bg: #dff7f8; --pillar-color: #28aeb6; }
.pillar.browsers { --pillar-bg: #efe4ff; --pillar-color: #8a58d6; }
.pillar.clutter { --pillar-bg: #d8f3e3; --pillar-color: var(--green); }
.pillar h3 {
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.005em;
}
.pillar p {
    font-size: 0.88rem;
    color: var(--body);
    line-height: 1.5;
}
.hero-promise {
    display: block;
    max-width: 720px;
    margin: 1.6rem auto 0;
    text-align: center;
    color: var(--ink);
}
.hero-promise:hover { color: var(--blue); }
.hero-promise strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.005em;
}
.hero-promise span {
    display: block;
    font-size: 0.92rem;
    color: var(--body);
    line-height: 1.5;
}

/* ---------------- SPOTLIGHTS ---------------- */
.spotlight {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}
.spotlight { border-top: 1px solid var(--line); }
.spotlight .grid {
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.spotlight.reverse .grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
}
.spotlight.reverse .grid > .text { order: 2; }
.spotlight.reverse .grid > .visual { order: 1; }
.check-label { display: none; }
.learn-more { display: none; }
.spotlight h2 {
    font-size: clamp(1.4rem, 2.3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.9rem;
}
.spotlight .summary {
    font-size: 1.05rem;
    color: var(--body);
    max-width: 460px;
    margin-bottom: 1.4rem;
}
.spotlight .bullets {
    display: block;
    margin-bottom: 1.6rem;
}
.spotlight .bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
    color: var(--body);
}
.spotlight .bullets li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--body);
    border-radius: 50%;
    flex: 0 0 auto;
    margin-top: 0.62em;
    margin-left: 0.2rem;
}
.learn-more {
    font-weight: 600;
    color: var(--blue);
    font-size: 0.95rem;
}
.learn-more:hover { color: var(--blue-hover); }

@media (max-width: 760px) {
    .spotlight { padding: 3rem 0; }
    .spotlight .grid { grid-template-columns: 1fr; gap: 2rem; }
    .spotlight.reverse .grid { grid-template-columns: 1fr; }
    .spotlight.reverse .grid > .text { order: 1; }
    .spotlight.reverse .grid > .visual { order: 2; }
}

/* ---------------- SPOTLIGHT VISUALS ---------------- */
.visual-frame {
    position: relative;
    aspect-ratio: 48 / 31;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-window);
    overflow: hidden;
}
.placeholder-frame {
    background: var(--softer);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
}
.placeholder-frame .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.placeholder-frame .placeholder .label {
    font-weight: 600;
    color: var(--body);
    font-size: 0.9rem;
}
.placeholder-frame code {
    font-size: 0.78rem;
    background: #fff;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    border: 1px solid var(--line);
}

.screenshot-carousel,
.screenshot-frame {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef5fb;
}
.screenshot-carousel img,
.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(15,17,21,0.14);
    background: rgba(255,255,255,0.88);
    color: var(--ink);
    font-family: inherit;
    font-size: 1.35rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15,17,21,0.12);
}
.carousel-button:hover {
    background: #fff;
    color: var(--blue);
}
.carousel-button.prev { left: 0.7rem; }
.carousel-button.next { right: 0.7rem; }

/* ---------------- MINI FEATURES ---------------- */
.mini-features {
    padding: 5rem 0 4rem;
    scroll-margin-top: 80px;
}
.section-title {
    text-align: center;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.section-sub {
    text-align: center;
    color: var(--body);
    font-size: 1rem;
    margin-bottom: 3rem;
}
.mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    text-align: center;
}
@media (max-width: 760px) {
    .mini-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1.4rem; }
}
@media (max-width: 460px) {
    .mini-grid { grid-template-columns: 1fr; }
}
.mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}
.mini .icon-wrap {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--blue);
}
.mini .icon-wrap svg {
    width: 34px;
    height: 34px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mini .icon-wrap svg.ad-free-icon {
    overflow: visible;
}
.mini .icon-wrap.blue-icon {
    color: var(--blue);
}
.mini .icon-wrap.blue-icon svg {
    stroke: var(--blue);
}
.mini h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.mini p {
    font-size: 0.88rem;
    color: var(--body);
    max-width: 260px;
}

/* ---------------- SUBSCRIBE ---------------- */
.subscribe {
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--line);
    text-align: center;
}
.subscribe h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.subscribe p { color: var(--body); margin-bottom: 1.6rem; }
.subscribe form {
    display: inline-flex;
    gap: 0.6rem;
    max-width: 460px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}
.subscribe input {
    flex: 1 1 240px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ink);
    outline: none;
}
.subscribe input:focus { border-color: var(--blue); }
.subscribe button {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
}
.subscribe button:hover { background: var(--blue-hover); }
.subscribe button:disabled {
    background: #b8c0cb;
    cursor: not-allowed;
}
.subscribe-status {
    width: 100%;
    min-height: 1.3rem;
    font-size: 0.9rem;
    color: var(--body);
}
.subscribe-status.error { color: #a8312f; }
.subscribe-status.success { color: #1f6f3e; }
.subscribe-fineprint {
    width: 100%;
    font-size: 0.82rem;
    color: var(--body);
    opacity: 0.75;
    margin-top: 0.2rem;
}
.subscribe-fineprint a { color: inherit; }

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: var(--softer);
    border-top: 1px solid var(--line);
    padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .brand { margin-bottom: 0.8rem; }
.footer-brand p {
    font-size: 0.88rem;
    color: var(--body);
    max-width: 260px;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.9rem;
    color: var(--ink);
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--body);
    margin-bottom: 0.55rem;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
    max-width: 1120px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 0.8rem;
}
