/* ═══════════════════════════════════════════════════════════════
   Die With Zero — shared site CSS
   Loaded by every page via <link rel="stylesheet" href=".../dwz.css">.
   Page-specific styles stay inline per page.
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Lato:wght@300;400;700;900&family=Open+Sans:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@500;700&display=swap');


:root {
  --dwz-navy: #0066AF;
  --dwz-navy-2: #0074C7;
  --dwz-navy-deep: #003560;
  --dwz-yellow: #FEF201;
  --dwz-yellow-hover: #ffe600;
  --dwz-cream: #FFF8E7;
  --dwz-white: #ffffff;
  --dwz-ink: #0d1b2a;
  --dwz-ink-soft: #2C3E50;
  --dwz-display: 'Josefin Sans', 'Lato', system-ui, sans-serif;
  --dwz-body: 'Lato', 'Open Sans', system-ui, sans-serif;
}

/* ───────── Skip link (a11y) ───────── */
.sr-only-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 99999;
}
.sr-only-focusable:focus,
.sr-only-focusable:active {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--dwz-yellow);
  color: var(--dwz-ink);
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  outline: 3px solid var(--dwz-navy);
}

/* ───────── Sticky nav ───────── */
.dwz-nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  font-family: var(--dwz-body);
}
.dwz-nav {
  background: var(--dwz-navy);
  color: var(--dwz-white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 6px 24px rgba(0, 53, 96, 0.18);
}
.dwz-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.dwz-nav-brand {
  text-decoration: none;
  color: var(--dwz-white);
  flex-shrink: 0;
}
.dwz-nav-brand-mark {
  font-family: var(--dwz-body);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dwz-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.dwz-nav-links a {
  display: inline-block;
  padding: 8px 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.dwz-nav-links a:hover {
  color: var(--dwz-white);
  background: rgba(255,255,255,0.08);
}
.dwz-nav-links a.is-active { color: var(--dwz-yellow); }
.dwz-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.dwz-nav-buy {
  display: inline-flex;
  align-items: center;
  background: var(--dwz-yellow);
  color: var(--dwz-ink);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(254, 242, 1, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.dwz-nav-buy:hover {
  transform: translateY(-1px);
  background: var(--dwz-yellow-hover);
  box-shadow: 0 6px 18px rgba(254, 242, 1, 0.42);
}

/* ───────── Hamburger + mobile nav ───────── */
.dwz-nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.dwz-hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dwz-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.dwz-nav-hamburger.is-open .dwz-hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dwz-nav-hamburger.is-open .dwz-hamburger-bar:nth-child(2) { opacity: 0; }
.dwz-nav-hamburger.is-open .dwz-hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.dwz-nav-mobile {
  display: none;
  background: #00538f;
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.dwz-nav-mobile.is-open { max-height: 600px; }
.dwz-nav-mobile-links { list-style: none; margin: 0; padding: 8px 0; }
.dwz-nav-mobile-links a {
  display: block;
  padding: 14px 24px;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dwz-nav-mobile-links a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--dwz-yellow);
}
.dwz-nav-mobile-foot {
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.dwz-nav-buy-mobile { flex: 1; justify-content: center; padding: 14px 18px; font-size: 14.5px; }

@media (max-width: 960px) { .dwz-nav-links { display: none; } }
@media (max-width: 768px) {
  .dwz-nav-inner { padding: 0 16px; height: 60px; gap: 12px; }
  .dwz-nav-brand-mark { font-size: 16px; letter-spacing: 0.12em; }
  .dwz-nav-buy { display: none; }
  .dwz-nav-hamburger { display: flex; }
  .dwz-nav-mobile { display: block; }
}

/* Body padding for sticky nav */
body.dwz-has-unified-nav { padding-top: 64px; }
@media (max-width: 768px) { body.dwz-has-unified-nav { padding-top: 60px; } }

/* ───────── Footer ───────── */
.dwz-footer {
  background: var(--dwz-navy-deep);
  color: rgba(255,255,255,0.78);
  font-family: var(--dwz-body);
  padding: 72px 24px 0;
}
.dwz-footer-inner { max-width: 1280px; margin: 0 auto; }
.dwz-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.dwz-footer-col-brand { padding-right: 16px; }
.dwz-footer-brand {
  display: inline-block;
  font-family: var(--dwz-body);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dwz-white);
  text-decoration: none;
  margin-bottom: 14px;
}
.dwz-footer-tagline {
  font-family: var(--dwz-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
  line-height: 1.4;
}
.dwz-footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}
.dwz-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.dwz-footer-social a:hover {
  background: var(--dwz-yellow);
  color: var(--dwz-ink);
  transform: translateY(-2px);
}
.dwz-footer-social svg { width: 18px; height: 18px; }
.dwz-footer-h {
  font-family: var(--dwz-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dwz-white);
  margin: 4px 0 18px;
}
.dwz-footer-list { list-style: none; margin: 0; padding: 0; }
.dwz-footer-list li { margin-bottom: 10px; }
.dwz-footer-list a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14.5px;
  line-height: 1.5;
  transition: color 0.15s ease;
}
.dwz-footer-list a:hover { color: var(--dwz-yellow); }
.dwz-footer-credit {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0 26px;
  text-align: center;
}
.dwz-footer-credit p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .dwz-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .dwz-footer { padding: 56px 20px 0; }
  .dwz-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
}


/* ═══════════════════════════════════════════════════════════════
   Utility classes
   ═══════════════════════════════════════════════════════════════ */
.dwz-link-inherit {
  color: inherit;
  text-decoration: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════════════
   Form primitives
   Shared input + button styles used by signup forms.
   ═══════════════════════════════════════════════════════════════ */
.dwz-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--dwz-line, #d8dee5);
  border-radius: 6px;
  background: #fff;
  color: var(--dwz-ink);
  transition: border-color .15s ease;
  box-sizing: border-box;
}
.dwz-input:focus {
  outline: none;
  border-color: var(--dwz-navy-2);
}
.dwz-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 560px) {
  .dwz-form-grid-2 { grid-template-columns: 1fr; }
}
.dwz-btn-yellow {
  background: var(--dwz-yellow);
  color: var(--dwz-navy);
  border: none;
  padding: 14px 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.dwz-btn-yellow:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(254,242,1,.45);
}


/* ═══════════════════════════════════════════════════════════════
   Mental Models gate (#mental-models)
   Tease + email gate band. No model descriptions on-page —
   the value sits behind the email signup.
   ═══════════════════════════════════════════════════════════════ */
.dwz-models {
  background: var(--dwz-navy);
  color: #fff;
  padding: 96px 0 104px;
}
.dwz-models__band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 44px 36px;
}
@media (min-width: 900px) {
  .dwz-models__band {
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    padding: 56px 52px;
  }
}
.dwz-models__band-copy .dwz-eyebrow {
  color: var(--dwz-yellow);
  opacity: .94;
}
.dwz-models__band-copy h2 {
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  font-weight: 600;
  margin: 12px 0 16px;
  line-height: 1.15;
  max-width: 560px;
}
.dwz-models__band-copy p {
  color: rgba(255,255,255,.82);
  font-size: 1.04rem;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}
.dwz-models__band-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dwz-models__band-form .dwz-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 13px 14px;
  border-radius: 6px;
  font-family: inherit;
  font-size: .96rem;
  width: 100%;
}
.dwz-models__band-form .dwz-input::placeholder { color: rgba(255,255,255,.45); }
.dwz-models__band-form .dwz-input:focus {
  outline: none;
  border-color: var(--dwz-yellow);
  background: rgba(255,255,255,.1);
}
.dwz-models__consent {
  display: flex;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  line-height: 1.45;
  align-items: flex-start;
  margin-top: 2px;
}
.dwz-models__consent input { margin-top: 4px; flex-shrink: 0; }
.dwz-models__band-form .dwz-btn-yellow {
  align-self: flex-start;
  margin-top: 6px;
}


/* ═══════════════════════════════════════════════════════════════
   Memory Dividends newsletter sidebar (#newsletter)
   1/3 column inside the philosophy grid. Lightweight email-only ask.
   ═══════════════════════════════════════════════════════════════ */
.dwz-newsletter-band {
  background: var(--dwz-cream);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid rgba(0,102,175,.10);
}
.dwz-newsletter-band .dwz-eyebrow {
  color: var(--dwz-navy);
  display: inline-block;
}
.dwz-newsletter-band h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dwz-ink);
  margin: 10px 0 10px;
  line-height: 1.2;
}
.dwz-newsletter-band p {
  color: var(--dwz-mute, #4a5b6e);
  font-size: .96rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.dwz-newsletter-band form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dwz-newsletter-band .dwz-btn-yellow {
  width: 100%;
}
.dwz-newsletter-band .dwz-privacy {
  font-size: .78rem;
  color: var(--dwz-mute, #4a5b6e);
  margin: 12px 0 0;
  opacity: .82;
}


/* ═══════════════════════════════════════════════════════════════
   Final CTA band (.dwz-final-cta)
   ═══════════════════════════════════════════════════════════════ */
.dwz-final-cta {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.07), transparent 60%),
    linear-gradient(135deg, #0066AF 0%, #0074C7 100%);
  color: var(--dwz-white);
  padding: 120px 24px;
  text-align: center;
  font-family: var(--dwz-body);
  overflow: hidden;
}
.dwz-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(254, 242, 1, 0.06), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(254, 242, 1, 0.04), transparent 40%);
  pointer-events: none;
}
.dwz-final-cta-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.dwz-final-cta-eyebrow {
  font-family: var(--dwz-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 24px;
}
.dwz-final-cta-heading {
  font-family: var(--dwz-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--dwz-white);
}
.dwz-final-cta-heading .cta-yellow {
  color: var(--dwz-yellow);
  display: inline-block;
}
.dwz-final-cta-sub {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin: 0 0 48px;
}
.dwz-final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.dwz-final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 280px;
  height: 64px;
  background: var(--dwz-yellow);
  color: #0d1b2a;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(254, 242, 1, 0.32), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.dwz-final-cta-btn:hover {
  transform: translateY(-2px);
  background: #ffe600;
  box-shadow: 0 16px 40px rgba(254, 242, 1, 0.45), 0 2px 6px rgba(0,0,0,0.18);
}
.dwz-cta-arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.18s ease;
}
.dwz-final-cta-btn:hover .dwz-cta-arrow {
  transform: translateX(4px);
}
.dwz-final-cta-secondary {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 6px;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.dwz-final-cta-secondary:hover {
  border-color: rgba(254, 242, 1, 0.6);
  color: var(--dwz-yellow);
  background: rgba(254, 242, 1, 0.04);
}
.dwz-final-cta-retailers {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}
.dwz-final-cta-retailers-quiet {
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
@media (max-width: 768px) {
  .dwz-final-cta { padding: 80px 20px; }
  .dwz-final-cta-actions { gap: 18px; }
  .dwz-final-cta-btn { width: 100%; max-width: 320px; height: 60px; font-size: 16px; }
  .dwz-final-cta-secondary { width: 100%; max-width: 320px; text-align: center; }
}


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM index.html — Homepage — body theme, .dwz-about (book intro), .dwz-video-bridge, .dwz-buy
   ═══════════════════════════════════════════════════════════════ */
    html, body { margin: 0; padding: 0; }
    body {
      font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #0066AF;
      color: #ffffff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }
    body { padding-top: 64px; /* sticky nav height */ }
    @media (max-width: 768px) { body { padding-top: 60px; } }
    img { max-width: 100%; height: auto; }
    a { color: inherit; }
    /* Bridge / between-fragment sections */
    .dwz-about {
      background: #FFF8E7;
      color: #0066AF;
      padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 60px);
    }
    .dwz-about-inner { max-width: 1100px; margin: 0 auto; }
    .dwz-about .eyebrow {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      letter-spacing: 0.18em;
      font-size: 13px;
      color: #0074C7;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .dwz-about h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.1;
      margin: 0 0 24px;
      color: #0066AF;
    }
    .dwz-about h2 .accent { color: #0074C7; }
    .dwz-about .lede {
      font-size: clamp(18px, 2.2vw, 22px);
      line-height: 1.55;
      max-width: 780px;
      margin-bottom: 48px;
      color: #2C3E50;
    }
    .dwz-about .three-col {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }
    .dwz-about .col {
      background: white;
      padding: 32px 28px;
      border-radius: 12px;
      box-shadow: 0 2px 16px rgba(0, 102, 175, 0.08);
      border-left: 4px solid #FEF201;
    }
    .dwz-about .col h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      font-size: 22px;
      margin: 0 0 12px;
      color: #0074C7;
    }
    .dwz-about .col p {
      margin: 0;
      font-size: 16px;
      line-height: 1.6;
      color: #2C3E50;
    }
    .dwz-about-charts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 60px;
    }
    .dwz-about-charts img {
      border-radius: 8px;
      background: white;
      padding: 12px;
      box-shadow: 0 2px 12px rgba(0, 102, 175, 0.08);
    }
    .dwz-about-charts figcaption {
      font-size: 13px;
      color: #5A6C7D;
      margin-top: 8px;
      font-style: italic;
    }
    /* Video bridge section */
    .dwz-video-bridge {
      background: #003560;
      color: white;
      padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 60px);
      text-align: center;
    }
    .dwz-video-bridge h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 4vw, 44px);
      margin: 0 0 16px;
    }
    .dwz-video-bridge p {
      font-size: 18px;
      max-width: 640px;
      margin: 0 auto 40px;
      opacity: 0.85;
    }
    .dwz-video-frame {
      max-width: 960px;
      margin: 0 auto;
      aspect-ratio: 16/9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 12px 48px rgba(0,0,0,0.4);
    }
    .dwz-video-frame iframe { width: 100%; height: 100%; border: 0; }
    /* Buy section */
    .dwz-buy {
      background: white;
      color: #0066AF;
      padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 60px);
    }
    .dwz-buy-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
    .dwz-buy h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(32px, 5vw, 52px);
      margin: 0 0 16px;
      color: #0066AF;
    }
    .dwz-buy .lede {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 48px;
      color: #2C3E50;
    }
    .dwz-buy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
      margin-top: 32px;
    }
    .dwz-buy-card {
      background: #FFF8E7;
      border: 1px solid rgba(0, 102, 175, 0.15);
      border-radius: 10px;
      padding: 24px 20px;
      text-align: left;
      color: inherit;
      display: flex;
      flex-direction: column;
    }
    .dwz-buy-card .flag { font-size: 36px; }
    .dwz-buy-card h4 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 18px;
      margin: 8px 0 12px;
      color: #0074C7;
    }
    .dwz-buy-retailers {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }
    .dwz-buy-retailers a {
      background: #ffffff;
      color: #0074C7;
      font-family: 'Open Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.01em;
      padding: 5px 10px;
      border: 1px solid rgba(0, 116, 199, 0.22);
      border-radius: 999px;
      text-decoration: none;
      transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
    }
    .dwz-buy-retailers a:hover,
    .dwz-buy-retailers a:focus-visible {
      background: #FEF201;
      color: #0066AF;
      border-color: #FEF201;
      transform: translateY(-1px);
    }
    .dwz-buy-jp-callout {
      background: #FEF201;
      border-left: 4px solid #B57F00;
      padding: 12px 16px;
      margin-top: 12px;
      font-size: 12px;
      color: #4A3B00;
      font-weight: 600;
      border-radius: 4px;
      line-height: 1.4;
    }


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM index.html — Skip-link utility (.sr-only-focusable)
   ═══════════════════════════════════════════════════════════════ */
.sr-only-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 99999;
}
.sr-only-focusable:focus,
.sr-only-focusable:active {
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: #FEF201;
  color: #0d1b2a;
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  outline: 3px solid #0066AF;
}


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM index.html — Homepage hero (.dwz-hero and all variants)
   ═══════════════════════════════════════════════════════════════ */
  

  /* ============ DWZ HERO — scoped ============ */
  .dwz-hero,
  .dwz-hero * {
    box-sizing: border-box;
  }

  .dwz-hero {
    --navy: #0066AF;
    --navy-accent: #0074C7;
    --yellow: #FEF201;
    --blue-bright: #068BEA;
    --white: #ffffff;

    position: relative;
    width: 100%;
    min-height: 100vh;
    background:
      radial-gradient(ellipse at 80% 10%, rgba(6, 139, 234, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse at 10% 90%, rgba(0, 116, 199, 0.45) 0%, transparent 55%),
      linear-gradient(180deg, #004f87 0%, var(--navy) 50%, #00538f 100%);
    color: var(--white);
    font-family: 'Lato', 'Open Sans', system-ui, sans-serif;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 5vw, 4rem) 0;
    display: flex;
    flex-direction: column;
  }

  /* subtle grid texture */
  .dwz-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    z-index: 0;
  }

  /* ----- Top bar / brand ----- */
  .dwz-hero__topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: clamp(1rem, 2.5vw, 1.75rem);
  }

  .dwz-hero__brand {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
  }
  .dwz-hero__brand span {
    color: var(--yellow);
  }

  .dwz-hero__nav-meta {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
  }

  /* ----- Main content grid ----- */
  .dwz-hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
    padding: clamp(1rem, 4vw, 2.5rem) 0 clamp(1.5rem, 3vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
  }

  @media (min-width: 1024px) {
    .dwz-hero__inner {
      grid-template-columns: 1.15fr 1fr;
      gap: clamp(2.5rem, 6vw, 5rem);
    }
  }

  
  /* FIX-4-HERO-BALANCE — align text col with cover col vertically */
  @media (min-width: 1024px) {
    .dwz-hero__inner {
      align-items: center !important;
      padding-top: clamp(0.5rem, 2vw, 1.25rem) !important;
    }
    .dwz-hero__copy {
      padding-top: 0 !important;
      align-self: center !important;
    }
    .dwz-hero__art {
      align-self: center !important;
    }
    .dwz-hero__cta-row {
      gap: 1rem 1.1rem !important;
      margin-bottom: clamp(1.1rem, 1.8vw, 1.45rem) !important;
    }
  }

  /* ----- Copy column ----- */
  .dwz-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }
  .dwz-hero__eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--yellow);
    display: inline-block;
  }

  .dwz-hero__h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 5.4vw, 4.4rem);
    line-height: 1.04;
    letter-spacing: -0.01em;
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    color: var(--white);
    text-wrap: balance;
  }
  .dwz-hero__h1 .accent {
    color: var(--yellow);
    display: inline;
  }
  .dwz-hero__h1 .quiet {
    color: rgba(255,255,255,0.78);
    font-weight: 400;
  }

  .dwz-hero__sub {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    max-width: 38em;
    margin: 0 0 clamp(1.5rem, 3vw, 2rem);
  }
  .dwz-hero__sub strong {
    color: var(--white);
    font-weight: 700;
  }

  /* ----- CTAs ----- */
  .dwz-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
    align-items: center;
    margin-bottom: clamp(0.9rem, 1.6vw, 1.2rem);
  }

  .dwz-hero__cta-primary {
    --btn-shadow: 0 12px 32px -8px rgba(254, 242, 1, 0.55), 0 4px 0 0 rgba(0,0,0,0.18);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--yellow);
    color: #0a1726;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    padding: 1.05rem 1.7rem;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--btn-shadow);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .dwz-hero__cta-primary:hover {
    transform: translateY(-2px);
    background: #fff84d;
    box-shadow: 0 18px 42px -8px rgba(254, 242, 1, 0.7), 0 6px 0 0 rgba(0,0,0,0.18);
  }
  .dwz-hero__cta-primary:active { transform: translateY(0); }
  .dwz-hero__cta-primary .arrow {
    display: inline-block;
    transition: transform .18s ease;
  }
  .dwz-hero__cta-primary:hover .arrow { transform: translateX(4px); }

  .geo-locale {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(10, 23, 38, 0.7);
    letter-spacing: 0.04em;
    text-transform: none;
  }
  .geo-locale .flag { font-size: 1rem; }

  .dwz-hero__cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255,255,255,0.72);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    font-size: 0.86rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
  }
  .dwz-hero__cta-ghost:hover {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.92);
    background: rgba(255,255,255,0.05);
  }

  /* Stake line directly above primary CTA — Fix 2 */
  .dwz-hero__stake {
    font-family: 'Lato', 'Open Sans', system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #FEF201;
    background: rgba(0,0,0,0.18);
    border-left: 3px solid #FEF201;
    padding: 10px 14px;
    margin: 0 0 14px;
    max-width: 540px;
    border-radius: 0 4px 4px 0;
  }
  .dwz-hero__stake strong { color: #fff; font-weight: 800; }

  .dwz-hero__geo-note {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.74rem;
    color: var(--yellow);
    margin-top: 0.4rem;
    font-style: italic;
    letter-spacing: 0.02em;
    min-height: 1em;
  }

  .dwz-hero__movement {
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: rgba(255,255,255,0.7);
    margin: clamp(0.75rem, 1.2vw, 1rem) 0 0;
    max-width: 40em;
    line-height: 1.5;
  }

  /* ----- Imagery column (book global stack) ----- */
  .dwz-hero__art {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    margin: 0 auto;
  }

  .dwz-hero__art-glow {
    position: absolute;
    inset: 8% 8% 8% 8%;
    background: radial-gradient(circle at 50% 50%, rgba(254, 242, 1, 0.18) 0%, rgba(6, 139, 234, 0.08) 45%, transparent 70%);
    filter: blur(8px);
    z-index: 0;
  }

  .dwz-hero__book {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
  }

  /* primary US mock — front-and-center */
  .dwz-hero__book--primary {
    width: 78%;
    height: auto;
    top: 8%;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
  }
  .dwz-hero__art:hover .dwz-hero__book--primary {
    transform: translateX(-50%) rotate(-2deg) translateY(-6px);
  }

  /* JP cover — back-left, tilted */
  .dwz-hero__book--jp {
    width: 38%;
    top: 18%;
    left: 4%;
    transform: rotate(-12deg);
    z-index: 1;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.5));
    border-radius: 2px;
  }

  /* TW cover — back-right, tilted */
  .dwz-hero__book--tw {
    width: 36%;
    top: 12%;
    right: 2%;
    transform: rotate(9deg);
    z-index: 2;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,0.5));
    border-radius: 2px;
  }

  .dwz-hero__art-caption {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
  }
  .dwz-hero__art-caption strong {
    color: var(--yellow);
    font-weight: 600;
  }

  /* ----- Press strip (FIX-PRESS-ABOVE-BOOKS — moved above hero inner on all viewports) ----- */
  .dwz-hero__press {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(0.85rem, 1.8vw, 1.25rem) 0 clamp(0.85rem, 1.8vw, 1.25rem);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.6rem, 1.2vw, 0.9rem);
  }

  .dwz-hero__press-label {
    font-family: 'Josefin Sans', 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  .dwz-hero__press-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.85rem, 2vw, 1.75rem) clamp(1rem, 2.4vw, 2.25rem);
    width: 100%;
  }

  .dwz-hero__press-row img {
    height: clamp(22px, 2.4vw, 30px);
    width: auto;
    opacity: 0.85;
    filter: brightness(0) invert(1);
    transition: opacity .2s ease, transform .2s ease;
    flex-shrink: 0;
  }
  .dwz-hero__press-row img:hover {
    opacity: 1;
    transform: translateY(-1px);
  }

  /* Mobile press-strip: tighter rows, no clipping */
  @media (max-width: 767px) {
    .dwz-hero__press {
      padding: 0.7rem 0.75rem;
      gap: 0.55rem;
    }
    .dwz-hero__press-label {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
    }
    .dwz-hero__press-row {
      gap: 0.7rem 1rem;
    }
    .dwz-hero__press-row img {
      height: 22px;
    }
  }
  @media (max-width: 400px) {
    .dwz-hero__press {
      padding: 0.65rem 0.5rem;
    }
    .dwz-hero__press-row {
      gap: 0.55rem 0.75rem;
    }
    .dwz-hero__press-row img {
      height: 20px;
    }
  }

  /* ----- Hero freshness card (WSJ Money 2026) ----- */
  .dwz-hero__fresh {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 720px;
    margin: 1.5rem auto 0;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(254, 242, 1, 0.45);
    border-left: 4px solid #FEF201;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
    position: relative;
  }
  .dwz-hero__fresh:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #FEF201;
    transform: translateY(-1px);
  }
  .dwz-hero__fresh-pulse {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #FEF201;
    box-shadow: 0 0 0 0 rgba(254, 242, 1, 0.7);
    animation: dwzFreshPulse 2s infinite;
    flex-shrink: 0;
  }
  @keyframes dwzFreshPulse {
    0%   { box-shadow: 0 0 0 0 rgba(254, 242, 1, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(254, 242, 1, 0); }
    100% { box-shadow: 0 0 0 0 rgba(254, 242, 1, 0); }
  }
  .dwz-hero__fresh-logo img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }
  .dwz-hero__fresh-body {
    flex: 1;
    min-width: 0;
  }
  .dwz-hero__fresh-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FEF201;
    margin: 0 0 0.15rem;
  }
  .dwz-hero__fresh-headline {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.3;
  }
  .dwz-hero__fresh-cta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FEF201;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.02em;
  }
  @media (max-width: 640px) {
    .dwz-hero__fresh {
      flex-wrap: wrap;
      gap: 0.6rem 0.8rem;
      padding: 0.75rem 0.9rem;
      margin: 1.25rem 1rem 0;
    }
    .dwz-hero__fresh-logo img { height: 18px; }
    .dwz-hero__fresh-headline { font-size: 0.85rem; }
    .dwz-hero__fresh-cta {
      flex-basis: 100%;
      text-align: right;
      font-size: 0.75rem;
    }
  }

  /* ----- Mobile tweaks ----- */
  @media (max-width: 767px) {
    .dwz-hero {
      min-height: auto;
      padding-top: 1rem;
    }
    .dwz-hero__nav-meta { display: none; }
    .dwz-hero__art {
      max-width: 360px;
      aspect-ratio: 4 / 3;
    }
    .dwz-hero__book--primary { width: 64%; }
    .dwz-hero__book--jp { width: 32%; top: 22%; }
    .dwz-hero__book--tw { width: 30%; top: 16%; }
    .dwz-hero__cta-row { gap: 0.75rem; }
    .dwz-hero__cta-primary { width: 100%; justify-content: center; }
    .dwz-hero__cta-ghost { width: 100%; justify-content: center; }
    .dwz-hero__art-caption { bottom: -1.25rem; font-size: 0.65rem; }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .dwz-hero__inner { padding-top: 2rem; }
    .dwz-hero__art { max-width: 480px; }
  }

  /* a11y focus */
  .dwz-hero a:focus-visible,
  .dwz-hero button:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    .dwz-hero *, .dwz-hero *::before, .dwz-hero *::after {
      transition: none !important;
      animation: none !important;
    }
  }


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM index.html — Homepage international section (.dwz-international, country grid, video block)
   ═══════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   DWZ REBUILD — SECTION 2 + 3: INTERNATIONAL · PRESS · AUTHOR
   Scoped under .dwz-international and .dwz-press
   ════════════════════════════════════════════════════════════ */

/* ───────────── SECTION: INTERNATIONAL ───────────── */
.dwz-international {
  background: #FFF8E7;
  color: #0a2540;
  padding: 80px 24px 96px;
  font-family: 'Lato', 'Open Sans', system-ui, sans-serif;
  line-height: 1.6;
}
.dwz-international .container {
  max-width: 1180px;
  margin: 0 auto;
}
.dwz-international .eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0074C7;
  margin: 0 0 18px;
}
.dwz-international h2 {
  font-family: 'Josefin Sans', 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  color: #0066AF;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.dwz-international .subhead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: #294356;
  max-width: 820px;
  margin: 0 0 56px;
}
.dwz-international .badge-25 {
  display: inline-block;
  background: #0066AF;
  color: #FEF201;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 36px;
  text-transform: uppercase;
}

/* Video section */
.intl-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
@media (min-width: 900px) {
  .intl-videos { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
.video-block .video-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #0066AF;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-block .video-label .flag { font-size: 1.4rem; }
.video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a2540;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px -12px rgba(10,37,64,0.35);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-size: 0.92rem;
  color: #4a5b6c;
  margin-top: 12px;
  font-style: italic;
  line-height: 1.45;
}
.video-secondary { margin-top: 28px; }
.video-secondary .video-frame { box-shadow: 0 8px 22px -8px rgba(10,37,64,0.25); }
.tw-views-stat {
  display: inline-block;
  background: #FEF201;
  color: #0066AF;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 8px;
}

/* Country grid */
.intl-buy-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.5rem;
  color: #0066AF;
  margin: 0 0 8px;
}
.intl-buy-sub {
  color: #4a5b6c;
  margin: 0 0 32px;
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.country-card {
  background: #ffffff;
  border: 1px solid rgba(0,102,175,0.12);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 16px;
  position: relative;
}
.country-card .cover {
  flex-shrink: 0;
  width: 64px;
  height: 96px;
  background: #f0eada;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 10px -3px rgba(0,0,0,0.2);
}
.country-card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.country-card .meta { flex: 1; min-width: 0; }
.country-card .flag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.country-card .flag { font-size: 1.4rem; }
.country-card .country-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0066AF;
}
.country-card .retailers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.country-card .retailer-chip {
  background: #f0f6fb;
  color: #0066AF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 150ms ease;
}
.country-card .retailer-chip:hover {
  background: #FEF201;
  color: #0066AF;
}
.country-card.tbc {
  background: #faf6ec;
  border-style: dashed;
}
.country-card.tbc .retailer-chip {
  background: transparent;
  border: 1px dashed #b9a877;
  color: #6e5d2c;
}

/* Demo callouts */
.demo-callout {
  margin-top: 12px;
  padding: 8px 12px;
  background: #fffbe1;
  border-left: 4px solid #FEF201;
  border-radius: 0 4px 4px 0;
  font-size: 0.78rem;
  color: #5a4900;
  line-height: 1.4;
}
.demo-callout strong { color: #b46300; }
.country-card.has-callout {
  background: linear-gradient(180deg, #ffffff 0%, #fffbe9 100%);
  border-color: #FEF201;
  box-shadow: 0 0 0 2px rgba(254,242,1,0.4);
}

/* ───────────── SECTION: PRESS + AUTHOR ───────────── */
.dwz-press {
  background: #0066AF;
  color: #ffffff;
  padding: 88px 24px 96px;
  font-family: 'Lato', 'Open Sans', system-ui, sans-serif;
  line-height: 1.6;
}
.dwz-press .container {
  max-width: 1180px;
  margin: 0 auto;
}
.dwz-press .eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FEF201;
  margin: 0 0 18px;
}
.dwz-press h2 {
  font-family: 'Josefin Sans', 'Lato', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}
.dwz-press .subhead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 820px;
  margin: 0 0 56px;
}

/* Press tile grid */
.press-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (min-width: 760px) {
  .press-tiles { grid-template-columns: repeat(3, 1fr); }
}
.press-tile {
  background: #ffffff;
  color: #0a2540;
  border-radius: 10px;
  padding: 28px 24px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
  border-top: 4px solid #FEF201;
}
.press-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -16px rgba(0,0,0,0.45);
}
.press-tile .logo-wrap {
  height: 38px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.press-tile .logo-wrap img {
  height: 100%;
  width: auto;
}
.press-tile .date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0074C7;
  margin: 0 0 8px;
}
.press-tile .headline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.25;
  color: #0a2540;
  margin: 0 0 16px;
}
.press-tile .pull-quote {
  font-style: italic;
  font-size: 0.95rem;
  color: #4a5b6c;
  border-left: 3px solid #FEF201;
  padding: 4px 0 4px 14px;
  margin: auto 0 16px;
  line-height: 1.5;
}
.press-tile .pull-quote.placeholder {
  color: #88796a;
  background: rgba(254,242,1,0.08);
  padding: 10px 0 10px 14px;
  font-size: 0.86rem;
}
.press-tile .read-more {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0066AF;
  margin-top: auto;
}
.press-tile .read-more::after {
  content: ' →';
  transition: transform 150ms ease;
  display: inline-block;
}
.press-tile:hover .read-more::after { transform: translateX(4px); }
.press-tile[data-verify="pending"]::before {
  content: 'VERIFY';
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FEF201;
  color: #0066AF;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 8px;
  border-radius: 3px;
}

/* Logo strip */
.press-logo-strip {
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.press-logo-strip img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity 180ms ease;
}
.press-logo-strip img:hover { opacity: 1; }
.press-logo-strip .logo-text {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #ffffff;
  opacity: 0.78;
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 760px) {
  .author-grid {
    grid-template-columns: 240px 1fr;
    gap: 56px;
  }
}
.author-photo-wrap { text-align: center; }
.author-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FEF201;
  background: #0a2540;
  margin: 0 auto;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.5);
}
.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.author-photo-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.4;
}
.author-bio {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.94);
}
.author-bio p { margin: 0 0 16px; }
.author-bio strong { color: #FEF201; font-weight: 700; }
.author-bio em { font-style: italic; }
.author-thesis {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  border-left: 3px solid #FEF201;
  padding: 4px 0 4px 16px;
  margin-top: 22px;
}

/* mobile tweaks */
@media (max-width: 600px) {
  .dwz-international, .dwz-press { padding-left: 18px; padding-right: 18px; }
  .country-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM index.html — Homepage stories + press-quotes + philosophy + press (and shared resets)
   ═══════════════════════════════════════════════════════════════ */
  /* ---- shared scope tokens ---- */
  .dwz-stories,
  .dwz-philosophy {
    --dwz-navy: #0066AF;
    --dwz-accent: #0074C7;
    --dwz-yellow: #FEF201;
    --dwz-cream: #FBF8F1;
    --dwz-ink: #14253A;
    --dwz-mute: #5A6A7E;
    --dwz-line: #E3E8EE;
    --dwz-reddit: #FF4500;
    font-family: 'Lato', 'Open Sans', system-ui, -apple-system, sans-serif;
    color: var(--dwz-ink);
    line-height: 1.55;
    box-sizing: border-box;
  }
  .dwz-stories *,
  .dwz-philosophy * { box-sizing: border-box; }

  .dwz-stories h2,
  .dwz-philosophy h2 {
    font-family: 'Josefin Sans', 'Lato', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 .4em;
  }

  .dwz-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dwz-accent);
    margin-bottom: .9rem;
    display: block;
  }
  .dwz-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .dwz-verify {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.6);
    border: 1px dashed rgba(255,255,255,.25);
    vertical-align: middle;
    margin-left: 8px;
  }
  .dwz-verify--light {
    background: rgba(0,0,0,.04);
    color: var(--dwz-mute);
    border-color: var(--dwz-line);
  }
  .dwz-verify--ok {
    background: rgba(0, 180, 100, .12);
    color: #0a8a4a;
    border: 1px solid rgba(0,180,100,.3);
  }

  /* =========================================================
     SECTION 1: READER STORIES (navy — visual break between
     cream Author above and white Philosophy below)
     ========================================================= */
  .dwz-stories {
    background: var(--dwz-navy);
    color: #fff;
    padding: 96px 0 104px;
  }
  .dwz-stories .dwz-eyebrow {
    color: var(--dwz-yellow);
  }
  .dwz-stories__head {
    max-width: 760px;
    margin-bottom: 56px;
  }
  .dwz-stories h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
    color: #fff;
  }
  .dwz-stories__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 640px;
    margin: 0;
  }

  .dwz-stories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
  @media (min-width: 768px) {
    .dwz-stories__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  }

  .dwz-review {
    background: #fff;
    border-radius: 10px;
    padding: 28px 26px 22px;
    box-shadow: 0 1px 0 rgba(20,37,58,.04), 0 8px 28px rgba(20,37,58,.06);
    display: flex;
    flex-direction: column;
  }
  .dwz-review__stars {
    color: var(--dwz-yellow);
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-shadow: 0 0 1px rgba(0,0,0,.15);
  }
  .dwz-review__body {
    margin-bottom: 14px;
  }
  .dwz-review__headline {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--dwz-ink);
    margin: 0 0 10px;
    line-height: 1.3;
  }
  .dwz-review__text {
    font-size: .96rem;
    color: #2a3a51;
    margin: 0;
  }
  .dwz-review__attr {
    font-size: .82rem;
    color: var(--dwz-mute);
    margin: 0 0 14px;
  }
  .dwz-review__attr strong { color: var(--dwz-ink); font-weight: 600; }
  .dwz-review__demo {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--dwz-line);
    font-size: .72rem;
    font-style: italic;
    color: #8a96a8;
    line-height: 1.45;
  }

  /* Reddit-style social tile */
  .dwz-social-tile {
    background: #fff;
    border-radius: 10px;
    padding: 26px 28px 24px;
    border-left: 4px solid var(--dwz-reddit);
    box-shadow: 0 1px 0 rgba(20,37,58,.04), 0 8px 28px rgba(20,37,58,.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .dwz-social-tile__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--dwz-mute);
  }
  .dwz-social-tile__avatar {
    width: 28px; height: 28px;
    background: var(--dwz-reddit);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
  }
  .dwz-social-tile__quote {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--dwz-ink);
    margin: 0;
  }
  .dwz-social-tile__meta {
    font-size: .8rem;
    color: var(--dwz-mute);
  }

  /* =========================================================
     SECTION 3: LIVING THE PHILOSOPHY
     ========================================================= */
  .dwz-philosophy {
    background: #fff;
    padding: 96px 0 104px;
  }
  .dwz-philosophy h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.6rem);
    margin-bottom: 48px;
    max-width: 760px;
  }
  .dwz-philosophy__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  @media (min-width: 900px) {
    .dwz-philosophy__grid {
      grid-template-columns: 2fr 1fr;
      gap: 56px;
      align-items: start;
    }
  }

  .dwz-content-card {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--dwz-line);
    text-decoration: none;
    color: inherit;
    transition: background .15s ease, padding .15s ease;
  }
  .dwz-content-card:hover {
    background: var(--dwz-cream);
    padding-left: 12px;
    padding-right: 12px;
  }
  .dwz-content-card:last-child { border-bottom: none; }
  .dwz-content-card__thumb {
    flex: 0 0 84px;
    height: 84px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--dwz-accent), var(--dwz-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dwz-yellow);
    font-size: 1.6rem;
  }
  .dwz-content-card__body { flex: 1; min-width: 0; }
  .dwz-content-card__title {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--dwz-ink);
    line-height: 1.3;
  }
  .dwz-content-card__meta {
    font-size: .82rem;
    color: var(--dwz-mute);
  }

  /* Form primitives (.dwz-input, .dwz-btn-yellow, .dwz-form-grid-2)
     and section styles (.dwz-models*, .dwz-newsletter-band) now live
     in assets/css/dwz.css. */


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM time-buckets/index.html — Time Buckets page
   Scoped to body.dwz-page-tb
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-tb {
  margin: 0; padding: 0;
  font-family: 'Open Sans', 'Lato', system-ui, sans-serif;
      background: var(--dwz-cream);
      color: var(--dwz-navy);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
}


    

    body.dwz-page-tb * { box-sizing: border-box; }
    html { margin: 0; padding: 0; }
    
    body.dwz-page-tb main img { max-width: 100%; height: auto; display: block; }
    body.dwz-page-tb main a { color: var(--dwz-navy); }

    body.dwz-page-tb .tb-hero {
      background: linear-gradient(135deg, #0066AF 0%, #003C7A 100%);
      color: #fff;
      padding: 64px 24px 48px;
      text-align: center;
    }
    body.dwz-page-tb .tb-hero .eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--dwz-yellow);
      margin-bottom: 14px;
    }
    body.dwz-page-tb .tb-hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(34px, 6vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      max-width: 820px;
      margin: 0 auto 18px;
    }
    body.dwz-page-tb .tb-hero .lede {
      font-family: 'Lato', sans-serif;
      max-width: 720px;
      margin: 0 auto;
      font-size: 17px;
      opacity: 0.92;
      line-height: 1.55;
    }

    body.dwz-page-tb .tb-app-frame {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 24px;
    }
    body.dwz-page-tb .tb-app-frame iframe {
      width: 100%;
      height: 900px;
      border: 0;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(10, 23, 38, 0.08);
      background: #fff;
    }
    @media (min-width: 768px) {
      body.dwz-page-tb .tb-app-frame iframe { height: 1600px; }
    }
    @media (min-width: 1100px) {
      body.dwz-page-tb .tb-app-frame iframe { height: 2000px; }
    }

    body.dwz-page-tb .tb-help {
      max-width: 820px;
      margin: 16px auto 56px;
      padding: 0 24px;
      text-align: center;
      font-size: 14px;
      color: #4a5b6c;
    }
    body.dwz-page-tb .tb-help a { color: var(--dwz-navy-2); text-decoration: underline; }
  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM author/index.html — Author bio page
   Scoped to body.dwz-page-author
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-author {
  margin: 0; padding: 0;
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FFF8E7;
      color: #0066AF;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}


    

    body.dwz-page-author * { box-sizing: border-box; }
    html { margin: 0; padding: 0; }
    
    body.dwz-page-author main img { max-width: 100%; height: auto; display: block; }
    body.dwz-page-author main a { color: #0066AF; }

    /* ===== Demo banner + nav (matches rest of site) ===== */
    body.dwz-page-author .demo-banner {
      background: #1a1a1a; color: #FEF201;
      padding: 10px 20px; text-align: center;
      font-size: 13px; border-bottom: 2px solid #FEF201;
    }
    body.dwz-page-author .demo-banner strong { color: #fff; }
    body.dwz-page-author .demo-banner a { color: #FEF201; text-decoration: underline; }

    body.dwz-page-author .nav {
      background: #0066AF; color: #fff;
      padding: 18px 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    body.dwz-page-author .nav-brand {
      font-family: 'Lato', sans-serif; font-weight: 900;
      letter-spacing: 0.1em; font-size: 18px;
      text-decoration: none; color: #fff;
    }
    body.dwz-page-author .nav-links {
      display: flex; gap: 22px; flex-wrap: wrap;
      font-family: 'Josefin Sans', sans-serif; font-weight: 600;
      font-size: 14px;
    }
    body.dwz-page-author .nav-links a {
      color: #fff; text-decoration: none;
      letter-spacing: 0.04em;
    }
    body.dwz-page-author .nav-links a:hover { color: #FEF201; }
    body.dwz-page-author .nav-links a.current { color: #FEF201; }

    /* ===== Hero ===== */
    body.dwz-page-author .hero {
      background: linear-gradient(135deg, #0066AF 0%, #0066AF 100%);
      color: #fff;
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    body.dwz-page-author .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1280px;
      margin: 0 auto;
      align-items: stretch;
      min-height: 520px;
    }
    body.dwz-page-author .hero-photo-wrap {
      position: relative;
      overflow: hidden;
      background: #0066AF;
    }
    body.dwz-page-author .hero-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: saturate(1.05);
    }
    body.dwz-page-author .hero-photo-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(20,58,86,0.35));
      pointer-events: none;
    }
    body.dwz-page-author .hero-text {
      padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 64px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    body.dwz-page-author .hero-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #FEF201; margin-bottom: 18px;
    }
    body.dwz-page-author .hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(40px, 6.5vw, 76px);
      font-weight: 700; line-height: 1.05;
      margin: 0 0 18px;
      letter-spacing: -0.005em;
    }
    body.dwz-page-author .hero .tagline {
      font-family: 'Lato', sans-serif;
      font-size: clamp(18px, 2.4vw, 24px);
      font-weight: 400;
      line-height: 1.45;
      color: #E8F1F8;
      max-width: 480px;
      margin-bottom: 28px;
    }
    body.dwz-page-author .hero .tagline strong {
      color: #FEF201;
      font-weight: 700;
    }
    body.dwz-page-author .hero-meta {
      display: flex; flex-wrap: wrap; gap: 20px;
      font-size: 13px;
      color: rgba(255,255,255,0.78);
      letter-spacing: 0.04em;
      font-family: 'Lato', sans-serif;
      text-transform: uppercase;
      font-weight: 700;
    }
    body.dwz-page-author .hero-meta span { white-space: nowrap; }
    body.dwz-page-author .hero-meta span::before {
      content: '◆';
      color: #FEF201;
      margin-right: 8px;
      font-size: 9px;
      vertical-align: middle;
    }

    @media (max-width: 820px) {
      body.dwz-page-author .hero-grid {
        grid-template-columns: 1fr;
      }
      body.dwz-page-author .hero-photo-wrap {
        aspect-ratio: 4 / 5;
        max-height: 560px;
      }
    }

    /* ===== Section base ===== */
    body.dwz-page-author .section {
      padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 60px);
    }
    body.dwz-page-author .section-inner {
      max-width: 1140px;
      margin: 0 auto;
    }
    body.dwz-page-author .author-reel-frame {
      position: relative;
      width: 100%;
      max-width: 960px;
      margin: 36px auto 0;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(0,0,0,0.45);
    }
    body.dwz-page-author .author-reel-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    body.dwz-page-author .onstage-note {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.7);
      max-width: 760px;
      margin: 24px auto 0;
      text-align: center;
      line-height: 1.6;
    }
    body.dwz-page-author .eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #0074C7; margin-bottom: 14px;
    }
    body.dwz-page-author h2.section-title {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(30px, 4.5vw, 48px);
      line-height: 1.12;
      color: #0066AF;
      margin: 0 0 24px;
      max-width: 820px;
    }
    body.dwz-page-author h2.section-title .accent { color: #0074C7; }
    body.dwz-page-author .lede {
      font-size: clamp(17px, 2vw, 20px);
      max-width: 760px;
      margin: 0 0 36px;
      color: #2C3E50;
      line-height: 1.6;
    }

    /* ===== Ventures grid ===== */
    body.dwz-page-author .ventures {
      background: #fff;
      border-top: 1px solid #EFE9D7;
    }
    body.dwz-page-author .ventures-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 32px;
    }
    body.dwz-page-author .venture-card {
      background: #FFF8E7;
      border-left: 4px solid #FEF201;
      padding: 32px 28px;
      border-radius: 8px;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    body.dwz-page-author .venture-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 102, 175, 0.12);
    }
    body.dwz-page-author .venture-card .venture-tag {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: #B57F00;
      margin-bottom: 10px;
    }
    body.dwz-page-author .venture-card h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700; font-size: 26px;
      color: #0066AF;
      margin: 0 0 12px;
    }
    body.dwz-page-author .venture-card p {
      font-size: 15px;
      line-height: 1.6;
      color: #2C3E50;
      margin: 0 0 16px;
    }
    body.dwz-page-author .venture-card a.venture-link {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.06em;
      color: #0074C7;
      text-decoration: none;
      text-transform: uppercase;
    }
    body.dwz-page-author .venture-card a.venture-link:hover { color: #0066AF; text-decoration: underline; }
    body.dwz-page-author .venture-card a.venture-link::after { content: ' →'; }

    /* ===== Origin story ===== */
    body.dwz-page-author .origin {
      background: #FFF8E7;
    }
    body.dwz-page-author .origin-body {
      font-size: 18px;
      line-height: 1.78;
      color: #1d3346;
      max-width: 760px;
    }
    body.dwz-page-author .origin-body p { margin-bottom: 22px; }
    body.dwz-page-author .origin-body p:first-of-type::first-letter {
      font-family: 'Josefin Sans', serif;
      font-size: 64px;
      float: left;
      line-height: 0.9;
      margin: 6px 12px 0 0;
      color: #0066AF;
      font-weight: 700;
    }

    /* ===== Press quotes ===== */
    body.dwz-page-author .press {
      background: #0066AF;
      color: #fff;
    }
    body.dwz-page-author .press h2.section-title { color: #fff; }
    body.dwz-page-author .press .eyebrow { color: #FEF201; }
    body.dwz-page-author .press-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      margin-top: 40px;
    }
    body.dwz-page-author .press-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-left: 3px solid #FEF201;
      padding: 32px 28px;
      border-radius: 6px;
    }
    body.dwz-page-author .press-card .outlet {
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 13px;
      letter-spacing: 0.14em;
      color: #FEF201;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    body.dwz-page-author .press-card blockquote {
      font-family: 'Josefin Sans', 'Georgia', serif;
      font-size: 19px;
      line-height: 1.45;
      font-weight: 400;
      color: #fff;
      margin: 0 0 18px;
      font-style: italic;
    }
    body.dwz-page-author .press-card .attr {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
    }
    body.dwz-page-author .press-card .attr a {
      color: #87C8FF;
      text-decoration: none;
    }
    body.dwz-page-author .press-card .attr a:hover { text-decoration: underline; }

    /* ===== Living the philosophy ===== */
    body.dwz-page-author .philosophy {
      background: #fff;
    }
    body.dwz-page-author .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      margin-top: 32px;
    }
    body.dwz-page-author .phil-card {
      background: #FFF8E7;
      padding: 28px 26px;
      border-radius: 8px;
      border-top: 4px solid #0066AF;
    }
    body.dwz-page-author .phil-card h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: #0066AF;
      margin: 0 0 12px;
      line-height: 1.2;
    }
    body.dwz-page-author .phil-card h3 .num {
      color: #FEF201;
      background: #0066AF;
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 13px;
      letter-spacing: 0.1em;
      margin-right: 10px;
      vertical-align: middle;
    }
    body.dwz-page-author .phil-card p {
      font-size: 15px;
      line-height: 1.6;
      color: #2C3E50;
      margin: 0;
    }

    /* ===== Recent press list ===== */
    body.dwz-page-author .recent-press {
      background: #FFF8E7;
      border-top: 1px solid #EFE9D7;
    }
    body.dwz-page-author .press-list {
      list-style: none;
      padding: 0;
      margin: 32px 0 0;
      display: grid;
      gap: 14px;
      max-width: 880px;
    }
    body.dwz-page-author .press-list li {
      background: #fff;
      border-left: 3px solid #0066AF;
      padding: 18px 22px;
      border-radius: 4px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: baseline;
      box-shadow: 0 1px 3px rgba(0,102,175,0.06);
    }
    body.dwz-page-author .press-list .date {
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 12px;
      color: #B57F00;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      min-width: 130px;
    }
    body.dwz-page-author .press-list .outlet-name {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 14px;
      color: #0066AF;
      min-width: 100px;
    }
    body.dwz-page-author .press-list .headline {
      font-size: 15px;
      color: #2C3E50;
      flex: 1;
      min-width: 240px;
    }
    body.dwz-page-author .press-list a { color: #0066AF; text-decoration: none; }
    body.dwz-page-author .press-list a:hover { text-decoration: underline; }

    /* ===== CTA ===== */
    body.dwz-page-author .cta {
      background: linear-gradient(135deg, #0066AF 0%, #0066AF 100%);
      color: #fff;
      text-align: center;
    }
    body.dwz-page-author .cta h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 4vw, 42px);
      margin: 0 0 16px;
    }
    body.dwz-page-author .cta .lede {
      color: rgba(255,255,255,0.85);
      max-width: 640px;
      margin: 0 auto 36px;
    }
    body.dwz-page-author .cta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      max-width: 880px;
      margin: 0 auto;
    }
    body.dwz-page-author .cta-btn {
      display: block;
      padding: 22px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    body.dwz-page-author .cta-btn-yellow {
      background: #FEF201; color: #0066AF;
    }
    body.dwz-page-author .cta-btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid #FEF201;
    }
    body.dwz-page-author .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    body.dwz-page-author .cta-btn small {
      display: block;
      font-size: 11px;
      font-weight: 400;
      margin-top: 4px;
      letter-spacing: 0.06em;
      opacity: 0.85;
      text-transform: none;
    }

    /* ===== Footer ===== */
    body.dwz-page-author .footer {
      background: #0d2438;
      color: rgba(255,255,255,0.75);
      padding: 40px 24px 32px;
      text-align: center;
      font-size: 13.5px;
      line-height: 1.7;
    }
    body.dwz-page-author .footer a {
      color: #FEF201;
      text-decoration: none;
    }
    body.dwz-page-author .footer a:hover { text-decoration: underline; }
    body.dwz-page-author .footer .credit {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    /* Mobile tweaks */
    @media (max-width: 560px) {
      body.dwz-page-author .hero-meta { flex-direction: column; gap: 8px; }
      body.dwz-page-author .nav { padding: 14px 18px; }
      body.dwz-page-author .nav-brand { font-size: 16px; }
    }
  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM international/index.html — International page
   Scoped to body.dwz-page-intl
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-intl {
  font-family: 'Open Sans', 'Lato', -apple-system, sans-serif;
      background: #0066AF;
      color: white;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
}


    
    body.dwz-page-intl * { box-sizing: border-box; }
    
    body.dwz-page-intl main a { color: inherit; }
    body.dwz-page-intl .demo-banner {
      background: #1a1a1a; color: #FEF201;
      padding: 10px 20px; text-align: center;
      font-size: 13px; border-bottom: 2px solid #FEF201;
    }
    body.dwz-page-intl .demo-banner a { color: #FEF201; text-decoration: underline; }
    body.dwz-page-intl .demo-banner strong { color: white; }
    body.dwz-page-intl .nav {
      background: #0066AF; padding: 18px 24px;
      display: flex; justify-content: space-between; align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    body.dwz-page-intl .nav-brand {
      font-family: 'Lato', sans-serif; font-weight: 900;
      letter-spacing: 0.1em; font-size: 18px;
      text-decoration: none;
    }
    body.dwz-page-intl .nav-back a { color: #FEF201; font-size: 14px; text-decoration: none; }

    body.dwz-page-intl .hero {
      padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 60px) 60px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }
    body.dwz-page-intl .eyebrow {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      letter-spacing: 0.2em;
      font-size: 13px;
      color: #FEF201;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    body.dwz-page-intl .hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(36px, 5.5vw, 64px);
      line-height: 1.1;
      margin-bottom: 24px;
    }
    body.dwz-page-intl .hero h1 .yellow { color: #FEF201; }
    body.dwz-page-intl .hero p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      line-height: 1.7;
    }
    body.dwz-page-intl .stats-bar {
      max-width: 720px;
      margin: 48px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding: 32px;
      background: rgba(255,255,255,0.06);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }
    @media (max-width: 560px) {
      body.dwz-page-intl .stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 22px 18px;
      }
    }
    body.dwz-page-intl .stat-num {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: #FEF201;
    }
    body.dwz-page-intl .stat-label {
      font-size: 12px;
      letter-spacing: 0.1em;
      opacity: 0.75;
      text-transform: uppercase;
      margin-top: 4px;
    }

    body.dwz-page-intl .grid-section {
      padding: 80px clamp(24px, 5vw, 60px);
      max-width: 1300px;
      margin: 0 auto;
    }
    body.dwz-page-intl .grid-section h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 4vw, 40px);
      margin-bottom: 32px;
    }
    body.dwz-page-intl .territory-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }
    body.dwz-page-intl .territory {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      padding: 24px 20px;
      color: white;
      display: block;
    }
    body.dwz-page-intl .territory.featured {
      background: rgba(254, 242, 1, 0.1);
      border-color: #FEF201;
    }
    body.dwz-page-intl .territory .flag-row {
      display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
    }
    body.dwz-page-intl .territory .flag { font-size: 32px; }
    body.dwz-page-intl .territory .country {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 18px;
    }
    body.dwz-page-intl .territory .lang {
      opacity: 0.7;
      font-size: 13px;
    }
    body.dwz-page-intl .territory .title-local {
      font-size: 14px;
      margin-top: 6px;
      opacity: 0.85;
      font-style: italic;
    }
    body.dwz-page-intl .territory .retailers {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }
    body.dwz-page-intl .territory .retailers a {
      display: inline-block;
      background: rgba(255,255,255,0.08);
      color: #fff;
      font-family: 'Open Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      text-decoration: none;
      transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
    }
    body.dwz-page-intl .territory .retailers a:hover, body.dwz-page-intl .territory .retailers a:focus-visible {
      background: #FEF201;
      color: #0066AF;
      border-color: #FEF201;
      transform: translateY(-1px);
    }
    body.dwz-page-intl .territory.featured .retailers a {
      background: rgba(254, 242, 1, 0.14);
      border-color: rgba(254, 242, 1, 0.45);
      color: #FEF201;
    }
    body.dwz-page-intl .territory.featured .retailers a:hover, body.dwz-page-intl .territory.featured .retailers a:focus-visible {
      background: #FEF201;
      color: #0066AF;
      border-color: #FEF201;
    }
    body.dwz-page-intl .territory .badge {
      display: inline-block;
      background: #FEF201;
      color: #0066AF;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 10px;
      font-weight: 700;
      margin-top: 6px;
    }
    body.dwz-page-intl .territory .verify {
      background: #FFE4A8;
      color: #4A3B00;
    }
    body.dwz-page-intl h2.section-title {
      margin-top: 48px;
      font-size: 24px;
      opacity: 0.85;
      border-top: 1px solid rgba(255,255,255,0.15);
      padding-top: 32px;
    }
    body.dwz-page-intl .footer {
      background: #003560;
      padding: 48px 24px;
      text-align: center;
      font-size: 13px;
      opacity: 0.75;
    }
    body.dwz-page-intl .footer a { color: #FEF201; }
  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM press/index.html — Press kit page
   Scoped to body.dwz-page-press
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-press {
  font-family: 'Open Sans', 'Lato', system-ui, sans-serif;
      background: #FFF8E7; color: #0066AF; line-height: 1.65;
      -webkit-font-smoothing: antialiased; margin: 0;
}


    
  


    body.dwz-page-press * { box-sizing: border-box; }
    
    body.dwz-page-press main img { max-width: 100%; height: auto; display: block; }
    body.dwz-page-press main a { color: #0066AF; }

    body.dwz-page-press .press-hero {
      background: linear-gradient(135deg, #0066AF 0%, #003C7A 100%);
      color: #fff; padding: 80px 24px; text-align: center;
    }
    body.dwz-page-press .press-hero .eyebrow {
      font-family: 'Josefin Sans', sans-serif; font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; color: #FEF201; margin-bottom: 14px;
    }
    body.dwz-page-press .press-hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(34px, 6vw, 56px); font-weight: 700; line-height: 1.1;
      max-width: 820px; margin: 0 auto 18px;
    }
    body.dwz-page-press .press-hero .lede {
      font-family: 'Lato', sans-serif; max-width: 640px; margin: 0 auto;
      font-size: 17px; opacity: 0.92;
    }

    body.dwz-page-press .press-body { max-width: 1080px; margin: 60px auto; padding: 0 24px; color: #0d1b2a; }
    body.dwz-page-press .press-body h2 {
      font-family: 'Josefin Sans', sans-serif; font-size: 28px; font-weight: 700;
      color: #0066AF; margin-bottom: 28px; text-align: center;
    }

    body.dwz-page-press .press-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px; margin-bottom: 50px;
    }
    body.dwz-page-press .press-card {
      background: #fff; border: 1px solid rgba(0,102,175,0.12);
      border-left: 4px solid #FEF201; border-radius: 6px;
      padding: 26px 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }
    body.dwz-page-press .press-card .outlet {
      font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: #0066AF;
      margin-bottom: 12px;
    }
    body.dwz-page-press .press-card blockquote {
      font-family: 'Lato', sans-serif; font-size: 16px; font-style: italic;
      color: #0d1b2a; margin: 0 0 14px; line-height: 1.55;
    }
    body.dwz-page-press .press-card .attr {
      font-family: 'Open Sans', sans-serif; font-size: 13px; color: #555;
    }

    body.dwz-page-press .podcasts-list {
      background: #fff; border-radius: 8px; padding: 30px;
      border: 1px solid rgba(0,102,175,0.10);
    }
    body.dwz-page-press .podcasts-list h3 {
      font-family: 'Josefin Sans', sans-serif; font-size: 18px; font-weight: 700;
      color: #0066AF; margin-bottom: 16px; padding-bottom: 10px;
      border-bottom: 2px solid #FEF201;
    }
    body.dwz-page-press .podcasts-list ul { list-style: none; padding: 0; margin: 0; }
    body.dwz-page-press .podcasts-list li {
      padding: 12px 0; border-bottom: 1px dashed rgba(0,102,175,0.15);
      font-family: 'Open Sans', sans-serif; font-size: 15px;
    }
    body.dwz-page-press .podcasts-list li:last-child { border-bottom: none; }
    body.dwz-page-press .podcasts-list .pod-title { font-weight: 700; color: #0066AF; }
    body.dwz-page-press .podcasts-list .pod-meta { color: #666; font-size: 13px; margin-top: 2px; }

    body.dwz-page-press .crosslinks {
      max-width: 1080px; margin: 60px auto; padding: 0 24px;
      display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 18px;
    }
    body.dwz-page-press .crosslinks a {
      display: block; padding: 22px; background: #0066AF; color: #fff;
      text-decoration: none; border-radius: 6px; font-family: 'Josefin Sans', sans-serif;
      font-weight: 600; transition: background .2s;
    }
    body.dwz-page-press .crosslinks a:hover { background: #003C7A; }
    body.dwz-page-press .crosslinks .lbl {
      font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
      color: #FEF201; display: block; margin-bottom: 6px;
    }
    body.dwz-page-press .crosslinks .ttl { font-size: 18px; }

    @media (max-width: 640px) {
      body.dwz-page-press .press-hero { padding: 60px 18px; }
      body.dwz-page-press .press-body { margin: 40px auto; }
      body.dwz-page-press .press-card { padding: 20px 18px; }
    }

  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM reviews/index.html — Reviews page
   Scoped to body.dwz-page-reviews
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-reviews {
  margin: 0; padding: 0;
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FFF8E7;
      color: #0066AF;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}


    

    body.dwz-page-reviews * { box-sizing: border-box; }
    html { margin: 0; padding: 0; }
    
    body.dwz-page-reviews main img { max-width: 100%; height: auto; display: block; }
    body.dwz-page-reviews main a { color: #0066AF; }

    /* ===== Hero ===== */
    body.dwz-page-reviews .hero {
      background: linear-gradient(135deg, #0066AF 0%, #0066AF 100%);
      color: #fff;
      padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 60px);
      position: relative;
      overflow: hidden;
    }
    body.dwz-page-reviews .hero-inner {
      max-width: 1140px;
      margin: 0 auto;
      text-align: center;
    }
    body.dwz-page-reviews .hero-eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: #FEF201; margin-bottom: 18px;
    }
    body.dwz-page-reviews .hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(40px, 6.5vw, 76px);
      font-weight: 700; line-height: 1.05;
      margin: 0 auto 22px;
      letter-spacing: -0.005em;
      max-width: 14ch;
    }
    body.dwz-page-reviews .hero .lede {
      font-family: 'Lato', sans-serif;
      font-size: clamp(17px, 2.2vw, 22px);
      font-weight: 400;
      line-height: 1.55;
      color: #E8F1F8;
      max-width: 720px;
      margin: 0 auto;
    }
    body.dwz-page-reviews .hero .lede strong {
      color: #FEF201;
      font-weight: 700;
    }

    /* ===== Stats strip ===== */
    body.dwz-page-reviews .stats-strip {
      background: #FEF201;
      color: #0066AF;
      padding: 22px 24px;
      border-top: 4px solid #0066AF;
      border-bottom: 4px solid #0066AF;
    }
    body.dwz-page-reviews .stats-strip-inner {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 12px 28px;
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: clamp(13px, 1.4vw, 15.5px);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-align: center;
    }
    body.dwz-page-reviews .stats-strip-inner span { white-space: nowrap; }
    body.dwz-page-reviews .stats-strip-inner span.sep {
      color: #0066AF; font-weight: 700;
    }

    /* ===== Section base ===== */
    body.dwz-page-reviews .section {
      padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 60px);
    }
    body.dwz-page-reviews .section-inner {
      max-width: 1140px;
      margin: 0 auto;
    }
    body.dwz-page-reviews .eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #0074C7; margin-bottom: 14px;
    }
    body.dwz-page-reviews h2.section-title {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(30px, 4.5vw, 48px);
      line-height: 1.12;
      color: #0066AF;
      margin: 0 0 24px;
      max-width: 820px;
    }
    body.dwz-page-reviews h2.section-title .accent { color: #0074C7; }
    body.dwz-page-reviews .lede {
      font-size: clamp(17px, 2vw, 20px);
      max-width: 760px;
      margin: 0 0 36px;
      color: #2C3E50;
      line-height: 1.6;
    }

    /* ===== Filter chips =====
       Implementation note: the filter chips are PURE-CSS using
       radio inputs + ~ sibling selectors. They actually filter
       the cards because each card carries a data-source class,
       and each radio's :checked state hides non-matching cards
       via .reviews-grid > .review-card[data-...] rules below.
       No JS framework involved. */
    body.dwz-page-reviews .reviews-filter {
      display: none;
    }
    body.dwz-page-reviews .reviews-filter-inner {
      max-width: 1140px;
      margin: 0 auto;
    }
    body.dwz-page-reviews .filter-label {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #B57F00;
      margin-bottom: 14px;
      display: block;
    }
    body.dwz-page-reviews .filter-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 4px;
    }
    body.dwz-page-reviews .reviews-zone > input[type="radio"] {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
      clip: rect(0 0 0 0);
      overflow: hidden;
    }
    body.dwz-page-reviews .filter-chips label {
      display: inline-block;
      padding: 9px 18px;
      border: 2px solid #0066AF;
      color: #0066AF;
      background: #fff;
      border-radius: 999px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.15s, color 0.15s, transform 0.15s;
      user-select: none;
    }
    body.dwz-page-reviews .filter-chips label:hover {
      background: #FFF8E7;
      transform: translateY(-1px);
    }
    /* Default: "All" selected → show everything (handled below) */
    /* When a specific source radio is checked, hide cards that don't match */
    body.dwz-page-reviews #flt-all:checked ~ .filter-chips label[for="flt-all"], body.dwz-page-reviews #flt-goodreads:checked ~ .filter-chips label[for="flt-goodreads"], body.dwz-page-reviews #flt-blog:checked ~ .filter-chips label[for="flt-blog"], body.dwz-page-reviews #flt-reddit:checked ~ .filter-chips label[for="flt-reddit"], body.dwz-page-reviews #flt-x:checked ~ .filter-chips label[for="flt-x"] {
      background: #0066AF;
      color: #FEF201;
      border-color: #0066AF;
    }

    /* ===== Reviews ===== */
    body.dwz-page-reviews .reviews {
      background: #fff;
      padding-top: 28px;
    }
    body.dwz-page-reviews .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-top: 24px;
    }
    /* Filter wiring: when one of the source radios is checked, hide non-matching cards */
    body.dwz-page-reviews #flt-goodreads:checked ~ .reviews .reviews-grid > .review-card:not([data-source="goodreads"]) { display: none; }
    body.dwz-page-reviews #flt-blog:checked      ~ .reviews .reviews-grid > .review-card:not([data-source="blog"]) { display: none; }
    body.dwz-page-reviews #flt-reddit:checked    ~ .reviews .reviews-grid > .review-card:not([data-source="reddit"]) { display: none; }
    body.dwz-page-reviews #flt-x:checked         ~ .reviews .reviews-grid > .review-card:not([data-source="x"]) { display: none; }

    body.dwz-page-reviews .review-card {
      background: #FFF8E7;
      border-left: 4px solid #FEF201;
      padding: 28px 26px 26px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    body.dwz-page-reviews .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(0, 102, 175, 0.14);
    }
    body.dwz-page-reviews .review-head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }
    body.dwz-page-reviews .review-name {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 17px;
      color: #0066AF;
      margin: 0;
      flex: 1;
      min-width: 50%;
      line-height: 1.25;
    }
    body.dwz-page-reviews .review-name small {
      display: block;
      font-family: 'Open Sans', sans-serif;
      font-weight: 400;
      font-size: 12px;
      color: #6B7C8A;
      margin-top: 3px;
      letter-spacing: 0.01em;
    }
    body.dwz-page-reviews .source-badge {
      display: inline-block;
      font-family: 'Lato', sans-serif;
      font-weight: 900;
      font-size: 10.5px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      white-space: nowrap;
    }
    body.dwz-page-reviews .source-badge.goodreads { background: #553B08; color: #FEF201; }
    body.dwz-page-reviews .source-badge.blog { background: #0066AF; color: #fff; }
    body.dwz-page-reviews .source-badge.reddit { background: #FF4500; color: #fff; }
    body.dwz-page-reviews .source-badge.x { background: #000;    color: #fff; }
    body.dwz-page-reviews .review-date {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 11.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #B57F00;
      margin-bottom: 12px;
    }
    body.dwz-page-reviews .review-rating {
      color: #B57F00;
      font-size: 13px;
      letter-spacing: 0.06em;
      margin-left: 6px;
      font-weight: 700;
    }
    body.dwz-page-reviews .review-quote {
      font-family: 'Open Sans', sans-serif;
      font-size: 15px;
      line-height: 1.65;
      color: #1d3346;
      margin: 0 0 18px;
    }
    body.dwz-page-reviews .review-quote::before { content: '“'; font-family: 'Josefin Sans', serif; font-weight: 700; color: #0066AF; font-size: 22px; margin-right: 2px; }
    body.dwz-page-reviews .review-quote::after { content: '”'; font-family: 'Josefin Sans', serif; font-weight: 700; color: #0066AF; font-size: 22px; margin-left: 2px; }
    body.dwz-page-reviews .review-translation {
      font-style: italic;
      color: #4a637a;
      font-size: 14px;
      margin: -8px 0 18px;
      padding-left: 12px;
      border-left: 2px dashed #0074C7;
    }
    body.dwz-page-reviews .review-link {
      margin-top: auto;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0074C7;
      text-decoration: none;
      align-self: flex-start;
    }
    body.dwz-page-reviews .review-link::after { content: ' →'; }
    body.dwz-page-reviews .review-link:hover { color: #0066AF; text-decoration: underline; }

    /* ===== Amazon CTA ===== */
    body.dwz-page-reviews .amazon-cta {
      text-align: center;
      margin-top: 56px;
      padding: 36px 28px;
      background: #0066AF;
      color: #fff;
      border-radius: 10px;
    }
    body.dwz-page-reviews .amazon-cta h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(22px, 3vw, 30px);
      margin: 0 0 14px;
      color: #fff;
    }
    body.dwz-page-reviews .amazon-cta p {
      color: rgba(255,255,255,0.78);
      max-width: 560px;
      margin: 0 auto 24px;
      font-size: 15px;
    }
    body.dwz-page-reviews .amazon-btn {
      display: inline-block;
      background: #FEF201;
      color: #0066AF;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    body.dwz-page-reviews .amazon-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(254, 242, 1, 0.35);
      background: #ffe600;
    }

    /* ===== Submit form ===== */
    body.dwz-page-reviews .submit {
      background: #FFF8E7;
      border-top: 1px solid #EFE9D7;
    }
    body.dwz-page-reviews .submit-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 48px;
      align-items: start;
      margin-top: 28px;
    }
    body.dwz-page-reviews .submit-note {
      background: #fff8c2;
      border: 1.5px dashed #B57F00;
      color: #6b4f00;
      padding: 14px 18px;
      border-radius: 6px;
      font-size: 13.5px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.5;
    }
    body.dwz-page-reviews .submit-note strong {
      color: #8a3b00;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      font-size: 11.5px;
      display: block;
      margin-bottom: 4px;
    }
    body.dwz-page-reviews .review-form {
      background: #fff;
      padding: 28px 26px;
      border-radius: 10px;
      box-shadow: 0 4px 18px rgba(0,102,175,0.08);
      border-left: 4px solid #0066AF;
    }
    body.dwz-page-reviews .review-form h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 22px;
      color: #0066AF;
      margin: 0 0 18px;
    }
    body.dwz-page-reviews .form-row {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px;
    }
    body.dwz-page-reviews .form-row label {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #0066AF;
    }
    body.dwz-page-reviews .form-row input, body.dwz-page-reviews .form-row textarea, body.dwz-page-reviews .form-row select {
      width: 100%;
      padding: 10px 12px;
      border: 1.5px solid #d8e4ee;
      border-radius: 6px;
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #0066AF;
      background: #fff;
      transition: border-color 0.15s, box-shadow 0.15s;
    }
    body.dwz-page-reviews .form-row input:focus, body.dwz-page-reviews .form-row textarea:focus, body.dwz-page-reviews .form-row select:focus {
      outline: none;
      border-color: #0066AF;
      box-shadow: 0 0 0 3px rgba(0,102,175,0.15);
    }
    body.dwz-page-reviews .form-row textarea { min-height: 110px; resize: vertical; }
    body.dwz-page-reviews .form-row-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    body.dwz-page-reviews .submit-btn {
      display: inline-block;
      background: #0066AF;
      color: #FEF201;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 26px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.15s, transform 0.15s;
      margin-top: 6px;
    }
    body.dwz-page-reviews .submit-btn:hover {
      background: #0066AF;
      transform: translateY(-1px);
    }
    @media (max-width: 820px) {
      body.dwz-page-reviews .submit-grid { grid-template-columns: 1fr; gap: 28px; }
    }

    /* ===== Cross-links ===== */
    body.dwz-page-reviews .crosslinks {
      background: #fff;
      border-top: 1px solid #EFE9D7;
    }
    body.dwz-page-reviews .cross-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
      margin-top: 32px;
    }
    body.dwz-page-reviews .cross-card {
      display: block;
      background: #FFF8E7;
      border-top: 4px solid #0066AF;
      padding: 28px 26px;
      border-radius: 8px;
      text-decoration: none;
      color: #0066AF;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    body.dwz-page-reviews .cross-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 22px rgba(0, 102, 175, 0.14);
    }
    body.dwz-page-reviews .cross-card .cross-tag {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: #B57F00;
      margin-bottom: 10px;
    }
    body.dwz-page-reviews .cross-card h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 24px;
      color: #0066AF;
      margin: 0 0 10px;
    }
    body.dwz-page-reviews .cross-card p {
      font-size: 14.5px;
      line-height: 1.55;
      color: #2C3E50;
      margin: 0 0 14px;
    }
    body.dwz-page-reviews .cross-card .cross-arrow {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 12.5px;
      letter-spacing: 0.06em;
      color: #0074C7;
      text-transform: uppercase;
    }
    body.dwz-page-reviews .cross-card .cross-arrow::after { content: ' →'; }

    /* ===== Footer ===== */
    body.dwz-page-reviews .footer {
      background: #0d2438;
      color: rgba(255,255,255,0.75);
      padding: 40px 24px 32px;
      text-align: center;
      font-size: 13.5px;
      line-height: 1.7;
    }
    body.dwz-page-reviews .footer a {
      color: #FEF201;
      text-decoration: none;
    }
    body.dwz-page-reviews .footer a:hover { text-decoration: underline; }
    body.dwz-page-reviews .footer .credit {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      body.dwz-page-reviews .stats-strip-inner { gap: 8px 16px; font-size: 12px; }
      body.dwz-page-reviews .stats-strip-inner span.sep { display: none; }
      body.dwz-page-reviews .reviews-grid { grid-template-columns: 1fr; }
      body.dwz-page-reviews .form-row-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      body.dwz-page-reviews .review-card { padding: 22px 20px; }
      body.dwz-page-reviews .review-name { font-size: 16px; }
      body.dwz-page-reviews .filter-chips label { padding: 8px 14px; font-size: 12px; }
    }
  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM sample/index.html — Sample / Mental Models PDF page
   Scoped to body.dwz-page-sample
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-sample {
  margin: 0; padding: 0;
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #FFF8E7;
      color: #0066AF;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
}


    

    body.dwz-page-sample * { box-sizing: border-box; }
    html { margin: 0; padding: 0; }
    
    body.dwz-page-sample main img { max-width: 100%; height: auto; display: block; }
    body.dwz-page-sample main a { color: #0066AF; }

    /* ===== Hero ===== */
    body.dwz-page-sample .hero {
      background: linear-gradient(135deg, #0066AF 0%, #0066AF 100%);
      color: #fff;
      padding: 80px 24px 90px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    body.dwz-page-sample .hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
    body.dwz-page-sample .hero .eyebrow {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: #FEF201; margin-bottom: 16px;
    }
    body.dwz-page-sample .hero h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(36px, 6vw, 60px);
      font-weight: 700; line-height: 1.08;
      max-width: 820px; margin: 0 auto 22px;
    }
    body.dwz-page-sample .hero .lede {
      font-family: 'Lato', sans-serif;
      max-width: 680px; margin: 0 auto 36px;
      font-size: 18px;
      opacity: 0.94;
    }
    body.dwz-page-sample .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #FEF201;
      color: #0066AF;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 19px;
      letter-spacing: 0.04em;
      padding: 18px 34px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(254, 242, 1, 0.32), 0 4px 14px rgba(0,0,0,0.18);
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }
    body.dwz-page-sample .hero-cta:hover {
      transform: translateY(-2px);
      background: #ffe600;
      box-shadow: 0 14px 38px rgba(254, 242, 1, 0.45), 0 6px 18px rgba(0,0,0,0.22);
    }
    body.dwz-page-sample .hero-cta-note {
      display: block;
      margin-top: 14px;
      font-size: 13px;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.78);
      font-family: 'Open Sans', sans-serif;
    }

    /* ===== Section base ===== */
    body.dwz-page-sample section.block {
      padding: 70px 24px;
    }
    body.dwz-page-sample .container {
      max-width: 1120px;
      margin: 0 auto;
    }
    body.dwz-page-sample .container-narrow {
      max-width: 820px;
      margin: 0 auto;
    }
    body.dwz-page-sample h2.section-title {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: #0066AF;
      line-height: 1.15;
      margin-bottom: 14px;
    }
    body.dwz-page-sample .section-kicker {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #0066AF;
      margin-bottom: 10px;
    }
    body.dwz-page-sample .section-lede {
      font-family: 'Lato', sans-serif;
      font-size: 17px;
      color: #0066AF;
      opacity: 0.88;
      max-width: 640px;
      margin-bottom: 28px;
    }

    /* ===== "What's inside" two-column ===== */
    body.dwz-page-sample .inside {
      background: #ffffff;
    }
    body.dwz-page-sample .inside-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 56px;
      align-items: center;
    }
    body.dwz-page-sample .inside-list {
      list-style: none;
      padding: 0;
    }
    body.dwz-page-sample .inside-list li {
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: #0066AF;
      padding: 14px 0 14px 40px;
      position: relative;
      border-bottom: 1px dashed rgba(20, 58, 86, 0.18);
      line-height: 1.5;
    }
    body.dwz-page-sample .inside-list li:last-child { border-bottom: none; }
    body.dwz-page-sample .inside-list li::before {
      content: "✓";
      position: absolute;
      left: 4px; top: 12px;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: #FEF201;
      color: #0066AF;
      font-weight: 800;
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 6px rgba(254, 242, 1, 0.45);
    }
    body.dwz-page-sample .inside-list li strong {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      color: #0066AF;
      letter-spacing: 0.01em;
    }
    body.dwz-page-sample .inside-bookmock {
      text-align: center;
    }
    body.dwz-page-sample .inside-bookmock img {
      margin: 0 auto;
      max-width: 320px;
      filter: drop-shadow(0 18px 36px rgba(20, 58, 86, 0.28));
      transform: rotate(-2deg);
      transition: transform 0.4s ease;
    }
    body.dwz-page-sample .inside-bookmock img:hover { transform: rotate(0deg) scale(1.02); }
    body.dwz-page-sample .inside-bookmock .pdf-meta {
      margin-top: 22px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0066AF;
      opacity: 0.7;
    }

    /* ===== CTA band ===== */
    body.dwz-page-sample .cta-band {
      background: #0066AF;
      color: #fff;
      text-align: center;
    }
    body.dwz-page-sample .cta-band h2 { color: #fff; }
    body.dwz-page-sample .cta-band .section-lede { color: rgba(255,255,255,0.85); margin: 0 auto 28px; }
    body.dwz-page-sample .cta-band .hero-cta-note { color: rgba(255,255,255,0.65); }

    /* ===== Email opt-in form ===== */
    body.dwz-page-sample .optin {
      background: #FFF8E7;
    }
    body.dwz-page-sample .optin-card {
      background: #ffffff;
      border: 2px solid rgba(0, 102, 175, 0.15);
      border-radius: 12px;
      padding: 40px 36px;
      box-shadow: 0 18px 42px rgba(20, 58, 86, 0.08);
      max-width: 720px;
      margin: 0 auto;
    }
    body.dwz-page-sample .optin-card h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: #0066AF;
      margin-bottom: 8px;
    }
    body.dwz-page-sample .optin-card .sub {
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      color: #0066AF;
      opacity: 0.82;
      margin-bottom: 24px;
    }
    body.dwz-page-sample .optin-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    body.dwz-page-sample .optin-card label {
      display: block;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0066AF;
      margin-bottom: 6px;
    }
    body.dwz-page-sample .optin-card input[type="text"], body.dwz-page-sample .optin-card input[type="email"] {
      width: 100%;
      padding: 13px 14px;
      font-size: 15px;
      font-family: 'Open Sans', sans-serif;
      color: #0066AF;
      border: 1.5px solid rgba(20, 58, 86, 0.25);
      border-radius: 6px;
      background: #fafafa;
      transition: border-color 0.18s ease, background 0.18s ease;
    }
    body.dwz-page-sample .optin-card input[type="text"]:focus, body.dwz-page-sample .optin-card input[type="email"]:focus {
      outline: none;
      border-color: #0066AF;
      background: #ffffff;
    }
    body.dwz-page-sample .optin-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 14px 0 18px;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      color: #0066AF;
    }
    body.dwz-page-sample .optin-check input { margin-top: 4px; }
    body.dwz-page-sample .optin-submit {
      width: 100%;
      padding: 16px 22px;
      background: #0066AF;
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.18s ease, transform 0.18s ease;
    }
    body.dwz-page-sample .optin-submit:hover { background: #0066AF; transform: translateY(-1px); }
    body.dwz-page-sample .optin-note {
      margin-top: 18px;
      padding: 12px 14px;
      background: #FEF201;
      border-left: 4px solid #0066AF;
      font-family: 'Open Sans', sans-serif;
      font-size: 13px;
      color: #0066AF;
      border-radius: 4px;
    }
    body.dwz-page-sample .optin-note strong { font-weight: 700; }

    /* ===== Excerpt / "What you'll find" ===== */
    body.dwz-page-sample .excerpt {
      background: #ffffff;
    }
    body.dwz-page-sample .excerpt-body p {
      font-family: 'Lato', sans-serif;
      font-size: 17px;
      color: #0066AF;
      margin-bottom: 16px;
      line-height: 1.75;
    }
    body.dwz-page-sample .excerpt-body p:first-of-type::first-letter {
      font-family: 'Josefin Sans', sans-serif;
      float: left;
      font-size: 56px;
      line-height: 0.9;
      font-weight: 700;
      color: #0066AF;
      padding: 6px 10px 0 0;
    }
    body.dwz-page-sample .excerpt-tag {
      display: inline-block;
      margin-bottom: 14px;
      font-family: 'Open Sans', sans-serif;
      font-size: 11.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #0066AF;
      background: rgba(0, 102, 175, 0.08);
      padding: 4px 10px;
      border-radius: 3px;
      font-weight: 700;
    }

    /* ===== Quote block ===== */
    body.dwz-page-sample .quote-block {
      background: linear-gradient(135deg, #0066AF 0%, #0066AF 100%);
      color: #fff;
    }
    body.dwz-page-sample .quote-card {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
      padding: 0 8px;
    }
    body.dwz-page-sample .quote-card blockquote {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 400;
      font-size: clamp(20px, 2.4vw, 26px);
      line-height: 1.5;
      color: #ffffff;
      font-style: italic;
      margin-bottom: 22px;
      position: relative;
      padding: 0 18px;
    }
    body.dwz-page-sample .quote-card blockquote::before {
      content: "“";
      font-family: 'Josefin Sans', serif;
      font-size: 90px;
      line-height: 0.6;
      color: #FEF201;
      display: block;
      margin-bottom: 8px;
      font-style: normal;
    }
    body.dwz-page-sample .quote-card cite {
      font-family: 'Lato', sans-serif;
      font-style: normal;
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 14px;
      color: #FEF201;
      text-transform: uppercase;
    }
    body.dwz-page-sample .quote-card cite a {
      color: #FEF201;
      text-decoration: none;
      border-bottom: 1px dashed rgba(254, 242, 1, 0.5);
    }
    body.dwz-page-sample .quote-card cite a:hover { border-bottom-style: solid; }

    /* ===== Buy band ===== */
    body.dwz-page-sample .buy-band {
      background: #FEF201;
      color: #0066AF;
      text-align: center;
      padding: 56px 24px;
    }
    body.dwz-page-sample .buy-band h2 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(26px, 4vw, 36px);
      color: #0066AF;
      margin-bottom: 10px;
    }
    body.dwz-page-sample .buy-band p {
      font-family: 'Lato', sans-serif;
      font-size: 17px;
      color: #0066AF;
      opacity: 0.85;
      margin-bottom: 22px;
    }
    body.dwz-page-sample .buy-band .buy-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0066AF;
      color: #FEF201;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.18s ease, transform 0.18s ease;
    }
    body.dwz-page-sample .buy-band .buy-btn:hover { background: #0d2438; transform: translateY(-1px); }

    /* ===== Cross-link cards ===== */
    body.dwz-page-sample .crosslinks {
      background: #FFF8E7;
    }
    body.dwz-page-sample .crosslink-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 12px;
    }
    body.dwz-page-sample .crosslink-card {
      background: #ffffff;
      border-radius: 10px;
      padding: 28px 24px 26px;
      text-decoration: none;
      color: #0066AF;
      box-shadow: 0 6px 22px rgba(20, 58, 86, 0.08);
      border: 1px solid rgba(0, 102, 175, 0.10);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
      display: block;
    }
    body.dwz-page-sample .crosslink-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 32px rgba(20, 58, 86, 0.14);
      border-color: rgba(0, 102, 175, 0.32);
    }
    body.dwz-page-sample .crosslink-card .ico {
      font-size: 30px;
      margin-bottom: 10px;
      display: block;
    }
    body.dwz-page-sample .crosslink-card h3 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: #0066AF;
      margin-bottom: 6px;
    }
    body.dwz-page-sample .crosslink-card p {
      font-family: 'Open Sans', sans-serif;
      font-size: 14.5px;
      color: #0066AF;
      opacity: 0.78;
      line-height: 1.5;
      margin-bottom: 12px;
    }
    body.dwz-page-sample .crosslink-card .arrow {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      font-size: 13.5px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #0066AF;
    }

    /* ===== Footer ===== */
    body.dwz-page-sample .footer {
      background: #0d2438;
      color: rgba(255,255,255,0.75);
      padding: 40px 24px 32px;
      text-align: center;
      font-size: 13.5px;
      line-height: 1.7;
    }
    body.dwz-page-sample .footer a { color: #FEF201; text-decoration: none; }
    body.dwz-page-sample .footer a:hover { text-decoration: underline; }
    body.dwz-page-sample .footer .credit {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.5);
    }

    /* ===== Mobile ===== */
    @media (max-width: 880px) {
      body.dwz-page-sample .inside-grid { grid-template-columns: 1fr; gap: 36px; }
      body.dwz-page-sample .inside-bookmock img { max-width: 240px; }
      body.dwz-page-sample .crosslink-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      body.dwz-page-sample section.block { padding: 50px 20px; }
      body.dwz-page-sample .hero { padding: 60px 20px 70px; }
      body.dwz-page-sample .hero-cta { font-size: 17px; padding: 16px 26px; }
      body.dwz-page-sample .optin-card { padding: 28px 22px; }
      body.dwz-page-sample .optin-row { grid-template-columns: 1fr; gap: 10px; }
      body.dwz-page-sample .quote-card blockquote { padding: 0 4px; }
    }
  


/* ═══════════════════════════════════════════════════════════════
   MIGRATED FROM jp/index.html — Japan page
   Scoped to body.dwz-page-jp
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-jp {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
      color: white;
      background: #0066AF;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
}


    
    body.dwz-page-jp * { box-sizing: border-box; }
    html {
      font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
      color: white;
      background: #0066AF;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body.dwz-page-jp main a { color: inherit; }
    body.dwz-page-jp main img { max-width: 100%; height: auto; display: block; }

    /* DEMO BANNER */
    body.dwz-page-jp .demo-banner {
      background: #1a1a1a;
      color: #FEF201;
      padding: 10px 20px;
      text-align: center;
      font-size: 13px;
      border-bottom: 2px solid #FEF201;
    }
    body.dwz-page-jp .demo-banner a { color: #FEF201; text-decoration: underline; }
    body.dwz-page-jp .demo-banner strong { color: white; }

    /* NAV */
    body.dwz-page-jp .nav {
      background: #0066AF;
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    body.dwz-page-jp .nav-brand {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 700;
      letter-spacing: 0.1em;
      font-size: 18px;
      text-decoration: none;
    }
    body.dwz-page-jp .nav-locale-switch {
      font-size: 13px;
      opacity: 0.85;
    }
    body.dwz-page-jp .nav-locale-switch a { color: #FEF201; text-decoration: none; margin-left: 12px; }

    /* HERO */
    body.dwz-page-jp .hero {
      background: linear-gradient(160deg, #0066AF 0%, #003560 100%);
      padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px) clamp(60px, 8vw, 100px);
    }
    body.dwz-page-jp .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }
    @media (min-width: 1024px) {
      body.dwz-page-jp .hero-inner { grid-template-columns: 1.2fr 1fr; gap: 80px; }
    }
    body.dwz-page-jp .hero-eyebrow {
      font-family: 'Noto Serif JP', serif;
      font-size: 14px;
      letter-spacing: 0.2em;
      color: #FEF201;
      margin-bottom: 16px;
      font-weight: 500;
    }
    body.dwz-page-jp .hero h1 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(32px, 5.5vw, 56px);
      font-weight: 700;
      line-height: 1.25;
      margin-bottom: 24px;
      color: white;
    }
    body.dwz-page-jp .hero h1 .yellow { color: #FEF201; }
    body.dwz-page-jp .hero .english-h1 {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 400;
      letter-spacing: 0.06em;
      opacity: 0.85;
      margin-bottom: 32px;
      font-style: italic;
    }
    body.dwz-page-jp .hero-sub {
      font-size: 17px;
      line-height: 1.85;
      opacity: 0.92;
      margin-bottom: 40px;
      max-width: 560px;
    }
    body.dwz-page-jp .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
    body.dwz-page-jp .cta {
      display: inline-block;
      padding: 18px 36px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      font-size: 17px;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    body.dwz-page-jp .cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    body.dwz-page-jp .cta-primary {
      background: #FEF201;
      color: #0066AF;
    }
    body.dwz-page-jp .cta-secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.4);
    }

    body.dwz-page-jp .affiliate-callout {
      background: #FEF201;
      color: #4A3B00;
      padding: 14px 18px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 600;
      max-width: 580px;
      line-height: 1.5;
      margin-top: 16px;
      border-left: 4px solid #B57F00;
    }

    /* FIX-4-JP-BALANCE */
    @media (min-width: 1024px) { body.dwz-page-jp .hero-inner { align-items: center !important; } body.dwz-page-jp .hero-text { align-self: center !important; padding-top: 0 !important; } body.dwz-page-jp .cta-row { gap: 18px !important; margin-top: 4px !important; margin-bottom: 36px !important; } }
    body.dwz-page-jp .hero-cover {
      position: relative;
      max-width: 380px;
      margin: 0 auto;
    }
    body.dwz-page-jp .hero-cover img {
      width: 100%;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      border-radius: 4px;
    }
    body.dwz-page-jp .publisher-badge {
      display: inline-block;
      background: rgba(255,255,255,0.1);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      letter-spacing: 0.05em;
      margin-top: 24px;
      backdrop-filter: blur(10px);
    }

    /* STATS BAR */
    body.dwz-page-jp .stats {
      background: #003560;
      padding: 48px 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    body.dwz-page-jp .stats-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 32px;
      text-align: center;
    }
    body.dwz-page-jp .stat-num {
      font-family: 'Josefin Sans', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 700;
      color: #FEF201;
    }
    body.dwz-page-jp .stat-label {
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.75;
      margin-top: 8px;
    }

    /* VIDEO */
    body.dwz-page-jp .video-section {
      background: #FFF8E7;
      color: #0066AF;
      padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px);
    }
    body.dwz-page-jp .video-inner { max-width: 1100px; margin: 0 auto; }
    body.dwz-page-jp .video-section h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      margin-bottom: 16px;
      color: #0066AF;
    }
    body.dwz-page-jp .video-section .lede {
      font-size: 18px;
      max-width: 700px;
      margin-bottom: 48px;
      color: #2C3E50;
    }
    body.dwz-page-jp .video-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 900px) { body.dwz-page-jp .video-grid { grid-template-columns: 1.4fr 1fr; } }
    body.dwz-page-jp .video-card {
      background: white;
      padding: 16px;
      border-radius: 12px;
      box-shadow: 0 4px 24px rgba(0, 102, 175, 0.1);
    }
    body.dwz-page-jp .video-frame {
      aspect-ratio: 16/9;
      border-radius: 8px;
      overflow: hidden;
    }
    body.dwz-page-jp .video-frame iframe { width: 100%; height: 100%; border: 0; }
    body.dwz-page-jp .video-card h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 18px;
      margin: 16px 8px 8px;
      color: #0074C7;
    }
    body.dwz-page-jp .video-card p {
      font-size: 14px;
      color: #5A6C7D;
      margin: 0 8px 8px;
    }
    body.dwz-page-jp .video-card .views {
      display: inline-block;
      background: #FEF201;
      color: #4A3B00;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      margin: 8px;
    }
    body.dwz-page-jp .video-card .publisher-blessed {
      background: #0074C7;
      color: white;
    }

    /* RETAILERS */
    body.dwz-page-jp .retailers {
      background: #0066AF;
      padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px);
    }
    body.dwz-page-jp .retailers-inner { max-width: 1100px; margin: 0 auto; }
    body.dwz-page-jp .retailers h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      margin-bottom: 32px;
      text-align: center;
    }
    body.dwz-page-jp .retailer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 40px;
    }
    body.dwz-page-jp .retailer-card {
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 24px;
      border-radius: 10px;
      text-decoration: none;
      color: white;
      transition: all 0.2s;
      text-align: center;
    }
    body.dwz-page-jp .retailer-card:hover {
      background: rgba(255,255,255,0.12);
      border-color: #FEF201;
      transform: translateY(-3px);
    }
    body.dwz-page-jp .retailer-card h4 {
      font-family: 'Noto Serif JP', serif;
      font-size: 18px;
      margin-bottom: 6px;
    }
    body.dwz-page-jp .retailer-card p {
      font-size: 12px;
      opacity: 0.7;
      margin: 0;
    }
    body.dwz-page-jp .retailer-card.primary {
      background: #FEF201;
      color: #0066AF;
      border-color: #FEF201;
    }
    body.dwz-page-jp .retailer-card.primary p { color: #4A3B00; opacity: 1; }

    /* PRESS */
    body.dwz-page-jp .press {
      background: #FFF8E7;
      color: #0066AF;
      padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 60px);
    }
    body.dwz-page-jp .press-inner { max-width: 1100px; margin: 0 auto; }
    body.dwz-page-jp .press h2 {
      font-family: 'Noto Serif JP', serif;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      margin-bottom: 16px;
      color: #0066AF;
    }
    body.dwz-page-jp .press .lede {
      font-size: 17px;
      max-width: 700px;
      margin-bottom: 48px;
      color: #2C3E50;
    }
    body.dwz-page-jp .press-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
    }
    body.dwz-page-jp .press-item {
      background: white;
      padding: 24px;
      border-radius: 10px;
      border-left: 4px solid #FEF201;
      box-shadow: 0 2px 12px rgba(0, 102, 175, 0.08);
    }
    body.dwz-page-jp .press-item .outlet {
      font-family: 'Noto Serif JP', serif;
      font-weight: 700;
      color: #0074C7;
      font-size: 16px;
      margin-bottom: 4px;
    }
    body.dwz-page-jp .press-item .date {
      font-size: 12px;
      color: #5A6C7D;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    body.dwz-page-jp .press-item .verify {
      display: inline-block;
      background: #FFE4A8;
      color: #4A3B00;
      padding: 2px 8px;
      border-radius: 3px;
      font-size: 10px;
      font-weight: 700;
      margin-left: 8px;
    }
    body.dwz-page-jp .press-item p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: #2C3E50; }

    /* FOOTER */
    body.dwz-page-jp .footer {
      background: #003560;
      padding: 60px 24px 40px;
      text-align: center;
    }
    body.dwz-page-jp .footer p {
      font-size: 13px;
      opacity: 0.7;
      max-width: 700px;
      margin: 0 auto 8px;
      line-height: 1.7;
    }
    body.dwz-page-jp .footer a { color: #FEF201; }
  


/* ═══════════════════════════════════════════════════════════════
   Press section additions: 2-col tiles + pull-quote band
   ═══════════════════════════════════════════════════════════════ */
.press-tiles--2col {
  grid-template-columns: 1fr !important;
}
@media (min-width: 720px) {
  .press-tiles--2col { grid-template-columns: 1fr 1fr !important; }
}

.press-pullquotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0 56px;
}
@media (min-width: 760px) {
  .press-pullquotes { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.press-pullquote {
  margin: 0;
  padding: 24px 24px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--dwz-yellow);
  border-radius: 10px;
}
.press-pullquote blockquote {
  margin: 0 0 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}
.press-pullquote blockquote em { font-style: normal; font-weight: 400; }
.press-pullquote figcaption {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  font-family: 'Open Sans', sans-serif;
}
.press-pullquote figcaption a {
  color: var(--dwz-yellow);
  font-weight: 600;
}
.press-pullquote figcaption a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   Author section (.dwz-author) — cream/light theme so it breaks
   visually from the navy press section above (and the navy
   mental-models section that comes later).
   ═══════════════════════════════════════════════════════════════ */
.dwz-author {
  background: var(--dwz-cream);
  color: var(--dwz-ink-soft);
  padding: 88px 0 96px;
}
.dwz-author .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.dwz-author .eyebrow {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: var(--dwz-navy-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dwz-author h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 36px;
  color: var(--dwz-navy);
}

/* Override the .author-bio family (originally designed for navy bg)
   so text reads correctly on the cream Author section. */
.dwz-author .author-bio {
  color: var(--dwz-ink-soft);
}
.dwz-author .author-bio strong {
  color: var(--dwz-navy);
  font-weight: 700;
}
.dwz-author .author-bio em { color: inherit; }
.dwz-author .author-thesis {
  color: var(--dwz-navy);
  border-left: 3px solid var(--dwz-yellow);
  background: rgba(255,255,255,0.55);
  padding: 14px 18px;
  margin-top: 24px;
  border-radius: 0 6px 6px 0;
}
.dwz-author .author-photo {
  /* navy backdrop + yellow ring still works against cream */
  background: var(--dwz-navy);
}


/* ═══════════════════════════════════════════════════════════════
   Post-conversion success page (/success-download-pdf/)
   Lands here from Drip after the mental-models PDF signup confirms.
   ═══════════════════════════════════════════════════════════════ */
body.dwz-page-success {
  background: var(--dwz-navy);
  color: #fff;
  font-family: 'Lato', 'Open Sans', system-ui, sans-serif;
  line-height: 1.55;
}
body.dwz-page-success main { min-height: calc(100vh - 64px - 280px); display: flex; align-items: center; }
body.dwz-page-success .success-card {
  width: 100%;
  padding: 80px clamp(20px, 5vw, 60px);
}
body.dwz-page-success .success-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
body.dwz-page-success .success-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dwz-yellow);
  margin: 0 0 16px;
}
body.dwz-page-success h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: -0.01em;
}
body.dwz-page-success .success-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.86);
  margin: 0 0 36px;
  line-height: 1.55;
}
body.dwz-page-success .success-cover {
  display: block;
  margin: 0 auto 36px;
  width: 220px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 56px -12px rgba(0,0,0,0.55);
}
body.dwz-page-success .success-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dwz-yellow);
  color: #0a1726;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 14px 38px -8px rgba(254, 242, 1, 0.55), 0 4px 0 0 rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
body.dwz-page-success .success-download:hover {
  transform: translateY(-2px);
  background: #fff84d;
  box-shadow: 0 20px 46px -8px rgba(254, 242, 1, 0.7), 0 6px 0 0 rgba(0,0,0,0.18);
}
body.dwz-page-success .success-download-icon {
  font-size: 1.4rem;
  line-height: 1;
}
body.dwz-page-success .success-note {
  margin: 26px 0 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* Wider variant for instruction-heavy pages (e.g., /private-time-bucket-ebook/) */
body.dwz-page-success .success-inner--wide { max-width: 720px; }

/* Yellow-dashed instructions panel (matches original ClickFunnels accent) */
body.dwz-page-success .success-instructions {
  border: 2px dashed var(--dwz-yellow);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 32px 0 36px;
  text-align: left;
  background: rgba(255,255,255,0.03);
}
body.dwz-page-success .success-instructions h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dwz-yellow);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}
body.dwz-page-success .success-instructions ol {
  margin: 0;
  padding-left: 26px;
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.7;
}
body.dwz-page-success .success-instructions ol li { margin-bottom: 6px; }
body.dwz-page-success .success-instructions ol li:last-child { margin-bottom: 0; }
body.dwz-page-success .success-instructions em {
  color: var(--dwz-yellow);
  font-style: normal;
  font-weight: 700;
}
