/* ==========================================================================
   Pry Landing Page — Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */

:root {
    /* Backgrounds */
    --bg:           #0a0c10;
    --bg-elev:      #111419;
    --bg-card:      #13161c;
    --bg-card-hover:#181c24;

    /* Borders */
    --border:       #1e2530;
    --border-subtle:#161b24;

    /* Foreground */
    --fg:           #e7ecf0;
    --fg-dim:       #9099a6;
    --fg-muted:     #5a6370;

    /* Accent */
    --accent:       #ff4b5c;
    --accent-hover: #ff6272;
    --accent-glow:  rgba(255, 75, 92, 0.15);
    --accent-glow-strong: rgba(255, 75, 92, 0.25);

    /* Secondary */
    --blue:         #3b82f6;
    --blue-dim:     rgba(59, 130, 246, 0.15);

    /* Radii */
    --radius:       12px;
    --radius-sm:    8px;
    --radius-pill:  100px;

    /* Typography */
    --sans:         -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro", "Inter", system-ui, sans-serif;
    --mono:         "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Monaco, monospace;

    /* Layout */
    --container:    1120px;
    --container-sm: 800px;
}


/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-size: 16px;
}

a {
    color: var(--fg);
    text-decoration: none;
    transition: color 150ms ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

code {
    font-family: var(--mono);
    font-size: 0.875em;
    background: var(--bg-elev);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    color: #e6c07b;
}

pre {
    font-family: var(--mono);
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    overflow-x: auto;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

pre code {
    background: transparent;
    padding: 0;
    color: var(--fg);
    font-size: inherit;
}


/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */

.anim-fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade-up.anim-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in grids */
.anim-fade-up:nth-child(2) { transition-delay: 0.08s; }
.anim-fade-up:nth-child(3) { transition-delay: 0.16s; }
.anim-fade-up:nth-child(4) { transition-delay: 0.24s; }


/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--sans);
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn--primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
    color: #fff;
}

.btn--ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--fg);
}

.btn--ghost:hover {
    border-color: var(--fg-dim);
    color: var(--fg);
    transform: translateY(-1px);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}


/* --------------------------------------------------------------------------
   Section Titles
   -------------------------------------------------------------------------- */

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px;
    line-height: 1.15;
}

.section__subtitle {
    text-align: center;
    color: var(--fg-dim);
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.6;
}


/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */

.nav {
    position: sticky;
    top: 0;
    background: rgba(10, 12, 16, 0.8);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--fg);
}

.nav__brand:hover {
    color: var(--fg);
}

.nav__logo {
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav__link {
    color: var(--fg-dim);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 150ms ease;
}

.nav__link:hover {
    color: var(--fg);
}

.nav__link--github {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__stars-badge {
    height: 20px;
    vertical-align: middle;
}

.nav__stars-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fg-dim);
    background: var(--bg-elev);
    border: 1px solid var(--border);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

/* Mobile toggle */
.nav__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 200ms ease, opacity 200ms ease;
}

.nav__mobile-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__mobile-toggle--active span:nth-child(2) {
    opacity: 0;
}
.nav__mobile-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    padding: 100px 24px 80px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 75, 92, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg) 0%, #0d1017 40%, var(--bg) 100%);
}

.hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 0 0 24px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--fg-dim);
    max-width: 660px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.hero__cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__screenshot {
    max-width: 900px;
    margin: 0 auto;
}

.hero__caption {
    text-align: center;
    color: var(--fg-muted);
    font-size: 0.85rem;
    margin-top: 16px;
}


/* --------------------------------------------------------------------------
   IMAGE PLACEHOLDERS
   -------------------------------------------------------------------------- */

.placeholder {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: rgba(17, 20, 25, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 300ms ease;
}

.placeholder:hover {
    border-color: var(--fg-muted);
}

.placeholder--landscape {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.placeholder--portrait {
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.placeholder__icon {
    color: var(--fg-muted);
    opacity: 0.6;
}

.placeholder__text {
    color: var(--fg-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    max-width: 360px;
}


/* --------------------------------------------------------------------------
   TRUST BAR
   -------------------------------------------------------------------------- */

.trust-bar {
    padding: 32px 24px;
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-elev);
}

.trust-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.trust-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: var(--fg-dim);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 200ms ease, background 200ms ease;
}

.trust-bar__badge:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.12);
}

.trust-bar__badge svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.trust-bar__badge--link {
    cursor: pointer;
    text-decoration: none;
    color: var(--fg-dim);
}

.trust-bar__badge--link:hover {
    color: var(--fg-dim);
}

.trust-bar__badge img {
    height: 18px;
}


/* --------------------------------------------------------------------------
   WHY PRY
   -------------------------------------------------------------------------- */

.why-pry {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.why-pry__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.why-pry__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.compare-card:hover {
    border-color: rgba(255, 75, 92, 0.3);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-2px);
}

.compare-card__icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.compare-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.compare-card__pry {
    color: var(--fg-dim);
    font-size: 0.92rem;
    margin: 0 0 20px;
    line-height: 1.55;
}

.compare-card__vs {
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.compare-card__vs-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--fg-muted);
    margin-bottom: 6px;
}

.compare-card__old {
    color: var(--fg-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}


/* --------------------------------------------------------------------------
   FEATURE SHOWCASE
   -------------------------------------------------------------------------- */

.features {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.features__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row--reversed {
    direction: rtl;
}

.feature-row--reversed > * {
    direction: ltr;
}

.feature-row__media {
    margin: 0;
}

.feature-row__media figcaption {
    text-align: center;
    color: var(--fg-muted);
    font-size: 0.8rem;
    margin-top: 12px;
    line-height: 1.45;
}

.feature-row__text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.feature-row__text p {
    color: var(--fg-dim);
    font-size: 0.95rem;
    margin: 0 0 20px;
    line-height: 1.6;
}

.feature-row__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-row__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--fg-dim);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-row__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}


/* --------------------------------------------------------------------------
   PRIVACY BLOCK
   -------------------------------------------------------------------------- */

.privacy {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
    background:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 75, 92, 0.04) 0%, transparent 70%);
}

.privacy__inner {
    max-width: var(--container-sm);
    margin: 0 auto;
    text-align: center;
}

.privacy__icon {
    margin-bottom: 24px;
}

.privacy__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    line-height: 1.15;
}

.privacy__text {
    color: var(--fg-dim);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0 0 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.privacy__badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(255, 75, 92, 0.08);
    border: 1px solid rgba(255, 75, 92, 0.2);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
}


/* --------------------------------------------------------------------------
   INSTALL
   -------------------------------------------------------------------------- */

.install {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.install__inner {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.install__steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.install__step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.install__step:last-child {
    margin-bottom: 0;
}

.install__step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
}

.install__step-content {
    flex: 1;
    min-width: 0;
}

.install__step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 8px 0 14px;
}

.install__step-content p {
    color: var(--fg-dim);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.install__step-content pre {
    margin-top: 0;
}


/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */

.pricing {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.pricing__inner {
    max-width: var(--container);
    margin: 0 auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 880px;
    margin: 0 auto;
}

.tier {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.tier:hover {
    border-color: var(--border);
}

.tier--pro {
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px var(--accent),
        0 0 40px var(--accent-glow),
        0 0 80px rgba(255, 75, 92, 0.06);
}

.tier--pro:hover {
    border-color: var(--accent);
    box-shadow:
        0 0 0 1px var(--accent),
        0 0 50px var(--accent-glow-strong),
        0 0 100px rgba(255, 75, 92, 0.1);
}

.tier__badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tier__header {
    margin-bottom: 28px;
}

.tier__name {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: 700;
}

.tier__price {
    margin: 0 0 4px;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.tier__price-unit {
    font-size: 0.95rem;
    color: var(--fg-dim);
    font-weight: 500;
}

.tier__price-sub {
    color: var(--fg-dim);
    font-size: 0.88rem;
    margin: 6px 0 0;
}

.tier__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.tier__features li {
    padding: 9px 0 9px 28px;
    position: relative;
    color: var(--fg-dim);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.5;
}

.tier__features li:last-child {
    border-bottom: none;
}

.tier__features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
}

.tier__features li strong {
    color: var(--fg);
}

.tier__cta {
    width: 100%;
    text-align: center;
}

.tier__disclaimer {
    margin: 16px 0 0;
    font-size: 0.78rem;
    color: var(--fg-muted);
    text-align: center;
    line-height: 1.5;
}


/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.faq__inner {
    max-width: var(--container-sm);
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 200ms ease;
}

.faq__item[open] {
    border-color: rgba(255, 75, 92, 0.25);
}

.faq__question {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 20px 56px 20px 24px;
    list-style: none;
    position: relative;
    transition: color 150ms ease;
    line-height: 1.45;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::marker {
    content: "";
}

.faq__question::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--fg-muted);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 200ms ease, color 200ms ease;
}

.faq__item[open] .faq__question::after {
    content: "\2212";
    color: var(--accent);
    transform: translateY(-50%);
}

.faq__answer {
    padding: 0 24px 20px;
}

.faq__answer p {
    margin: 0;
    color: var(--fg-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

.faq__answer a {
    color: var(--accent);
}


/* --------------------------------------------------------------------------
   CTA FINAL
   -------------------------------------------------------------------------- */

.cta-final {
    padding: 96px 24px;
    border-bottom: 1px solid var(--border-subtle);
    background:
        radial-gradient(ellipse 70% 50% at 50% 60%, rgba(255, 75, 92, 0.05) 0%, transparent 70%);
}

.cta-final__inner {
    max-width: var(--container-sm);
    margin: 0 auto;
    text-align: center;
}

.cta-final__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    line-height: 1.1;
}

.cta-final__subtitle {
    color: var(--fg-dim);
    font-size: 1.1rem;
    margin: 0 0 40px;
    line-height: 1.6;
}

.cta-final__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.footer {
    padding: 36px 24px;
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copyright {
    color: var(--fg-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    color: var(--fg-muted);
    font-size: 0.85rem;
    transition: color 150ms ease;
}

.footer__links a:hover {
    color: var(--fg);
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Tablet (< 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 12, 16, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px 24px 20px;
        gap: 14px;
    }

    .nav__links--open {
        display: flex;
    }

    .nav__mobile-toggle {
        display: flex;
    }

    .why-pry__grid {
        grid-template-columns: 1fr;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row--reversed {
        direction: ltr;
    }

    .feature-row__media {
        order: -1;
    }

    .placeholder--portrait {
        max-width: 260px;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .hero {
        padding: 72px 24px 56px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }

    .section__subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .why-pry, .features, .privacy, .install, .pricing, .faq, .cta-final {
        padding: 64px 24px;
    }

    .feature-row {
        margin-bottom: 56px;
    }
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Small mobile (< 480px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
    .hero {
        padding: 56px 16px 44px;
    }

    .hero__cta-row {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .cta-final__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-bar__inner {
        gap: 8px;
    }

    .trust-bar__badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .compare-card {
        padding: 22px;
    }

    .tier {
        padding: 28px 24px;
    }

    .install__step {
        flex-direction: column;
        gap: 12px;
    }

    .placeholder--portrait {
        max-width: 220px;
    }

    .privacy__badges {
        gap: 8px;
    }

    .privacy__badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .why-pry, .features, .privacy, .install, .pricing, .faq, .cta-final {
        padding: 48px 16px;
    }

    .nav__inner {
        padding: 12px 16px;
    }

    pre {
        padding: 16px;
        font-size: 0.8rem;
    }
}
