/* ---------- Base ---------- */
:root {
  --bg: #0b1030;
  --bg-2: #141a4a;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #eef1ff;
  --muted: #a8afd6;
  --pink: #ff7ab6;
  --blue: #6aa9ff;
  --teal: #5fe3c9;
  --amber: #ffcb6b;
  --purple: #9d7cff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Nunito", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #070a22 0%, #0b1030 30%, #151a4a 100%);
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.55;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--text); }

a { color: inherit; text-decoration: none; }

/* ---------- Night sky ---------- */
.sky {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, #fff, transparent),
    radial-gradient(1px 1px at 150px 90px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 280px 40px, #fff, transparent),
    radial-gradient(1px 1px at 430px 160px, #fff, transparent),
    radial-gradient(2px 2px at 580px 70px, #fff, transparent),
    radial-gradient(1px 1px at 740px 220px, #fff, transparent),
    radial-gradient(1.5px 1.5px at 900px 120px, #fff, transparent),
    radial-gradient(1px 1px at 1080px 300px, #fff, transparent),
    radial-gradient(2px 2px at 1250px 60px, #fff, transparent),
    radial-gradient(1px 1px at 1420px 180px, #fff, transparent);
  background-repeat: repeat;
  background-size: 1600px 600px;
  opacity: 0.7;
  animation: twinkle 8s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: 0.4; } to { opacity: 0.85; } }

.moon {
  position: absolute; top: 6%; right: 6%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff9d6, #f4e4a1 55%, #d4b75a);
  box-shadow: 0 0 80px rgba(255, 230, 150, 0.35);
  filter: blur(0.3px);
}

/* ---------- Nav ---------- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 48, 0.55);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.1rem; }
.brand-icon { font-size: 1.5rem; }
.brand-name span { color: var(--pink); }
.nav nav { display: flex; gap: 1.5rem; }
.nav nav a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.nav nav a:hover { color: var(--text); }
@media (max-width: 800px) { .nav nav { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  box-shadow: 0 10px 30px rgba(157, 124, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(157, 124, 255, 0.5); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--card); }
.btn-small { padding: 0.55rem 1rem; font-size: 0.85rem; background: var(--card-strong); border: 1px solid var(--border); }
.btn-small:hover { background: var(--card); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  color: var(--purple);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.eyebrow.pink { color: var(--pink); }
.eyebrow.teal { color: var(--teal); }
.eyebrow.amber { color: var(--amber); }
.lede { color: var(--muted); font-size: 1.15rem; max-width: 520px; }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.5rem 0; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  color: var(--muted); font-size: 0.9rem;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}

/* ---------- Phone mock ---------- */
.phone {
  position: relative;
  width: 320px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a2060, #0e1340);
  border-radius: 42px;
  padding: 14px;
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 24px;
  background: #070a22; border-radius: 0 0 18px 18px;
}
.phone-screen {
  background: linear-gradient(180deg, #0c1236, #16206a);
  border-radius: 30px;
  padding: 44px 18px 24px;
  min-height: 540px;
}
.phone-status {
  display: flex; justify-content: space-between;
  color: var(--muted); font-size: 0.75rem;
  padding: 0 0.5rem 1rem;
}
.phone-body { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }

/* Radar */
.radar {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,169,255,0.2), rgba(106,169,255,0.05) 60%, transparent 70%);
  border: 2px solid rgba(106,169,255,0.3);
  box-shadow: 0 0 60px rgba(106,169,255,0.25) inset;
  overflow: hidden;
}
.radar::before, .radar::after {
  content: ''; position: absolute; inset: 20%;
  border: 1px dashed rgba(106,169,255,0.3);
  border-radius: 50%;
}
.radar::after { inset: 38%; }
.radar-sweep {
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent 70%, rgba(106,169,255,0.5) 85%, rgba(106,169,255,0.9) 95%, transparent 100%);
  border-radius: 50%;
  animation: sweep 3s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 2.2rem;
  filter: drop-shadow(0 0 12px rgba(255, 200, 230, 0.6));
}
.radar-label {
  position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--teal); font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.radar-blip {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.8), 0 0 14px rgba(255, 59, 59, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.radar-blip.active {
  opacity: 1;
  animation: blip 0.9s ease-out infinite;
}
@keyframes blip {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.85), 0 0 14px rgba(255, 59, 59, 0.9); }
  70%  { box-shadow: 0 0 0 18px rgba(255, 59, 59, 0), 0 0 14px rgba(255, 59, 59, 0.9); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0), 0 0 14px rgba(255, 59, 59, 0.9); }
}
.radar.alert {
  border-color: rgba(255, 59, 59, 0.6);
  box-shadow: 0 0 60px rgba(255, 59, 59, 0.35) inset, 0 0 40px rgba(255, 59, 59, 0.4);
  animation: alertPulse 0.7s ease-in-out infinite alternate;
}
@keyframes alertPulse {
  from { box-shadow: 0 0 60px rgba(255, 59, 59, 0.25) inset, 0 0 30px rgba(255, 59, 59, 0.3); }
  to   { box-shadow: 0 0 80px rgba(255, 59, 59, 0.45) inset, 0 0 60px rgba(255, 59, 59, 0.55); }
}

/* Big buttons */
.big-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 18px;
  color: #fff;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  margin-top: 0.5rem;
}
.big-btn.test { background: linear-gradient(135deg, #ff7ab6, #ff4e90); box-shadow: 0 10px 24px rgba(255, 78, 144, 0.35); }
.big-btn.help { background: linear-gradient(135deg, #6aa9ff, #4f7dff); box-shadow: 0 10px 24px rgba(79, 125, 255, 0.35); }
.big-btn:hover { transform: translateY(-2px); }
.big-btn:active { transform: translateY(0); }
.big-btn-icon { font-size: 1.6rem; }
.big-btn strong { display: block; font-size: 1.05rem; }
.big-btn small { display: block; color: rgba(255, 255, 255, 0.8); font-size: 0.78rem; margin-top: 2px; }

/* ---------- Sections ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}
.section-sub { color: var(--muted); max-width: 680px; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, background 0.2s;
}
.step:hover { transform: translateY(-4px); background: var(--card-strong); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
}
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: '\2713';
  position: absolute; left: 0; top: 0.5rem;
  color: var(--teal); font-weight: 700;
}

/* Mocks */
.mock {
  background: linear-gradient(180deg, #1a2060, #0e1340);
  border-radius: 28px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mock-screen {
  background: linear-gradient(180deg, #0c1236, #16206a);
  border-radius: 20px;
  padding: 1.5rem;
  min-height: 340px;
  display: flex; flex-direction: column; gap: 0.9rem;
  justify-content: center;
}
.mini-radar {
  width: 100px; height: 100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 182, 0.25), transparent 70%);
  border: 2px solid rgba(255, 122, 182, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 0.5rem;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 182, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(255, 122, 182, 0); }
}
.mini-btn {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
  color: #fff;
}
.mini-btn.pink { background: linear-gradient(135deg, #ff7ab6, #ff4e90); }
.mini-btn.blue { background: linear-gradient(135deg, #6aa9ff, #4f7dff); }

.mock-card {
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex; flex-direction: column;
}
.mock-card strong { color: var(--text); }
.mock-card span { color: var(--muted); font-size: 0.8rem; margin-top: 2px; }
.mock-card.subtle { background: var(--card); }
.mock-parent .mock-card:first-child {
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(255, 122, 182, 0.25);
}

/* Real protection section */
.accent {
  background: linear-gradient(135deg, var(--pink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.real-section {
  position: relative;
}
.real-section::before {
  content: '';
  position: absolute;
  inset: 0 -10% auto -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  top: 0;
}
.real-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.real-grid h2 em { font-style: normal; color: var(--amber); }
.note-inline {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: var(--card);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}
.real-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.real-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.real-card:hover {
  transform: translateX(4px);
  background: var(--card-strong);
  border-color: rgba(255, 203, 107, 0.4);
}
.real-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 203, 107, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.real-card strong { display: block; color: var(--text); }
.real-card span { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 900px) { .real-grid { grid-template-columns: 1fr; } }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.feature:hover { transform: translateY(-4px); background: var(--card-strong); }
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature h3 { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.feature p { color: var(--muted); margin: 0; }
.feature-featured {
  background: linear-gradient(180deg, rgba(157, 124, 255, 0.18), rgba(106, 169, 255, 0.1));
  border-color: rgba(157, 124, 255, 0.5);
}
.pro-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.faq details[open] { background: var(--card-strong); }
.faq summary {
  font-weight: 600; list-style: none; position: relative;
  padding-right: 2rem;
}
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  font-size: 1.4rem; color: var(--muted);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); }

/* CTA */
.cta { text-align: center; }
.waitlist {
  display: flex; gap: 0.5rem; max-width: 460px; margin: 1.5rem auto 0;
  flex-wrap: wrap; justify-content: center;
}
.waitlist input {
  flex: 1; min-width: 220px;
  padding: 0.85rem 1.1rem;
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}
.waitlist input:focus { border-color: var(--pink); }
.form-msg {
  width: 100%;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}

/* Footer */
.footer {
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--muted); font-size: 0.9rem;
}
.footer nav { display: flex; gap: 1.25rem; }
.footer a:hover { color: var(--text); }

/* Overlay */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(5, 8, 25, 0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}
.overlay[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.overlay-card {
  background: linear-gradient(180deg, #1a2060, #0e1340);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 400px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.overlay-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: shake 0.6s ease-in-out infinite;
}
@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}
.overlay-card h3 { margin-bottom: 0.5rem; }
.overlay-card p { color: var(--muted); }

/* =====================================================
   BLOG — index listing + article pages
   ===================================================== */
.blog-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 3rem) 1rem;
  text-align: center;
}
.blog-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.blog-hero p { color: var(--muted); max-width: 600px; margin: 1rem auto 0; }

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.blog-grid .featured-card { grid-column: 1 / -1; }
@media (max-width: 800px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  background: var(--card-strong);
  border-color: rgba(255, 122, 182, 0.35);
}
.blog-card.featured-card {
  background: linear-gradient(180deg, rgba(255, 122, 182, 0.14), rgba(157, 124, 255, 0.08));
  border-color: rgba(255, 122, 182, 0.4);
}
.blog-card h2 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.blog-card .excerpt { color: var(--muted); margin: 0.5rem 0 1rem; flex: 1; }
.blog-card .meta {
  display: flex; gap: 0.75rem; align-items: center;
  color: var(--muted); font-size: 0.85rem;
  margin-top: auto;
}
.blog-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(106, 169, 255, 0.15);
  color: var(--blue);
  margin-bottom: 0.6rem;
  align-self: flex-start;
}

/* Article page */
.article {
  max-width: 740px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}
.article-header { text-align: center; margin-bottom: 2.5rem; }
.article-header .tag { display: inline-block; margin-bottom: 1rem; }
.article-header h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}
.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.article-meta span + span::before { content: '·'; margin: 0 0.5rem; color: var(--border); }

.article-body { font-size: 1.08rem; color: #dfe4ff; }
.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.article-body p { margin: 0 0 1.1em; }
.article-body ul, .article-body ol {
  margin: 0 0 1.25em;
  padding-left: 1.3em;
  color: #dfe4ff;
}
.article-body li { margin-bottom: 0.4em; }
.article-body strong { color: #fff; }
.article-body a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 182, 0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.article-body a:hover { text-decoration-color: var(--pink); }
.article-body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-left: 3px solid var(--purple);
  border-radius: 10px;
  color: var(--muted);
  font-style: italic;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Inline CTA inside articles */
.inline-cta {
  margin: 2.5rem 0;
  padding: 1.75rem 1.75rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 122, 182, 0.15), rgba(157, 124, 255, 0.15));
  border: 1px solid rgba(255, 122, 182, 0.3);
  text-align: center;
}
.inline-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.inline-cta p {
  color: var(--muted);
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
}

/* "Keep reading" - related posts */
.related {
  max-width: 740px;
  margin: 3rem auto 0;
  padding: 2rem clamp(1rem, 4vw, 2rem) 0;
  border-top: 1px solid var(--border);
}
.related h3 { margin-bottom: 1rem; font-size: 1.15rem; color: var(--muted); font-weight: 600; }
.related-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.related-list a {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s;
}
.related-list a:hover {
  background: var(--card-strong);
  border-color: rgba(255, 122, 182, 0.35);
}
@media (max-width: 700px) { .related-list { grid-template-columns: 1fr; } }

