/* RecurSIM — Site responsivo, mobile-first
   Sistema visual: Teal 800 / Lime 500 / Signal 500 / neutros quentes
   Tipografia: Space Grotesk (display) + Manrope (body) */

:root {
  --teal-900: #0A3D3D;
  --teal-800: #0E5C5C;
  --teal-700: #147474;
  --teal-100: #D5ECEC;
  --teal-50:  #ECF6F6;
  --lime-700: #5A8F1E;
  --lime-600: #6FAE25;
  --lime-500: #86C929;
  --lime-100: #E8F7C9;
  --lime-50:  #F4FBE3;
  --signal-500: #F5C518;
  --signal-100: #FFF4C2;
  --ink-900: #0E1A1A;
  --ink-700: #2B3A3A;
  --ink-500: #5C6E6E;
  --ink-300: #9EADAD;
  --ink-200: #C7D2D2;
  --ink-100: #E6ECEC;
  --paper:   #FBFAF5;
  --cream:   #F7F4EC;
  --white:   #FFFFFF;
  --danger:  #D94B3C;

  --f-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --f-body:    "Manrope", ui-sans-serif, system-ui, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --container: 1200px;
  --pad-x: 20px;
}

@media (min-width: 720px)  { :root { --pad-x: 32px; } }
@media (min-width: 1024px) { :root { --pad-x: 48px; } }

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }
ul { padding: 0; margin: 0; list-style: none; }

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 52px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--lime-500);
  color: var(--teal-900);
  box-shadow: 0 4px 16px rgba(134,201,41,0.35);
}
.btn--primary:hover { background: var(--lime-600); box-shadow: 0 6px 20px rgba(134,201,41,0.45); }
.btn--ghost {
  background: transparent;
  color: var(--teal-900);
  border: 1.5px solid var(--ink-100);
}
.btn--dark {
  background: var(--teal-900);
  color: var(--lime-500);
}
.btn--dark:hover { background: var(--teal-800); }
.btn--lg { padding: 20px 28px; font-size: 18px; min-height: 60px; }
.btn--full { width: 100%; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.header.is-scrolled { border-bottom-color: var(--ink-100); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}
@media (min-width: 1024px) { .header__inner { height: 76px; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal-900);
  letter-spacing: -0.02em;
}
.brand img { height: 36px; width: auto; }
.brand span.lime { color: var(--lime-500); }
.nav { display: none; }
@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav a {
    padding: 10px 14px;
    border-radius: var(--r-pill);
    text-decoration: none;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 15px;
  }
  .nav a:hover { background: var(--teal-50); color: var(--teal-900); }
}
.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; } }
.header__cta--mobile {
  display: inline-flex;
  padding: 10px 18px;
  font-size: 14px;
  min-height: 40px;
  gap: 6px;
}
@media (min-width: 1024px) { .header__cta--mobile { display: none; } }
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--teal-900);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn svg { width: 24px; height: 24px; }
.mobile-nav {
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--paper);
  background-color: #FBFAF5;
  z-index: 49;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad-x) 40px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav a {
  padding: 18px 4px;
  border-bottom: 1px solid var(--ink-100);
  text-decoration: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--teal-900);
}
.mobile-nav .btn { margin-top: 24px; }

/* HERO */
.hero {
  position: relative;
  padding: 32px 0 56px;
  overflow: hidden;
}
@media (min-width: 720px)  { .hero { padding: 56px 0 80px; } }
@media (min-width: 1024px) { .hero { padding: 80px 0 100px; } }
.hero::before {
  content: "";
  position: absolute;
  inset: -50% 50% 50% -50%;
  background: radial-gradient(circle at 30% 30%, rgba(134,201,41,0.18), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; }
@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
  }
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--lime-100);
  color: var(--lime-700);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--lime-500);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(40px, 9vw, 84px);
  margin: 18px 0 16px;
  color: var(--teal-900);
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: normal; color: var(--lime-500); }
.hero__sub {
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--ink-700);
  max-width: 56ch;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
@media (min-width: 720px) { .hero__actions { flex-direction: row; gap: 12px; } }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-100);
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__trust { justify-content: flex-start; text-align: left; }
}
.hero__trust div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
}
.hero__trust svg { color: var(--lime-600); flex-shrink: 0; }

.hero__panel {
  margin-top: 40px;
  background: var(--teal-900);
  color: white;
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero__panel { margin-top: 0; padding: 36px; } }
.hero__panel::after {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134,201,41,0.25), transparent 70%);
  top: -60px; right: -60px;
  pointer-events: none;
}
.wa-mock {
  background: #0A2A2A;
  border-radius: 18px;
  padding: 16px;
  position: relative;
  z-index: 1;
}
.wa-mock__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wa-mock__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime-500);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-mock__avatar img { width: 32px; height: 32px; object-fit: contain; }
.wa-mock__name { font-family: var(--f-display); font-weight: 700; font-size: 16px; }
.wa-mock__status { font-size: 13px; color: var(--lime-500); }
.wa-mock__msgs { display: flex; flex-direction: column; gap: 8px; }
.wa-mock__msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 85%;
}
.wa-mock__msg--out {
  background: #1F4F3F;
  color: #E8F7C9;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.wa-mock__msg--in {
  background: #2B3A3A;
  color: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wa-mock__msg b { color: var(--lime-500); }
.hero__panel-label {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime-500);
  z-index: 2;
}

/* SECTION */
.section {
  padding: 64px 0;
}
@media (min-width: 1024px) { .section { padding: 100px 0; } }
.section--cream { background: var(--cream); }
.section--teal {
  background: var(--teal-900);
  color: white;
}
.section--teal h2 { color: white; }
.section--teal .section__sub { color: var(--ink-200); }
.section__head { text-align: center; margin-bottom: 40px; max-width: 760px; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .section__head { margin-bottom: 56px; } }
.section__kicker {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin-bottom: 12px;
}
.section--teal .section__kicker { color: var(--lime-400, #A3DB4A); }
.section h2 {
  font-size: clamp(32px, 6vw, 52px);
  color: var(--teal-900);
  letter-spacing: -0.03em;
}
.section--teal h2 { color: #ffffff; }
.section--teal .section__sub { color: var(--ink-200); }
.section--teal .section__kicker { color: var(--lime-400, #A3DB4A); }
.section__sub {
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-700);
  line-height: 1.5;
}

/* COMO FUNCIONA */
.steps { display: grid; gap: 16px; }
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--ink-100);
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .step { padding: 28px; } }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--lime-500);
  color: var(--teal-900);
  border-radius: 50%;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.step__icon {
  width: 32px; height: 32px;
  color: var(--teal-700);
  margin-bottom: 12px;
}
.step__title {
  font-size: 20px;
  color: var(--teal-900);
  margin-bottom: 8px;
}
.step__body {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.5;
}
.step__price {
  margin-top: 12px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--lime-100);
  color: var(--lime-700);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
}

/* BENEFITS */
.benefits { display: grid; gap: 12px; }
@media (min-width: 720px)  { .benefits { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.benefit {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(134,201,41,0.2);
  border-radius: var(--r-lg);
  padding: 24px;
}
@media (min-width: 1024px) { .benefit { padding: 28px; } }
.benefit__icon {
  width: 44px; height: 44px;
  background: var(--lime-500);
  color: var(--teal-900);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit__title { font-size: 18px; color: white; margin-bottom: 6px; }
.benefit__body { font-size: 14.5px; color: var(--ink-200); line-height: 1.55; }

/* PREÇO */
.pricing {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  border: 1px solid var(--ink-100);
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 720px) { .pricing { padding: 48px 40px; } }
.pricing__cupom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--signal-500);
  color: var(--teal-900);
  border-radius: var(--r-pill);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.pricing h3 {
  font-size: clamp(28px, 5vw, 40px);
  color: var(--teal-900);
  letter-spacing: -0.03em;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 16px 0 8px;
  flex-wrap: wrap;
}
.pricing__price-old {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink-500);
  text-decoration: line-through;
}
.pricing__price-new {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 72px);
  color: var(--lime-700);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing__price-note { font-size: 14px; color: var(--ink-500); font-weight: 600; }
.pricing__sub { font-size: 16px; color: var(--ink-700); margin: 0 0 24px; line-height: 1.5; }
.pricing__perks {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}
@media (min-width: 720px) { .pricing__perks { grid-template-columns: 1fr 1fr; } }
.pricing__perks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-900); font-weight: 500;
}
.pricing__perks svg { color: var(--lime-600); flex-shrink: 0; }

/* TESTIMONIALS */
.testi {
  display: grid;
  gap: 16px;
}
/* Mobile: scroll carousel */
@media (max-width: 719px) {
  .testi {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 calc(-1 * var(--pad-x));
    padding: 8px var(--pad-x) 20px;
    scrollbar-width: none;
  }
  .testi::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}
@media (min-width: 720px)  { .testi { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
}
.testi-card__stars { display: inline-flex; gap: 2px; margin-bottom: 14px; color: var(--signal-500); }
.testi-card__stars svg { width: 18px; height: 18px; }
.testi-card__quote {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.35;
  color: var(--teal-900);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  flex: 1;
}
.testi-card__author { display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--lime-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
}
.testi-card__name { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--teal-900); }
.testi-card__meta { font-size: 13px; color: var(--ink-500); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--ink-100);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--teal-900);
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--lime-600);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 24px 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.6;
}

/* CTA FINAL */
.cta-final {
  background: var(--lime-500);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .cta-final { padding: 56px 40px; } }
.cta-final h2 { color: var(--teal-900); }
.cta-final p { margin: 14px auto 24px; max-width: 540px; color: var(--teal-900); opacity: 0.85; font-size: 17px; }
.cta-final .btn { margin: 0 auto; }
.cta-final__note { margin-top: 14px; font-size: 13px; color: var(--teal-900); opacity: 0.7; font-weight: 600; }

/* FOOTER */
.footer {
  background: var(--teal-900);
  color: var(--ink-200);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer__brand p { max-width: 36ch; font-size: 14.5px; line-height: 1.55; }
.footer__col h4 { font-family: var(--f-display); font-size: 14px; color: var(--lime-500); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { font-size: 14.5px; color: var(--ink-200); text-decoration: none; }
.footer__col a:hover { color: var(--lime-500); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--ink-200);
  transition: background .15s, color .15s;
}
.footer__social a:hover { background: var(--lime-500); color: var(--teal-900); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-300);
}

/* FLOATING WHATSAPP */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  text-decoration: none;
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; height: 28px; }
@media (min-width: 1024px) {
  .fab { right: 24px; bottom: 24px; width: 64px; height: 64px; }
  .fab svg { width: 32px; height: 32px; }
}

/* DECORATIVE */
.lime-mark { color: var(--lime-500); }
.dash-divider {
  height: 2px;
  background-image: linear-gradient(to right, var(--lime-500) 50%, transparent 50%);
  background-size: 16px 2px;
  background-repeat: repeat-x;
  margin: 24px 0;
  opacity: 0.3;
}

/* DISCLAIMER */
.disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-500);
  max-width: 640px;
  margin: 24px auto 0;
  line-height: 1.5;
}

/* ============================================================
   PÁGINAS DE CONTEÚDO (Blog, Termos, Privacidade)
   ============================================================ */

.page-hero {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--ink-100);
}
@media (min-width: 1024px) { .page-hero { padding: 64px 0 48px; } }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--teal-800);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 20px;
  padding: 6px 0;
}
.back-link:hover { color: var(--lime-600); }
.back-link svg { width: 18px; height: 18px; }
.page-hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  color: var(--teal-900);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.05;
}
.page-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.page-hero__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-300); }
.page-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 64ch;
}

/* Article body */
.article {
  padding: 48px 0 64px;
}
@media (min-width: 1024px) { .article { padding: 64px 0 100px; } }
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-900);
}
.article-body p { margin: 0 0 20px; }
.article-body h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--teal-900);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.article-body h3 {
  font-size: clamp(20px, 2.6vw, 24px);
  color: var(--teal-900);
  margin: 32px 0 12px;
  letter-spacing: -0.015em;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--lime-600); }
.article-body strong, .article-body b { color: var(--teal-900); font-weight: 700; }
.article-body a { color: var(--teal-700); text-decoration: underline; text-decoration-color: var(--lime-500); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.article-body a:hover { color: var(--lime-600); }
.article-body blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  background: var(--cream);
  border-left: 4px solid var(--lime-500);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--ink-900);
}
.article-body code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--ink-100);
  margin: 40px 0;
}

/* Article CTA box */
.article-cta {
  margin-top: 48px;
  padding: 32px 24px;
  background: var(--teal-900);
  color: white;
  border-radius: var(--r-lg);
  text-align: center;
}
@media (min-width: 720px) { .article-cta { padding: 40px; } }
.article-cta h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 28px);
  color: white;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.article-cta p { color: var(--ink-200); margin: 0 auto 22px; max-width: 480px; }
.article-cta .btn { margin: 0 auto; }

/* Blog list */
.blog-grid {
  display: grid;
  gap: 20px;
  margin-top: 8px;
}
@media (min-width: 720px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--lime-500);
  box-shadow: 0 14px 36px rgba(14,26,26,0.08);
}
.blog-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__cover::after {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 80%; height: 160%;
  background: radial-gradient(circle, rgba(134,201,41,0.35), transparent 65%);
  pointer-events: none;
}
.blog-card__cover svg {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  color: var(--lime-500);
  opacity: 0.95;
}
.blog-card__cover--orange { background: linear-gradient(135deg, #C95821, #E68A2E); }
.blog-card__cover--orange::after { background: radial-gradient(circle, rgba(245,197,24,0.45), transparent 65%); }
.blog-card__cover--yellow { background: linear-gradient(135deg, #F5C518, #FFD84D); }
.blog-card__cover--yellow::after { background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 65%); }
.blog-card__cover--yellow svg { color: var(--teal-900); }
.blog-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin-bottom: 8px;
}
.blog-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 0 0 12px;
}
.blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-700);
  flex: 1;
}
.blog-card__read {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-800);
  font-weight: 700;
  font-size: 14px;
}
.blog-card__read svg { width: 16px; height: 16px; transition: transform .2s; }
.blog-card:hover .blog-card__read svg { transform: translateX(4px); }
.blog-card:hover .blog-card__read { color: var(--lime-600); }

/* Hero cover for single post */
.post-cover {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-lg);
  margin-bottom: 32px;
}
.post-cover svg {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  color: var(--lime-500);
}
.post-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(134,201,41,0.35), transparent 60%);
}

/* Sticky last-updated for legal */
.legal-toc {
  position: sticky;
  top: 80px;
  font-size: 14px;
  line-height: 1.6;
}
.legal-toc h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin: 0 0 12px;
}
.legal-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.legal-toc li {
  counter-increment: toc;
  margin-bottom: 8px;
}
.legal-toc a {
  color: var(--ink-700);
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero) ". ";
  color: var(--lime-700);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  margin-right: 6px;
}
.legal-toc a:hover { color: var(--teal-900); }

.legal-layout { max-width: 1100px; margin: 0 auto; }
@media (min-width: 1024px) {
  .legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
  }
}
