/* 30fps — feuille de style partagée (accueil, blog, article) — thème sombre v2 */

:root {
  --bg: #1f1f21;
  --bg-alt: #242426;
  --bg-deep: #141420;
  --card: #262628;
  --card-alt: #1a1a26;
  --ink: #DBDBDB;
  --white: #FFFFFF;
  --violet: #4728D3;
  --violet-light: #8f7ff0;
  --violet-hover: #5a3ce0;
  --navy: #001177;
  --gray: #DBDBDB;
  --border: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  overflow-x: hidden;
}

a { color: var(--violet); text-decoration: none; }
a:hover { color: var(--violet-hover); }
img { display: block; max-width: 100%; }
::selection { background: var(--violet); color: #fff; }

.container { max-width: 1160px; margin: 0 auto; }
.container-wide { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }
.container-article { max-width: 720px; margin: 0 auto; }

@keyframes glowPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.9; } }
@keyframes floatY { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes fadeInUp { 0% { opacity: 0; transform: translateY(18px); } 100% { opacity: 1; transform: translateY(0); } }

.glow-blob { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; animation: glowPulse 8s ease-in-out infinite; }

/* Traitement photo unifié (encore utilisé sur les cartes du blog) */
.brand-photo { filter: saturate(0.85) contrast(1.05) brightness(0.92); }

/* ---------- Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw; background: rgba(31,31,33,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: 0.02em; color: var(--white); text-decoration: none; }
.nav-desktop { display: none; gap: 32px; align-items: center; }
.nav-link { color: var(--ink); font-size: 15px; font-weight: 500; text-decoration: none; transition: color 0.15s ease; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-cta {
  display: none; background: var(--violet); color: #fff; font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 999px; box-shadow: 0 0 24px rgba(71,40,211,0.5);
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--violet-hover); color: #fff; }
.nav-burger {
  background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  width: 42px; height: 42px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.nav-burger span { width: 18px; height: 2px; background: var(--white); display: block; }

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; }
  .nav-burger { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; top: 73px; z-index: 99; background: var(--bg);
  display: none; flex-direction: column; gap: 26px; padding: 32px 6vw;
  animation: fadeInUp 0.25s ease both;
}
.mobile-menu.open { display: flex; }
.mobile-link { color: var(--white); font-size: 22px; font-family: 'Sora', sans-serif; font-weight: 800; letter-spacing: 0.02em; text-decoration: none; }
.mobile-cta {
  margin-top: 8px; text-align: center; background: var(--violet); color: #fff; font-size: 16px;
  font-weight: 600; padding: 16px; border-radius: 999px; text-decoration: none;
}

/* ---------- Section basics ---------- */
.section { padding: 100px 6vw; background: var(--bg); position: relative; }
.eyebrow { font-family: 'Patrick Hand', cursive; font-size: 19px; color: var(--violet-light); margin-bottom: 14px; }
.h2 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(28px,4vw,44px); line-height: 1.22; letter-spacing: 0.01em; text-transform: uppercase; color: var(--white); margin: 0; }
.section-head-center { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-lead { font-size: 16px; line-height: 1.7; color: rgba(219,219,219,0.75); margin: 22px 0 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 96px 6vw 110px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 60px; overflow: hidden;
}
.hero-blob-1 { top: -220px; left: -160px; width: 640px; height: 640px; background: radial-gradient(circle, rgba(71,40,211,0.45), transparent 70%); }
.hero-blob-2 { bottom: -260px; right: -180px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,17,119,0.55), transparent 70%); animation-duration: 10s; }
.hero-content { position: relative; z-index: 2; flex: 1 1 480px; min-width: 300px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(71,40,211,0.14); border: 1px solid rgba(71,40,211,0.4); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 28px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 10px var(--violet); }
.badge-text { font-family: 'Patrick Hand', cursive; font-size: 17px; color: var(--ink); }
.h1 {
  font-family: 'Sora', sans-serif; font-weight: 800; text-transform: uppercase; color: var(--white);
  font-size: clamp(38px,6vw,68px); line-height: 1.06; letter-spacing: 0.01em; margin: 0 0 28px;
}
.hero-lead { font-size: 18px; line-height: 1.65; color: rgba(219,219,219,0.85); max-width: 520px; margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-primary {
  background: var(--violet); color: #fff; font-weight: 600; font-size: 15px; padding: 16px 28px;
  border-radius: 999px; display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 0 30px rgba(71,40,211,0.5); text-decoration: none; transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--violet-hover); color: #fff; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-weight: 600; font-size: 15px;
  padding: 16px 28px; border-radius: 999px; display: inline-flex; align-items: center;
  text-decoration: none; transition: border-color 0.15s ease, background 0.15s ease;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); color: var(--white); }

/* ---------- Mockup téléphone (remplace le composant iOS d'origine, en CSS pur) ---------- */
.hero-device-wrap { position: relative; z-index: 2; flex: 0 1 320px; min-width: 240px; display: flex; justify-content: center; }
.hero-device { animation: floatY 6s ease-in-out infinite; }
.phone-frame {
  position: relative; width: 260px; height: 540px; border-radius: 42px; overflow: hidden;
  background: #000; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px; border-radius: 20px; background: #000; z-index: 5;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-statusbar {
  position: absolute; top: 16px; left: 0; right: 0; z-index: 4; text-align: center;
  font-family: -apple-system, system-ui, sans-serif; font-size: 13px; font-weight: 600; color: #fff;
}
.phone-screen {
  position: absolute; inset: 0; background: linear-gradient(160deg, #2a2a2d, #1a1a1c);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 16px);
  display: flex; align-items: center; justify-content: center;
}
.phone-placeholder { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; color: rgba(219,219,219,0.7); }
.phone-play {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(71,40,211,0.25); border: 1px solid rgba(71,40,211,0.6);
  display: flex; align-items: center; justify-content: center;
}
.phone-play::after { content: ""; width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 16px solid #fff; margin-left: 3px; }
.phone-placeholder-label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 0.05em; text-align: center; padding: 0 24px; }
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); z-index: 6;
  width: 110px; height: 4px; border-radius: 100px; background: rgba(255,255,255,0.7);
}

/* ---------- Constat ---------- */
.constat-section { background: var(--bg-alt); display: flex; flex-wrap: wrap; gap: 64px; align-items: center; }
.constat-text { flex: 1 1 420px; min-width: 300px; }
.constat-p { font-size: 16px; line-height: 1.75; color: rgba(219,219,219,0.8); margin: 0 0 20px; }
.callout { border-left: 3px solid var(--violet); padding: 6px 0 6px 20px; }
.callout-text { font-size: 15px; line-height: 1.6; color: rgba(219,219,219,0.6); font-style: italic; margin: 0; }
.callout-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(219,219,219,0.4); margin-top: 8px; }

.constat-visuals { flex: 1 1 380px; min-width: 280px; position: relative; height: 420px; }
.tilt-card {
  position: absolute; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.tilt-card-1 { top: 0; left: 10%; width: 56%; height: 78%; transform: rotate(-3deg); }
.tilt-card-2 { bottom: 0; right: 6%; width: 56%; height: 78%; transform: rotate(3deg); border-color: rgba(71,40,211,0.35); box-shadow: 0 30px 70px rgba(71,40,211,0.25); }
.tilt-card-fill {
  width: 100%; height: 100%; background: linear-gradient(160deg,#2c2c2f,#1b1b1d);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 22px);
  display: flex; align-items: center; justify-content: center;
}
.tilt-card-label { font-family: ui-monospace, monospace; font-size: 11px; color: rgba(219,219,219,0.55); text-align: center; padding: 0 16px; }

@media (max-width: 720px) {
  .constat-visuals { height: 320px; }
}

/* ---------- Ce que je propose (pillars) ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 28px; max-width: 1180px; margin: 0 auto; }
.pillar-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 34px; transition: border-color 0.2s ease; }
.pillar-card:hover { border-color: rgba(71,40,211,0.5); }
.pillar-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(71,40,211,0.15); border: 1px solid rgba(71,40,211,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.pillar-icon-dot { width: 18px; height: 18px; border-radius: 5px; background: var(--violet); }
.pillar-tag { font-family: 'Patrick Hand', cursive; font-size: 15px; color: rgba(219,219,219,0.5); margin-bottom: 10px; }
.pillar-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 19px; color: var(--white); text-transform: uppercase; line-height: 1.3; letter-spacing: 0.005em; margin: 0 0 14px; }
.pillar-desc { font-size: 15px; line-height: 1.65; color: rgba(219,219,219,0.72); margin: 0; }

/* ---------- Formules ---------- */
.formules-section { background: var(--bg-deep); overflow: hidden; }
.formules-blob { top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(0,17,119,0.55), transparent 70%); }
.formula-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 28px; max-width: 1180px; margin: 0 auto; align-items: stretch; }
.formula-card {
  position: relative; display: flex; flex-direction: column; border-radius: 20px; padding: 38px 32px;
  background: var(--card-alt); border: 1px solid var(--border);
}
.formula-card.featured {
  background: #1c1c2e; border: 1.5px solid var(--violet); box-shadow: 0 0 50px rgba(71,40,211,0.35);
}
@media (min-width: 720px) { .formula-card.featured { transform: translateY(-8px); } }
.formula-badge {
  display: inline-flex; align-self: flex-start; background: var(--violet); color: #fff; font-size: 12px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.formula-name { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--white); text-transform: uppercase; letter-spacing: 0.01em; margin-bottom: 6px; }
.formula-count-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; }
.formula-count { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 48px; color: var(--white); line-height: 1; }
.formula-unit { font-size: 14px; color: rgba(219,219,219,0.65); }
.formula-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 26px; }
.formula-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; flex: 1; list-style: none; padding: 0; }
.formula-features li { display: flex; gap: 12px; align-items: flex-start; }
.feature-dot { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%; background: rgba(71,40,211,0.2); border: 1px solid var(--violet); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.feature-dot::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.feature-benefit { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.feature-fact { font-size: 12.5px; color: rgba(219,219,219,0.5); margin-top: 2px; }
.formula-cta {
  display: block; text-align: center; font-weight: 600; font-size: 15px; padding: 15px 20px; border-radius: 999px;
  text-decoration: none; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25);
}
.formula-card.featured .formula-cta { background: var(--violet); color: #fff; border: none; box-shadow: 0 0 24px rgba(71,40,211,0.5); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 36px; max-width: 1180px; margin: 0 auto; }
.process-n { font-family: 'Patrick Hand', cursive; font-size: 44px; color: rgba(71,40,211,0.55); line-height: 1; margin-bottom: 18px; }
.process-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.3; margin: 0 0 12px; }
.process-desc { font-size: 14.5px; line-height: 1.65; color: rgba(219,219,219,0.7); margin: 0; }

/* ---------- Portfolio (cartes éclatées) ---------- */
.portfolio-scatter { position: relative; max-width: 980px; margin: 0 auto; height: 420px; }
.scatter-card {
  position: absolute; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
}
.scatter-card-fill {
  width: 100%; height: 100%; background: linear-gradient(165deg,#2c2c2f,#1c1c1e);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 22px);
  display: flex; align-items: center; justify-content: center;
}
.scatter-card-label { font-family: ui-monospace, monospace; font-size: 10.5px; color: rgba(219,219,219,0.5); text-align: center; padding: 0 12px; }
.s1 { top: 0%; left: 4%; width: 22%; height: 58%; transform: rotate(-4deg); z-index: 1; }
.s2 { top: 10%; left: 24%; width: 22%; height: 78%; transform: rotate(2deg); z-index: 2; }
.s3 { top: 2%; left: 44%; width: 22%; height: 96%; transform: rotate(-2deg); z-index: 3; }
.s4 { top: 10%; left: 64%; width: 22%; height: 78%; transform: rotate(3deg); z-index: 2; }
.s5 { top: 0%; left: 84%; width: 18%; height: 58%; transform: rotate(-3deg); z-index: 1; }

@media (max-width: 640px) {
  .portfolio-scatter { height: auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
  .scatter-card { position: static; transform: none !important; aspect-ratio: 9/16; }
}

/* ---------- Avis ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 28px; max-width: 980px; margin: 0 auto; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 36px; }
.testimonial-mark { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 32px; color: rgba(71,40,211,0.6); line-height: 1; margin-bottom: 16px; }
.testimonial-quote { font-size: 15.5px; line-height: 1.7; color: rgba(219,219,219,0.75); font-style: italic; margin: 0 0 20px; }
.testimonial-name { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(219,219,219,0.4); }

/* ---------- Zone ---------- */
.zone-section { background: var(--bg-deep); text-align: center; }
.zone-lead { font-size: 15.5px; line-height: 1.7; color: rgba(219,219,219,0.7); max-width: 560px; margin: 0 auto 40px; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 720px; margin: 0 auto; }
.zone-tag { border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; padding: 10px 20px; font-size: 14.5px; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: transparent; border: none; cursor: pointer; padding: 22px 26px; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--white); list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+"; flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white); display: flex; align-items: center;
  justify-content: center; font-size: 16px; transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 26px 24px; font-size: 15px; line-height: 1.7; color: rgba(219,219,219,0.75); margin: 0; }

/* ---------- Contact final ---------- */
.contact-final { position: relative; padding: 130px 6vw; background: var(--bg-deep); text-align: center; overflow: hidden; }
.contact-blob { top: -180px; left: 50%; transform: translateX(-50%); width: 820px; height: 480px; background: radial-gradient(ellipse, rgba(71,40,211,0.4), transparent 70%); }
.contact-inner { position: relative; max-width: 640px; margin: 0 auto; }
.contact-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(30px,4.6vw,50px); line-height: 1.22; letter-spacing: 0.01em; color: var(--white); text-transform: uppercase; margin: 0 0 22px; }
.contact-lead { font-size: 16.5px; line-height: 1.7; color: rgba(219,219,219,0.75); margin: 0 0 36px; }
.contact-alt { font-size: 14.5px; color: rgba(219,219,219,0.55); margin: 26px 0 0; }
.contact-alt a { color: var(--violet-light); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 6vw; background: var(--bg); border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px;
}
.footer-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: 0.02em; }
.footer-meta { font-size: 13.5px; color: rgba(219,219,219,0.5); }

/* ---------- Blog ---------- */
.blog-hero { padding: 110px 6vw 72px; background: var(--bg-deep); }
.blog-hero h1 { font-family: 'Sora', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(30px,5vw,52px); line-height: 1.1; color: var(--white); margin: 0 0 16px; max-width: 720px; }
.blog-hero p { font-size: 16px; line-height: 1.6; color: rgba(219,219,219,0.75); max-width: 600px; margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 32px; }
.article-card {
  text-decoration: none; color: var(--ink); display: flex; flex-direction: column; background: var(--card);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.4); border-color: rgba(71,40,211,0.5); }
.article-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.article-card-media img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 26px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-card-date { font-size: 12.5px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--violet-light); }
.article-card-title { font-size: 19px; font-weight: 700; line-height: 1.35; margin: 0; color: var(--white); }
.article-card-excerpt { font-size: 14.5px; line-height: 1.6; color: rgba(219,219,219,0.7); margin: 0; flex: 1; }
.article-card-link { font-size: 13px; font-weight: 700; color: var(--violet-light); margin-top: 6px; }
.media-fallback { background: repeating-linear-gradient(135deg,#333,#333 10px,#2a2a2a 10px,#2a2a2a 20px); }

.article-card-sm .article-card-body { padding: 22px 20px; gap: 10px; }
.article-card-sm .article-card-title { font-size: 16.5px; }

/* ---------- Article page ---------- */
.article-cover { position: relative; height: min(52vw,420px); min-height: 260px; overflow: hidden; background: var(--bg-alt); }
.article-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.back-link { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--violet-light); text-decoration: none; margin-bottom: 20px; }
.article-title { font-family: 'Sora', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(28px,4.6vw,46px); line-height: 1.25; letter-spacing: 0.01em; color: var(--white); margin: 0 0 20px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13.5px; font-weight: 600; color: rgba(219,219,219,0.55); padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-body { font-size: 17.5px; line-height: 1.75; color: rgba(219,219,219,0.9); }
.article-body h2 { font-family: 'Sora', sans-serif; font-weight: 800; text-transform: uppercase; font-size: clamp(22px,2.8vw,28px); line-height: 1.25; margin: 40px 0 16px; color: var(--white); }
.article-body p { margin: 0 0 20px; }
.article-body blockquote {
  margin: 32px 0; padding: 24px 28px; background: var(--card); border-left: 4px solid var(--violet);
  border-radius: 0 14px 14px 0; font-family: 'Patrick Hand', cursive; font-size: 22px; line-height: 1.5; color: var(--violet-light);
}
.related-label { font-family: 'Patrick Hand', cursive; font-size: 17px; color: var(--violet-light); margin: 0 0 28px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
