/* Warm Ink — shared skin for content pages (pillars, spokes, /vs, 404).
   CHROME (nav, wrap, footer) mirrors site/index.html exactly so moving between
   the homepage and any content page never changes the frame. Article text sits
   in a readable column INSIDE the wide wrap. App pages (/alex) keep their own
   phone-shaped layout on purpose. */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #ff6262; --yellow: #ffe74e; --orange: #ffb255;
  --bg: #fdf8f2; --bg-nav: rgba(253,248,242,.92);
  --ink: #2b2424; --sub: #6f6363; --maroon: #7f3d3d;
  --card: #fff; --line: rgba(127,61,61,.15); --input-border: #6f6363;
  --shadow: 0 18px 50px rgba(127,61,61,.3);
  --ink-grad: #3d1414; --ink-takeover: #401515;
  --grad-btn: linear-gradient(172.31deg, #ffe74e 0%, #ff6262 70%);
  --grad-screen: linear-gradient(117.46deg, rgba(255,231,78,.92) 21.73%, rgba(255,98,98,.94) 44.02%);
  --ease-settle: cubic-bezier(.22,1,.36,1);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #221b19; --bg-nav: rgba(34,27,25,.92);
    --ink: #f4ece6; --sub: #b5a49c; --maroon: #e0968c;
    --card: #2d2422; --line: rgba(224,150,140,.18); --input-border: #b5a49c;
    --shadow: 0 18px 50px rgba(0,0,0,.5);
  }
}
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.65; font-size: 16px; font-feature-settings: "dlig" 1; -webkit-font-smoothing: antialiased; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--maroon); }
img { display: block; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------------- nav (identical to homepage) ---------------- */
nav { position: sticky; top: 0; z-index: 50; background: var(--bg-nav); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo-img { height: 20px; width: auto; }
.login { display: inline-block; font-size: 14px; font-weight: 700; color: var(--maroon); text-decoration: none; border: 1.5px solid var(--maroon); border-radius: 999px; padding: 8px 20px; transition: background .15s, color .15s; }
.login:hover { background: var(--maroon); color: #fdf8f2; }
.navlinks { display: flex; gap: 18px; font-size: 13.5px; font-weight: 600; }
.navlinks a { color: var(--sub); text-decoration: none; }
.navlinks a:hover { color: var(--ink); }
@media (max-width: 720px) { .navlinks { display: none; } }

/* ---------------- article column ---------------- */
.page { max-width: 760px; margin: 0 auto; }
.crumbs { font-size: 12.5px; color: var(--sub); padding: 18px 0 0; }
.crumbs a { color: var(--maroon); text-decoration: none; font-weight: 600; }

article { padding: 26px 0 48px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
h1 { font-size: clamp(30px, 6vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.08; margin-bottom: 14px; }
h1 em { font-style: normal; background: linear-gradient(120deg, #e04848 0%, #7f3d3d 85%); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (prefers-color-scheme: dark) { h1 em { background: linear-gradient(120deg, #ff8a8a 0%, #e0968c 85%); -webkit-background-clip: text; background-clip: text; } }
h2 { font-size: clamp(21px, 4vw, 26px); font-weight: 800; letter-spacing: -.5px; margin: 34px 0 10px; }
h3 { font-size: 16.5px; font-weight: 800; margin: 22px 0 6px; }
p, li { color: var(--sub); font-size: 15.5px; margin-bottom: 12px; }
p b, li b { color: var(--ink); }
ul, ol { padding-left: 22px; margin-bottom: 14px; }
a.inline { color: var(--maroon); font-weight: 700; }

.lede { font-size: 17.5px; line-height: 1.6; color: var(--sub); max-width: 58ch; }
.lede b { color: var(--ink); }

.steps { display: grid; gap: 12px; margin: 18px 0; }
@media (min-width: 620px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.step .n { width: 24px; height: 24px; border-radius: 50%; background-image: var(--grad-btn); color: var(--ink-grad); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; margin-bottom: 8px; }
.step h3 { margin: 0 0 4px; font-size: 15px; }
.step p { font-size: 13.5px; margin: 0; }

.cards { display: grid; gap: 12px; margin: 18px 0; }
@media (min-width: 620px) { .cards { grid-template-columns: 1fr 1fr; } }
.card { display: block; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; text-decoration: none; transition: transform 120ms var(--ease-settle), box-shadow .15s; }
.card:hover { box-shadow: 0 10px 30px rgba(127,61,61,.12); }
.card:active { transform: scale(.98); }
.card h3 { margin: 0 0 4px; font-size: 15.5px; color: var(--ink); }
.card p { font-size: 13.5px; margin: 0; }
.card .go { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--maroon); }

.callout { border-left: 3px solid var(--primary); background: var(--card); border-radius: 0 14px 14px 0; padding: 14px 16px; margin: 18px 0; }
.callout p { margin: 0; font-size: 14.5px; }

.compare { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.compare th, .compare td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare th { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--maroon); }
.compare td:first-child { color: var(--ink); font-weight: 700; }
.compare .yes { color: #2e9e44; font-weight: 700; }
.compare .no { color: #b3372f; font-weight: 700; }
@media (prefers-color-scheme: dark) { .compare .yes { color: #8fd8a5; } .compare .no { color: #e0776d; } }

.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 14px 0; font-size: 15.5px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 14px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--primary); font-weight: 400; font-size: 19px; }
.faq details[open] summary::after { content: '–'; }
.faq .a { padding: 0 0 16px; color: var(--sub); font-size: 14.5px; max-width: 58ch; }

/* CTA band mirrors the homepage's get-sticker takeover */
.cta-band { background: var(--grad-screen); border-radius: 20px; padding: 28px 26px; margin: 36px 0 8px; color: var(--ink-takeover); }
.cta-band h2 { color: var(--ink-takeover); margin: 0 0 6px; }
.cta-band p { color: var(--ink-takeover); font-weight: 600; margin-bottom: 14px; }
.cta-band a {
  display: inline-flex; align-items: center; height: 48px; padding: 0 26px;
  background: #fff; color: var(--maroon); border-radius: 27px; text-decoration: none;
  font-size: 15px; font-weight: 800; box-shadow: 0 12px 30px rgba(64,21,21,.26);
  transition: transform .15s var(--ease-settle);
}
.cta-band a:hover { transform: translateY(-2px); color: var(--maroon); }

/* ---------------- footer (identical to homepage) ---------------- */
footer { padding: 0 0 56px; }
.foot-cols { display: flex; flex-wrap: wrap; gap: 32px; border-top: 1px solid var(--line); padding-top: 32px; margin-bottom: 26px; }
.foot-cols b { display: block; font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.foot-cols a { display: block; font-size: 13px; color: var(--sub); text-decoration: none; padding: 2.5px 0; }
.foot-cols a:hover { color: var(--ink); }
.foot-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 0; }
.foot-l { display: flex; align-items: center; gap: 16px; }
.foot-l img { height: 15px; width: auto; }
.foot-l p { font-size: 12.5px; color: var(--sub); }
.foot-r a { font-size: 13px; font-weight: 700; text-decoration: none; }

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