@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/bricolage-grotesque-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #171513;
  --muted: #6d6861;
  --cream: #f6f4ef;
  --paper: #fffaf2;
  --white: #ffffff;
  --orange: #f0844e;
  --orange-dark: #d9672e;
  --yellow: #f6c143;
  --green: #baea85;
  --blue: #a6c2ff;
  --line: #ebe2d7;
  --dark: #1e1c1b;
  --shadow: 0 18px 44px rgba(32, 28, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.45;
}
a { color: inherit; }
.wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.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;
}
.skip-link {
  position: absolute;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform .16s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 0 0;
  color: #6e675f;
  font-size: 14px;
  font-weight: 800;
}
.breadcrumbs a {
  color: #3e3934;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--orange-dark);
}
.breadcrumbs > * + *::before {
  content: "/";
  margin: 0 10px;
  color: #c8bdb0;
}
.breadcrumbs span[aria-current="page"] {
  color: #8a8177;
}
.promo-bar {
  background: #11100f;
  color: #fffaf2;
  border-bottom: 1px solid rgba(235, 226, 215, .18);
}
.promo-inner {
  min-height: 42px;
  width: min(100% - 72px, 1480px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.promo-sep {
  color: var(--orange);
}
.promo-inner a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 13px 6px;
  border-radius: 999px;
  background: #fffaf2;
  color: #171513;
  text-decoration: none;
  white-space: nowrap;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 235, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(235, 226, 215, .65);
}
.nav {
  width: min(100% - 72px, 1480px);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  width: 214px;
  height: auto;
  max-width: 100%;
}
.header-search {
  flex: 0 1 310px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 220px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(34, 30, 26, .06);
}
.header-search input {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 0 8px 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}
.header-search input::placeholder {
  color: #8d857c;
  opacity: 1;
}
.header-search button {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #11100f;
  cursor: pointer;
}
.header-search button:hover,
.header-search button:focus-visible {
  background: var(--orange-dark);
  outline: none;
}
.header-search svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf5;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(34, 30, 26, .06);
}
.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.nav.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav a:not(.brand) {
  color: #2c2926;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.nav .nav-pill {
  background: var(--orange);
  color: #111;
  padding: 10px 17px;
  border-radius: 999px;
}
@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 54px;
}
.hero::after,
.decor-ring {
  display: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  width: min(100% - 72px, 1480px);
}
.hero-grid:has(.mobile-hero-plain) > div:first-child {
  display: none;
}
.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(36px, 3.75vw, 54px);
}
.home-hero .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.05;
}
.eyebrow {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: 0;
}
h1 {
  max-width: 700px;
  margin: 10px 0 18px;
  font-size: clamp(36px, 4.25vw, 56px);
  line-height: 1.2;
  font-weight: 700;
}
h1 .accent, h2 .accent { color: var(--orange); }
h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.2;
  font-weight: 700;
}
h3 { margin: 0 0 8px; font-size: 24px; line-height: 1.4; font-weight: 700; }
.lead {
  max-width: 620px;
  color: #38322d;
  font-size: 18px;
  line-height: 1.6;
}
.muted { color: var(--muted); }
.hero-actions,
.buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 24px; }
.mobile-hero-plain { display: block; }
.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hero-quick span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #332e29;
  font-size: 15px;
  font-weight: 900;
  box-shadow: none;
}
.hero-quick span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  box-shadow: none;
}
.payment-button {
  gap: 9px;
  white-space: nowrap;
}
.payment-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
}
.payment-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.payment-label {
  font-weight: 900;
}
.paypal-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}
.paypal-wordmark span:first-child {
  color: #003087;
}
.paypal-wordmark span:last-child {
  color: #009cde;
}
.btn-primary { background: var(--orange); color: #15110f; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-paypal {
  gap: 5px;
  border-color: #b9d8f2;
  background: #f7fbff;
  color: #111;
  border: 1px solid #b9d8f2;
}
.btn-paypal:hover {
  border-color: #91c9f3;
  background: #edf7ff;
}
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 800;
  color: var(--muted);
  max-width: 560px;
}
.avatars { display: flex; }
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 3px solid var(--cream);
  margin-left: -10px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(34, 30, 26, .12);
  overflow: hidden;
  background: #fff;
}
.avatar:first-child { margin-left: 0; }
.avatar::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-top: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 17px 0 9px rgba(255,255,255,.9);
}
.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.avatar:has(img)::before { display: none; }
.avatar-count {
  background: var(--orange);
  color: #111;
  border-color: #fff;
}
.avatar-count::before { display: none; }
.hero-visual {
  position: relative;
  min-height: 520px;
}
.hero-visual-image {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-visual-image img {
  width: min(100%, 720px);
  height: auto;
  display: block;
  border-radius: 34px;
}
.home-template-visual {
  min-height: auto;
  display: grid;
  gap: 14px;
  align-self: center;
}
.home-template-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid #f2c2a5;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(240, 132, 78, .13), transparent 28%),
    #fffaf5;
  box-shadow: 0 24px 70px rgba(34, 30, 26, .12);
}
.home-template-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}
.home-template-top strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  color: var(--ink);
}
.home-template-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.home-template-card h2 {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}
.home-template-card p:not(.eyebrow) {
  margin: 18px 0;
  color: #514941;
  font-size: 17px;
  line-height: 1.45;
}
.home-template-card b {
  color: #312c27;
}
.mask {
  display: inline-block;
  height: 16px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.12) 0 8px, transparent 8px 16px),
    #38322d;
  vertical-align: middle;
}
.mask.short { width: 120px; }
.mask.medium { width: 220px; max-width: 44vw; }
.mask.wide { width: 340px; max-width: 55vw; }
.home-template-note {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding: 18px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: #fff;
}
.home-template-note strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
}
.home-template-note span {
  color: #5f5750;
  font-size: 15px;
  line-height: 1.5;
}
.home-template-caption {
  max-width: 620px;
  margin: 0 0 0 8px;
  color: #6b625a;
  font-size: 14px;
  font-weight: 800;
}
.home-real-preview {
  justify-items: center;
}
.home-real-preview-frame {
  width: min(100%, 560px);
  max-height: 560px;
  overflow: hidden;
  border: 1px solid #efc7a9;
  border-radius: 28px;
  background: #f4f1ed;
  box-shadow: 0 24px 70px rgba(34, 30, 26, .12);
}
.home-real-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-8%);
}
.home-real-preview .home-template-caption {
  width: min(100%, 560px);
  margin-left: 0;
  line-height: 1.45;
}
.home-pdf-preview {
  justify-items: center;
}
.home-pdf-preview .pdf-document-viewer {
  width: min(100%, 620px);
}
.home-pdf-preview .pdf-viewer-scroll {
  height: clamp(420px, 42vw, 600px);
}
.home-pdf-preview .pdf-page-preview {
  width: min(100%, 500px);
}
.home-pdf-preview .pdf-page-preview figcaption {
  display: none;
}
.home-pdf-preview .pdf-viewer-caption {
  width: min(100%, 620px);
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.blob {
  position: absolute;
  inset: 42px 70px 48px 80px;
  border-radius: 45% 55% 50% 50%;
  background: #ebe6dc;
}
.media-card {
  position: absolute;
  background: #fff;
  border-radius: 25px;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 255, 255, .82);
  overflow: hidden;
}
.media-card.main {
  width: 260px;
  height: 270px;
  right: 92px;
  top: 108px;
  background: linear-gradient(145deg, #ffe1c8, #fff4dc 42%, #d6f7b7);
  display: grid;
  place-items: center;
}
.mock-pdf {
  width: 150px;
  height: 190px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.16);
  padding: 16px;
  position: relative;
}
.mock-pdf::before {
  content: "PDF";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
}
.mock-pdf span { display: block; height: 8px; border-radius: 20px; background: #202020; margin-bottom: 12px; }
.mock-pdf i { display: block; height: 7px; border-radius: 20px; background: #e6ded3; margin: 9px 0; }
.mock-pdf b { display: block; width: 58px; height: 26px; border-radius: 999px; background: var(--orange); margin-top: 18px; }
.bubble {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 27px;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
  background: #fff;
}
.bubble.one { left: 86px; top: 84px; background: var(--blue); }
.bubble.two { right: 38px; top: 74px; background: #f3bfd0; }
.bubble.three { left: 170px; bottom: 58px; background: var(--yellow); }
.bubble.four { right: 56px; bottom: 44px; background: #bcefe1; }
.tag {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.tag.left { left: 40px; top: 260px; }
.tag.right { right: 12px; top: 258px; }
.logos {
  padding: 26px 0 34px;
  text-align: center;
  overflow: hidden;
}
.logos p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.source-marquee {
  border-top: 1px solid rgba(232, 221, 207, .68);
  border-bottom: 1px solid rgba(232, 221, 207, .68);
  background: rgba(255, 250, 244, .58);
}
.logo-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  animation: source-marquee 28s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}
.logo-marquee-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(58px, 8vw, 128px);
  padding: 18px clamp(29px, 4vw, 64px) 12px;
}
.source-logo-flat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(130px, 11vw, 190px);
  height: 58px;
  opacity: .78;
  filter: grayscale(1) contrast(.9);
  transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.source-logo-flat:hover,
.source-logo-flat:focus-visible {
  opacity: 1;
  filter: grayscale(.15) contrast(1);
  transform: translateY(-1px);
}
.source-logo-flat img {
  display: block;
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes source-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation-duration: 80s;
  }
  .sticky-buy-bar {
    transition: none;
  }
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(110px, 1fr));
  gap: 14px;
}
.logo-tile,
.card,
.panel {
  background: var(--white);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(34, 30, 26, .09);
}
.logo-tile {
  padding: 14px 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}
.source-logo {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 24px;
}
.source-logo img {
  display: block;
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.section { padding: 78px 0; position: relative; }
@supports (content-visibility: auto) {
  main > .section:not(:first-child),
  main > .logos,
  .sales-letter,
  .seo-product-section,
  .editorial-proof-section,
  .article-teaser-section,
  .faq-section,
  .related-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 860px;
  }
}
.section.white { background: #fff; }
.how-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-section .lead {
  margin: 0 auto;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.how-step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.how-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #15110f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.intent-section {
  padding: 82px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.intent-section .lead {
  margin-left: auto;
  margin-right: auto;
}
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}
.intent-grid a,
.intent-card {
  min-height: 176px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf5;
  color: var(--ink);
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(34, 30, 26, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.intent-grid a:hover,
.intent-grid a:focus-visible,
.intent-card:hover,
.intent-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(34, 30, 26, .12);
  outline: none;
}
.intent-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.intent-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 999px;
  background: var(--orange);
}
.intent-grid strong {
  max-width: 32ch;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  text-decoration: none !important;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.method-hero .article-side-card strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}
.method-intro {
  max-width: 880px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.method-intro h2 {
  max-width: 780px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.02;
}
.method-intro p:last-child {
  max-width: 760px;
  margin: 0;
  color: #3d352f;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}
.method-steps article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf5;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.method-steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #15110f;
  font-size: 22px;
  font-weight: 900;
}
.method-steps h2 {
  margin-bottom: 10px;
  font-size: 28px;
}
.method-proof-list p strong {
  color: var(--orange-dark);
}
.method-cta-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #f0c9a8;
  border-radius: 18px;
  background: #fff4e8;
  box-shadow: 0 18px 42px rgba(34, 30, 26, .08);
}
.method-cta-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.05;
}
.method-cta-card p {
  max-width: 48ch;
  margin: 0 0 22px;
  color: #4f4841;
  font-size: 18px;
  line-height: 1.6;
}
.method-steps p,
.trust-list p,
.manifesto-grid p {
  color: #4f4841;
  font-size: 17px;
  line-height: 1.65;
}
.trust-list {
  display: grid;
  gap: 14px;
}
.trust-list p {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.manifesto-grid article {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf5;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.manifesto-grid h2 {
  font-size: clamp(25px, 2.2vw, 34px);
}
.hub-hero .article-side-card strong {
  font-size: clamp(24px, 2.4vw, 32px);
}
.hub-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: -26px;
  margin-bottom: 34px;
}
.hub-switch {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #eadaca;
  border-radius: 999px;
  background: #fffaf5;
  color: #554b42;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 850;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.hub-switch:hover,
.hub-switch:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(235, 99, 45, .38);
  background: #fff2e9;
  color: var(--orange-dark);
}
.hub-switch.active {
  background: #171310;
  border-color: #171310;
  color: #fff;
}
.hub-case-section {
  padding-top: 24px;
}
.hub-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hub-case-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(34, 30, 26, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.hub-case-card:hover,
.hub-case-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(235, 99, 45, .36);
  box-shadow: 0 20px 48px rgba(34, 30, 26, .10);
}
.hub-case-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff2e9;
  color: var(--orange-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hub-case-card h3 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.08;
}
.hub-case-card p {
  margin: 0;
  color: #5f5750;
  font-size: 15.5px;
  line-height: 1.5;
}
.hub-case-card strong {
  margin-top: auto;
  color: var(--orange-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
}
.hub-decision-section {
  padding-top: clamp(48px, 6vw, 86px);
  padding-bottom: clamp(48px, 6vw, 86px);
  border-top: 1px solid rgba(232, 221, 207, .7);
  border-bottom: 1px solid rgba(232, 221, 207, .7);
}
.hub-decision-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 30, 26, .07);
}
.hub-decision-row {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(260px, 1fr) minmax(190px, .72fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 221, 207, .85);
  transition: background .2s ease, transform .2s ease;
}
.hub-decision-row:last-child {
  border-bottom: 0;
}
.hub-decision-row:hover,
.hub-decision-row:focus-visible {
  background: #fff7f0;
}
.hub-decision-row span,
.hub-decision-row em {
  font-style: normal;
  color: #5f5750;
  font-size: 15.5px;
  line-height: 1.45;
}
.hub-decision-row span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 900;
  color: var(--orange-dark);
}
.hub-decision-row strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
}
.hub-open-checklist {
  border-top: 1px solid rgba(232, 221, 207, .7);
  border-bottom: 1px solid rgba(232, 221, 207, .7);
}
.hub-editorial-note {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
  border-bottom: 1px solid rgba(232, 221, 207, .7);
}
.open-checklist-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 30, 26, .08);
}
.open-checklist-card ol {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: open-checklist;
}
.open-checklist-card li {
  counter-increment: open-checklist;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  color: #4f4841;
  line-height: 1.55;
}
.open-checklist-card li::before {
  content: counter(open-checklist) ".";
  grid-row: span 2;
  color: var(--orange-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 900;
}
.open-checklist-card strong {
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  line-height: 1.25;
}
.open-checklist-card span {
  grid-column: 2;
}
.catalog-hero { padding: 34px 0 22px; }
.catalog-head {
  display: block;
}
.catalog-hero-shell {
  max-width: 1240px;
  min-height: 310px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(232, 221, 207, .78);
  border-radius: 18px;
  background: #fffaf5;
  box-shadow: 0 20px 54px rgba(34, 30, 26, .08);
  text-align: center;
}
.catalog-hero-shell .eyebrow {
  margin: 0;
}
.catalog-head h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
}
.catalog-head .lead {
  max-width: 760px;
  margin: 0;
  color: #3d352f;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.42;
}
.catalog-search {
  width: min(760px, 100%);
  display: grid;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(34, 30, 26, .10);
}
.catalog-search label {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.search-row input {
  min-height: 56px;
  border: 0;
  background: transparent;
  font-size: 19px;
  box-shadow: none;
}
.search-row input:focus {
  outline: none;
  box-shadow: none;
}
.search-row .btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
}
.catalog-section { padding-top: 28px; }
.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-pills .pill {
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(34, 30, 26, .06);
}
.filter-pills .pill.active,
.filter-pills .pill:hover {
  background: var(--orange);
  color: #15110f;
}
.catalog-card[hidden] { display: none; }
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.card-tags { display: none; }
.two-col {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.mini-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.38);
}
.icon.green { background: var(--green); }
.icon.blue { background: var(--blue); }
.icon.orange { background: #ffbc73; }
.icon svg { width: 29px; height: 29px; }
.icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.center { text-align: center; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card p {
  font-size: 12px;
}
.product-card {
  min-height: 330px;
  padding: 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border: 1px solid rgba(224, 210, 195, .72);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(34, 30, 26, .14);
  border-color: rgba(244, 126, 75, .38);
}
.pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: #f4eadf;
  color: #4a4038;
  font-size: 13px;
  font-weight: 900;
}
.product-top {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
}
.product-card .pill { display: none; }
.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: var(--yellow);
  box-shadow: none;
}
.product-icon svg {
  width: 36px;
  height: 36px;
}
.product-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.product-card-body {
  display: grid;
  gap: 12px;
}
.product-card h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 23px);
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 100%;
  font-weight: 800;
}
.demand-badge { display: none; }
.product-card .muted {
  color: #5f5750;
  font-size: 14px;
  line-height: 1.45;
}
.card-result {
  margin: 0;
  color: #4f4740;
  font-size: 16px !important;
  line-height: 1.45;
  font-weight: 650;
}
.card-result span {
  display: none;
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.card-delivery {
  display: none;
  gap: 10px;
  margin-top: 2px;
}
.card-delivery p,
.card-use p {
  margin: 0;
  color: #5f5750;
  font-size: 12px;
  line-height: 1.45;
}
.card-delivery strong,
.card-use strong {
  display: inline;
  margin: 0 5px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.product-card:nth-child(3n+2) .product-icon { background: var(--green); }
.product-card:nth-child(3n) .product-icon { background: var(--blue); }
.learn-more { color: var(--orange-dark); font-weight: 800; font-size: 14px; }
.catalog-meta strong {
  font-size: 14px;
  font-weight: 800;
}
.catalog-meta .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 800;
}

.related-card strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 17px;
}
.catalog-meta .learn-more::after,
.related-card strong::after {
  content: '\203A';
  font-size: 20px;
  line-height: 1;
}
.upcoming-guides {
  padding-top: 64px;
  background: #f7f3ee;
}
.upcoming-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.upcoming-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}
.upcoming-head .lead {
  max-width: 760px;
  margin-top: 18px;
}
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.upcoming-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(224, 210, 195, .84);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(34, 30, 26, .07);
}
.upcoming-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4e8;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
}
.upcoming-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
}
.upcoming-card p {
  margin: 0;
  color: #4f4740;
  font-size: 16px;
  line-height: 1.48;
}
.upcoming-card strong {
  align-self: end;
  color: #7a7066;
  font-size: 13px;
  font-weight: 900;
}
.related-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.related-head h2 {
  max-width: 780px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.related-grid > a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-grid > a.card:hover,
.related-grid > a.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(34, 30, 26, .13);
}
.related-grid > a.card h3,
.related-grid > a.related-card {
  min-height: 344px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px;
  background: #fff;
  border: 0;
  border-radius: 22px;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(34, 30, 26, .09);
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(34, 30, 26, .13);
}
.related-card h3 {
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.18;
}
.related-card p {
  margin: 0;
  color: #2f2a25;
  font-size: 16px;
  line-height: 1.5;
}
.related-card strong {
  margin-top: auto;
  color: var(--orange-dark);
}
.related-icon .product-icon {
  width: 82px;
  height: 82px;
}
.related-icon .product-icon svg {
  width: 43px;
  height: 43px;
}
.related-icon .product-icon img {
  width: 62px;
  height: 62px;
}
.dark-section {
  background: var(--dark);
  color: #fff;
  padding: 88px 0 82px;
}
.dark-section .muted { color: #d1c8bd; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.featured-card {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.featured-card:hover { transform: translateY(-5px); }
.featured-art {
  min-height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: #f75a9d;
  isolation: isolate;
}
.featured-art::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 120px;
  border-radius: 48% 52% 55% 45%;
  background: rgba(255,255,255,.28);
  transform: rotate(-12deg);
  z-index: -1;
}
.featured-art::after {
  display: none;
}
.featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.featured-icon {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.76);
  color: #171717;
  border: 6px solid rgba(255,255,255,.36);
}
.featured-icon svg {
  width: 48px;
  height: 48px;
}
.featured-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}
.featured-card:nth-child(2) .featured-art { background: #c8ce45; }
.featured-card:nth-child(3) .featured-art { background: #f8dd81; }
.featured-body {
  padding: 26px;
  display: grid;
  gap: 14px;
  min-height: 270px;
}
.featured-body .muted {
  color: #5f5750;
}
.featured-body h3 {
  font-size: 25px;
  line-height: 1.25;
}
.stars {
  color: #f3a51e;
  letter-spacing: 0;
  font-size: 20px;
}
.article-featured-card .stars {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f0e8dc;
}
.featured-footer strong,
.featured-footer span {
  color: var(--orange-dark);
  font-weight: 900;
}
.panel {
  padding: 28px;
}
.checkout-panel {
  display: grid;
  gap: 8px;
  align-self: start;
  padding: clamp(16px, 1.6vw, 20px);
}
.checkout-summary {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0e7dc;
}
.checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.checkout-summary .eyebrow {
  margin: 0;
}
.checkout-summary h2 {
  margin: 0;
  font-size: clamp(21px, 1.7vw, 25px);
  line-height: 1.05;
}
.checkout-summary > .muted {
  max-width: 56ch;
  margin: 0;
  font-size: 15.5px;
  line-height: 1.42;
}
.checkout-delivery {
  margin: 0;
  color: #5f5750;
  font-size: 12.5px;
  line-height: 1.4;
}
.checkout {
  display: grid;
  gap: 7px;
  margin-top: 0;
}
.checkout label:not(.terms-check) {
  gap: 6px;
}
.checkout label:not(.terms-check),
.checkout input,
.checkout textarea {
  font-size: 14px;
}
.checkout input::placeholder,
.checkout textarea::placeholder {
  font-size: 14px;
}
.optional-label {
  color: #8a7f75;
  font-size: 12px;
  font-weight: 800;
}
.checkout-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.checkout-disclosure {
  min-width: min(100%, 180px);
  color: #675d54;
}
.checkout-disclosure summary {
  cursor: pointer;
  width: max-content;
  list-style: none;
  color: #5f5750;
  font-size: 12.5px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkout-disclosure summary::-webkit-details-marker {
  display: none;
}
.checkout-disclosure-body {
  display: grid;
  gap: 7px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #efe3d4;
  border-radius: 12px;
  background: #fffaf5;
}
.first-purchase-promo {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border: 1px solid #f2c7ad;
  border-radius: 16px;
  background: #fff4ea;
  color: #3f332b;
}
.first-purchase-promo strong {
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}
.first-purchase-promo span {
  color: #65584e;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}
.first-purchase-promo b {
  color: var(--orange-dark);
  font-weight: 950;
}
.checkout-price {
  transition: color .16s ease, transform .16s ease;
}
.checkout-price.is-discounted {
  color: var(--orange-dark);
  transform: translateY(-1px);
}
.promo-applied-note {
  margin: 0;
  padding: 6px 8px;
  border-radius: 9px;
  background: #eefbe8;
  color: #315225;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
}
.promo-applied-note[hidden] {
  display: none;
}
.checkout .buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9px;
  margin-top: 0;
}
.checkout .buttons .btn {
  width: 100%;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  font-size: 13.5px;
}
.checkout-panel > .muted:last-child {
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #efe3d4;
  color: #6b625a;
  font-size: 11px;
  line-height: 1.5;
}
label { display: grid; gap: 7px; font-size: 14px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  background: #fff;
}
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
}
.terms-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--orange);
}
.terms-check a {
  color: var(--ink);
  font-weight: 900;
}
.terms-legal {
  color: #5f5750;
  font-size: 12px;
}
.payment-note {
  margin: 0 0 -2px;
  color: #51483f;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.35;
}
.checkout-legal-note {
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid #efe3d4;
  color: #766d64;
  font-size: 11.5px;
  line-height: 1.45;
}
.sticky-buy-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  width: min(560px, calc(100% - 32px));
  transform: translate(-50%, calc(100% + 34px));
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .18s ease;
}
.sticky-buy-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(235, 226, 215, .95);
  border-radius: 999px;
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 18px 46px rgba(23, 21, 19, .18);
  backdrop-filter: blur(14px);
}
.sticky-buy-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}
.sticky-buy-copy strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}
.sticky-buy-copy span {
  color: #6a6259;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.sticky-buy-button {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
}
.has-sticky-buy .footer {
  scroll-margin-bottom: 90px;
}
.gift-box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.gift-toggle {
  color: var(--ink);
  font-size: 12px;
}
.gift-fields {
  display: none;
  gap: 9px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eadcc9;
}
.gift-fields p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}
.gift-box:has(input[name="gift_purchase"]:checked) .gift-fields {
  display: grid;
}
.gift-fields textarea {
  min-height: 94px;
  border-radius: 18px;
  resize: vertical;
}
.card { padding: 28px; }
.product-card { padding: 28px; }
.legal-page { padding: 50px 0 76px; }
.legal-page h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.7vw, 50px);
}
.legal-content {
  padding: clamp(30px, 4vw, 52px);
  max-width: 980px;
  border-radius: 18px;
}
.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.25;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  max-width: 86ch;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
}
.checkout-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.checkout-includes span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff7ef;
  color: #4d4038;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 12.5px;
  font-weight: 800;
}
.checkout-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4d4038;
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.35;
}
.checkout-mini-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.checkout-mini-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
}
.checkout-panel .checkout-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 8px;
  margin: 0;
  padding: 0;
  color: #6d6259;
  font-size: 11.5px;
  font-weight: 750;
  line-height: 1.35;
}
.checkout-panel .checkout-trust span,
.checkout-panel .checkout-trust a {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #6d6259;
  font-size: 11.5px;
  font-weight: 750;
  text-decoration-thickness: 1px;
}
.checkout-panel .checkout-trust .trust-main {
  color: var(--ink);
  font-weight: 900;
}
.checkout-panel .checkout-trust span:not(:last-child)::after,
.checkout-panel .checkout-trust a:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin-left: 7px;
  color: #cc6b3d;
  text-decoration: none;
}
.checkout-panel .checkout-trust a:hover,
.checkout-panel .checkout-trust a:focus-visible {
  color: var(--orange-dark);
}
.form-help {
  margin: -2px 0 0;
  color: #736a61;
  font-size: 12px;
  line-height: 1.45;
}
.price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: .95;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
}
.benefits { display: grid; gap: 12px; padding: 0; margin: 24px 0; list-style: none; }
.benefits li { display: flex; gap: 11px; align-items: flex-start; }
.compact-benefits {
  max-width: 720px;
  margin: 18px 0 20px;
  gap: 10px;
}
.compact-benefits li {
  color: #34302b;
  font-size: 16px;
  line-height: 1.5;
}
.product-hero-quick {
  max-width: 680px;
  margin-top: 18px;
}
.product-hero-quick span {
  font-size: 13px;
}
.sales-opener {
  max-width: 640px;
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,.72);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.sales-opener p { margin: 0; color: #38322d; line-height: 1.65; }
.product-clarity-box {
  display: grid;
  gap: 8px;
  max-width: 660px;
  margin: 22px 0 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(34, 30, 26, .06);
}
.product-clarity-box p {
  margin: 0;
  color: #403832;
  font-size: 16px;
  line-height: 1.45;
}
.product-clarity-box strong {
  color: #171412;
  font-weight: 900;
}
.direct-answer-section {
  padding-top: 0;
  padding-bottom: clamp(30px, 4vw, 48px);
  background: #fff;
}
.direct-answer {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  background: #fffaf5;
  box-shadow: 0 16px 38px rgba(34, 30, 26, .06);
}
.direct-answer-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
}
.direct-answer-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #f0c9a8;
  border-radius: 999px;
  background: #fff7ef;
  color: var(--orange-dark);
}
.direct-answer-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
.direct-answer h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.04;
}
.direct-answer p:last-child {
  max-width: 800px;
  margin: 0;
  color: #3d352f;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}
.template-showcase {
  background: #fffaf5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-template-showcase {
  padding: clamp(42px, 4.5vw, 62px) 0;
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}
.template-showcase .two-col {
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.template-showcase .two-col > * {
  min-width: 0;
}
.template-showcase h2 {
  max-width: 430px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.06;
}
.template-showcase .lead {
  max-width: 430px;
  font-size: 17px;
  line-height: 1.55;
}
.pdf-redacted-preview {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: 18px;
  border: 1px solid #efc7a9;
  background: linear-gradient(135deg, #fff 0%, #fff7ee 100%);
  box-shadow: 0 20px 46px rgba(34, 30, 26, .08);
}
.pdf-real-scroll {
  padding: clamp(14px, 2vw, 20px);
}
.pdf-scroll-window {
  position: relative;
  height: clamp(300px, 35vw, 430px);
  border: 1px solid #ead7c5;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.pdf-scroll-window::before,
.pdf-scroll-window::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  height: 54px;
  pointer-events: none;
}
.pdf-scroll-window::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,0));
}
.pdf-scroll-window::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255,255,255,.96), rgba(255,255,255,0));
}
.pdf-scroll-window img {
  display: block;
  width: 100%;
  height: auto;
  transform: none;
}
.pdf-preview-page {
  position: relative;
  display: grid;
  gap: 11px;
  min-height: 360px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid #ead7c5;
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 16%, rgba(240, 132, 78, .12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
  overflow: hidden;
}
.pdf-preview-page.real-pdf-preview {
  gap: 13px;
  min-height: 390px;
  background:
    radial-gradient(circle at 86% 12%, rgba(240, 132, 78, .09), transparent 26%),
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}
.pdf-preview-logo {
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 900;
}
.pdf-preview-kicker {
  margin-top: 20px;
  color: var(--orange-dark);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.preview-title {
  margin-top: 10px;
  color: var(--ink);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}
.preview-textline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #342d27;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.real-template-copy {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 18px 0 2px;
  border-top: 1px solid rgba(234, 215, 197, .75);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}
.real-template-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: #2f2a26;
  font-size: clamp(12px, 1.15vw, 14px);
  font-weight: 700;
  line-height: 1.7;
}
.template-field-mask {
  display: inline-block;
  height: 13px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, #211d19 0 8px, #3a332d 8px 16px);
  transform: translateY(2px);
}
.template-field-mask.wide { width: min(360px, 58vw); }
.template-field-mask.medium { width: min(260px, 46vw); }
.template-field-mask.short { width: 112px; }
.mask {
  display: inline-block;
  width: 150px;
  height: 14px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, #211d19 0 8px, #3a332d 8px 16px);
  transform: translateY(2px);
}
.mask.wide { width: min(290px, 68vw); }
.mask.medium { width: min(210px, 54vw); }
.mask.short { width: 128px; }
.redacted-line,
.redacted-box span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: repeating-linear-gradient(135deg, #211d19 0 8px, #3a332d 8px 16px);
  opacity: .9;
}
.redacted-line.wide { width: 92%; height: 28px; margin-top: 10px; }
.redacted-line { width: 78%; }
.redacted-line.medium { width: 64%; }
.redacted-line.short { width: 42%; margin-top: 8px; background: var(--orange); opacity: 1; }
.redacted-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
}
.redacted-box.partial {
  gap: 8px;
}
.redacted-box.partial p {
  margin: 0;
  padding: 0;
  color: #4b4038;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}
.redacted-box span:nth-child(1) { width: 86%; }
.redacted-box span:nth-child(2) { width: 72%; }
.redacted-box span:nth-child(3) { width: 94%; }
.redacted-box span:nth-child(4) { width: 58%; }
.pdf-redacted-preview p {
  margin: 0;
  padding-top: 14px;
  color: #665c54;
  font-size: 14px;
  line-height: 1.5;
}
.pdf-document-viewer {
  position: relative;
  min-width: 0;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid #efc7a9;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #fff7ee 100%);
  box-shadow: 0 20px 46px rgba(34, 30, 26, .08);
}
.pdf-viewer-scroll {
  position: relative;
  height: clamp(390px, 46vw, 620px);
  border: 1px solid #ead7c5;
  border-radius: 16px;
  background: #f1f1f1;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 30, 26, .28) transparent;
}
.pdf-viewer-scroll::-webkit-scrollbar {
  width: 8px;
}
.pdf-viewer-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.pdf-viewer-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 30, 26, .24);
}
.pdf-page-strip {
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  padding: clamp(18px, 2.2vw, 26px);
}
.pdf-page-preview {
  display: grid;
  gap: 8px;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: clamp(10px, 1.4vw, 14px);
  border-radius: 12px;
  border: 1px solid rgba(234, 215, 197, .8);
  background: #fff;
  box-shadow: 0 14px 28px rgba(34, 30, 26, .12);
}
.pdf-page-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #fff;
}
.pdf-page-preview figcaption {
  color: #796e65;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
.pdf-page-is-pixelated img {
  image-rendering: auto;
}
.pdf-viewer-caption {
  margin: 14px 4px 0;
  color: #584f48;
  font-size: 14px;
  line-height: 1.45;
}
.resource-hero .article-side-card strong {
  display: block;
  max-width: 340px;
}
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.resource-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(34, 30, 26, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.resource-card:hover,
.resource-card:focus-visible {
  transform: translateY(-3px);
  border-color: #efc9aa;
  box-shadow: 0 20px 42px rgba(34, 30, 26, .1);
}
.resource-card span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.resource-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}
.resource-card p {
  margin: 0;
  color: #574f48;
  font-size: 16px;
  line-height: 1.5;
}
.source-directory,
.faq-resource-list {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}
.source-group,
.faq-resource-group {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}
.source-group h2,
.faq-resource-group h2 {
  max-width: 360px;
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.02;
}
.source-link-card {
  min-height: 170px;
}
.faq-resource-list .faq-list a {
  color: var(--orange-dark);
  font-weight: 900;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.principle-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(34, 30, 26, .05);
}
.principle-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #fff2e7;
  color: var(--orange-dark);
  font-weight: 900;
}
.principle-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.principle-grid p {
  margin: 0;
  color: #5c544d;
  font-size: 16px;
  line-height: 1.5;
}
.template-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.template-intent-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(34, 30, 26, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.template-intent-card:hover,
.template-intent-card:focus-visible {
  transform: translateY(-3px);
  border-color: #efc9aa;
  box-shadow: 0 22px 46px rgba(34, 30, 26, .11);
}
.template-intent-card span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.template-intent-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.08;
}
.template-intent-card p {
  margin: 0;
  color: #564e47;
  font-size: 16px;
  line-height: 1.5;
}
.template-intent-card strong {
  color: var(--orange-dark);
  font-weight: 900;
}
.editorial-route-card {
  grid-template-rows: auto auto 1fr auto;
}
.editorial-route-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.editorial-route-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff8f1;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}
.editorial-route-links a:hover,
.editorial-route-links a:focus-visible {
  border-color: #efb383;
  background: #fff1e5;
}
.article-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.article-resource-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(34, 30, 26, .06);
}
.article-resource-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-resource-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}
.article-resource-card p {
  margin: 0;
  color: #5c544d;
  font-size: 16px;
  line-height: 1.45;
}
.template-use-cases {
  background: linear-gradient(135deg, #fffaf5 0%, #f4f0ea 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial-proof-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial-proof-card {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, #fffaf5 0%, #fff 58%);
  box-shadow: 0 18px 42px rgba(34, 30, 26, .06);
}
.editorial-proof-intro h2 {
  max-width: 520px;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.02;
}
.editorial-proof-intro .lead {
  max-width: 580px;
}
.author-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid #efd9c6;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
}
.author-mini img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
}
.author-mini p {
  margin: 0;
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}
.author-mini span {
  color: #655c54;
}
.editorial-proof-list {
  display: grid;
  gap: 12px;
}
.editorial-proof-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  padding: 18px;
  border: 1px solid #efd9c6;
  border-radius: 16px;
  background: #fff;
}
.editorial-proof-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff0e4;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}
.editorial-proof-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.16;
}
.editorial-proof-list p {
  margin: 0;
  color: #5c544d;
  font-size: 15px;
  line-height: 1.5;
}
.editorial-proof-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid #efd9c6;
  color: #5b534c;
  font-size: 15px;
  font-weight: 800;
}
.editorial-proof-meta a {
  color: var(--orange-dark);
}
.sales-letter {
  border-top: 1px solid var(--line);
  padding-top: clamp(42px, 4.8vw, 64px);
  padding-bottom: clamp(30px, 4vw, 48px);
}
.sales-wrap {
  max-width: 860px;
  display: grid;
  gap: 18px;
}
.sales-block {
  padding: clamp(22px, 3.2vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(34, 30, 26, .07);
}
.sales-block.highlight {
  background: #fff4e8;
  border-color: #f0c9a8;
}
.sales-block-head {
  display: block;
  margin-bottom: 16px;
}
.sales-block-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 0;
  margin-bottom: 12px;
}
.sales-block-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #f0c9a8;
  border-radius: 999px;
  background: #fffaf5;
  color: var(--orange-dark);
}
.sales-block-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
.sales-block h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(26px, 2.35vw, 34px);
  line-height: 1.12;
}
.sales-block p {
  max-width: 760px;
  margin: 0 0 12px;
  color: #39342f;
  font-size: 16.5px;
  line-height: 1.62;
}
.sales-block ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding-left: 22px;
  color: #39342f;
  font-size: 17px;
  line-height: 1.55;
}
.sales-block li::marker {
  color: var(--orange);
}
.sales-block .btn {
  margin-top: 8px;
}
.seo-product-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(54px, 5vw, 72px);
}
.seo-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .78fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}
.seo-copy .lead {
  max-width: 740px;
}
.seo-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.seo-check-list li {
  position: relative;
  padding-left: 34px;
  color: #39342f;
  font-size: 17px;
  line-height: 1.55;
}
.seo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #171513;
  font-size: 14px;
  font-weight: 900;
}
.seo-panel {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(34, 30, 26, .08);
}
.seo-panel h3 {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 18px;
}
.seo-steps {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 22px;
  color: #39342f;
  font-size: 17px;
  line-height: 1.55;
}
.seo-steps li::marker {
  color: var(--orange-dark);
  font-weight: 900;
}
.seo-note {
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 12px;
  background: #fff4e8;
  color: #4b3627;
}
.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}
.source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.source-card-web {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(34, 30, 26, .06);
}
.source-card-web strong {
  font-size: 18px;
  line-height: 1.25;
}
.source-card-web span {
  color: #5f5750;
  font-size: 16px;
  line-height: 1.5;
}
.faq-section {
  background: #fffaf5;
}
.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  box-shadow: 0 12px 28px rgba(34, 30, 26, .05);
  overflow: hidden;
}
.faq-list details[open] {
  border-color: #efc9aa;
  background: linear-gradient(135deg, #fff 0%, #fffaf4 100%);
}
.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #efd5bd;
  border-radius: 999px;
  background: #fff8ef;
  color: var(--orange-dark);
  font-size: 18px;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list summary:focus-visible {
  outline: 3px solid rgba(240, 132, 78, .32);
  outline-offset: -3px;
}
.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #4f4841;
  font-size: 16px;
  line-height: 1.6;
}
.article-hero {
  padding: clamp(58px, 7vw, 96px) 0;
  background: radial-gradient(circle at 78% 18%, rgba(240,132,78,.13), transparent 34%), var(--cream);
  border-bottom: 1px solid var(--line);
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.article-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.2vw, 72px);
  line-height: .94;
}
.resource-hero h1,
.hub-hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 3.75vw, 54px);
  line-height: 1.05;
}
.article-hero .lead {
  max-width: 760px;
  margin-top: 26px;
}
.resource-hero .lead,
.hub-hero .lead {
  max-width: 700px;
  margin-top: 18px;
}
.article-side-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 48px rgba(34, 30, 26, .08);
}
.article-side-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-side-card strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}
.resource-hero .article-side-card strong,
.hub-hero .article-side-card strong {
  font-size: clamp(24px, 2.35vw, 32px);
  line-height: 1.12;
}
.article-side-card p {
  margin: 18px 0 0;
  color: #5f5750;
  font-size: 18px;
  line-height: 1.55;
}
.resource-hero .article-side-card p,
.hub-hero .article-side-card p {
  font-size: 16px;
  line-height: 1.5;
}
.about-author-card {
  overflow: hidden;
}
.about-author-card img {
  display: block;
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 0 22px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 16px 34px rgba(34, 30, 26, .14);
}
.article-content {
  max-width: 880px;
}
.article-content h2 {
  margin: 46px 0 16px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}
.article-content p,
.article-content li {
  color: #39342f;
  font-size: 19px;
  line-height: 1.72;
}
.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 26px;
}
.article-content li::marker {
  color: var(--orange-dark);
  font-weight: 900;
}
.article-example {
  margin: 28px 0;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #f0c9a8;
  border-left: 5px solid var(--orange);
  background: #fff4e8;
}
.article-example strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
.article-example p {
  margin: 0;
  color: #3e332b;
}
.article-cta {
  margin: 42px 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 18px;
  background: var(--dark);
  color: #fff;
}
.article-cta h2,
.article-cta p {
  color: #fff;
}
.article-cta p:not(.eyebrow) {
  max-width: 720px;
}
.article-cta .btn {
  margin-top: 12px;
}
.article-teaser-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.article-teaser-list {
  display: grid;
  gap: 16px;
}
.article-teaser-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(34, 30, 26, .06);
}
.article-teaser-card span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-teaser-card strong {
  font-size: 26px;
  line-height: 1.14;
}
.article-teaser-card em {
  color: #5f5750;
  font-size: 17px;
  line-height: 1.55;
  font-style: normal;
}
.included-list {
  margin-top: 22px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(34, 30, 26, .06);
}
.included-list h3 { margin-bottom: 12px; font-size: 20px; }
.included-list ul { margin: 0; padding-left: 20px; color: var(--muted); }
.included-list li { margin: 8px 0; }
.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
  margin-top: 7px;
}
.legal-note {
  border-left: 4px solid var(--orange);
  padding: 12px 14px;
  background: #fff4e8;
  color: #4b3627;
  border-radius: 10px;
}
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; }
.table th, .table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.notice { padding: 22px; border-radius: 10px; background: #ecfdf5; color: #064e3b; border: 1px solid #a7f3d0; }
.error { background: #fef2f2; color: #7f1d1d; border-color: #fecaca; }
.footer {
  background: #171412;
  border-top: 1px solid var(--line);
  padding: 54px 0 28px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
}
.footer-wrap {
  display: grid;
  gap: 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(4, minmax(140px, .7fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.footer-brand {
  max-width: 430px;
}
.footer-logo {
  margin-bottom: 18px;
  width: fit-content;
}
.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.55;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.footer-col {
  display: grid;
  gap: 11px;
}
.footer-col strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 16px;
}
.footer a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-weight: 800;
}
.footer a:hover,
.footer a:focus-visible {
  color: var(--orange);
}
.footer-note {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}
.footer-note strong {
  color: #fff;
}
.footer-note p {
  margin: 0;
  max-width: 980px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .grid, .featured-grid, .feature-grid, .catalog-head, .how-grid, .related-grid, .upcoming-head, .upcoming-grid, .seo-product-grid, .source-grid, .faq-wrap, .article-hero-grid, .article-teaser-grid, .intent-grid, .method-steps, .manifesto-grid, .hub-case-grid, .resource-grid, .source-group, .faq-resource-group, .principle-grid, .template-intent-grid, .article-resource-grid, .editorial-proof-card { grid-template-columns: 1fr; }
  .hero-grid { width: min(100% - 36px, 1180px); }
  .nav { width: min(100% - 36px, 1180px); }
  .promo-inner {
    width: min(100% - 28px, 1180px);
    min-height: 38px;
    font-size: 12px;
  }
  .promo-inner span:nth-child(3) { display: none; }
  .hero { padding-top: 44px; }
  .hero-visual { min-height: 380px; }
  .media-card.main { right: 50%; transform: translateX(50%); top: 74px; }
  .decor-ring,
  .hero::after {
    display: none;
  }
  .bubble.one { left: 12px; }
  .bubble.two { right: 8px; }
  .bubble.three { left: 38px; }
  .bubble.four { right: 26px; }
  .tag { display: none; }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: relative;
    min-height: 70px;
    flex-wrap: wrap;
    padding: 10px 0 12px;
  }
  .nav .menu-toggle {
    position: absolute;
    right: 0;
    top: 12px;
    z-index: 3;
    display: inline-flex !important;
  }
  .brand {
    order: 1;
    max-width: calc(100% - 62px);
  }
  .header-search {
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
    margin: 6px 0 0;
  }
  .nav .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(34, 30, 26, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav.is-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav .primary-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 900;
  }
  .nav .primary-nav a:hover,
  .nav .primary-nav a:focus-visible {
    background: #fff4e8;
    outline: none;
  }
  .buttons, .checkout .buttons, .catalog-search, .catalog-tools, .catalog-meta { display: grid; grid-template-columns: 1fr; }
  .upcoming-head .btn { width: fit-content; }
  .related-head { display: grid; align-items: start; }
  .search-row { grid-template-columns: 1fr; }
  .catalog-hero { padding-top: 34px; }
  .legal-content { padding: 24px; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav { width: min(100% - 28px, 1180px); min-height: 58px; padding: 9px 0 11px; }
  .promo-inner {
    justify-content: space-between;
    gap: 8px;
    text-align: left;
  }
  .promo-sep { display: none; }
  .promo-inner a { padding-inline: 11px; }
  .brand img {
    width: 184px;
  }
  .menu-toggle {
    width: 42px;
    height: 42px;
  }
  .header-search input {
    height: 38px;
    font-size: 15px;
  }
  .header-search button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .hero {
    padding: 28px 0 34px;
  }
  .section {
    padding: 54px 0;
  }
  .intent-grid a,
  .method-steps article {
    min-height: 0;
  }
  .intent-grid strong {
    font-size: 21px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-note {
    padding: 18px;
  }
  .footer-note span {
    display: none;
  }
  .footer-note a {
    display: block;
    margin-top: 6px;
  }
  .hero-grid {
    width: min(100% - 28px, 1180px);
    gap: 24px;
  }
  .mobile-hero-plain {
    order: -1;
  }
  .mobile-hero-plain h1 {
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: 29px;
    line-height: 1.1;
    max-width: 100%;
  }
  .hero-copy h1 {
    margin-top: 8px;
    margin-bottom: 14px;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.1;
  }
  .home-hero .hero-copy h1 {
    font-size: 34px;
    line-height: 1.04;
  }
  .mobile-hero-plain .lead {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-copy .lead {
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-quick {
    margin-top: 16px;
  }
  .hero-quick span {
    font-size: 12px;
    min-height: 32px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }
  .home-template-card {
    padding: 22px;
    border-radius: 18px;
  }
  .home-template-top {
    margin-bottom: 20px;
  }
  .home-template-top strong {
    font-size: 18px;
  }
  .home-template-card h2 {
    font-size: 27px;
    line-height: 1.08;
    margin-bottom: 20px;
  }
  .home-template-card p:not(.eyebrow) {
    font-size: 15px;
    margin: 14px 0;
  }
  .home-template-note {
    margin-top: 20px;
    padding: 14px;
  }
  .home-template-caption {
    margin-left: 0;
    font-size: 13px;
  }
  .btn {
    min-height: 44px;
    padding: 12px 17px;
    font-size: 15px;
  }
  h2 {
    font-size: 30px;
    line-height: 1.12;
  }
  .catalog-hero {
    padding: 26px 0 18px;
  }
  .catalog-hero-shell {
    min-height: 0;
    gap: 14px;
    padding: 28px 20px 30px;
    border-radius: 16px;
  }
  .catalog-head h1 {
    max-width: 330px;
    font-size: 38px;
    line-height: 1.03;
  }
  .catalog-search {
    width: 100%;
    max-width: 360px;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .catalog-search .search-row {
    gap: 9px;
  }
  .search-row input {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 17px;
    box-shadow: 0 10px 24px rgba(34, 30, 26, .08);
  }
  .search-row .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }
  .catalog-head .lead {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.45;
  }
  .upcoming-guides {
    padding-top: 44px;
  }
  .upcoming-head {
    gap: 18px;
  }
  .upcoming-head h2 {
    font-size: 32px;
    line-height: 1.08;
  }
  .upcoming-head .lead {
    margin-top: 14px;
  }
  .upcoming-head .btn {
    width: 100%;
  }
  .upcoming-grid {
    gap: 12px;
  }
  .upcoming-card {
    min-height: 0;
    padding: 21px;
    border-radius: 15px;
  }
  .upcoming-card h3 {
    font-size: 21px;
  }
  .upcoming-card p {
    font-size: 15px;
  }
  .lead {
    font-size: 16px;
    line-height: 1.55;
  }
  .panel,
  .card,
  .product-card {
    padding: 22px;
  }
  .price {
    font-size: 38px;
    line-height: 1;
    margin-top: 8px;
  }
  .checkout {
    gap: 11px;
    margin-top: 10px;
  }
  .checkout-includes {
    margin-top: 6px;
  }
  .checkout-includes span {
    padding: 6px 9px;
    font-size: 11.5px;
  }
  .checkout-panel .checkout-trust {
    gap: 4px 7px;
  }
  .checkout-panel .checkout-trust span,
  .checkout-panel .checkout-trust a {
    min-height: 0;
    padding: 0;
    font-size: 11px;
  }
  .sticky-buy-bar {
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(100% - 20px, 520px);
  }
  .sticky-buy-inner {
    padding: 9px 9px 9px 13px;
    gap: 10px;
  }
  .sticky-buy-copy {
    display: grid;
    gap: 0;
    align-items: center;
  }
  .sticky-buy-copy strong {
    font-size: 18px;
    line-height: 1;
  }
  .sticky-buy-copy span {
    font-size: 11.5px;
    line-height: 1.15;
  }
  .sticky-buy-button {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 14px;
  }
  .hub-switcher {
    justify-content: flex-start;
    margin-top: -18px;
    margin-bottom: 22px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .hub-switch {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }
  .hub-case-section {
    padding-top: 8px;
  }
  .hub-case-grid {
    gap: 12px;
  }
  .hub-case-card {
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
  }
  .hub-case-card h3 {
    font-size: 21px;
    line-height: 1.12;
  }
  .hub-case-card p,
  .hub-case-card strong {
    font-size: 14.5px;
  }
  .hub-decision-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hub-decision-table {
    border-radius: 15px;
  }
  .hub-decision-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }
  .hub-decision-row span,
  .hub-decision-row em {
    font-size: 14.5px;
  }
  .hub-decision-row strong {
    font-size: 19px;
  }
  .form-help {
    font-size: 12px;
  }
  label {
    gap: 6px;
    font-size: 13px;
  }
  input,
  select,
  textarea {
    padding: 11px 14px;
    font-size: 15px;
  }
  .gift-box {
    padding: 13px 14px;
    border-radius: 16px;
  }
  .gift-toggle {
    font-size: 14px;
  }
  .terms-check {
    gap: 9px;
    font-size: 12px;
    line-height: 1.45;
  }
  .sales-wrap {
    gap: 18px;
  }
  .sales-opener {
    margin-top: 18px;
    padding: 15px 16px;
  }
  .pdf-redacted-preview {
    padding: 20px;
    border-radius: 14px;
  }
  .pdf-document-viewer {
    padding: 10px;
    border-radius: 16px;
  }
  .pdf-viewer-scroll {
    height: min(72vh, 520px);
    border-radius: 12px;
  }
  .home-pdf-preview .pdf-viewer-scroll {
    height: min(68vh, 460px);
  }
  .home-pdf-preview .pdf-page-preview {
    width: min(100%, 420px);
  }
  .pdf-page-strip {
    gap: 16px;
    padding: 14px;
  }
  .pdf-page-preview {
    padding: 8px;
    border-radius: 10px;
  }
  .pdf-viewer-caption {
    font-size: 12.5px;
  }
  .pdf-preview-page {
    min-height: 330px;
    padding: 24px 22px 54px;
  }
  .editorial-proof-card {
    padding: 24px;
  }
  .editorial-proof-meta {
    display: grid;
    gap: 8px;
  }
  .author-mini {
    align-items: flex-start;
  }
  .sales-block {
    padding: 24px 22px;
    border-radius: 14px;
  }
  .direct-answer-icon {
    width: 22px;
    height: 22px;
  }
  .sales-block-head {
    margin-bottom: 14px;
  }
  .sales-block-icon {
    width: 22px;
    height: 22px;
  }
  .sales-block h2 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.12;
  }
  .sales-block p {
    font-size: 16px;
    line-height: 1.62;
  }
  .sales-block ul {
    gap: 7px;
    margin: 14px 0;
    font-size: 15px;
    line-height: 1.5;
  }
  .sales-block .btn {
    width: 100%;
  }
  .faq-section {
    padding-top: 52px;
  }
  .faq-wrap {
    gap: 24px;
  }
  .faq-list details {
    border-radius: 13px;
  }
  .faq-list summary {
    padding: 15px 17px;
    font-size: 16px;
    line-height: 1.35;
  }
  .faq-list summary::after {
    width: 25px;
    height: 25px;
  }
  .faq-list p {
    padding: 0 17px 17px;
    font-size: 15px;
    line-height: 1.55;
  }
  .article-hero {
    padding: 34px 0 42px;
  }
  .article-hero-grid {
    gap: 24px;
  }
  .article-hero h1 {
    font-size: 38px;
    line-height: .98;
  }
  .resource-hero h1,
  .hub-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }
  .article-hero .lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.55;
  }
  .resource-hero .lead,
  .hub-hero .lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }
  .article-side-card {
    padding: 22px;
    border-radius: 14px;
  }
  .article-side-card span {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .article-side-card strong {
    font-size: 23px;
    line-height: 1.12;
  }
  .article-side-card p {
    margin-top: 14px;
    font-size: 16px;
  }
  .template-showcase .two-col {
    grid-template-columns: 1fr;
  }
  .template-showcase h2,
  .template-showcase .lead {
    max-width: none;
  }
  .template-showcase h2 {
    font-size: 34px;
    line-height: 1.08;
  }
  .article-content h2 {
    margin: 34px 0 12px;
    font-size: 30px;
    line-height: 1.12;
  }
  .article-content p,
  .article-content li {
    font-size: 16px;
    line-height: 1.68;
  }
  .article-content ul,
  .article-content ol {
    gap: 8px;
    margin: 14px 0 22px;
    padding-left: 22px;
  }
  .article-example {
    margin: 24px 0;
    padding: 20px;
    border-radius: 12px;
  }
  .article-example strong {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .article-teaser-card {
    padding: 21px;
  }
  .article-teaser-card strong {
    font-size: 22px;
  }
  .article-teaser-card em {
    font-size: 15px;
  }
  .source-card-web {
    min-height: 0;
    padding: 20px;
  }
  .source-card-web strong {
    font-size: 16px;
  }
  .source-card-web span {
    font-size: 14px;
  }
  .hero-visual {
    min-height: 0;
  }
  .hero-visual-image img {
    width: min(100%, 360px);
    border-radius: 22px;
    margin-inline: auto;
  }
  .logos {
    padding-top: 22px;
  }
}
