/* ===================================================================
   Reachr — premium light theme
   =================================================================== */
:root {
  --bg: #ffffff;
  --bg-tint: #f6f8fd;
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #64748b;
  --line: #e7eaf3;
  --line-2: #eef1f8;

  --brand: #4f46e5;          /* indigo-600 */
  --brand-2: #6366f1;
  --brand-3: #7c3aed;
  --brand-ink: #4338ca;
  --accent: #10b981;         /* emerald  */
  --accent-soft: #ecfdf5;
  --amber: #f59e0b;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1140px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.06);
  --shadow: 0 10px 30px -12px rgba(16,24,40,.18);
  --shadow-lg: 0 30px 60px -25px rgba(67,56,202,.35);
  --grad: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.025em; color: var(--ink); }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: #eef1fb; color: var(--brand-ink);
  padding: .12em .45em; border-radius: 6px; font-size: .9em;
}

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.center { text-align: center; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--brand); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* -------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: .98rem;
  border-radius: 999px; padding: .72rem 1.35rem; border: 1px solid transparent; cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, filter .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn strong { font-weight: 800; }
.btn-sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 26px -10px rgba(99,102,241,.6); }
.btn-primary:hover { box-shadow: 0 18px 34px -12px rgba(99,102,241,.7); filter: saturate(1.05); }
.btn-soft { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-soft:hover { border-color: #d8ddee; background: #fcfdff; }
.btn-white { background: #fff; color: var(--brand-ink); box-shadow: 0 14px 30px -12px rgba(0,0,0,.3); }
.btn-white:hover { background: #f5f6ff; }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* -------------------------------- Topbar -------------------------------- */
.topbar {
  background: var(--grad); color: #fff; text-align: center; font-size: .88rem;
  padding: .55rem 1rem; display: flex; gap: .5rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.topbar-dot { width: 8px; height: 8px; border-radius: 50%; background: #c7f9e0; box-shadow: 0 0 0 4px rgba(199,249,224,.25); }

/* -------------------------------- Header -------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--ink); font-weight: 800; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; background: url('assets/favicon.svg') center / cover no-repeat; box-shadow: 0 6px 14px -6px rgba(59,130,246,.6); }
.brand-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.16rem; letter-spacing: -.02em; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.nav-links > li > a { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }
.nav-links > li > a:hover { color: var(--ink); text-decoration: none; }
.nav-toggle, .nav-burger { display: none; }

/* -------------------------------- Hero -------------------------------- */
.hero { position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden;
  background:
    radial-gradient(680px 380px at 85% -8%, rgba(124,58,237,.10), transparent 60%),
    radial-gradient(620px 360px at 8% 6%, rgba(79,70,229,.08), transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 3rem; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .82rem;
  color: var(--brand-ink); background: #eef0fe; border: 1px solid #e0e2fb;
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); font-weight: 800; margin-bottom: .55rem; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { color: var(--ink-soft); font-size: 1.13rem; max-width: 40ch; }
.lede strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.3rem; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 1.1rem; padding: 0; margin: 0 0 .7rem; color: var(--ink-soft); font-size: .9rem; }
.hero-trust .ck { color: var(--accent); font-weight: 800; margin-right: .15rem; }
.hero-os { color: var(--ink-faint); font-size: .86rem; margin: 0; }
.hero-os-alt { color: var(--ink-faint); font-size: .82rem; margin: 4px 0 0; }
.hero-os-alt:empty { display: none; }
.hero-os-alt a { color: var(--brand, #6d5cff); text-decoration: none; }
.hero-os-alt a:hover { text-decoration: underline; }

/* hero mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.glow { position: absolute; inset: -10% -6% -6% -6%; background: radial-gradient(60% 60% at 60% 40%, rgba(99,102,241,.22), transparent 70%); filter: blur(10px); z-index: 0; }
.window { position: relative; z-index: 1; width: 100%; max-width: 440px; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.window-bar { display: flex; align-items: center; gap: .45rem; padding: .75rem .95rem; background: #fbfcff; border-bottom: 1px solid var(--line-2); }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.window-title { margin-left: .55rem; color: var(--ink-faint); font-size: .8rem; }
.window-badge { margin-left: auto; color: var(--accent); font-size: .72rem; font-weight: 700; background: var(--accent-soft); padding: .15rem .5rem; border-radius: 999px; }
.window-body { padding: 1rem; }
.screen { position: relative; aspect-ratio: 16/10; border-radius: 12px; background: linear-gradient(160deg, #eef2ff, #f7f5ff); border: 1px solid var(--line-2); padding: .9rem; overflow: hidden; }
.s-top { display: flex; gap: .4rem; margin-bottom: .7rem; }
.s-top span { height: 9px; border-radius: 5px; background: #d7ddf3; }
.s-top span:nth-child(1){ width: 40%; } .s-top span:nth-child(2){ width: 22%; } .s-top span:nth-child(3){ width: 14%; }
.s-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .55rem; }
.s-grid div { height: 38px; border-radius: 9px; background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(124,58,237,.12)); border: 1px solid rgba(99,102,241,.18); }
.s-cursor { position: absolute; left: 60%; top: 56%; width: 16px; height: 16px; border-left: 2px solid var(--brand); border-top: 2px solid var(--brand); transform: rotate(-35deg); filter: drop-shadow(0 1px 2px rgba(79,70,229,.4)); animation: drift 4.5s ease-in-out infinite; }
@keyframes drift { 0%,100%{ transform: translate(0,0) rotate(-35deg);} 50%{ transform: translate(-30px,-18px) rotate(-35deg);} }
.screen-foot { display: flex; align-items: center; gap: .5rem; margin-top: .8rem; font-size: .82rem; }
.screen-foot .muted { color: var(--ink-faint); }
.screen-foot .latency { margin-left: auto; color: var(--accent); font-weight: 700; }

/* trust strip */
.trustbar { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; justify-content: center; padding: 1.6rem 1rem 0; margin: 2.6rem 0 0; border-top: 1px solid var(--line-2); color: var(--ink-soft); font-weight: 600; font-size: .92rem; }

/* -------------------------------- Sections -------------------------------- */
.section { padding: 4.7rem 0; }
.section-tint { background: var(--bg-tint); border-block: 1px solid var(--line-2); }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; }
.section-sub { color: var(--ink-soft); font-size: 1.06rem; max-width: 56ch; margin: -.1rem auto 0; }
.section .section-sub { margin-bottom: 2.6rem; }

/* content pages: About / Contact / Download */
.prose { max-width: 70ch; margin: 2.2rem auto 0; color: var(--ink-soft); font-size: 1.04rem; line-height: 1.75; }
.prose h2 { color: var(--ink); font-size: 1.4rem; margin: 2rem 0 .6rem; }
.prose p { margin: 0 0 1rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin: .35rem 0; }
.prose strong { color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin: 2rem 0; }
.contact-link { font-weight: 700; font-size: 1.05rem; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); margin-top: 1.2rem; }
.contact-form h3 { margin: 0 0 1.1rem; }
.contact-form label { display: block; margin-bottom: 1rem; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .35rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-weight: 400; color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(59,130,246,.12); }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 680px) { .contact-grid, .cf-row { grid-template-columns: 1fr; } }

/* cost cards */
.cost-cards { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; margin-top: 2.2rem; }
.cost { border-radius: var(--radius); padding: 1.6rem; text-align: center; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.cost-label { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); margin-bottom: .4rem; }
.cost-num { display: block; font-family: "Plus Jakarta Sans"; font-size: 2.4rem; font-weight: 800; }
.cost-num small { font-size: .9rem; font-weight: 600; color: var(--ink-faint); }
.cost-note { color: var(--ink-faint); font-size: .86rem; }
.cost-bad { background: #fff7f6; border-color: #fde2dd; }
.cost-bad .cost-num { color: #e11d48; text-decoration: line-through; text-decoration-color: rgba(225,29,72,.4); }
.cost-good { background: var(--accent-soft); border-color: #bbf7d8; }
.cost-good .cost-num { color: #047857; }
.cost-vs { font-weight: 800; color: var(--ink-faint); font-family: "Plus Jakarta Sans"; }

/* bento features */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #dfe3f3; }
.card-lg { grid-column: span 1; }
.card-ic { width: 46px; height: 46px; display: grid; place-items: center; font-size: 1.4rem; border-radius: 12px; background: #eef0fe; margin-bottom: .9rem; }
.card h3 { font-size: 1.16rem; }
.card p { color: var(--ink-soft); margin: 0; }

/* Platforms (Windows / macOS / Linux) */
.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.platform { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; box-shadow: var(--shadow-sm); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform .14s ease, box-shadow .2s ease, border-color .2s ease; }
.platform:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #dfe3f3; }
.platform.is-soon { background: #fbfcff; }
.platform-ic { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 1rem; background: #eef0fe; color: var(--brand); }
.platform-ic--win { background: #e8f1fe; color: #2b6cff; }
.platform-ic--mac { background: #f0f1f4; color: #1f2937; }
.platform-ic--linux { background: #fff3e0; color: #e8870c; }
.platform h3 { font-size: 1.3rem; margin: 0 0 .5rem; }
.platform p { color: var(--ink-soft); margin: 0 0 1.4rem; font-size: .98rem; }
.platform .btn { margin-top: auto; }
.platform .is-disabled { pointer-events: none; opacity: .65; }
.soon-tag { position: absolute; top: 14px; right: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--brand-ink); background: #eef0fe; border: 1px solid #dfe3f3; padding: .25rem .6rem; border-radius: 999px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); position: relative; }
.step-no { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-family: "Plus Jakarta Sans"; font-weight: 800; color: #fff; background: var(--grad); margin-bottom: .9rem; box-shadow: 0 8px 18px -8px rgba(99,102,241,.6); }
.step h3 { font-size: 1.16rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* -------------------------------- Pricing -------------------------------- */
.price-card { position: relative; max-width: 520px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2.4rem 2.2rem 2rem; box-shadow: var(--shadow-lg); text-align: center; }
.price-card::before { content: ""; position: absolute; inset: 0; border-radius: 22px; padding: 1px; background: linear-gradient(135deg, rgba(99,102,241,.5), rgba(124,58,237,.3)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-badge { display: inline-block; background: var(--amber); color: #3b2600; font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .9rem; }
.price-name { font-size: 1.15rem; color: var(--ink-soft); font-weight: 700; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: .55rem; margin: .4rem 0 .2rem; }
.price-was { font-size: 1.5rem; color: var(--ink-faint); text-decoration: line-through; }
.price-now { font-family: "Plus Jakarta Sans"; font-size: 3.6rem; font-weight: 800; color: var(--ink); line-height: 1; }
.price-unit { color: var(--ink-faint); font-weight: 600; }
.price-anchor { color: var(--ink-faint); font-size: .9rem; margin: 0 0 1.3rem; }
.price-list { list-style: none; text-align: left; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .6rem; }
.price-list li { position: relative; padding-left: 1.9rem; color: var(--ink-soft); }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; background: var(--accent-soft); color: #047857; border-radius: 50%; font-size: .75rem; font-weight: 800; }
.price-secure { color: var(--ink-faint); font-size: .84rem; margin: .9rem 0 0; }

/* Two-tier pricing grid (Free vs Solo) */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem; max-width: 780px; margin: 0 auto; align-items: stretch; }
.price-grid .price-card { max-width: none; margin: 0; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price-grid .price-card .price-list { flex: 1 0 auto; }
.price-card--featured { box-shadow: var(--shadow-lg); }
.price-card--featured::before { background: linear-gradient(135deg, rgba(99,102,241,.95), rgba(124,58,237,.65)); padding: 2px; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; } }

/* -------------------------------- Comparison -------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 580px; }
.compare th, .compare td { padding: .95rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line-2); }
.compare thead th { font-size: .92rem; color: var(--ink-soft); background: #fbfcff; }
.compare thead th.hl { color: var(--brand-ink); }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare td { color: var(--ink-soft); }
.compare td.yes { color: var(--ink); font-weight: 700; }
.compare td.yes::before { content: "✓ "; color: var(--accent); font-weight: 800; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td.yes { background: rgba(16,185,129,.05); }
.fineprint { color: var(--ink-faint); font-size: .82rem; text-align: center; margin-top: 1rem; }

/* -------------------------------- Guarantee -------------------------------- */
.guarantee { display: flex; gap: 1.3rem; align-items: center; background: var(--accent-soft); border: 1px solid #bbf7d8; border-radius: var(--radius); padding: 1.8rem 2rem; }
.guarantee-ic { font-size: 2.6rem; line-height: 1; }
.guarantee h3 { margin-bottom: .3rem; }
.guarantee p { color: #1f6b53; margin: 0; }

/* -------------------------------- FAQ -------------------------------- */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; margin-bottom: .8rem; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 700; font-family: "Plus Jakarta Sans"; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.5rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 1.1rem; }

/* -------------------------------- CTA -------------------------------- */
.cta { padding: 4.5rem 0; background: var(--grad); color: #fff; text-align: center; }
.cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.cta p { color: rgba(255,255,255,.9); margin-bottom: 1.7rem; font-size: 1.08rem; }
.cta-fine { color: rgba(255,255,255,.78) !important; font-size: .86rem; margin: 1rem 0 0 !important; }

/* -------------------------------- Footer -------------------------------- */
.site-footer { background: #0f172a; color: #cbd5e1; padding: 3.4rem 0 1.6rem; }
.brand-dark .brand-name { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 2rem; }
.footer-tag { color: #94a3b8; max-width: 38ch; margin-top: .7rem; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: .8rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); color: #94a3b8; font-size: .85rem; text-align: center; }

/* -------------------------------- Scenarios (human problems) -------------------------------- */
.scenarios { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 2.4rem; }
.scenario { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .2s ease, border-color .2s ease; }
.scenario:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #dfe3f3; }
.scenario .sc-ic { font-size: 1.7rem; display: block; margin-bottom: .6rem; }
.scenario h3 { font-size: 1.04rem; line-height: 1.35; margin: 0 0 .5rem; color: var(--ink); }
.scenario p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* table can scroll horizontally on small screens instead of breaking the layout */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* -------------------------------- Responsive -------------------------------- */
@media (max-width: 1040px) {
  .scenarios { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-visual { order: -1; }
  .bento { grid-template-columns: 1fr 1fr; }
  .platforms { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed; inset: 110px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: .5rem 1.25rem 1.25rem;
    transform: translateY(-160%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .nav-links li { padding: .35rem 0; }
  .nav-links li:last-child { padding-top: .6rem; }
  .nav-links .btn { width: 100%; }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-burger { display: inline-flex; flex-direction: column; gap: 5px; cursor: pointer; padding: .4rem; }
  .nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }
  .bento { grid-template-columns: 1fr; }
  .scenarios { grid-template-columns: 1fr; }
  .cost-cards { grid-template-columns: 1fr; }
  .cost-vs { margin: -.2rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .hero { padding-top: 2.2rem; }
  .price-now { font-size: 3rem; }
  /* Larger tap targets + full-width CTAs on phones */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: flex-start; }
  .section { padding-top: 2.6rem; padding-bottom: 2.6rem; }
  h1, .hero-copy h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .section-title { font-size: clamp(1.5rem, 6.5vw, 2rem); }
  .container, .container-narrow { width: min(100% - 1.8rem, var(--maxw)); }
}
/* -------------------------------- Install modal -------------------------------- */
.imodal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: rgba(15,23,42,.55); backdrop-filter: blur(3px); padding: 1.25rem; }
.imodal[hidden] { display: none; }
.imodal-card { position: relative; width: min(100%, 460px); background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem 1.8rem 1.8rem; box-shadow: var(--shadow-lg); text-align: center; }
.imodal-x { position: absolute; top: 12px; right: 14px; border: 0; background: transparent; font-size: 1.5rem;
  line-height: 1; color: var(--ink-faint); cursor: pointer; }
.imodal-ic { font-size: 2.2rem; }
.imodal-card h3 { font-size: 1.3rem; margin-top: .4rem; }
.imodal-card p { color: var(--ink-soft); }
.imodal-steps { text-align: left; display: inline-block; margin: .4rem auto 1rem; color: var(--ink); padding-left: 1.2rem; }
.imodal-steps li { margin: .25rem 0; }
.imodal-fine { color: var(--ink-faint); font-size: .85rem; margin: .2rem 0 1.2rem; }

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