/* ============================================
   MatyAI — Mobile-first, clean, personal
   Inspired by newsletter landing pages
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f5;
  --text: #111111;
  --text-2: #555555;
  --text-3: #999999;
  --border: #e5e5e0;
  --accent: #111111;
  --accent-inv: #ffffff;
  --green: #1a8917;
  --red: #c13515;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 620px;
  --radius: 10px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: 0.7; }
img { max-width: 100%; display: block; }
button, input { font-family: inherit; font-size: inherit; }

/* === LAYOUT === */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.spacer { height: 64px; }
.spacer-sm { height: 40px; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 24px;
  width: auto;
}

.nav-right {
  display: flex; align-items: center; gap: 20px;
}

.nav-link {
  font-size: 0.82rem;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
}
.nav-link:hover { color: var(--text); opacity: 1; }

.nav-btn {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--accent-inv);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-btn:hover { opacity: 0.8; color: var(--accent-inv); }

/* Hide desktop nav links on mobile, show button always */
@media (max-width: 540px) {
  .nav-link { display: none; }
}

/* === HERO === */
.hero {
  padding: 56px 20px 48px;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  color: var(--text-3);
  display: inline-block;
  min-width: 100px;
  transition: opacity 0.35s ease;
}
.hero h1 .strike.fade { opacity: 0; }

.hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* === SUBSCRIBE FORM === */
.sub-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.sub-form input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.sub-form input::placeholder { color: var(--text-3); }
.sub-form input:focus { border-color: var(--text); }

.sub-form button {
  padding: 14px 22px;
  background: var(--accent);
  color: var(--accent-inv);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.sub-form button:hover { opacity: 0.8; }

.sub-msg {
  text-align: center;
  margin-top: 8px;
  font-size: 0.82rem;
  min-height: 20px;
}
.sub-msg.success { color: var(--green); }
.sub-msg.error { color: var(--red); }

.sub-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-3);
}

@media (max-width: 440px) {
  .sub-form {
    flex-direction: column;
  }
  .sub-form button { width: 100%; }
}

/* === VIDEO === */
.video-section {
  padding: 48px 0;
}

.video-box {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.video-frame {
  position: relative;
  background: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.2s;
}
.video-play:hover { opacity: 0.85; }

.play-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.15s;
}
.video-play:hover .play-circle { transform: scale(1.06); }

.video-label {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 500;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* === SECTION TITLES === */
.stitle {
  text-align: center;
  margin-bottom: 32px;
}

.stitle-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.stitle h2 {
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* === COMPARE === */
.compare {
  padding: 48px 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.compare-col {
  padding: 24px 20px;
  border-radius: var(--radius);
}

.compare-col h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-col li {
  font-size: 0.88rem;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
  color: var(--text-2);
}
.compare-col li::before {
  position: absolute;
  left: 0;
  font-weight: 800;
  font-size: 0.82rem;
}

.col-bad {
  background: var(--bg-alt);
}
.col-bad h3 { color: var(--text-3); }
.col-bad li { color: var(--text-3); }
.col-bad li::before { content: '✗'; color: var(--red); }

.col-good {
  background: var(--bg);
  border: 2px solid var(--text);
}
.col-good h3 { color: var(--text); }
.col-good li::before { content: '✓'; color: var(--green); }

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

/* === EMAIL MESSAGE === */
.email-section {
  padding: 48px 0;
}

.email-card {
  max-width: var(--max-w);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.92rem;
}

.email-toolbar {
  padding: 10px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.email-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.email-dot.r { background: #ff5f57; }
.email-dot.y { background: #ffbd2e; }
.email-dot.g { background: #28ca41; }

.email-fields {
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.email-field {
  display: flex;
  padding: 8px 16px;
  border-bottom: 1px solid var(--border);
}
.email-field:last-child { border-bottom: none; }

.email-field-label {
  width: 65px;
  flex-shrink: 0;
  color: var(--text-3);
  font-weight: 600;
}

.email-field-value {
  color: var(--text);
}

.email-body {
  padding: 24px 20px;
  line-height: 1.75;
}

.email-body p {
  color: var(--text-2);
  margin-bottom: 14px;
}
.email-body p:last-child { margin-bottom: 0; }
.email-body p.sign { font-weight: 600; color: var(--text); }

/* === ABOUT PAGE === */
.about-page {
  padding: 48px 0 40px;
}

.about-page h1 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-page p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-page blockquote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--text);
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* === PILLARS === */
.pillars {
  padding: 48px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pillar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.pillar:first-child { border-top: 1px solid var(--border); }

.pillar-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-3);
  line-height: 1;
  padding-top: 2px;
}

.pillar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* === BLOG CARDS === */
.blog-section { padding: 48px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.blog-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
  align-items: start;
}
.blog-card:first-child { border-top: 1px solid var(--border); }
.blog-card:hover { opacity: 0.85; }

.blog-card-body { flex: 1; }

.blog-card-date {
  font-size: 0.72rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.blog-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.blog-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.5;
}

.blog-card-arrow {
  font-size: 1.2rem;
  color: var(--text-3);
  padding-top: 16px;
  flex-shrink: 0;
}

.blog-more {
  text-align: center;
  margin-top: 24px;
}

.blog-more a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}

/* === FAQ === */
.faq-section { padding: 48px 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  gap: 16px;
}
.faq-q:hover { opacity: 0.7; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding-bottom: 18px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-a { max-height: 200px; }

/* === FINAL CTA === */
.final-cta {
  padding: 56px 0;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* === SOCIAL === */
.social-section {
  padding: 40px 0;
  text-align: center;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  text-decoration: none;
  transition: all 0.15s;
}
.social-icon:hover { border-color: var(--text); color: var(--text); opacity: 1; }
.social-icon svg { width: 18px; height: 18px; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-3);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--text); opacity: 1; }

/* === REVEAL === */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === LOADER === */
.loader {
  display: flex; justify-content: center; padding: 40px 0;
}
.loader-dot {
  width: 5px; height: 5px; background: var(--border);
  border-radius: 50%; margin: 0 3px;
  animation: bounce 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.1s; }
.loader-dot:nth-child(3) { animation-delay: 0.2s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* === BUBBLING CODE + TIPS === */
.code-bubble {
  white-space: nowrap;
}

.snippet-bubble {
  font-family: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.13);
}

.tip-bubble {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  color: rgba(0,0,0,0.18);
  letter-spacing: 0.01em;
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.7);
    opacity: 0;
  }
  8% {
    opacity: 1;
    transform: translateY(-6vh) translateX(calc(var(--drift) * 0.08)) scale(0.9);
  }
  30% {
    opacity: 1;
    transform: translateY(-28vh) translateX(calc(var(--drift) * 0.35)) scale(1);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-58vh) translateX(calc(var(--drift) * 0.65)) scale(1);
  }
  85% {
    opacity: 0.4;
    transform: translateY(-85vh) translateX(calc(var(--drift) * 0.9)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-115vh) translateX(var(--drift)) scale(1);
  }
}

@keyframes bubbleRisePartial {
  0% {
    opacity: 0.8;
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-40vh) translateX(calc(var(--drift) * 0.5)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) translateX(var(--drift)) scale(1);
  }
}

@media (max-width: 540px) {
  .snippet-bubble { font-size: 10px !important; }
  .tip-bubble { font-size: 11px !important; }
}

/* === ENHANCED INTERACTIONS === */

/* Button hover: lift + shadow */
.sub-form button {
  transition: opacity 0.15s, transform 0.2s, box-shadow 0.2s;
}
.sub-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.sub-form button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Nav button hover lift */
.nav-btn {
  transition: opacity 0.15s, transform 0.2s, box-shadow 0.2s;
}
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

/* Blog card hover: slide arrow */
.blog-card {
  transition: opacity 0.15s, transform 0.2s;
}
.blog-card:hover {
  opacity: 1;
}
.blog-card:hover .blog-card-arrow {
  transform: translateX(4px);
  color: var(--text);
}
.blog-card-arrow {
  transition: transform 0.2s ease, color 0.2s;
}

/* Email card subtle hover glow */
.email-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.email-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* Compare column hover */
.compare-col {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.compare-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* Social icon hover: pop */
.social-icon {
  transition: all 0.2s ease;
}
.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Play button pulse */
.play-circle {
  animation: playPulse 2.5s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}

/* FAQ icon smooth rotation */
.faq-icon {
  transition: transform 0.3s ease, color 0.2s;
}
.faq-item:hover .faq-icon { color: var(--text); }

/* Pillar number hover color */
.pillar {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pillar:hover .pillar-num { color: var(--text); }
.pillar-num {
  transition: color 0.25s ease;
}

/* Share button hover pop */
.share-btn {
  transition: all 0.2s ease;
}
.share-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* Input focus glow */
.sub-form input {
  transition: border-color 0.15s, box-shadow 0.2s;
}
.sub-form input:focus {
  box-shadow: 0 0 0 3px rgba(17,17,17,0.06);
}

/* === TOAST === */
.toast {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%) translateY(20px);
  padding: 12px 20px;
  background: var(--text);
  color: var(--accent-inv);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* === BLOG PAGE === */
.page-header {
  padding: 48px 0 32px;
}
.page-header h1 {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.page-header p {
  color: var(--text-2);
  font-size: 0.92rem;
  margin-top: 6px;
}

.pagination {
  display: flex; justify-content: center;
  gap: 6px; padding: 32px 0;
}
.pagination button {
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-2);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
}
.pagination button:hover, .pagination button.active {
  border-color: var(--text); color: var(--text);
}
.pagination button:disabled { opacity: 0.3; cursor: not-allowed; }

/* === ARTICLE === */
.article {
  padding: 48px 0;
}

.article-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.article-meta .dot {
  width: 3px; height: 3px; background: var(--text-3); border-radius: 50%;
}

.article h1 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.article .excerpt {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.article-body h1, .article-body h2, .article-body h3 {
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.article-body h1 { font-size: 1.5rem; }
.article-body h2 { font-size: 1.25rem; }
.article-body h3 { font-size: 1.05rem; }

.article-body p {
  margin-bottom: 16px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
}
.article-body strong { color: var(--text); }

.article-body ul, .article-body ol {
  margin-bottom: 16px; padding-left: 20px; color: var(--text-2);
}
.article-body li { margin-bottom: 6px; line-height: 1.7; }

.article-body blockquote {
  border-left: 3px solid var(--text);
  padding: 12px 18px;
  margin: 24px 0;
  background: var(--bg-alt);
  border-radius: 0 8px 8px 0;
}
.article-body blockquote p { color: var(--text); font-style: italic; margin: 0; }

.article-body code {
  background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.88em;
}
.article-body pre {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px; overflow-x: auto; margin: 20px 0;
}
.article-body pre code { background: none; padding: 0; }
.article-body hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

.article-share {
  display: flex; align-items: center; gap: 8px;
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border);
}
.article-share span { font-size: 0.82rem; color: var(--text-3); font-weight: 600; }

.share-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-2); cursor: pointer; background: none;
  transition: all 0.15s;
}
.share-btn:hover { border-color: var(--text); color: var(--text); }

.empty-state {
  text-align: center; padding: 48px 20px; color: var(--text-3);
}

/* === NEWSLETTER CTA (article page) === */
.newsletter-cta {
  padding: 48px 0;
  text-align: center;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.newsletter-cta h2 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 8px;
}
.newsletter-cta p {
  color: var(--text-2); font-size: 0.92rem; margin-bottom: 24px;
}
