:root {
  --post-bg: #f1f0f0;
  --post-surface: #ffffff;
  --post-surface-soft: #f8f8f9;
  --post-ink: #16181d;
  --post-ink-soft: #545b65;
  --post-line: #e2e4ea;
  --post-accent: #0d63ff;
  --post-highlight: #f5c775;
  --post-shadow: 0 28px 60px rgba(17, 19, 28, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--post-bg);
  color: var(--post-ink);
  line-height: 1.78;
}

.backdrop-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(13, 99, 255, 0.08), transparent 60%);
  z-index: -2;
}

.article {
  position: relative;
  margin: clamp(140px, 11vw, 180px) auto clamp(130px, 11vw, 190px);
  padding: clamp(44px, 6.8vw, 88px) clamp(30px, 6.8vw, 86px);
  max-width: 980px;
  background: var(--post-surface);
  border-radius: 36px;
  border: 1px solid var(--post-line);
  box-shadow: var(--post-shadow);
}

.article header {
  text-align: center;
  margin-bottom: clamp(48px, 9vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--post-accent);
  background: rgba(13, 99, 255, 0.08);
  border-radius: 999px;
  border: 1px solid rgba(13, 99, 255, 0.14);
}

.article h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.subhead {
  max-width: 720px;
  margin: 0 auto clamp(18px, 4vw, 28px);
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  color: var(--post-ink-soft);
}

.meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.6);
}

.meta span {
  position: relative;
  padding: 0 12px;
}

.meta span + span::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(13, 99, 255, 0.3);
  transform: translate(-50%, -50%);
}

.pill-trail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: clamp(18px, 4vw, 28px) 0 clamp(24px, 4vw, 36px);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(22, 24, 29, 0.06);
  border: 1px solid rgba(22, 24, 29, 0.08);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.75);
}

.pill--accent {
  background: rgba(245, 199, 117, 0.18);
  border-color: rgba(245, 199, 117, 0.4);
  color: #8a6726;
}

.hero {
  position: relative;
  margin: clamp(32px, 6vw, 48px) 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 28, 0.08);
  background: var(--post-surface-soft);
  box-shadow: 0 26px 64px -42px rgba(16, 18, 27, 0.4);
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero:hover img {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.hero figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--post-ink-soft);
  font-size: 0.9rem;
  box-shadow: 0 14px 28px -18px rgba(16, 20, 32, 0.25);
}

.prose {
  display: grid;
  gap: clamp(52px, 8vw, 84px);
  margin: clamp(52px, 8.5vw, 88px) 0;
  color: var(--post-ink);
  font-size: 1.08rem;
}

.prose > div {
  padding: clamp(30px, 4.6vw, 44px) clamp(28px, 4.6vw, 48px);
  border-radius: 32px;
  background: var(--post-surface-soft);
  border: 1px solid rgba(22, 24, 29, 0.06);
  box-shadow: 0 28px 62px -44px rgba(17, 19, 28, 0.18);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 26px);
}

.prose > div > *:last-child {
  margin-bottom: 0;
}

.prose h2 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  letter-spacing: -0.01em;
}

.prose p {
  margin: 0 0 18px;
  color: rgba(22, 24, 29, 0.85);
}

.prose h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.65);
}

.check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check li {
  position: relative;
  padding-left: 32px;
  color: rgba(22, 24, 29, 0.82);
}

.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(56, 188, 149, 0.2);
  border: 1px solid rgba(56, 188, 149, 0.4);
}

.check li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 2px;
  font-size: 0.9rem;
  color: rgba(21, 148, 112, 0.8);
  font-weight: 600;
}

.two,
.grid-2,
.stat-grid,
.highlight-grid,
.ab-grid {
  display: grid;
  gap: clamp(16px, 2.8vw, 24px);
}

.two,
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.highlight-grid,
.ab-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.mini,
.tip,
.note,
.stat-card,
.highlight-card,
.ab-card {
  padding: clamp(20px, 3.2vw, 28px);
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(22, 24, 29, 0.08);
  box-shadow: 0 20px 42px -30px rgba(17, 20, 33, 0.25);
}

.mini strong,
.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.7);
}

.tip {
  background: linear-gradient(135deg, rgba(13, 99, 255, 0.12), rgba(13, 99, 255, 0.04));
  border-color: rgba(13, 99, 255, 0.24);
}

.note {
  background: linear-gradient(135deg, rgba(245, 199, 117, 0.22), rgba(245, 199, 117, 0.08));
  border-color: rgba(245, 199, 117, 0.36);
}

.tip strong,
.note strong {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: rgba(22, 24, 29, 0.74);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.7rem, 2vw, 1.4rem);
  margin-bottom: 6px;
  color: var(--post-ink);
}

.stat-card span {
  display: block;
  font-size: 0.9rem;
  color: rgba(22, 24, 29, 0.7);
}

.timeline {
  position: relative;
  margin-top: 20px;
  padding-left: 24px;
  display: grid;
  gap: 28px;
  border-left: 1px dashed rgba(22, 24, 29, 0.2);
}

.timeline__item {
  position: relative;
  padding-left: 22px;
  color: rgba(22, 24, 29, 0.82);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(245, 199, 117, 0.9);
  box-shadow: 0 0 0 6px rgba(245, 199, 117, 0.25);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 24, 29, 0.06);
  border: 1px solid rgba(22, 24, 29, 0.1);
  font-size: 0.9rem;
  color: rgba(22, 24, 29, 0.75);
}

.pullquote {
  padding: clamp(22px, 4vw, 32px);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.4rem, 3.6vw, 1.9rem);
  line-height: 1.5;
  background: rgba(22, 24, 29, 0.04);
  border-left: 4px solid rgba(13, 99, 255, 0.4);
  border-radius: 22px;
  color: rgba(22, 24, 29, 0.85);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: var(--post-surface-soft);
  border: 1px solid rgba(22, 24, 29, 0.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 36px -26px rgba(17, 20, 33, 0.25);
}

.table th,
.table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(22, 24, 29, 0.08);
}

.table th {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(22, 24, 29, 0.6);
  background: rgba(13, 99, 255, 0.08);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(22, 24, 29, 0.06);
  border: 1px solid rgba(22, 24, 29, 0.1);
  color: rgba(22, 24, 29, 0.75);
  font-size: 0.9rem;
}

.cta {
  margin: clamp(64px, 10vw, 110px) 0 0;
  padding: clamp(24px, 4.5vw, 36px);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(245, 199, 117, 0.18), rgba(13, 99, 255, 0.1));
  border: 1px solid rgba(245, 199, 117, 0.28);
  box-shadow: 0 34px 72px -42px rgba(17, 19, 28, 0.3);
  display: grid;
  gap: 18px;
  align-items: center;
}

.cta strong {
  display: block;
  font-size: 1.16rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.78);
}

.cta a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d63ff, #1f87ff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px -24px rgba(13, 99, 255, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -20px rgba(13, 99, 255, 0.65);
}

.post-extras {
  margin: clamp(48px, 8vw, 78px) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 4vw, 28px);
}

.post-extras .meta-card,
.post-extras .share-card {
  background: #ffffff;
  border: 1px solid rgba(22, 24, 29, 0.08);
  border-radius: 26px;
  padding: clamp(22px, 3.2vw, 32px);
  box-shadow: 0 20px 46px -32px rgba(17, 19, 28, 0.22);
  display: grid;
  gap: 12px;
}

.post-extras h4 {
  margin: 0;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.6);
}

.post-extras p {
  margin: 0;
  color: rgba(22, 24, 29, 0.78);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.share-buttons button,
.share-buttons a {
  flex: 0 0 auto;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(13, 99, 255, 0.22);
  background: rgba(13, 99, 255, 0.08);
  color: #0d63ff;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.share-buttons button:hover,
.share-buttons a:hover {
  transform: translateY(-2px);
  background: rgba(13, 99, 255, 0.12);
  box-shadow: 0 16px 32px -22px rgba(13, 99, 255, 0.3);
}

.share-buttons button {
  border: 1px solid rgba(22, 24, 29, 0.15);
  background: rgba(22, 24, 29, 0.06);
  color: rgba(22, 24, 29, 0.74);
}

.share-buttons button:hover {
  background: rgba(22, 24, 29, 0.1);
}

.related {
  margin-top: clamp(64px, 9vw, 96px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid rgba(22, 24, 29, 0.08);
}

.related h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.6);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.related-links a {
  display: block;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px solid rgba(22, 24, 29, 0.08);
  background: var(--post-surface-soft);
  color: rgba(22, 24, 29, 0.82);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 99, 255, 0.28);
  box-shadow: 0 22px 44px -30px rgba(17, 20, 33, 0.25);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  margin-bottom: clamp(36px, 5vw, 52px);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(22, 24, 29, 0.65);
  border-radius: 999px;
  background: rgba(22, 24, 29, 0.06);
  border: 1px solid rgba(22, 24, 29, 0.1);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.back-btn:hover {
  transform: translateX(-2px);
  background: rgba(13, 99, 255, 0.1);
}

@media (max-width: 900px) {
  .article {
    padding: clamp(28px, 7vw, 52px);
  }

  .hero figcaption {
    inset: auto 16px 16px 16px;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.7;
  }

  .article {
    margin: clamp(110px, 22vw, 140px) auto clamp(100px, 20vw, 140px);
    padding: clamp(24px, 7vw, 40px);
    border-radius: 26px;
  }

  .article header {
    text-align: left;
  }

  .pill-trail {
    justify-content: flex-start;
  }

  .hero {
    margin: 32px 0 42px;
    border-radius: 26px;
  }

  .hero figcaption {
    position: static;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .meta {
    gap: 8px;
    font-size: 0.8rem;
  }

  .prose {
    gap: 38px;
    margin: 40px 0 70px;
    font-size: 1.02rem;
  }

  .prose > div {
    padding: 22px 18px 26px;
    border-radius: 26px;
    gap: 16px;
  }

  .post-extras {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .stat-grid,
  .two,
  .grid-2,
  .highlight-grid,
  .ab-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    text-align: center;
    padding: 28px 24px;
    gap: 22px;
  }

  .cta a {
    justify-self: center;
  }

  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline__item {
    padding-left: 0;
  }

  .timeline__item::before {
    position: static;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .article h1 {
    font-size: clamp(2.15rem, 9vw, 2.6rem);
    margin-bottom: 14px;
  }

  .subhead {
    font-size: 1.02rem;
  }

  .prose {
    font-size: 1.02rem;
    gap: 32px;
  }

  .check li {
    padding-left: 26px;
  }

  .check li::before {
    width: 16px;
    height: 16px;
    border-radius: 5px;
  }

  .check li::after {
    left: 3px;
  }

  .back-btn {
    width: 100%;
    justify-content: center;
  }
}
