/* ==========================================================================
   GlowKit — marketing site styles
   Monochrome editorial direction: white space, black type, grey depth.
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Surfaces */
  --paper:        #FFFFFF;
  --card:         #FFFFFF;
  --deep:         #F5F5F5;
  --promo:        #F2F2F2;

  /* Ink / text */
  --ink:          #090909;
  --grey:         #6D6D6D;

  /* Accent: intentionally monochrome */
  --accent:        #090909;
  --accent-deep:   #000000;
  --accent-soft:   #EDEDED;

  /* Functional score scale: color is reserved for status and quality */
  --score-low:    #D61F32;
  --score-mid:    #F08A24;
  --score-good:   #0F9D68;
  --score-high:   #007652;

  /* Lines & shadows */
  --line:         rgba(9, 9, 9, 0.14);
  --line-soft:    rgba(9, 9, 9, 0.08);
  --shadow-sm:    none;
  --shadow-md:    0 8px 24px rgba(9, 9, 9, 0.06);
  --shadow-lg:    0 18px 48px rgba(9, 9, 9, 0.12);

  /* Shape & rhythm */
  --radius:       8px;
  --radius-sm:    8px;
  --radius-pill:  999px;
  --maxw:         1120px;
  --gutter:       clamp(20px, 5vw, 48px);
  --section-y:    clamp(56px, 9vw, 112px);

  /* Type */
  --font-ui:   "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.05vw + 14px, 18px);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }

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

h1, h2, h3, h4 {
  font-family: var(--font-ui);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; }

/* ---- Accessibility helpers ---- */
:focus-visible {
  outline: 3px solid var(--accent-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  background: var(--ink);
  color: var(--card);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 16px; text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---- Layout primitives ---- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-y); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}
.section-head p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-top: 0.4em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease,
              box-shadow 0.15s ease, color 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--ink);
  color: var(--card);
  box-shadow: none;
}
.btn-primary:hover {
  background: #242424;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(9, 9, 9, 0.18);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--card);
  border-color: rgba(33, 30, 27, 0.2);
}

.btn-block { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn-primary:hover, .btn-primary:active { transform: none; }
}

/* ---- App Store badge placeholder ---- */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--card);
  padding: 11px 20px 11px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.appstore-badge:hover {
  text-decoration: none;
  background: var(--ink);
  transform: translateY(-1px);
}
.appstore-badge svg { flex: none; }
.appstore-badge .ab-text { display: flex; flex-direction: column; line-height: 1.1; }
.appstore-badge .ab-small {
  font-size: 0.62rem;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.85;
}
.appstore-badge .ab-big { font-size: 1.16rem; font-weight: 700; letter-spacing: 0; }

@media (prefers-reduced-motion: reduce) {
  .appstore-badge:hover { transform: none; }
}

/* ---- Logo mark + wordmark ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand .mark { width: 30px; height: 30px; flex: none; }
.brand .wordmark b { color: var(--accent-deep); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; text-decoration: none; }

.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 42px; height: 42px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { margin: auto; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 66px; left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav.open {
    max-height: 380px;
    visibility: visible;
    transition: max-height 0.25s ease;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links li { border-bottom: 1px solid var(--line-soft); }
  .nav-links a { display: block; padding: 14px 4px; opacity: 1; }
  .nav .btn { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: clamp(40px, 7vw, 80px); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 40% 30% -10%;
  background: radial-gradient(circle at 30% 30%, rgba(9, 9, 9, 0.05), transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(2.2rem, 5.4vw, 3.5rem);
  margin-bottom: 0.35em;
}
.hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--grey);
  margin-bottom: 1.8em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero-note {
  margin-top: 18px;
  font-size: 0.86rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { flex: none; color: var(--score-high); }

/* Phone mockup placeholder */
.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone {
  position: relative;
  width: min(280px, 76vw);
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 42px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
}
.phone::after {
  content: "";
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(165deg, #FFFFFF 0%, #F5F5F5 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 20px 22px;
}
.screen-kicker {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
}

/* GlowScore ring (animated dial) inside mockup */
.score-dial {
  align-self: center;
  position: relative;
  width: 150px; height: 150px;
  margin: 6px 0 18px;
}
.score-dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-dial .track { stroke: var(--deep); }
.score-dial .arc {
  stroke: var(--score-good);
  stroke-linecap: round;
  stroke-dasharray: 339.292;
  stroke-dashoffset: 74.6;     /* ~78% filled */
}
.score-readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-readout .num { font-size: 2.6rem; font-weight: 800; letter-spacing: 0; line-height: 1; }
.score-readout .lbl {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* Signal bars inside mockup */
.signal-list { display: flex; flex-direction: column; gap: 11px; margin-top: 2px; }
.signal-row { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 10px; }
.signal-row .name { font-size: 0.7rem; font-weight: 600; color: var(--ink); }
.bar { height: 7px; background: var(--deep); border-radius: 999px; overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 999px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; }
  .phone-wrap { order: -1; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  border-block: 1px solid var(--line-soft);
  background: var(--card);
  padding-block: 22px;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px clamp(20px, 5vw, 56px);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.trust-item svg { flex: none; color: var(--accent-deep); }
.trust-sep { color: var(--line); }
@media (max-width: 600px) { .trust-sep { display: none; } }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 28px);
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step .step-num {
  counter-increment: step;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0;
  color: var(--accent-deep);
  font-weight: 600;
}
.step .step-num::before { content: "0" counter(step) " — "; }
.step .step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin: 16px 0 18px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 0.35em; }
.step p { color: var(--grey); font-size: 0.98rem; margin: 0; }

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Features grid
   ========================================================================== */
.section-alt { background: var(--card); }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}
.feature {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.section-alt .feature { background: var(--paper); }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature .feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--deep);
  color: var(--accent-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.feature p { color: var(--grey); font-size: 0.95rem; margin: 0; }

@media (max-width: 860px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .features { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .feature:hover { transform: none; }
}

/* ==========================================================================
   Privacy-first
   ========================================================================== */
.privacy-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.privacy-card h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.privacy-points { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.privacy-points li { display: flex; gap: 14px; align-items: flex-start; }
.privacy-points .pi {
  flex: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--ink);
  display: grid; place-items: center;
  margin-top: 2px;
}
.privacy-points strong { display: block; }
.privacy-points span { color: var(--grey); font-size: 0.95rem; }

.disclaimer {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--deep);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--grey);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.disclaimer svg { flex: none; color: var(--score-mid); margin-top: 2px; }

@media (max-width: 820px) {
  .privacy-card { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.plan.featured {
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow-md);
  position: relative;
}
.plan .plan-tag {
  position: absolute;
  top: -13px; left: 30px;
  background: var(--accent);
  color: var(--card);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.plan h3 { font-size: 1.3rem; margin-bottom: 0.2em; }
.plan .plan-sub { color: var(--grey); font-size: 0.95rem; margin-bottom: 18px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan .price .amount { font-size: 2.2rem; font-weight: 800; letter-spacing: 0; }
.plan .price .per { color: var(--grey); font-size: 0.95rem; }
.plan .price-note { color: var(--grey); font-size: 0.86rem; margin-bottom: 22px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.plan-features li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; }
.plan-features li svg { flex: none; margin-top: 3px; }
.plan-features .yes svg { color: var(--score-high); }
.plan-features .no { color: var(--grey); }
.plan-features .no svg { color: var(--line); }
.plan .btn { margin-top: auto; }

/* Pro tier internal price options */
.price-options {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.price-options li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.price-options li.best { border-color: var(--accent); background: rgba(9, 9, 9, 0.06); }
.price-options .po-name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--grey);
}
.price-options .po-amount { font-size: 1.3rem; font-weight: 800; letter-spacing: 0; margin: 4px 0 2px; }
.price-options .po-meta { font-size: 0.74rem; color: var(--grey); }

.pricing-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--grey);
}

@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .price-options { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  flex: none;
  transition: transform 0.2s ease;
  color: var(--accent-deep);
}
.faq-item[open] summary .chev { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--grey);
  font-size: 0.98rem;
}
.faq-item .faq-body p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .faq-item summary .chev { transition: none; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-card {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--card);
  border-radius: var(--radius);
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-lg);
}
.cta-card h2 { color: var(--card); font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.cta-card p { color: rgba(255, 255, 255, 0.9); max-width: 520px; margin-inline: auto; margin-bottom: 1.8em; }
.cta-card .appstore-badge { background: rgba(0,0,0,0.28); }
.cta-card .appstore-badge:hover { background: rgba(0,0,0,0.42); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(40px, 6vw, 64px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand p {
  color: var(--grey);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink);
  font-size: 0.95rem;
  opacity: 0.82;
  text-decoration: none;
}
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--grey);
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Legal / content pages (privacy, terms, support)
   ========================================================================== */
.page-hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(24px, 4vw, 40px);
}
.page-hero .kicker { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); }
.page-hero .updated { color: var(--grey); font-size: 0.9rem; }

.prose {
  max-width: 760px;
  padding-bottom: var(--section-y);
}
.prose h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin-top: 1.8em;
  scroll-margin-top: 90px;
}
.prose h3 { font-size: 1.12rem; margin-top: 1.4em; }
.prose p, .prose li { color: #3a352f; }
.prose ul { padding-left: 1.2em; list-style: disc; margin-bottom: 1em; }
.prose li { margin-bottom: 0.5em; }
.prose a { font-weight: 600; }

.callout {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 1.5em 0;
}
.callout p { margin: 0; }

.toc {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 2em;
}
.toc h2 {
  font-size: 0.72rem !important;
  font-family: var(--font-mono);
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 12px !important;
}
.toc ul { list-style: none; padding: 0; columns: 2; column-gap: 28px; }
.toc li { margin-bottom: 8px; break-inside: avoid; }
@media (max-width: 560px) { .toc ul { columns: 1; } }

/* Support page extras */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 1.5em 0 2.5em;
}
.support-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 26px;
  box-shadow: var(--shadow-sm);
}
.support-card .feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.support-card h3 { font-size: 1.1rem; margin-bottom: 0.3em; }
.support-card p { color: var(--grey); font-size: 0.95rem; margin: 0; }
@media (max-width: 560px) { .support-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal (progressive enhancement; JS adds .reveal-ready)
   ========================================================================== */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
}
