/* GlowUpKit AI — marketing site. Premium Rose theme, matched to the app
   (Instrument Serif display + Manrope UI). Dependency-free. */

:root {
  --bg: #FBF6F2;
  --surface: #FFFFFF;
  --surface-alt: #FDF2F6;
  --accent: #D14976;
  --accent-deep: #9C2E54;
  --accent-soft: #FDE7EE;
  --ink: #1F1014;
  --ink-soft: #5D4A52;
  --muted: #A48C95;
  --border: #F0E0E6;
  --gold: #C0996C;
  --success: #5E9170;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --shadow-soft: 0 24px 60px -28px rgba(156, 46, 84, 0.30);
  --shadow-card: 0 18px 48px -26px rgba(31, 16, 20, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Soft brand glow in the page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(209, 73, 118, 0.10), transparent 60%),
    radial-gradient(700px 480px at -10% 5%, rgba(192, 153, 108, 0.10), transparent 55%);
  pointer-events: none;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
.italic { font-family: "Instrument Serif", Georgia, serif; font-style: italic; }

a { color: var(--accent-deep); text-decoration: none; }
a:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(209, 73, 118, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 20px 38px -12px rgba(209, 73, 118, 0.6); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { transform: translateY(-2px); color: var(--ink); box-shadow: var(--shadow-card); }
.btn svg { width: 20px; height: 20px; }

/* ---------- Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(251, 246, 242, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff; font-family: "Instrument Serif", serif; font-size: 22px; }
.brand .ai { font-size: 11px; font-weight: 800; letter-spacing: .08em; color: var(--accent); background: var(--accent-soft);
  padding: 3px 7px; border-radius: 6px; transform: translateY(-6px); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep); background: var(--accent-soft); padding: 7px 14px; border-radius: 100px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
h1.hero-title {
  font-family: "Instrument Serif", Georgia, serif; font-weight: 400;
  font-size: clamp(44px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.015em;
  margin: 22px 0 18px; color: var(--ink);
}
h1.hero-title .italic { color: var(--accent); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); max-width: 30em; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--success); }

/* Hero visual: a stylized result card */
.report-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transform: rotate(1.2deg);
}
.report-card::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7); pointer-events: none;
}
.rc-head { display: flex; align-items: center; justify-content: space-between; }
.rc-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.rc-season { font-family: "Instrument Serif", serif; font-size: 30px; line-height: 1.1; margin-top: 4px; }
.rc-season em { font-style: italic; color: var(--accent); }
.rc-chip { font-size: 12px; font-weight: 700; color: var(--ink-soft); background: var(--surface-alt); border: 1px solid var(--border); padding: 6px 10px; border-radius: 100px; }
.swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 18px 0 4px; }
.swatch { aspect-ratio: 1; border-radius: 10px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.04); }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.ba-tile { border-radius: 14px; height: 116px; position: relative; overflow: hidden; border: 1px solid var(--border); }
.ba-tile span { position: absolute; left: 10px; top: 10px; font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: rgba(31,16,20,.45); padding: 4px 8px; border-radius: 100px; backdrop-filter: blur(4px); }
.ba-before { background: linear-gradient(160deg, #E8D5CC, #C9AEA3); filter: saturate(.7); }
.ba-after { background: linear-gradient(160deg, #F7C9D8, #E59A7E); }
.rc-steps { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.rc-step { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.rc-step .n { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 800;
  background: var(--accent-soft); color: var(--accent-deep); flex: none; }

.float-badge {
  position: absolute; background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 12px 14px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px;
}
.float-badge .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); }
.fb-1 { top: -22px; left: -26px; transform: rotate(-4deg); }
.fb-2 { bottom: -20px; right: -22px; transform: rotate(3deg); }

/* ---------- Marquee / trust ---------- */
.trust { padding: 8px 0 8px; }
.trust-row { display: flex; align-items: center; justify-content: center; gap: 14px 34px; flex-wrap: wrap;
  color: var(--muted); font-weight: 700; font-size: 14px; }
.trust-row .pill { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .pill b { color: var(--ink); font-family: "Instrument Serif", serif; font-size: 22px; font-weight: 400; }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
h2.section-title { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.08; letter-spacing: -0.01em; }
h2.section-title .italic { color: var(--accent); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px;
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step .num { font-family: "Instrument Serif", serif; font-size: 40px; color: var(--accent); line-height: 1; }
.step h3 { font-size: 19px; margin: 14px 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent-soft), #fff); border: 1px solid var(--border); margin-bottom: 16px; }
.feature .ic svg { width: 24px; height: 24px; color: var(--accent); }
.feature h3 { font-size: 18px; margin-bottom: 7px; letter-spacing: -0.01em; }
.feature p { color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Showcase band ---------- */
.showcase { background: linear-gradient(135deg, #2A1620, #4A2238); color: #fff; border-radius: 40px; margin: 0 24px;
  padding: 0; position: relative; overflow: hidden; }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 64px; }
.showcase h2 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; }
.showcase h2 .italic { color: #FF9CC0; }
.showcase p { color: rgba(255,255,255,.78); margin-top: 14px; font-size: 16px; }
.showcase .ba { margin-top: 0; }
.showcase .ba-tile { height: 230px; border-color: rgba(255,255,255,.12); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 22px; justify-content: center; }
.plan { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.plan .tag { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 10px; border-radius: 100px; }
.plan .plan-name { font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-family: "Instrument Serif", serif; font-size: 52px; line-height: 1; margin: 12px 0 2px; }
.plan .price small { font-family: "Manrope"; font-size: 16px; font-weight: 600; color: var(--muted); }
.plan .per { color: var(--muted); font-size: 14px; }
.plan ul { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); }
.plan li svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
details.qa { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 4px 22px; margin-bottom: 12px; }
details.qa summary { list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 17px; display: flex;
  justify-content: space-between; align-items: center; gap: 16px; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .plus { width: 24px; height: 24px; flex: none; position: relative; transition: transform .2s ease; }
details.qa summary .plus::before, details.qa summary .plus::after { content: ""; position: absolute; background: var(--accent);
  border-radius: 2px; }
details.qa summary .plus::before { left: 0; right: 0; top: 11px; height: 2px; }
details.qa summary .plus::after { top: 0; bottom: 0; left: 11px; width: 2px; transition: opacity .2s ease; }
details.qa[open] summary .plus::after { opacity: 0; }
details.qa p { color: var(--ink-soft); padding: 0 0 20px; font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-card { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; border-radius: 36px;
  padding: 64px 32px; position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; inset: 0; opacity: .25;
  background: radial-gradient(500px 300px at 20% 0%, rgba(255,255,255,.5), transparent 60%); }
.cta-card h2 { position: relative; font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(32px, 4.6vw, 52px); line-height: 1.06; }
.cta-card p { position: relative; color: rgba(255,255,255,.85); margin: 14px auto 28px; max-width: 30em; font-size: 17px; }
.cta-card .btn-ghost { position: relative; background: #fff; border-color: #fff; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: 54px 0 40px; margin-top: 30px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 22rem; }
.foot-brand p { color: var(--ink-soft); margin-top: 14px; font-size: 14.5px; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--ink-soft); font-weight: 600; margin-bottom: 10px; font-size: 14.5px; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13.5px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: 56px 0 80px; }
.legal h1 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(36px, 5vw, 54px); color: var(--ink); }
.legal .effective { color: var(--muted); font-size: 14px; margin: 6px 0 22px; }
.legal h2 { font-size: 22px; margin-top: 2.2em; padding-bottom: 8px; border-bottom: 1px solid var(--border); letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; color: var(--ink-soft); margin-top: 1.6em; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-top: .9em; }
.legal ul { padding-left: 22px; margin-top: .6em; }
.legal li { margin-bottom: 7px; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal th { background: var(--accent-soft); color: var(--ink); font-weight: 700; }
.legal a { color: var(--accent); }
.legal .fineprint { color: var(--muted); font-size: 13px; margin-top: 3em; border-top: 1px solid var(--border); padding-top: 16px; }

/* ---------- Blog: shared ---------- */
.post-wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.crumbs { font-size: 13px; color: var(--muted); padding: 30px 0 0; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--ink-soft); }

/* A strip of season swatches — the brand's structural signature, reused across the blog */
.palette-strip { display: flex; height: 6px; border-radius: 100px; overflow: hidden; }
.palette-strip i { flex: 1; display: block; }

/* ---------- Blog hub ---------- */
.blog-hero { max-width: 720px; margin: 0 auto; text-align: center; padding: 64px 0 8px; }
.blog-hero h1 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(40px, 6vw, 64px);
  line-height: 1.04; letter-spacing: -0.015em; margin: 18px 0 14px; }
.blog-hero h1 .italic { color: var(--accent); }
.blog-hero p { color: var(--ink-soft); font-size: 18px; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 44px 0 20px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.post-card .palette-strip { height: 8px; border-radius: 0; }
.post-card .pc-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .kicker { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; }
.post-card h2 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: 25px; line-height: 1.12;
  letter-spacing: -0.01em; margin-bottom: 10px; }
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--accent); }
.post-card p { color: var(--ink-soft); font-size: 14.5px; flex: 1; }
.post-card .pc-meta { margin-top: 16px; font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ---------- Article ---------- */
.post { max-width: 760px; margin: 0 auto; padding: 24px 0 70px; }
.post .kicker { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); }
.post h1 { font-family: "Instrument Serif", serif; font-weight: 400; font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.05; letter-spacing: -0.015em; margin: 12px 0 14px; color: var(--ink); }
.post h1 .italic { color: var(--accent); }
.post-meta { font-size: 14px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }

/* The direct answer — what answer engines + AI models extract verbatim (AEO/GEO) */
.answer-box { background: var(--surface-alt); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm); padding: 22px 24px; margin: 30px 0; }
.answer-box .palette-strip { margin-bottom: 14px; max-width: 180px; }
.answer-box .ab-label { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 8px; }
.answer-box p { font-size: 17px; color: var(--ink); line-height: 1.55; margin: 0; }

/* Table of contents */
.post-toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 24px; margin: 30px 0; }
.post-toc h2 { font-family: "Manrope", sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); border: none; margin: 0 0 12px; padding: 0; }
.post-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 9px; }
.post-toc li { counter-increment: toc; }
.post-toc li a { color: var(--ink-soft); font-weight: 600; font-size: 15px; display: flex; gap: 10px; }
.post-toc li a::before { content: counter(toc, decimal-leading-zero); color: var(--accent); font-family: "Instrument Serif", serif;
  font-size: 15px; }
.post-toc li a:hover { color: var(--accent); }

/* Article body typography */
.post-body { font-size: 17.5px; line-height: 1.72; color: var(--ink-soft); }
.post-body > h2 { font-family: "Instrument Serif", serif; font-weight: 400; color: var(--ink);
  font-size: clamp(26px, 3.4vw, 34px); line-height: 1.14; letter-spacing: -0.01em;
  margin: 1.9em 0 .5em; scroll-margin-top: 90px; }
.post-body > h3 { font-size: 20px; color: var(--ink); margin: 1.5em 0 .4em; letter-spacing: -0.005em; }
.post-body p { margin: 0 0 1.1em; }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: var(--accent-soft); }
.post-body a:hover { text-decoration-color: var(--accent); }
.post-body ul, .post-body ol { padding-left: 24px; margin: 0 0 1.2em; }
.post-body li { margin-bottom: .5em; }
.post-body li::marker { color: var(--accent); }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--accent-soft);
  font-family: "Instrument Serif", serif; font-size: 21px; line-height: 1.4; color: var(--ink); font-style: italic; }

/* Season palette table reused for explainer content */
.post-body table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 14.5px; }
.post-body th, .post-body td { border: 1px solid var(--border); padding: 11px 13px; text-align: left; }
.post-body th { background: var(--accent-soft); color: var(--ink); font-weight: 700; }
.post-body td .palette-strip { height: 14px; min-width: 84px; }

/* Inline CTA — the soft bridge to the app */
.post-cta { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff;
  border-radius: var(--radius-md); padding: 34px; margin: 40px 0; text-align: center; position: relative; overflow: hidden; }
.post-cta::before { content: ""; position: absolute; inset: 0; opacity: .25;
  background: radial-gradient(400px 220px at 25% 0%, rgba(255,255,255,.55), transparent 60%); }
.post-cta h2 { position: relative; font-family: "Instrument Serif", serif; font-weight: 400; border: none;
  font-size: clamp(24px, 3.4vw, 32px); line-height: 1.12; margin: 0 0 8px; color: #fff; }
.post-cta p { position: relative; color: rgba(255,255,255,.88); margin: 0 auto 20px; max-width: 28em; font-size: 15.5px; }
.post-cta .btn-ghost { position: relative; background: #fff; border-color: #fff; color: var(--accent-deep); }
.post-cta .btn-ghost:hover { color: var(--accent-deep); }

/* FAQ block on articles reuses details.qa; just spacing */
.post-faq { margin-top: 40px; }
.post-faq > h2 { font-family: "Instrument Serif", serif; font-weight: 400; color: var(--ink);
  font-size: clamp(26px, 3.4vw, 34px); margin: 0 0 18px; }

.post-foot { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-foot a { font-weight: 700; }

@media (max-width: 920px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-body { font-size: 16.5px; }
  /* Wide explainer tables scroll inside their own box instead of spilling the page */
  .post-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .report-card { transform: none; max-width: 460px; margin: 0 auto; }
  .steps, .features { grid-template-columns: 1fr 1fr; }
  .showcase-inner { grid-template-columns: 1fr; padding: 44px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 40px; }
  section { padding: 60px 0; }
  .steps, .features, .pricing { grid-template-columns: 1fr; }
  .pricing { max-width: 380px; margin: 0 auto; }
  .foot-cols { gap: 36px; }
  .showcase, .cta-card { border-radius: 26px; }
  .showcase { margin: 0 16px; }
}
