/*
Theme Name: RingVeil
Theme URI: https://ringveil.com
Author: RingVeil
Author URI: https://ringveil.com
Description: Marketing site for RingVeil — done-for-you missed-call text-back and AI call answering for service businesses. One-page front end (hero with trust stats, stakes panel, three-step explainer, feature grid, two-plan pricing, guarantee, FAQ accordion, bylined insights article, final CTA) plus page and blog templates. Signal-orange on steel, light and dark palettes, Archivo + IBM Plex Sans.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ringveil
*/

/* ============================================================
   RINGVEIL — single stylesheet

     1. Tokens (light + dark)
     2. Base
     3. Buttons
     4. Nav
     5. Hero + trust
     6. Section chrome
     7. Stakes
     8. Steps
     9. Features
    10. Pricing
    11. Guarantee
    12. FAQ
    13. Article
    14. Final CTA + footer
    15. Pages
    16. Responsive + motion
   ============================================================ */

/* ── 1. Tokens ────────────────────────────────────────────── */
:root {
    --bg: #EEF1F2;
    --surface: #FFFFFF;
    --surface-2: #F4F6F7;
    --ink: #12181C;
    --ink-soft: #45555E;
    --ink-faint: #6E7E88;
    --line: #DBE2E6;
    --line-strong: #C4CFD5;
    --signal: #E7631A;
    --signal-ink: #C0510F;
    --signal-soft: #FBEDE4;
    --steel: #173F4D;
    --steel-2: #245B6D;
    --steel-ink: #0E2A34;
    --mint: #8FD6C4;
    --good: #2C7A52;
    --shadow-sm: 0 1px 2px rgba(16, 24, 28, .06), 0 4px 14px rgba(16, 24, 28, .05);
    --shadow-lg: 0 18px 50px rgba(16, 24, 28, .14);
    --radius: 16px;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #0B1215;
        --surface: #131E23;
        --surface-2: #0F191E;
        --ink: #E9EFF1;
        --ink-soft: #AEBDC5;
        --ink-faint: #7E8E97;
        --line: #243139;
        --line-strong: #36474F;
        --signal: #F5813C;
        --signal-ink: #F5934F;
        --signal-soft: #241611;
        --steel: #0E2A34;
        --steel-2: #2C6274;
        --steel-ink: #BFE0EA;
        --good: #57C088;
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 18px rgba(0, 0, 0, .3);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
    }
}

:root[data-theme="dark"] {
    --bg: #0B1215;
    --surface: #131E23;
    --surface-2: #0F191E;
    --ink: #E9EFF1;
    --ink-soft: #AEBDC5;
    --ink-faint: #7E8E97;
    --line: #243139;
    --line-strong: #36474F;
    --signal: #F5813C;
    --signal-ink: #F5934F;
    --signal-soft: #241611;
    --steel: #0E2A34;
    --steel-2: #2C6274;
    --steel-ink: #BFE0EA;
    --good: #57C088;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 18px rgba(0, 0, 0, .3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .5);
}

/* ── 2. Base ──────────────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand {
    font-family: "Archivo", system-ui, sans-serif;
    line-height: 1.1;
    margin: 0;
    text-wrap: balance;
}

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

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

:focus-visible {
    outline: 3px solid var(--signal);
    outline-offset: 2px;
    border-radius: 6px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--steel);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.sig { color: var(--signal); }

/* ── 3. Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 11px;
    cursor: pointer;
    border: none;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, color .12s ease;
}
.btn-primary {
    background: var(--signal);
    color: #fff;
    box-shadow: 0 6px 18px rgba(231, 99, 26, .32);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(231, 99, 26, .4);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal-ink); }
.btn-lg { font-size: 16px; padding: 15px 28px; }

/* ── 4. Nav ───────────────────────────────────────────────── */
nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
@supports not (background: color-mix(in srgb, red 50%, transparent)) {
    nav { background: var(--bg); }
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 22px;
    max-width: 1080px;
    margin: 0 auto;
}

.brand {
    font-weight: 900;
    font-size: 21px;
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
}
.brand .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 4px rgba(231, 99, 26, .26);
    flex: none;
}

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a.lnk { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.nav-links a.lnk:hover { color: var(--ink); }
.nav-cta { padding: 9px 16px; }

.theme {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--ink-soft);
    border-radius: 9px;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 13px;
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-weight: 600;
}
.theme:hover { color: var(--ink); border-color: var(--signal); }

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0 9px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    cursor: pointer;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 10px 22px 20px;
    border-top: 1px solid var(--line);
    background: var(--bg);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
    padding: 13px 2px;
    font-weight: 600;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav-cta {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
    color: #fff;
}
.mobile-nav-cta:hover { color: #fff; }

/* ── 5. Hero ──────────────────────────────────────────────── */
.hero { padding: 64px 0 30px; text-align: center; }

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--steel-2);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 15px;
    box-shadow: var(--shadow-sm);
}
.kicker .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--good); }

h1 {
    font-size: clamp(34px, 6.4vw, 60px);
    font-weight: 900;
    letter-spacing: -.025em;
    margin: 22px auto 0;
    max-width: 16ch;
}

.hero .lede {
    font-size: clamp(17px, 2.3vw, 21px);
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 18px auto 0;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.micro { margin: 14px 0 0; font-size: 13px; color: var(--ink-faint); }

.trust {
    display: flex;
    gap: 1px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 46px auto 0;
    max-width: 840px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.trust .cell { background: var(--surface); flex: 1 1 200px; padding: 20px 18px; text-align: center; }
.trust .num {
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: var(--signal);
    letter-spacing: -.02em;
}
.trust .lbl { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

/* ── 6. Section chrome ────────────────────────────────────── */
section.band { padding: 56px 0; }

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--signal-ink);
    text-align: center;
}
.eyebrow--mint { color: var(--mint); }

h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    text-align: center;
    margin: 12px auto 0;
    max-width: 20ch;
}

.sec-lede {
    text-align: center;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 14px auto 0;
    font-size: 17px;
}

/* ── 7. Stakes ────────────────────────────────────────────── */
.stakes {
    position: relative;
    overflow: hidden;
    background: var(--steel);
    color: #fff;
    border-radius: 22px;
    padding: 44px 34px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.stakes > *:not(.shape) { position: relative; z-index: 1; }

/* Decorative corner flourish on the dark panels. Original artwork,
   ornamental only, so it stays out of the accessibility tree. */
.shape--curve {
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 190px;
    color: #fff;
    pointer-events: none;
}
.stakes h2 { color: #fff; max-width: 24ch; }
.stakes .big {
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 8vw, 72px);
    color: var(--signal);
    letter-spacing: -.03em;
    line-height: 1;
    margin-top: 8px;
}
.stakes p { color: #C7DBE2; max-width: 54ch; margin: 14px auto 0; font-size: 17px; }

/* ── 8. Steps + device mockup ─────────────────────────────── */
/* Device sits left, the three steps stack to its right. The phone is
   drawn entirely in CSS — no image files anywhere in this theme. */
.how-grid {
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
    gap: 44px;
    align-items: center;
    margin-top: 40px;
}

.device-col { display: flex; justify-content: center; }

.phone {
    width: 300px;
    max-width: 100%;
    filter: drop-shadow(0 24px 50px rgba(16, 24, 28, .22));
}
.phone__frame {
    position: relative;
    aspect-ratio: 300 / 610;
    background: linear-gradient(160deg, #253840, #0d171c);
    border-radius: 42px;
    padding: 12px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .07);
}
.phone__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 122px;
    height: 22px;
    background: #0d171c;
    border-radius: 0 0 15px 15px;
    z-index: 3;
}
.phone__screen {
    height: 100%;
    background: var(--surface-2);
    border-radius: 31px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone__bar {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 32px 15px 11px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}
.phone__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--signal);
    color: #fff;
    font-family: "Archivo", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 900;
}
.phone__name { font-size: 14px; font-weight: 700; color: var(--ink); }

.thread {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 13px;
    overflow: hidden;
}
.thread__event {
    align-self: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-faint);
    background: color-mix(in srgb, var(--ink) 8%, transparent);
    padding: 4px 11px;
    border-radius: 999px;
    text-align: center;
}
.thread__event--win {
    color: #fff;
    background: var(--good);
}
.bubble {
    max-width: 85%;
    padding: 9px 13px;
    font-size: 13px;
    line-height: 1.45;
    border-radius: 17px;
}
.bubble--out {
    align-self: flex-start;
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
    border-bottom-left-radius: 5px;
}
.bubble--in {
    align-self: flex-end;
    background: var(--steel-2);
    color: #fff;
    border-bottom-right-radius: 5px;
}

/* Staged reveal, driven by data-delay in main.js. Without JS every
   message is simply visible from the start. */
.js-reveal .js-msg { opacity: 0; transform: translateY(9px); }
.js-reveal .js-msg.is-in {
    opacity: 1;
    transform: none;
    transition: opacity .36s ease, transform .36s ease;
}

.steps { display: flex; flex-direction: column; gap: 14px; margin: 0; padding: 0; list-style: none; }
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 24px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 16px;
}
.step .n { grid-row: span 2; }
.step h3, .step p { grid-column: 2; }
.step .n {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--signal-soft);
    color: var(--signal-ink);
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 900;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step h3 { font-size: 18px; font-weight: 700; margin: 3px 0 5px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ── 9. Features ──────────────────────────────────────────── */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.fcard {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.fcard .ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--steel);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcard .ic .icon { width: 20px; height: 20px; }
.icon { flex: none; }
.fcard h3 { font-size: 16px; font-weight: 700; margin: 12px 0 5px; }
.fcard p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ── 10. Pricing ──────────────────────────────────────────── */
.prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 42px;
    align-items: stretch;
}
.plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.plan.feat-plan { border: 2px solid var(--signal); box-shadow: var(--shadow-lg); position: relative; }
.plan .tagpop {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--signal);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.plan .pname {
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--steel-2);
}
.plan .pname--signal { color: var(--signal-ink); }
.plan .pfor { font-size: 13.5px; color: var(--ink-faint); margin-top: 4px; }
.plan .price {
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 900;
    font-size: 52px;
    letter-spacing: -.03em;
    margin: 16px 0 0;
    line-height: 1;
}
.plan .price small {
    font-family: "IBM Plex Sans", system-ui, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--ink-faint);
    letter-spacing: 0;
}
.plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.plan li .ck {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--good);
    position: relative;
    margin-top: 1px;
}
.plan li .ck::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2.5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(42deg);
}
.plan li.star .ck { background: var(--signal); }
.plan li b { color: var(--ink); font-weight: 700; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

.pricenote { text-align: center; color: var(--ink-faint); font-size: 13.5px; margin-top: 18px; }

/* ── 11. Guarantee ────────────────────────────────────────── */
.guarantee {
    margin-top: 44px;
    background: var(--signal-soft);
    border: 2px dashed var(--signal);
    border-radius: 20px;
    padding: 34px;
    text-align: center;
}
.guarantee h3 {
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--ink);
    letter-spacing: -.01em;
}
.guarantee p { margin: 10px auto 0; max-width: 52ch; color: var(--ink-soft); font-size: 16px; }

/* ── 12. FAQ ──────────────────────────────────────────────── */
/* Built on <details> so every answer is in the DOM and indexable, and the
   accordion still works with JavaScript disabled. */
.faq { max-width: 760px; margin: 38px auto 0; }
.qa {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 13px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.qa summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 20px;
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--signal-ink); }
.qa .plus {
    color: var(--signal);
    font-size: 22px;
    font-weight: 800;
    transition: transform .2s ease;
    flex: 0 0 auto;
}
.qa[open] .plus { transform: rotate(45deg); }
.qa .ans p { margin: 0; padding: 0 20px 18px; color: var(--ink-soft); font-size: 15px; }

/* ── 13. Article ──────────────────────────────────────────── */
.article { max-width: 720px; margin: 34px auto 0; }
.article .byline {
    font-size: 13px;
    color: var(--ink-faint);
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}
.body-copy { margin-top: 26px; font-size: 17px; line-height: 1.78; color: var(--ink-soft); }
.body-copy p { margin: 0 0 18px; }
.body-copy strong, .body-copy b { color: var(--ink); font-weight: 700; }
.body-copy h2, .body-copy h3 { text-align: left; max-width: none; color: var(--ink); margin: 32px 0 12px; }
.body-copy ul, .body-copy ol { padding-left: 1.3em; margin: 0 0 18px; }
.body-copy li { margin-bottom: .4em; }
.body-copy a { color: var(--signal-ink); text-decoration: underline; }

.pullquote {
    position: relative;
    font-family: "Archivo", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.28;
    color: var(--ink);
    letter-spacing: -.01em;
    border-left: 4px solid var(--signal);
    padding: 4px 0 4px 22px;
    margin: 28px 0;
}
.shape--quote {
    width: 30px;
    height: 22px;
    color: var(--signal);
    opacity: .28;
    display: block;
    margin-bottom: 8px;
}

.sources {
    margin-top: 26px;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--ink-faint);
    border-top: 1px solid var(--line);
    padding-top: 14px;
}
.sources a { color: var(--ink-faint); text-decoration: underline; }

/* ── 14. Final CTA + footer ───────────────────────────────── */
.final {
    position: relative;
    overflow: hidden;
    background: var(--steel);
    color: #fff;
    border-radius: 24px;
    padding: 52px 34px;
    text-align: center;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}
.final > *:not(.shape) { position: relative; z-index: 1; }
.final h2 { color: #fff; }
.final p { color: #C7DBE2; max-width: 50ch; margin: 14px auto 24px; font-size: 17px; }
.final .contact { margin-top: 20px; font-size: 14.5px; color: #9FC0CB; }
.final .contact .repl { color: #FFC59E; font-weight: 700; }
.final .contact .repl:hover { color: #fff; text-decoration: underline; }

footer { padding: 34px 0 46px; text-align: center; color: var(--ink-faint); font-size: 13px; }
footer .brand { justify-content: center; font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.foot-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 12px;
}
.foot-links a { color: var(--ink-faint); }
.foot-links a:hover { color: var(--signal-ink); }
.foot-legal { margin-top: 8px; }

/* ── 15. Pages ────────────────────────────────────────────── */
.article--page { margin-top: 0; }
.page-title {
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 900;
    letter-spacing: -.025em;
    text-align: left;
}
.pagination { margin-top: 40px; font-weight: 600; }
.pagination a { color: var(--signal-ink); }

/* ── 16. Responsive + motion ──────────────────────────────── */
@media (max-width: 820px) {
    .feat { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
    /* Device above the steps rather than beside them. */
    .how-grid { grid-template-columns: 1fr; gap: 32px; }
    .phone { width: 272px; }
}

@media (max-width: 760px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .prices { grid-template-columns: 1fr; }
    .plan.feat-plan { margin-top: 8px; }
    .shape--curve { width: 130px; height: 130px; }
}

@media (max-width: 560px) {
    .feat { grid-template-columns: 1fr; }
    section.band { padding: 44px 0; }
    .hero { padding: 44px 0 24px; }
    .stakes, .final { padding: 34px 22px; border-radius: 18px; }
    .guarantee { padding: 26px 20px; }
    .plan { padding: 26px 22px; }
    .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
    html { scroll-behavior: auto; }
}

@media print {
    nav, .mobile-nav, .hero-cta, .final { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; }
    .stakes { background: #fff; color: #000; box-shadow: none; border: 1px solid #999; }
    .qa .ans p { display: block !important; }
}
