/* ==========================================================================
   Momentum Marketing LLC — Design System
   Palette: authoritative navy + electric blue→cyan "momentum" gradient
   Type: Space Grotesk (display) + Inter (text)
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #070B18;
  --navy-800: #0A0F1F;
  --navy-700: #111834;
  --navy-600: #1B2547;

  --blue: #2F6BFF;
  --blue-600: #1E54E0;
  --cyan: #22D3EE;
  --amber: #FFB020;
  --emerald: #10B981;

  /* Neutrals */
  --ink: #0B1220;
  --slate: #566181;
  --slate-light: #8892AB;
  --line: #E6EBF3;
  --bg: #FFFFFF;
  --bg-soft: #F5F8FD;
  --bg-tint: #EEF3FE;
  --white: #FFFFFF;

  /* Semantic */
  --grad: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
  --grad-soft: linear-gradient(120deg, rgba(47,107,255,.12), rgba(34,211,238,.12));

  /* Rhythm */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --container: 1180px;
  --shadow-sm: 0 1px 3px rgba(11,18,32,.06), 0 1px 2px rgba(11,18,32,.04);
  --shadow: 0 12px 30px -12px rgba(15,30,70,.18);
  --shadow-lg: 0 30px 60px -20px rgba(15,30,70,.28);
  --shadow-glow: 0 20px 50px -12px rgba(47,107,255,.45);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy-800); color: #E7ECF7; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue);
  background: var(--grad-soft);
  padding: 7px 14px; border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.section--dark .eyebrow { color: var(--cyan); background: rgba(34,211,238,.1); }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--slate); margin-top: 20px; }
.section--dark .lead { color: #AEB9D4; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--radius-full);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -12px rgba(47,107,255,.6); }
.btn--light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.section--dark .btn--ghost,
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.22); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,31,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { background: rgba(7,11,24,.92); border-color: rgba(255,255,255,.1); box-shadow: 0 12px 30px -14px rgba(0,0,0,.55); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; color: #fff; }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand span b { color: var(--cyan); }
.brand-logo { height: 34px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: .98rem; color: #B7C2DE;
  padding: 9px 15px; border-radius: var(--radius-full); transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav-links a.active { color: var(--cyan); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: "Space Grotesk",sans-serif; font-weight: 600; color: #fff; font-size: .95rem; }
.nav-phone svg { width: 17px; height: 17px; color: var(--cyan); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; color: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(34,211,238,.16), transparent 60%),
    radial-gradient(900px 500px at 5% 10%, rgba(47,107,255,.16), transparent 55%),
    var(--navy-800);
  color: #fff;
  padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 11vw, 130px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(700px 400px at 60% 30%, #000, transparent 75%);
  mask-image: radial-gradient(700px 400px at 60% 30%, #000, transparent 75%);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: .6; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(34,211,238,.14), transparent 60%),
    linear-gradient(180deg, rgba(7,11,24,.55) 0%, rgba(7,11,24,.72) 60%, rgba(7,11,24,.9) 100%);
}
.hero.has-video::after { opacity: .28; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--cyan); background: rgba(34,211,238,.12); }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #B7C2DE; margin: 24px 0 34px; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-trust .t-num { font-family: "Space Grotesk",sans-serif; font-size: 1.9rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-trust .t-num span { color: var(--cyan); }
.hero-trust .t-label { font-size: .86rem; color: #929DBC; margin-top: 6px; }
.hero-visual { position: relative; }

/* ---------- Stat band ---------- */
.statband { background: var(--grad); color: #fff; }
.statband .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; padding: 44px 0; }
.statband .s-num { font-family: "Space Grotesk",sans-serif; font-size: clamp(2rem,3vw,2.6rem); font-weight: 700; line-height: 1; }
.statband .s-label { font-size: .92rem; opacity: .92; margin-top: 8px; }
.statband .divider { display: none; }

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(47,107,255,.35); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); font-size: .98rem; }
.card .icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--blue); margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card--dark { background: var(--navy-700); border-color: rgba(255,255,255,.08); }
.card--dark h3 { color: #fff; }
.card--dark p { color: #AEB9D4; }
.card--dark .icon { background: rgba(34,211,238,.12); color: var(--cyan); }

.card--feature { position: relative; overflow: hidden; }
.card--feature::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card--feature:hover::before { transform: scaleX(1); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: .82rem; font-weight: 500; color: var(--blue); background: var(--bg-tint); padding: 5px 12px; border-radius: var(--radius-full); }

/* Checklist */
.check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.check svg { width: 22px; height: 22px; flex: none; color: var(--emerald); margin-top: 2px; }
.check p { color: var(--slate); }
.check b { color: var(--ink); font-weight: 600; }
.section--dark .check b { color: #fff; }
.section--dark .check p { color: #AEB9D4; }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); background: var(--bg-soft); aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.media-badge .mb-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--grad); color: #fff; display: grid; place-items: center; flex: none; }
.media-badge .mb-ico svg { width: 22px; height: 22px; }
.media-badge .mb-num { font-family: "Space Grotesk",sans-serif; font-weight: 700; font-size: 1.15rem; line-height: 1; }
.media-badge .mb-txt { font-size: .78rem; color: var(--slate); }
.media-badge.bl { left: -22px; bottom: 26px; }
.media-badge.tr { right: -18px; top: 26px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; }
.step .num {
  font-family: "Space Grotesk",sans-serif; font-weight: 700; font-size: 1.1rem;
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--navy-800); color: #fff; margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .95rem; }
.section--dark .step .num { background: var(--grad); }

/* Testimonial */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); box-shadow: var(--shadow-sm); position: relative;
}
.quote .mark { font-family: "Space Grotesk",sans-serif; font-size: 5rem; line-height: .6; color: var(--blue); opacity: .18; }
.quote blockquote { font-family: "Space Grotesk",sans-serif; font-size: clamp(1.25rem,2.4vw,1.7rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.4; margin: 6px 0 26px; }
.quote .author { display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: "Space Grotesk",sans-serif; font-weight: 700; }
.quote .a-name { font-weight: 600; }
.quote .a-role { font-size: .88rem; color: var(--slate); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--navy-800); border-radius: clamp(24px, 4vw, 40px); padding: clamp(44px, 6vw, 76px); text-align: center; color: #fff; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -20%, rgba(34,211,238,.22), transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #B7C2DE; margin-inline: auto; max-width: 560px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: "Space Grotesk",sans-serif; font-weight: 600; font-size: .9rem; }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .2s, box-shadow .2s; width: 100%; min-height: 52px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,107,255,.14);
}
.field .hint { font-size: .8rem; color: var(--slate-light); }
.form-note { font-size: .84rem; color: var(--slate); margin-top: 6px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; color: var(--emerald); flex: none; }
.form-success {
  display: none; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 12px;
  background: rgba(16,185,129,.1); color: #047857; font-weight: 500; margin-bottom: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; }

/* Contact info cards */
.contact-card { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, transform .2s; }
.contact-card:hover { border-color: rgba(47,107,255,.35); transform: translateY(-3px); }
.contact-card .c-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--grad-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-card .c-ico svg { width: 24px; height: 24px; }
.contact-card .c-label { font-size: .82rem; color: var(--slate); }
.contact-card .c-val { font-family: "Space Grotesk",sans-serif; font-weight: 600; font-size: 1.05rem; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 22px 0; font-family: "Space Grotesk",sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq-q svg { width: 22px; height: 22px; color: var(--blue); flex: none; transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { color: var(--slate); padding-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #AEB9D4; padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 18px; }
.footer-about { font-size: .95rem; color: #8892AB; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #AEB9D4; font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--cyan); flex: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); font-size: .86rem; color: #6B769A; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .statband .grid { grid-template-columns: repeat(2,1fr); gap: 30px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav.mobile-open + .mobile-menu { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .steps, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-badge.bl { left: 0; }
  .media-badge.tr { right: 0; }
  .hero-trust { gap: 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .statband .grid { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}

/* Mobile menu */
.mobile-menu { display: none; padding: 12px 24px 22px; border-bottom: 1px solid rgba(255,255,255,.08); background: var(--navy-800); }
.mobile-menu a { display: block; padding: 13px 4px; font-family: "Space Grotesk",sans-serif; font-weight: 500; color: #E7ECF7; border-bottom: 1px solid rgba(255,255,255,.06); }
.mobile-menu .btn { display: flex; margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Blog — cards, thumbnails, article/prose
   ========================================================================== */
.container.narrow { max-width: 780px; }

.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-thumb {
  aspect-ratio: 16 / 9; position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.post-thumb svg.wm { width: 84px; height: 84px; color: rgba(255,255,255,.9); opacity: .85; }
.post-thumb--a { background: linear-gradient(135deg, #2F6BFF, #22D3EE); }
.post-thumb--b { background: linear-gradient(135deg, #111834, #2F6BFF); }
.post-thumb--c { background: linear-gradient(135deg, #0A0F1F 20%, #10B981); }
.post-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5;
}
.post-cat {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  background: rgba(7,11,24,.62); color: #fff; font-family: "Space Grotesk", sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-full);
}
.post-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-body h3 { font-size: 1.22rem; line-height: 1.28; }
.post-body h3 a { transition: color .2s; }
.post-card:hover .post-body h3 a { color: var(--blue); }
.post-body .excerpt { color: var(--slate); font-size: .96rem; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .82rem; color: var(--slate-light); }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-meta svg { width: 14px; height: 14px; }
.post-link { display: inline-flex; align-items: center; gap: 7px; font-family: "Space Grotesk", sans-serif; font-weight: 600; color: var(--blue); margin-top: 2px; }
.post-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.post-card:hover .post-link svg { transform: translateX(4px); }

/* Article header + prose */
.article-head { padding: clamp(52px, 7vw, 84px) 0 clamp(34px, 5vw, 52px); }
.article-head .eyebrow { color: var(--cyan); background: rgba(34,211,238,.12); }
.article-head h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 20ch; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: #B7C2DE; font-size: .93rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; color: var(--cyan); }

.prose { font-size: 1.12rem; line-height: 1.8; color: #29344E; }
.prose > p:first-of-type { font-size: 1.2rem; color: #1B2540; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 46px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 34px 0 12px; }
.prose p { margin-bottom: 22px; }
.prose ul, .prose ol { margin: 0 0 22px 20px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--blue); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote {
  border-left: 4px solid var(--blue); padding: 6px 0 6px 24px; margin: 28px 0;
  font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; font-style: normal; color: var(--navy-700);
}
.prose hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.article-foot { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
