/* ParentMoat — Protective Digital Guardianship
   Safety Blue + Soft Teal on warm off-white. Montserrat headlines / Inter body.
   Soft ambient depth, generous 8px card radius. Breakpoints: 1024 / 880 / 720 / 480
   ---------------------------------------------------------------------------- */

:root {
  --pmoat-primary: #005394;
  --pmoat-container: #2b6cb0;
  --pmoat-tint: #d3e4ff;
  --pmoat-accent: #006a66;
  --pmoat-accent-dim: #00504d;
  --pmoat-accent-soft: #e0f3f1;
  --pmoat-surface: #fbfaf7;
  --pmoat-surface-alt: #f3efe7;
  --pmoat-card: #ffffff;
  --pmoat-ink: #1f2937;
  --pmoat-ink-muted: #4b5563;
  --pmoat-outline: #6b7280;
  --pmoat-outline-variant: #dcd6c9;
  --pmoat-error: #ba1a1a;

  --pmoat-radius-sm: 4px;
  --pmoat-radius-lg: 8px;
  --pmoat-radius-xl: 12px;

  --pmoat-max-w: 1200px;
  --pmoat-gutter: 24px;
  --pmoat-section-py: 80px;

  --pmoat-header-h: 64px;

  --pmoat-shadow-ambient: 0 2px 8px rgba(31, 41, 55, 0.05);
  --pmoat-shadow-hover: 0 8px 24px rgba(31, 41, 55, 0.08);
  --pmoat-shadow-sticky: 0 1px 0 var(--pmoat-outline-variant);
  --pmoat-focus: 0 0 0 3px rgba(0, 83, 148, 0.32);

  --pmoat-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --pmoat-font-head: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset-ish base over Kadence parent ---------- */

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--pmoat-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pmoat-ink);
  background: var(--pmoat-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pmoat-font-head);
  color: var(--pmoat-ink);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a {
  color: var(--pmoat-primary);
  text-decoration: none;
  transition: color 120ms ease;
}
a:hover { color: var(--pmoat-container); }

img { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: none;
  box-shadow: var(--pmoat-focus);
  border-radius: var(--pmoat-radius-sm);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.pmoat-skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--pmoat-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--pmoat-radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top 120ms ease;
}
.pmoat-skip-link:focus { top: 12px; color: #fff; }

/* ---------- Layout primitives ---------- */

.pmoat-container {
  width: 100%;
  max-width: var(--pmoat-max-w);
  margin: 0 auto;
  padding-left: var(--pmoat-gutter);
  padding-right: var(--pmoat-gutter);
}

.pmoat-section { padding: var(--pmoat-section-py) 0; }

.pmoat-band--alt {
  background: var(--pmoat-surface-alt);
  border-block: 1px solid var(--pmoat-outline-variant);
}

/* ---------- Buttons ---------- */

.pmoat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--pmoat-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-radius: var(--pmoat-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.pmoat-btn--primary {
  background: var(--pmoat-primary);
  color: #fff;
  border-color: var(--pmoat-primary);
  box-shadow: var(--pmoat-shadow-ambient);
}
.pmoat-btn--primary:hover,
.pmoat-btn--primary:focus-visible {
  background: var(--pmoat-container);
  border-color: var(--pmoat-container);
  color: #fff;
  box-shadow: var(--pmoat-shadow-hover);
}

/* Soft Teal is the ParentMoat signature — the secondary CTA carries it. */
.pmoat-btn--accent {
  background: transparent;
  color: var(--pmoat-accent);
  border-color: var(--pmoat-accent);
}
.pmoat-btn--accent:hover,
.pmoat-btn--accent:focus-visible {
  background: var(--pmoat-accent-soft);
  color: var(--pmoat-accent-dim);
  border-color: var(--pmoat-accent);
}

.pmoat-btn--outline {
  background: transparent;
  color: var(--pmoat-ink);
  border-color: var(--pmoat-outline-variant);
}
.pmoat-btn--outline:hover,
.pmoat-btn--outline:focus-visible {
  border-color: var(--pmoat-primary);
  color: var(--pmoat-primary);
  background: var(--pmoat-card);
}

.pmoat-btn--sm { padding: 8px 16px; font-size: 14px; }

/* ---------- Header ---------- */

.pmoat-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.pmoat-header.is-scrolled {
  background: rgba(251, 250, 247, 0.97);
  border-bottom-color: var(--pmoat-outline-variant);
  box-shadow: var(--pmoat-shadow-sticky);
}

.pmoat-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--pmoat-header-h);
}

.pmoat-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pmoat-ink);
  font-family: var(--pmoat-font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.pmoat-brand:hover { color: var(--pmoat-primary); }
.pmoat-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: var(--pmoat-primary);
  color: #fff;
  border-radius: var(--pmoat-radius-lg);
}
.pmoat-brand__mark .pmoat-icon { width: 19px; height: 19px; }

.pmoat-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.pmoat-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pmoat-nav__list > li { position: relative; }
.pmoat-nav__list a {
  color: var(--pmoat-ink-muted);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
}
.pmoat-nav__list a:hover,
.pmoat-nav__list .current-menu-item > a,
.pmoat-nav__list .current-menu-parent > a { color: var(--pmoat-primary); }

.pmoat-nav__list .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.pmoat-nav__list .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--pmoat-card);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  box-shadow: var(--pmoat-shadow-hover);
}
.pmoat-nav__list li:hover > .sub-menu,
.pmoat-nav__list li:focus-within > .sub-menu { display: block; }
.pmoat-nav__list .sub-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--pmoat-radius-sm);
  font-size: 14px;
  color: var(--pmoat-ink);
}
.pmoat-nav__list .sub-menu a:hover { background: var(--pmoat-accent-soft); color: var(--pmoat-accent-dim); }

.pmoat-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pmoat-nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-sm);
  color: var(--pmoat-ink);
}
.pmoat-nav-toggle__bars,
.pmoat-nav-toggle__bars::before,
.pmoat-nav-toggle__bars::after {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  position: relative;
}
.pmoat-nav-toggle__bars::before,
.pmoat-nav-toggle__bars::after {
  content: '';
  position: absolute;
  left: 0;
}
.pmoat-nav-toggle__bars::before { top: -6px; }
.pmoat-nav-toggle__bars::after  { top: 6px; }

/* ---------- Hero ---------- */

.pmoat-hero {
  padding-top: 88px;
  padding-bottom: var(--pmoat-section-py);
}

.pmoat-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.pmoat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pmoat-accent-soft);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pmoat-accent-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pmoat-eyebrow .pmoat-icon { color: var(--pmoat-accent); width: 16px; height: 16px; }

.pmoat-hero__headline {
  font-family: var(--pmoat-font-head);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pmoat-ink);
  margin: 20px 0 16px;
}
.pmoat-hero__subhead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--pmoat-ink-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.pmoat-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.pmoat-hero__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #eef4fb 0%, var(--pmoat-accent-soft) 100%);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-xl);
  overflow: hidden;
  box-shadow: var(--pmoat-shadow-ambient);
}
.pmoat-hero__tile-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pmoat-primary);
  opacity: 0.22;
}
.pmoat-hero__tile-icon .pmoat-icon { width: 160px; height: 160px; }

/* Glass status card, echoing the Stitch hero overlay */
.pmoat-hero__status {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--pmoat-radius-lg);
  box-shadow: var(--pmoat-shadow-ambient);
}
.pmoat-hero__status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--pmoat-accent-soft);
  color: var(--pmoat-accent);
  border-radius: 9999px;
  flex-shrink: 0;
}
.pmoat-hero__status-title { font-weight: 700; font-size: 14px; color: var(--pmoat-ink); }
.pmoat-hero__status-sub { font-size: 12px; color: var(--pmoat-ink-muted); }

/* ---------- Section heads ---------- */

.pmoat-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.pmoat-section__title {
  font-family: var(--pmoat-font-head);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}
.pmoat-section__sub {
  color: var(--pmoat-ink-muted);
  font-size: 16px;
  margin: 0 0 32px;
}
.pmoat-section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--pmoat-accent);
  font-size: 15px;
}
.pmoat-section__link:hover { color: var(--pmoat-accent-dim); }
.pmoat-section__link .pmoat-icon { width: 16px; height: 16px; }

/* ---------- Philosophy / feature cards ---------- */

.pmoat-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pmoat-pillar {
  background: var(--pmoat-card);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-lg);
  padding: 32px;
  box-shadow: var(--pmoat-shadow-ambient);
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.pmoat-pillar:hover { box-shadow: var(--pmoat-shadow-hover); transform: translateY(-2px); }
.pmoat-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: var(--pmoat-radius-lg);
  background: var(--pmoat-accent-soft);
  color: var(--pmoat-accent);
  margin-bottom: 18px;
}
.pmoat-pillar__icon .pmoat-icon { width: 26px; height: 26px; }
.pmoat-pillar__title { font-size: 20px; font-weight: 600; margin: 0 0 8px; color: var(--pmoat-ink); }
.pmoat-pillar__copy { font-size: 15px; color: var(--pmoat-ink-muted); margin: 0; line-height: 1.6; }

/* ---------- Featured guides grid ---------- */

.pmoat-guides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pmoat-guide {
  display: flex;
  flex-direction: column;
  background: var(--pmoat-card);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-lg);
  overflow: hidden;
  color: inherit;
  box-shadow: var(--pmoat-shadow-ambient);
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.pmoat-guide:hover,
.pmoat-guide:focus-within {
  box-shadow: var(--pmoat-shadow-hover);
  transform: translateY(-2px);
  border-color: var(--pmoat-accent);
}
.pmoat-guide__media {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--pmoat-tint) 0%, var(--pmoat-accent-soft) 100%);
  color: var(--pmoat-primary);
}
.pmoat-guide__media img { width: 100%; height: 100%; object-fit: cover; }
.pmoat-guide__media .pmoat-icon { width: 48px; height: 48px; opacity: 0.7; }
.pmoat-guide__body { display: flex; flex-direction: column; flex-grow: 1; padding: 24px; }
.pmoat-guide__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
}
.pmoat-guide__title a { color: var(--pmoat-ink); }
.pmoat-guide__title a:hover { color: var(--pmoat-primary); }
.pmoat-guide__copy { font-size: 15px; color: var(--pmoat-ink-muted); margin: 0 0 16px; flex-grow: 1; }
.pmoat-guide__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pmoat-accent);
}
.pmoat-guide__readmore .pmoat-icon { width: 16px; height: 16px; }
.pmoat-guides__more { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Trust strip ---------- */

.pmoat-trust-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--pmoat-accent);
  margin-bottom: 8px;
}
.pmoat-trust-title {
  text-align: center;
  font-family: var(--pmoat-font-head);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 40px;
}
.pmoat-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pmoat-trust-card {
  background: var(--pmoat-card);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-lg);
  padding: 28px;
  text-align: left;
  box-shadow: var(--pmoat-shadow-ambient);
}
.pmoat-trust-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--pmoat-radius-lg);
  background: var(--pmoat-primary);
  color: #fff;
  margin-bottom: 16px;
}
.pmoat-trust-card__icon .pmoat-icon { width: 22px; height: 22px; }
.pmoat-trust-card__label { font-size: 17px; font-weight: 600; margin: 0 0 6px; color: var(--pmoat-ink); }
.pmoat-trust-card__copy { font-size: 15px; color: var(--pmoat-ink-muted); margin: 0; line-height: 1.55; }

/* ---------- Newsletter band (teal signature moment) ---------- */

.pmoat-newsletter {
  background: var(--pmoat-accent);
  color: #fff;
  border-radius: var(--pmoat-radius-xl);
  padding: 56px;
  text-align: center;
}
.pmoat-newsletter__title {
  font-family: var(--pmoat-font-head);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.pmoat-newsletter__sub { color: rgba(255, 255, 255, 0.85); margin: 0 0 28px; font-size: 16px; }
.pmoat-newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.pmoat-newsletter__input {
  flex: 1;
  appearance: none;
  height: 48px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--pmoat-radius-sm);
  font-family: var(--pmoat-font-body);
  font-size: 16px;
  color: var(--pmoat-ink);
}
.pmoat-newsletter__input::placeholder { color: var(--pmoat-ink-muted); }
.pmoat-newsletter__input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); }
.pmoat-newsletter__btn {
  background: var(--pmoat-primary);
  color: #fff;
  border: 1px solid var(--pmoat-primary);
  border-radius: var(--pmoat-radius-sm);
  padding: 0 24px;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}
.pmoat-newsletter__btn:hover { background: var(--pmoat-container); border-color: var(--pmoat-container); }
.pmoat-newsletter__note { color: rgba(255, 255, 255, 0.78); font-size: 13px; margin: 16px 0 0; }

/* ---------- Footer ---------- */

.pmoat-footer {
  background: var(--pmoat-card);
  border-top: 1px solid var(--pmoat-outline-variant);
  padding: 64px 0 0;
  color: var(--pmoat-ink);
}
.pmoat-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.pmoat-footer__brand .pmoat-brand { font-size: 20px; }
.pmoat-footer__byline {
  margin-top: 12px;
  color: var(--pmoat-ink-muted);
  font-size: 14px;
  max-width: 38ch;
}
.pmoat-footer__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pmoat-ink);
  margin: 0 0 16px;
}
.pmoat-footer__menu, .pmoat-footer__menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pmoat-footer__menu a { color: var(--pmoat-ink-muted); font-size: 15px; }
.pmoat-footer__menu a:hover { color: var(--pmoat-accent); }
.pmoat-footer__copy {
  border-top: 1px solid var(--pmoat-outline-variant);
  margin-top: 56px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--pmoat-ink-muted);
  flex-wrap: wrap;
}
.pmoat-footer__disclosure-band {
  background: var(--pmoat-surface-alt);
  border-top: 1px solid var(--pmoat-outline-variant);
  padding: 16px 0;
  font-size: 13px;
  color: var(--pmoat-ink-muted);
  text-align: center;
}

.pmoat-disclosure {
  background: var(--pmoat-accent-soft);
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-lg);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--pmoat-ink-muted);
  margin: 24px 0;
}
.pmoat-disclosure strong { color: var(--pmoat-accent-dim); }

/* ---------- Mobile drawer ---------- */

.pmoat-mobile-drawer {
  position: fixed;
  inset: var(--pmoat-header-h) 0 0 0;
  background: var(--pmoat-card);
  border-top: 1px solid var(--pmoat-outline-variant);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
  z-index: 80;
  overflow-y: auto;
  padding: 24px;
}
.pmoat-mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s;
}
.pmoat-mobile-drawer__list, .pmoat-mobile-drawer__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pmoat-mobile-drawer__list a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--pmoat-ink);
  border-bottom: 1px solid var(--pmoat-outline-variant);
}
.pmoat-mobile-drawer__list a:hover { color: var(--pmoat-primary); }
.pmoat-mobile-drawer__list ul a { font-size: 16px; padding-left: 16px; font-weight: 500; color: var(--pmoat-ink-muted); }
.pmoat-mobile-drawer__actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

body.pmoat-drawer-open { overflow: hidden; }

/* ---------- Content pages & posts ---------- */

.pmoat-container--narrow { max-width: 760px; }

.pmoat-entry__head { padding: 56px 0 8px; }
.pmoat-entry__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--pmoat-ink-muted);
}
.pmoat-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--pmoat-accent);
  color: #fff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pmoat-pill:hover { background: var(--pmoat-accent-dim); color: #fff; }
.pmoat-entry__title {
  font-family: var(--pmoat-font-head);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pmoat-ink);
  margin: 0;
}
.pmoat-entry__featured {
  margin: 28px 0 8px;
  border-radius: var(--pmoat-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pmoat-outline-variant);
}
.pmoat-entry__content {
  padding-top: 28px;
  padding-bottom: 64px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--pmoat-ink);
}
.pmoat-entry__content h2 { font-family: var(--pmoat-font-head); font-size: 28px; font-weight: 700; margin: 1.6em 0 0.5em; }
.pmoat-entry__content h3 { font-family: var(--pmoat-font-head); font-size: 22px; font-weight: 600; margin: 1.4em 0 0.5em; }
.pmoat-entry__content ul, .pmoat-entry__content ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.pmoat-entry__content li { margin: 0 0 0.4em; }
.pmoat-entry__content img { border-radius: var(--pmoat-radius-lg); margin: 1.2em 0; }
.pmoat-entry__content blockquote {
  margin: 1.5em 0;
  padding: 12px 20px;
  border-left: 3px solid var(--pmoat-accent);
  background: var(--pmoat-accent-soft);
  border-radius: var(--pmoat-radius-sm);
  color: var(--pmoat-ink-muted);
}
.pmoat-entry__back { margin-top: 40px; }
.pmoat-entry__back a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--pmoat-accent); }
.pmoat-entry__pagination, .pmoat-guides__more .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.pmoat-guides__more .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--pmoat-outline-variant);
  border-radius: var(--pmoat-radius-sm);
  color: var(--pmoat-ink);
  font-weight: 600;
}
.pmoat-guides__more .page-numbers.current { background: var(--pmoat-primary); color: #fff; border-color: var(--pmoat-primary); }
.pmoat-guides__more .page-numbers:hover:not(.current) { border-color: var(--pmoat-primary); color: var(--pmoat-primary); }

/* ---------- Breakpoints ---------- */

@media (max-width: 1024px) {
  :root { --pmoat-section-py: 64px; }
  .pmoat-hero__grid { gap: 40px; }
  .pmoat-hero__headline { font-size: 40px; }
  .pmoat-pillars { grid-template-columns: repeat(3, 1fr); }
  .pmoat-guides { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .pmoat-nav { display: none; }
  .pmoat-nav-toggle { display: inline-flex; }
  .pmoat-header__actions .pmoat-btn { display: none; }
  .pmoat-hero { padding-top: 56px; }
  .pmoat-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .pmoat-hero__headline { font-size: 36px; line-height: 1.15; }
  .pmoat-hero__subhead { font-size: 17px; }
  .pmoat-section__title { font-size: 28px; }
  .pmoat-entry__title { font-size: 30px; }
  .pmoat-entry__head { padding-top: 40px; }
  .pmoat-section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pmoat-pillars { grid-template-columns: 1fr; }
  .pmoat-guides { grid-template-columns: 1fr; }
  .pmoat-trust-grid { grid-template-columns: 1fr; }
  .pmoat-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pmoat-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --pmoat-section-py: 48px; --pmoat-gutter: 20px; }
  .pmoat-hero__headline { font-size: 30px; }
  .pmoat-newsletter { padding: 40px 24px; }
  .pmoat-newsletter__form { flex-direction: column; }
  .pmoat-newsletter__btn { padding: 14px 24px; }
  .pmoat-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .pmoat-footer__copy { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  :root { --pmoat-section-py: 40px; --pmoat-gutter: 16px; }
  .pmoat-hero__headline { font-size: 26px; }
  .pmoat-hero__cta .pmoat-btn { width: 100%; }
  .pmoat-guides__more .pmoat-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
