/* Planski marketing site — global styles */

:root {
  --purple: #7B61FF;
  --purple-deep: #5B43D4;
  --purple-soft: #EAE5FF;
  --sunset: #FF8A4C;
  --sunset-soft: #FFE5D2;
  --cream: #FAF7F2;
  --night: #1A1B3A;
  --green: #6BCB77;
  --green-soft: #E1F4DD;
  --amber: #FFB845;
  --coral: #FF6B6B;
  --coral-soft: #FFE3E0;
  --sky: #5DADE2;
  --sky-soft: #DDEFFA;
  --gray-50: #F5F4F0;
  --gray-100: #EAE8E2;
  --gray-200: #DDDAD2;
  --gray-400: #8E8B83;
  --gray-700: #3A3940;
  --grad: linear-gradient(135deg, #7B61FF 0%, #FF8A4C 100%);
  --grad-soft: linear-gradient(180deg, #FAF7F2 0%, #EAE8FF 100%);
  --shadow-sm: 0 2px 8px rgba(26,27,58,0.06);
  --shadow-md: 0 6px 24px rgba(26,27,58,0.08);
  --shadow-lg: 0 16px 48px rgba(26,27,58,0.12);
  --shadow-cta: 0 4px 14px rgba(123,97,255,0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--gray-700);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; }

/* ─── typography ─── */
.h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--night);
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--night);
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--night);
  margin: 0;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--gray-700);
  margin: 16px 0 0;
  text-wrap: pretty;
}
.body { font-size: 16px; line-height: 1.55; color: var(--gray-700); }
.body p { margin: 0 0 16px; text-wrap: pretty; }
.body p:last-child { margin-bottom: 0; }
.muted { color: var(--gray-400); }

/* ─── layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}
.section {
  padding: clamp(64px, 9vw, 112px) 0;
}
.section--white { background: #fff; }
.section--cream { background: var(--cream); }
.section--night { background: var(--night); color: var(--cream); }
.section--gradient { background: var(--grad); color: #fff; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .lead { margin-top: 12px; }

/* ─── header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(26,27,58,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 10px; }
.header-nav { display: none; gap: 8px; }
@media (min-width: 900px) {
  .header-nav { display: flex; }
}
.header-nav a {
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--night);
  transition: background 160ms;
}
.header-nav a:hover { background: rgba(26,27,58,0.05); }
.header-nav a.active { color: var(--purple); background: var(--purple-soft); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ─── buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 160ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 160ms, background 160ms;
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--purple-deep); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(123,97,255,0.4); }
.btn--primary:active { transform: scale(0.97); }
.btn--secondary {
  background: #fff;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn--secondary:hover { background: var(--purple-soft); }
.btn--dark {
  background: var(--night);
  color: #fff;
}
.btn--dark:hover { background: #0f1029; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--purple);
  padding: 10px 14px;
}
.btn--ghost:hover { background: var(--purple-soft); }
.btn--on-grad {
  background: #fff;
  color: var(--night);
}
.btn--on-grad:hover { background: var(--cream); transform: translateY(-1px); }
.btn--lg { padding: 18px 28px; font-size: 16px; border-radius: 16px; }
.btn--sm { padding: 10px 16px; font-size: 13px; border-radius: 12px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row--center { justify-content: center; }

/* app store badges (custom-styled) */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--night);
  color: #fff;
  border-radius: 14px;
  transition: background 160ms, transform 160ms;
}
.store-btn:hover { background: #0f1029; transform: translateY(-1px); }
.store-btn--disabled { background: var(--gray-400, #9b988f); cursor: default; opacity: 0.65; }
.store-btn--disabled:hover { background: var(--gray-400, #9b988f); transform: none; }
.store-btn .store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn .store-meta { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .store-meta small { font-size: 11px; opacity: 0.85; font-weight: 500; }
.store-btn .store-meta strong { font-size: 15px; font-weight: 700; }

/* ─── pills / chips / badges ─── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--purple-soft);
  color: var(--purple-deep);
}
.pill--sunset { background: var(--sunset-soft); color: #C45F27; }
.pill--green { background: var(--green-soft); color: #3F9B4D; }
.pill--cream { background: var(--cream); color: var(--gray-700); border: 1px solid var(--gray-100); }

/* ─── cards ─── */
.card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms, box-shadow 240ms;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card--cream { background: var(--cream); box-shadow: none; border: 1px solid var(--gray-100); }
.card--outline { background: transparent; border: 1.5px solid var(--gray-100); box-shadow: none; }

/* ─── grids ─── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ─── hero ─── */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle at center, rgba(123,97,255,0.18) 0%, rgba(255,138,76,0.12) 40%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 64px; }
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero blob anchor */
.hero-blob {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

/* phone mock */
.phone {
  width: 220px;
  background: var(--night);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(26,27,58,0.25), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.phone-screen {
  background: var(--cream);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  position: relative;
}

/* ─── trust strip ─── */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-list li svg { width: 18px; height: 18px; color: var(--purple); }

/* ─── feature cards ─── */
.feature {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 240ms, box-shadow 240ms;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-soft);
  color: var(--purple);
  flex-shrink: 0;
}
.feature-icon--sunset { background: var(--sunset-soft); color: #C45F27; }
.feature-icon--green { background: var(--green-soft); color: #3F9B4D; }
.feature-mock {
  margin-top: auto;
  background: var(--cream);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--gray-100);
}

/* ─── checkmark list ─── */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.check-list .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: #3F9B4D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.check-list .ck svg { width: 13px; height: 13px; }

/* ─── for-who cards ─── */
.for-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms, box-shadow 240ms;
}
.for-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.for-card--cream { background: var(--cream); border: 1px solid var(--gray-100); box-shadow: none; }
.for-card-bg {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  opacity: 0.18;
  pointer-events: none;
}

/* ─── comparison table ─── */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}
@media (min-width: 700px) {
  .compare { grid-template-columns: repeat(3, 1fr); }
}
.compare-col { padding: 28px 24px; border-bottom: 1px solid var(--gray-100); }
@media (min-width: 700px) {
  .compare-col { border-bottom: none; border-right: 1px solid var(--gray-100); }
  .compare-col:last-child { border-right: none; }
}
.compare-col--us { background: var(--purple-soft); color: var(--night); }
.compare-col .name { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 14px; }
.compare-col--us .name { color: var(--purple-deep); }
.compare-col h4 { margin: 0 0 18px; font-size: 22px; font-weight: 800; color: var(--night); letter-spacing: -0.01em; }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.compare-col li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--gray-700); }
.compare-col li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-400); margin-top: 8px; flex-shrink: 0; }
.compare-col--us li .dot { background: var(--purple); }

/* ─── FAQ accordion ─── */
.faq {
  display: grid;
  gap: 12px;
}
.faq details {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow 200ms;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--night);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 240ms;
}
.faq details[open] summary .chev { transform: rotate(180deg); background: var(--purple-soft); color: var(--purple); }
.faq summary .chev svg { width: 14px; height: 14px; }
.faq-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--gray-700); }

/* ─── final CTA on gradient ─── */
.final-cta {
  background: var(--grad);
  color: #fff;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.9); }
.final-cta-deco { position: absolute; pointer-events: none; opacity: 0.85; }

/* ─── footer ─── */
.site-footer {
  background: var(--night);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: rgba(245,244,240,0.55);
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a {
  color: rgba(245,244,240,0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 160ms;
}
.footer-col a:hover { color: #fff; }
.footer-tagline { font-size: 15px; line-height: 1.6; color: rgba(245,244,240,0.7); margin: 18px 0 24px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(245,244,240,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(245,244,240,0.55);
}

/* ─── step / numbered story ─── */
.steps { display: grid; gap: 64px; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .step { grid-template-columns: 1fr 1fr; gap: 64px; }
  .step--reverse .step-visual { order: -1; }
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-cta);
}
.step-meta { margin-top: 18px; }

/* ─── founder card ─── */
.founder {
  text-align: left;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.founder .name { font-size: 20px; font-weight: 800; color: var(--night); margin: 0 0 4px; letter-spacing: -0.01em; }
.founder .role { font-size: 13px; color: var(--purple); font-weight: 600; margin: 0 0 12px; }
.founder .bio { font-size: 14px; line-height: 1.55; color: var(--gray-700); margin: 0; }

/* ─── misc ─── */
.divider { height: 1px; background: var(--gray-100); margin: 32px 0; }
.kbd { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; font-size: 13px; background: var(--gray-50); padding: 2px 6px; border-radius: 6px; border: 1px solid var(--gray-100); }

/* on-night text helpers */
.section--night .h2, .section--night .h3 { color: var(--cream); }
.section--night .lead, .section--night .body { color: rgba(245,244,240,0.78); }
.section--night .pill--cream { background: rgba(255,255,255,0.08); color: var(--cream); border-color: rgba(255,255,255,0.15); }

/* page entry transition */
.page-enter { animation: pageIn 360ms cubic-bezier(0.2, 0, 0.1, 1); }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Buddy mascotte animaties ─── */
.buddy { transform-origin: 50% 60%; will-change: transform; }
.buddy--float {
  animation: buddyFloat 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
.buddy--wobble {
  animation: buddyWobble 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
@keyframes buddyFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  25%     { transform: translateY(-8px) rotate(-1.5deg); }
  50%     { transform: translateY(-12px) rotate(0deg); }
  75%     { transform: translateY(-6px) rotate(1.5deg); }
}
@keyframes buddyWobble {
  0%,100% { transform: rotate(-2deg) scale(1); }
  50%     { transform: rotate(2deg) scale(1.03); }
}

/* googly eyes — gentle blink every ~7s, subtle */
.buddy-eyes {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: buddyBlink 7s ease-in-out infinite;
}
@keyframes buddyBlink {
  0%, 94%, 100% { transform: scaleY(1); }
  96.5%         { transform: scaleY(0.06); }
  99%           { transform: scaleY(1); }
}

/* pupils drift slightly — like he's looking around */
.buddy-pupils {
  transform-origin: center;
  animation: pupilsDrift 7.2s ease-in-out infinite;
}
@keyframes pupilsDrift {
  0%, 100% { transform: translate(0, 0); }
  20%      { transform: translate(2px, -1px); }
  45%      { transform: translate(-3px, 1px); }
  70%      { transform: translate(1px, 2px); }
}

/* confetti — gentle independent drift */
.buddy-confetti .cf { transform-origin: center; }
.buddy-confetti .cf--1 { animation: confDrift 5s ease-in-out infinite; }
.buddy-confetti .cf--2 { animation: confDrift 6s ease-in-out infinite 0.4s; }
.buddy-confetti .cf--3 { animation: confDrift 5.5s ease-in-out infinite 0.8s; }
.buddy-confetti .cf--4 { animation: confDrift 6.5s ease-in-out infinite 1.2s; }
.buddy-confetti .cf--5 { animation: confDrift 5.8s ease-in-out infinite 1.6s; }
@keyframes confDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  50%      { transform: translate(0, -5px) rotate(20deg); opacity: 0.85; }
}

/* hover wobble for interactive Buddies */
.buddy-hover { display: inline-block; transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.buddy-hover:hover { transform: translateY(-3px) rotate(-3deg); }

/* phone frame subtle bob */
.phone-tilt { animation: phoneTilt 8s ease-in-out infinite; transform-origin: center; }
@keyframes phoneTilt {
  0%, 100% { transform: translateY(0) rotate(var(--tilt, 0deg)); }
  50%      { transform: translateY(-6px) rotate(calc(var(--tilt, 0deg) + 0.6deg)); }
}

/* hero gradient blob — slow drift */
.hero-blob { animation: blobDrift 16s ease-in-out infinite; }
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-20px, 15px) scale(1.06); }
  66%      { transform: translate(15px, -10px) scale(0.96); }
}

/* decoratieve confetti-shapes (final CTA, download hero) */
.final-cta-deco circle,
.final-cta-deco rect,
.deco-shapes circle,
.deco-shapes rect {
  transform-origin: center;
  transform-box: fill-box;
  animation: decoFloat 7s ease-in-out infinite;
}
.final-cta-deco circle:nth-child(1),
.deco-shapes circle:nth-child(1) { animation-delay: 0s;   animation-duration: 6.5s; }
.final-cta-deco rect:nth-child(2),
.deco-shapes rect:nth-child(2)   { animation-delay: 0.6s; animation-duration: 7.5s; }
.final-cta-deco circle:nth-child(3),
.deco-shapes circle:nth-child(3) { animation-delay: 1.2s; animation-duration: 6s;   }
.final-cta-deco rect:nth-child(4),
.deco-shapes rect:nth-child(4)   { animation-delay: 1.8s; animation-duration: 8s;   }
.final-cta-deco circle:nth-child(5),
.deco-shapes circle:nth-child(5) { animation-delay: 2.4s; animation-duration: 7s;   }
@keyframes decoFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(-4px, -6px) rotate(15deg); }
  50%      { transform: translate(2px, -10px) rotate(-10deg); }
  75%      { transform: translate(5px, -4px) rotate(8deg); }
}

/* sectie fade-in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.2, 0, 0.1, 1), transform 0.7s cubic-bezier(0.2, 0, 0.1, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* respecteer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .buddy--float, .buddy--wobble, .buddy-eyes, .buddy-pupils, .buddy-confetti .cf, .phone-tilt, .hero-blob,
  .final-cta-deco circle, .final-cta-deco rect, .deco-shapes circle, .deco-shapes rect {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .page-enter { animation: none; }
}

/* mobile nav */
.mobile-toggle { display: inline-flex; }
@media (min-width: 900px) {
  .mobile-toggle { display: none; }
}
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  background: var(--cream);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 60;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { display: flex; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--night);
}
.mobile-menu a.active { background: var(--purple-soft); color: var(--purple); }

/* ─── PHP refactor additions ─── */

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--night); color: #fff;
  padding: 10px 16px; border-radius: 10px;
  font-weight: 700; z-index: 100;
  transition: top 160ms;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--purple); }

.site-header.is-scrolled { box-shadow: 0 1px 0 rgba(26,27,58,0.08); }

.mobile-menu[hidden] { display: none; }

.block { display: block; }
.muted.block { display: block; }

.social-proof {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px; flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--cream); display: inline-block;
}
.avatars span + span { margin-left: -10px; }
.avatar-mono {
  width: 36px; height: 36px; border-radius: 50%;
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  width: 100%; max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-buddy {
  position: absolute; left: 5%; top: 8%;
  transform: rotate(-6deg);
}
.hero-phone {
  position: absolute; right: 0; bottom: 2%;
  transform: rotate(6deg);
}
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--night);
  z-index: 3;
}
.float-chip strong { color: var(--night); font-weight: 700; }
.float-chip .block { font-size: 11px; }
.float-chip--tr { top: 6%; right: 4%; }
.float-chip--bl { bottom: 6%; left: 0; }
.float-chip__icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-chip__icon--green { background: var(--green-soft); color: #3F9B4D; border-radius: 50%; }
.float-chip__icon--purple { background: var(--purple-soft); color: var(--purple); }

/* Phone frame for mock screens (sleeker than legacy .phone) */
.phone-frame {
  background: var(--night);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(26,27,58,0.25), 0 1px 0 rgba(255,255,255,0.1) inset;
  position: relative;
  margin: 0 auto;
}
.phone-frame__inner {
  background: var(--cream);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.phone-frame__img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.phone-frame__notch {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 18px;
  background: var(--night);
  border-radius: 10px;
  z-index: 2;
}

/* Mocks (lightweight, no React) */
.mock {
  padding: 30px 14px 16px;
  font-size: 12px;
  color: var(--night);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-hdr { font-weight: 800; font-size: 14px; }
.mock-soon { display: inline-block; margin-left: 6px; padding: 2px 7px; border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; background: var(--purple-soft); color: var(--purple-deep); vertical-align: middle; }
.mock-sub { color: var(--gray-400); font-size: 11px; margin-bottom: 4px; }
.mock-row {
  display: flex; align-items: center; gap: 8px;
  background: #fff; padding: 8px 10px; border-radius: 10px;
  border: 1px solid var(--gray-100);
  font-size: 12px;
}
.mock-ai {
  background: var(--purple-soft); color: var(--purple-deep);
  padding: 8px 10px; border-radius: 10px;
  font-weight: 600; font-size: 12px;
  display: flex; align-items: flex-start; gap: 6px;
  line-height: 1.3;
}
.mock-ai .tipski { flex-shrink: 0; margin-top: -1px; }
.mock-card {
  background: #fff; padding: 10px 12px; border-radius: 12px;
  border: 1px solid var(--gray-100); font-weight: 600;
}
.mock-chip {
  display: inline-block; background: var(--sunset-soft); color: #C45F27;
  padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700;
  align-self: flex-start;
}
.mock-btn {
  margin-top: auto;
  background: var(--purple); color: #fff;
  padding: 10px 14px; border-radius: 10px;
  font-weight: 700; font-size: 12px;
  border: none; cursor: pointer;
}
.mock .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mock .dot--g { background: #6BCB77; }
.mock .dot--a { background: #FFB845; }
.mock-bar {
  height: 8px; border-radius: 4px;
  background: var(--gray-100); overflow: hidden;
}
.mock-bar > div { height: 100%; background: var(--green); border-radius: 4px; }

/* Feature icon color variants used on /voor-jou */
.feature-icon--sky { background: var(--sky-soft); color: #2C7DB8; }
.feature-icon--purple { background: var(--purple-soft); color: var(--purple); }

/* Number badge for /voor-teams cards */
.number-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-soft); color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
}

/* Store buttons on gradient hero */
.store-btn--light { background: #fff; color: var(--night); }
.store-btn--light:hover { background: var(--cream); }

/* Download page hero with gradient bg */
.download-hero {
  background: var(--grad);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

/* QR placeholder */
.qr-box {
  width: 160px; height: 160px;
  background: #fff; border-radius: 20px; padding: 16px;
}
.qr-pattern {
  width: 100%; height: 100%;
  background-image: linear-gradient(0deg, #1A1B3A 50%, transparent 50%), linear-gradient(90deg, #1A1B3A 50%, transparent 50%);
  background-size: 8px 8px;
  border-radius: 4px;
  position: relative;
}
.qr-inner {
  position: absolute; inset: 30% 30%;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

/* Footer social icons */
.footer-social {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 160ms;
}
.footer-social:hover { background: rgba(255,255,255,0.16); }

/* steps list reset */
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { list-style: none; }

/* better tap targets + focus rings (a11y) */
a:focus-visible, button:focus-visible, summary:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
  border-radius: 12px;
}

/* ─── Pro page pricing ─── */
.pricing-card {
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 12px 0 4px;
}
.pricing-amount__currency { font-size: 26px; font-weight: 700; color: var(--night); }
.pricing-amount__value { font-size: 64px; font-weight: 800; line-height: 1; color: var(--night); letter-spacing: -0.03em; }
.pricing-amount__period { font-size: 15px; color: var(--gray-400); font-weight: 600; margin-left: 4px; }

.tier-pro {
  background: linear-gradient(180deg, #fff 0%, rgba(234,229,255,0.45) 100%);
  border: 2px solid var(--purple);
  position: relative;
}

/* ─── Tipski (AI-assistent) ─── */
.tipski { transform-origin: 50% 70%; will-change: transform; }
.tipski--float { animation: tipskiFloat 5.5s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
@keyframes tipskiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-6px) rotate(-1deg); }
  50%      { transform: translateY(-9px) rotate(0deg); }
  75%      { transform: translateY(-5px) rotate(1deg); }
}
.tipski-eyes {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: tipskiBlink 5.8s ease-in-out infinite;
}
.tipski-eyes.no-blink { animation: none; }
@keyframes tipskiBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.08); }
  97%           { transform: scaleY(1); }
}
.tipski-pupils {
  transform-box: fill-box; transform-origin: 50% 50%;
  animation: tipskiPupils 7.4s ease-in-out infinite;
}
@keyframes tipskiPupils {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(2px, -1px); }
  55%      { transform: translate(-2px, 1px); }
  80%      { transform: translate(1px, 2px); }
}
.tipski-antenna {
  transform-box: fill-box; transform-origin: 70% 95%;
  animation: tipskiAntenna 4.3s ease-in-out infinite;
}
@keyframes tipskiAntenna {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tipski--float, .tipski-eyes, .tipski-pupils, .tipski-antenna { animation: none !important; }
}

/* Tipski-sticker op de AI-feature mock */
.feature-mock--has-tipski { position: relative; }
.feature-tipski {
  position: absolute; top: -18px; right: 4px; z-index: 2;
  pointer-events: none;
}

/* Stap-num + Tipski rij op /hoe-werkt-het stap 4 */
.step-num-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.step-num-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--purple);
}

/* ─── responsive: mobile tweaks ─── */

/* tablet & smaller — fix hero overflow, scale step phones, tighten chrome */
@media (max-width: 700px) {
  .hero-visual { min-height: 320px; }
  .hero-stage { max-width: 340px; }
  .hero-buddy svg { width: 240px; height: 240px; }
  .hero-phone .phone-frame { width: 168px !important; height: 344px !important; }
  .float-chip { font-size: 11px; padding: 8px 10px; }
  .float-chip--tr { top: 4%; right: 2%; }
  .float-chip--bl { bottom: 4%; left: -2%; }

  /* step phone visual centers and scales down */
  .step-visual { display: flex; justify-content: center; }
  .step-visual .phone-frame { width: 240px !important; height: 492px !important; }
  .steps { gap: 56px; }

  /* feature card mock smaller */
  .feature-mock { padding: 14px; }
  .feature-mock .phone-frame { width: 160px !important; height: 328px !important; margin: 0 auto; }

  /* faq + trust tighter */
  .faq summary { font-size: 15px; padding: 18px 18px; gap: 12px; }
  .faq-body { padding: 0 18px 18px; font-size: 14.5px; }
  .trust-list { gap: 14px 22px; }
  .trust-list li { font-size: 13px; }

  /* misc */
  .compare-col--us { order: -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .header-cta .btn--primary { display: none; }

  /* mobile menu scrolls if taller than viewport */
  .mobile-menu { overflow-y: auto; -webkit-overflow-scrolling: touch; }

  /* download hero a touch tighter vertically */
  .download-hero { padding: clamp(56px, 10vw, 120px) 0; }
}

/* tighten mobile menu at desktop */
@media (min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* phones — further shrink hero stack + stack CTAs full-width */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card, .feature { padding: 22px; }
  .for-card { padding: 26px; }
  .final-cta { padding: 36px 22px; border-radius: 24px; }

  /* hero visual tighter */
  .hero-stage { max-width: 300px; }
  .hero-buddy svg { width: 200px; height: 200px; }
  .hero-phone .phone-frame { width: 140px !important; height: 287px !important; }
  .float-chip { padding: 7px 9px; font-size: 10.5px; border-radius: 12px; }
  .float-chip__icon { width: 22px; height: 22px; }

  /* step phone */
  .step-visual .phone-frame { width: 220px !important; height: 451px !important; }
  .steps { gap: 44px; }

  /* feature mock */
  .feature-mock .phone-frame { width: 148px !important; height: 303px !important; }
  .feature-tipski svg { width: 42px !important; height: 52px !important; }
  .feature-tipski { top: -12px; right: 0; }

  /* CTAs stack thumb-friendly */
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row .btn, .cta-row .store-btn { justify-content: center; }
  .cta-row--center { align-items: center; }
  .cta-row--center .btn, .cta-row--center .store-btn { width: 100%; max-width: 320px; }

  /* compare-col padding */
  .compare-col { padding: 22px 18px; }
  .compare-col h4 { font-size: 19px; margin-bottom: 14px; }

  /* spacing */
  .section-head { margin-bottom: 40px; }
  .hero { padding-top: 32px; padding-bottom: 40px; }

  /* download QR smaller */
  .qr-box { width: 132px; height: 132px; padding: 12px; }

  /* faq summary chevron a bit smaller */
  .faq summary .chev { width: 24px; height: 24px; }
}

/* very small phones (≤360px: e.g. iPhone SE, older Android) */
@media (max-width: 360px) {
  .hero-stage { max-width: 260px; }
  .hero-buddy svg { width: 168px; height: 168px; }
  .hero-phone .phone-frame { width: 124px !important; height: 254px !important; }
  .step-visual .phone-frame { width: 200px !important; height: 410px !important; }
  .h1 { font-size: 30px; }
  .feature-mock .phone-frame { width: 132px !important; height: 271px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — index, post-hero & prose
   Sluit aan op de design-tokens. Leesbreedte 760px, accent-varianten
   purple|sunset|green|sky. Easing = strakke ease-out (kwaliteitslat).
   ═══════════════════════════════════════════════════════════════ */
.container--narrow { max-width: 760px; }

/* ─── blog-index grid + cards ─── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__link { display: block; color: inherit; text-decoration: none; height: 100%; }

.blog-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card__thumb--purple { background: linear-gradient(135deg, #EAE5FF, #F7F4FF); }
.blog-card__thumb--sunset { background: linear-gradient(135deg, #FFE5D2, #FFF6EF); }
.blog-card__thumb--green  { background: linear-gradient(135deg, #E1F4DD, #F2FBF0); }
.blog-card__thumb--sky    { background: linear-gradient(135deg, #DDEFFA, #F1F8FD); }
.blog-card__thumb--coral  { background: linear-gradient(135deg, #FFE3E0, #FFF6F4); }
/* Cover-art: inline SVG (1200×630, slice) uit blog_cover() — vult de thumb,
   motief licht rechts van het midden. Hover = subtiele zoom, geen rotatie. */
.blog-card__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 320ms cubic-bezier(0.23, 1, 0.32, 1);
}
.blog-card:hover .blog-card__art { transform: scale(1.04); }

.blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-block;
}
.blog-card__thumb .blog-card__cat {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--night);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
}
.blog-card__cat--solid { color: #fff; }
.blog-card__cat--solid.blog-card__cat--purple { background: var(--purple); }
.blog-card__cat--solid.blog-card__cat--sunset { background: var(--sunset); }
.blog-card__cat--solid.blog-card__cat--green  { background: var(--green); }
.blog-card__cat--solid.blog-card__cat--sky    { background: var(--sky); }
.blog-card__cat--solid.blog-card__cat--coral  { background: var(--coral); }

.blog-card__body { padding: 20px; }
.blog-card__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--night);
  margin: 0;
  text-wrap: balance;
}
.blog-card__excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 10px 0 0;
  text-wrap: pretty;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
}
.blog-card__arrow { margin-left: auto; color: var(--purple); display: inline-flex; transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1); }
.blog-card:hover .blog-card__arrow { transform: translateX(4px); }

/* Feature-card: horizontaal op desktop, vol over de grid */
@media (min-width: 700px) {
  .blog-card--feature { grid-column: 1 / -1; }
  .blog-card--feature .blog-card__link { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .blog-card--feature .blog-card__thumb { aspect-ratio: auto; height: 100%; min-height: 280px; }
  .blog-card--feature .blog-card__body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
  .blog-card--feature .blog-card__title { font-size: clamp(24px, 2.4vw, 30px); }
  .blog-card--feature .blog-card__excerpt { font-size: 16px; }
}

/* ─── post-hero ─── */
.article-hero { padding: 52px 0 4px; background: linear-gradient(180deg, var(--cream), #fff); }
.article-hero--purple { background: linear-gradient(180deg, var(--purple-soft), #fff); }
.article-hero--sunset { background: linear-gradient(180deg, var(--sunset-soft), #fff); }
.article-hero--green  { background: linear-gradient(180deg, var(--green-soft), #fff); }
.article-hero--sky    { background: linear-gradient(180deg, var(--sky-soft), #fff); }
.article-hero--coral  { background: linear-gradient(180deg, var(--coral-soft), #fff); }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 160ms ease;
}
.article-back:hover { color: var(--purple); }
.article-title { margin-top: 18px; font-size: clamp(30px, 4.4vw, 46px); }
.article-lead { margin-top: 18px; }
.article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 0 30px;
  border-bottom: 1px solid var(--gray-100);
}
.article-byline__meta { font-size: 13.5px; font-weight: 600; color: var(--gray-400); }

/* ─── prose ─── */
.prose { font-size: 18px; line-height: 1.72; color: var(--gray-700); padding: 40px 0 8px; }
.prose > * + * { margin-top: 22px; }
.prose h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--night);
  margin-top: 52px;
  text-wrap: balance;
}
.prose h3 {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--night);
  margin-top: 34px;
}
.prose p { text-wrap: pretty; }
.prose strong { color: var(--night); font-weight: 700; }
.prose em { font-style: italic; color: var(--gray-700); }
.prose a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(123,97,255,0.35);
  transition: text-decoration-color 160ms ease;
}
.prose a:hover { text-decoration-color: var(--purple); }
/* Inline pijl-icoon (micon arrow-right) aan het eind van een link —
   vervangt tekst-glyphs; geen spatie ervóór zodat 'ie niet los afbreekt. */
.link-arrow { display: inline-flex; vertical-align: -2px; margin-left: 3px; }
.prose ul, .prose ol { padding-left: 26px; }
.prose li + li { margin-top: 10px; }
.prose li::marker { color: var(--purple); font-weight: 700; }
.prose-intro { font-size: 20px; line-height: 1.62; color: var(--night); font-weight: 500; }

/* tabel */
.prose-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}
.prose-table { width: 100%; border-collapse: collapse; font-size: 16px; background: #fff; min-width: 460px; }
.prose-table th {
  text-align: left;
  background: var(--cream);
  color: var(--night);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 18px;
}
.prose-table td { padding: 14px 18px; border-top: 1px solid var(--gray-100); }
.prose-table td:first-child { font-weight: 600; color: var(--night); }
.prose-table tbody tr:nth-child(even) td { background: #FCFBF9; }

/* callout */
.callout {
  border-radius: 16px;
  padding: 18px 20px;
  background: var(--sky-soft);
  border: 1px solid #CFE6F5;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
}
.callout strong { color: var(--night); }
.callout--tip { background: var(--green-soft); border-color: #CDE9C9; }

/* mid-article CTA */
.prose-cta {
  border-radius: 18px;
  padding: 22px 24px;
  background: var(--purple-soft);
}
.prose-cta p { margin: 0; font-size: 17px; line-height: 1.55; color: var(--night); }
.prose-cta a { white-space: nowrap; }

/* checklist */
.prose-checklist { list-style: none; padding-left: 0; }
.prose-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 16px;
  color: var(--night);
  font-weight: 500;
}
.prose-checklist li svg { color: var(--green); flex: none; margin-top: 2px; }

@media (prefers-reduced-motion: reduce) {
  .blog-card, .blog-card__art, .blog-card__arrow { transition: none; }
  .blog-card:hover { transform: none; }
  .blog-card:hover .blog-card__art { transform: none; }
}
