:root {
  --green-50:  #F4F8E8;
  --green-100: #E8F0D0;
  --green-200: #D6E4A8;
  --green-300: #C5D89B;
  --green-400: #B0C77F;
  --green-500: #8FA66A;
  --green-700: #5A6B40;
  --ink:       #1d1d1f;
  --ink-soft:  #555560;
  --ink-mute:  #86868b;
  --paper:     #fbfbf6;
  --card-bg:   rgba(255, 255, 255, 0.55);
  --card-line: rgba(143, 166, 106, 0.18);

  --mx: 50%;
  --my: 50%;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans Arabic', 'Noto Sans Hebrew', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans Devanagari', 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--paper);
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blob-1 {
  width: 620px; height: 620px;
  background: var(--green-200);
  top: -180px; left: -120px;
  transform: translate(calc((var(--mx) - 50%) * 0.06), calc((var(--my) - 50%) * 0.06));
}
.blob-2 {
  width: 520px; height: 520px;
  background: var(--green-100);
  top: 10%; right: -160px;
  transform: translate(calc((var(--mx) - 50%) * -0.08), calc((var(--my) - 50%) * 0.04));
}
.blob-3 {
  width: 480px; height: 480px;
  background: var(--green-300);
  bottom: -140px; left: 30%;
  opacity: 0.55;
  transform: translate(calc((var(--mx) - 50%) * 0.05), calc((var(--my) - 50%) * -0.05));
}

.molecules {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.molecule {
  position: absolute;
  color: var(--green-500);
  opacity: 0.18;
  will-change: transform;
}

.molecule.m1 { top: 12%; left: 6%;   animation: drift1 18s ease-in-out infinite, spin 24s linear infinite; opacity: 0.22; }
.molecule.m2 { top: 62%; left: 3%;   animation: drift2 24s ease-in-out infinite, spinRev 32s linear infinite; opacity: 0.20; }
.molecule.m3 { top: 22%; right: 5%;  animation: drift3 22s ease-in-out infinite, spin 28s linear infinite; opacity: 0.24; }
.molecule.m4 { top: 78%; right: 10%; animation: drift4 26s ease-in-out infinite, spinRev 36s linear infinite; opacity: 0.22; }
.molecule.m5 { top: 48%; left: 46%;  animation: drift5 32s ease-in-out infinite, spin 40s linear infinite; opacity: 0.12; }
.molecule.m6 { top: 8%;  left: 52%;  animation: drift2 28s ease-in-out infinite, spinRev 30s linear infinite; opacity: 0.16; }
.molecule.m7 { top: 88%; left: 38%;  animation: drift3 30s ease-in-out infinite, spin 26s linear infinite; opacity: 0.18; }

@keyframes drift1 {
  0%   { transform: translate(0, 0)        scale(1); }
  33%  { transform: translate(140px, -90px) scale(1.15); }
  66%  { transform: translate(60px, 110px)  scale(0.9); }
  100% { transform: translate(0, 0)        scale(1); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0)         scale(1); }
  33%  { transform: translate(-110px, 80px) scale(0.9); }
  66%  { transform: translate(80px, -60px)  scale(1.2); }
  100% { transform: translate(0, 0)         scale(1); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0)          scale(1); }
  33%  { transform: translate(-130px, -70px) scale(1.1); }
  66%  { transform: translate(-50px, 90px)   scale(0.85); }
  100% { transform: translate(0, 0)          scale(1); }
}
@keyframes drift4 {
  0%   { transform: translate(0, 0)          scale(1); }
  33%  { transform: translate(120px, 60px)   scale(0.9); }
  66%  { transform: translate(-70px, -100px) scale(1.15); }
  100% { transform: translate(0, 0)          scale(1); }
}
@keyframes drift5 {
  0%   { transform: translate(0, 0)          scale(1); }
  25%  { transform: translate(160px, -50px)  scale(1.1); }
  50%  { transform: translate(80px, 130px)   scale(0.8); }
  75%  { transform: translate(-120px, 60px)  scale(1.2); }
  100% { transform: translate(0, 0)          scale(1); }
}
@keyframes spin    { from { rotate: 0deg; }   to { rotate: 360deg; } }
@keyframes spinRev { from { rotate: 360deg; } to { rotate: 0deg; } }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.reveal.d1 { animation-delay: 0.05s; }
.reveal.d2 { animation-delay: 0.18s; }
.reveal.d3 { animation-delay: 0.32s; }
.reveal.d4 { animation-delay: 0.46s; }
.reveal.d5 { animation-delay: 0.60s; }
.reveal.d6 { animation-delay: 0.74s; }

@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  padding: 96px 0 24px;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--card-line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-700);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -8px rgba(143, 166, 106, 0.45);
}

.badge-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--green-500);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  animation: dotPulse 1.3s ease-in-out infinite;
}
.badge-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-500);
  animation: dotRing 1.3s ease-out infinite;
  pointer-events: none;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%      { transform: scale(0.55); opacity: 0.4; }
}
@keyframes dotRing {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 24px;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

h1 .accent {
  background: linear-gradient(120deg, var(--green-500) 0%, var(--green-700) 40%, var(--green-400) 60%, var(--green-500) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.pen-icon {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.15em;
  transform-origin: center;
  animation:
    float 4.5s ease-in-out infinite,
    penHueShift 10s linear infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-8px) rotate(8deg); }
}
@keyframes penHueShift {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.lede {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto 14px;
}

.features {
  display: inline-block;
  position: relative;
  z-index: 0;
  font-size: clamp(13px, 1.25vw, 16px);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--green-400) 0%,
    var(--green-500) 30%,
    var(--green-700) 65%,
    var(--green-500) 100%
  );
  background-size: 220% 100%;
  padding: 14px 28px;
  border-radius: 100px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 2px 0 rgba(0, 0, 0, 0.12),
    0 14px 36px -12px rgba(90, 107, 64, 0.55),
    0 2px 6px -2px rgba(90, 107, 64, 0.35);
  margin: 8px auto 32px;
  max-width: none;
  animation:
    revealIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.46s forwards,
    featuresShimmer 6s ease-in-out 1.4s infinite;
}
.features::before {
  content: '';
  position: absolute;
  inset: -10px -18px;
  border-radius: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(143, 166, 106, 0.55) 0%,
    rgba(143, 166, 106, 0) 70%
  );
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  animation: featuresHalo 4s ease-in-out 1.6s infinite;
}
@keyframes featuresShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes featuresHalo {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.08); }
}

.sub {
  font-size: 16px;
  color: var(--ink-mute);
  max-width: 580px;
  margin: 0 auto;
}

.brands {
  padding: 48px 0 64px;
}

.brands-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.brands-label::before,
.brands-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--green-500);
  opacity: 0.6;
}

.brands-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  color: var(--ink);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 36px;
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--cx, 50%) var(--cy, 50%), rgba(176, 199, 127, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.card:hover::before { opacity: 1; }

.card:hover {
  box-shadow: 0 24px 60px -24px rgba(90, 107, 64, 0.28);
  border-color: rgba(143, 166, 106, 0.35);
}

.card > * { position: relative; z-index: 1; }

.card-logo {
  height: 44px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}
.card-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-logo img {
  transform: scale(1.04);
}
.card-logo img.has-bg {
  border-radius: 6px;
}

.card.card-right {
  align-items: flex-end;
  text-align: right;
}
.card.card-right .card-logo {
  justify-content: flex-end;
}
.card.card-right .card-link::after {
  left: 28px;
  right: 0;
  transform-origin: right;
}

.card-desc {
  font-size: 15px;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 22px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  position: relative;
}
.card-link::after {
  content: '';
  position: absolute;
  left: 0; right: 28px;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-link::after { transform: scaleX(1); }
.card-link svg {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-link svg {
  transform: translate(3px, -3px);
}

[dir="rtl"] .card-link svg { transform: scaleX(-1); }
[dir="rtl"] .card:hover .card-link svg { transform: scaleX(-1) translate(3px, -3px); }
[dir="rtl"] .card-link::after { left: 28px; right: 0; transform-origin: right; }

.insights {
  padding: 12px 0 24px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  position: relative;
  padding: 30px 26px 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--card-line);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -22px rgba(90, 107, 64, 0.3);
  border-color: rgba(143, 166, 106, 0.5);
  background: rgba(255, 255, 255, 0.72);
}

.insight-number {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(143, 166, 106, 0.28);
  user-select: none;
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s ease,
              color 0.4s ease,
              transform 0.4s ease;
  z-index: 0;
}
[dir="rtl"] .insight-number {
  right: auto;
  left: 22px;
}
.insight-card:hover .insight-number {
  -webkit-text-stroke-color: var(--green-500);
  transform: scale(1.05);
}

.insight-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.insight-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--green-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.insight-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.insight-excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  flex: 1;
  position: relative;
  z-index: 1;
}

.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--card-line);
  position: relative;
  z-index: 1;
}

.insight-meta {
  font-size: 12px;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.insight-meta svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  flex-shrink: 0;
}

.insight-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.insight-arrow svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
}
.insight-card:hover .insight-arrow {
  background: var(--green-700);
  color: var(--paper);
}
.insight-card:hover .insight-arrow svg {
  transform: translate(2px, -2px);
}
[dir="rtl"] .insight-arrow svg { transform: scaleX(-1); }
[dir="rtl"] .insight-card:hover .insight-arrow svg { transform: scaleX(-1) translate(2px, -2px); }

.contact-bar {
  text-align: center;
  padding: 28px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-line {
  font-size: 14px;
  color: var(--ink-soft);
}
.contact-line a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-line a:hover {
  border-bottom-color: var(--green-700);
}

.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--card-line);
  border-radius: 100px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lang-current:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -8px rgba(143, 166, 106, 0.45);
}
.lang-current .fi {
  width: 18px;
  height: 14px;
  border-radius: 2px;
}
.lang-current svg {
  transition: transform 0.3s ease;
}
.lang-switcher.open .lang-current svg {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--card-line);
  border-radius: 14px;
  padding: 6px;
  list-style: none;
  max-height: 380px;
  overflow-y: auto;
  min-width: 240px;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.lang-menu li { margin: 0; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.lang-item:hover, .lang-item.active {
  background: var(--green-100);
}
.lang-item.active {
  color: var(--green-700);
}
.lang-item .fi {
  width: 18px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

footer {
  text-align: center;
  padding: 12px 0 40px;
  font-size: 13px;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .hero    { padding: 64px 0 16px; }
  .brands  { padding: 32px 0 48px; }
  .cards   { grid-template-columns: 1fr; gap: 16px; }
  .card    { padding: 28px 24px; min-height: auto; }
  .blob    { filter: blur(60px); opacity: 0.55; }
  .lang-menu { min-width: 220px; }
  .insights-grid { grid-template-columns: 1fr; gap: 14px; }
  .insight-card { min-height: auto; padding: 22px 24px; }
}

/* ---------- ARTICLE PAGES ---------- */
.site-nav {
  padding: 24px 0 0;
  display: flex;
  justify-content: center;
}
.site-nav .brand-mark {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--card-line);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.site-nav .brand-mark:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -8px rgba(143, 166, 106, 0.45);
}
.site-nav .brand-mark .accent {
  background: linear-gradient(120deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-nav .brand-mark svg {
  width: 14px;
  height: 14px;
  color: var(--green-500);
  transition: transform 0.25s ease;
}
.site-nav .brand-mark:hover svg {
  transform: translateX(-2px);
}

.article-hero {
  padding: 56px 0 24px;
  text-align: center;
}
.article-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-700);
  margin-bottom: 18px;
  padding: 5px 12px;
  background: var(--green-100);
  border-radius: 100px;
}
.article-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--ink);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.article-deck {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
.article-meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.article-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--ink-mute);
  border-radius: 50%;
  opacity: 0.5;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body > p,
.article-body > ul,
.article-body > ol,
.article-body > blockquote,
.article-body > .table-wrap,
.article-body > .callout {
  margin-bottom: 22px;
}
.article-body p {
  color: var(--ink);
}
.article-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 18px;
  color: var(--ink);
  position: relative;
  padding-left: 18px;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.18em;
  bottom: 0.18em;
  width: 4px;
  background: var(--green-500);
  border-radius: 4px;
}
.article-body h3 {
  font-size: clamp(19px, 1.9vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}
.article-body ul, .article-body ol {
  padding-left: 24px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body li::marker {
  color: var(--green-500);
}
.article-body a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 107, 64, 0.3);
  transition: border-color 0.2s ease;
}
.article-body a:hover {
  border-bottom-color: var(--green-700);
}
.article-body strong {
  font-weight: 700;
  color: var(--ink);
}
.article-body em {
  font-style: italic;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: var(--green-50);
  border-left: 3px solid var(--green-500);
  border-radius: 0 12px 12px 0;
  color: var(--ink);
  font-size: 16px;
}
.article-body blockquote p { margin-bottom: 0; }

.callout {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  padding: 22px 26px;
  margin: 32px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.callout-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700);
  margin-bottom: 10px;
}
.callout p { margin-bottom: 0 !important; font-size: 15.5px; }
.callout p + p { margin-top: 10px !important; }

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--card-line);
  background: rgba(255, 255, 255, 0.5);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.article-body th,
.article-body td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--card-line);
  vertical-align: top;
}
.article-body th {
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-body tr:last-child td { border-bottom: none; }

.cta-box {
  margin: 48px 0 24px;
  padding: 36px;
  text-align: center;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border: 1px solid rgba(143, 166, 106, 0.3);
  border-radius: 22px;
}
.cta-box-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}
.cta-box p {
  color: var(--ink-soft);
  margin-bottom: 18px !important;
}
.cta-box .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper) !important;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none !important;
  border: none !important;
  font-size: 15px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-box .cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(0, 0, 0, 0.3);
  border: none !important;
}

.related-articles {
  padding: 48px 0 24px;
  border-top: 1px solid var(--card-line);
  margin-top: 32px;
}
.related-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-align: center;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.related-card {
  display: block;
  padding: 22px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  text-decoration: none !important;
  color: var(--ink) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid var(--card-line) !important;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -16px rgba(90, 107, 64, 0.25);
}
.related-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-700);
  margin-bottom: 8px;
}
.related-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .article-body { padding: 32px 20px 16px; font-size: 16px; }
  .article-body h2 { margin-top: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 28px 24px; }
}
