.content-page {
  background: #fbfcff;
}

.content-page .site-header {
  border-bottom: 1px solid rgba(216, 225, 240, 0.8);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(24, 39, 75, 0.05);
  backdrop-filter: blur(18px);
}

.content-page main {
  padding-top: 78px;
}

.content-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 72px;
  background:
    radial-gradient(circle at 16% 20%, rgba(12, 102, 228, 0.12), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(244, 63, 130, 0.1), transparent 30%),
    linear-gradient(135deg, #f5f9ff, #fff 50%, #fff8fb);
}

.content-hero.compact {
  padding-bottom: 56px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #65728a;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue-dark);
  font-weight: 700;
}

.content-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -3px;
}

.content-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #56627a;
  font-size: 20px;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 30px;
  color: #667085;
  font-size: 14px;
}

.content-meta strong {
  color: var(--ink);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  justify-content: space-between;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.article-body {
  min-width: 0;
}

.article-body h2 {
  margin: 54px 0 18px;
  font-size: 34px;
  letter-spacing: -1.4px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 34px 0 12px;
  font-size: 23px;
  letter-spacing: -0.5px;
}

.article-body p,
.article-body li {
  color: #46526a;
  font-size: 17px;
}

.article-body a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(12, 102, 228, 0.3);
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body li + li {
  margin-top: 10px;
}

.article-lede {
  padding: 24px 28px;
  border-left: 4px solid var(--blue);
  border-radius: 0 18px 18px 0;
  background: #f1f6ff;
}

.article-callout {
  margin: 36px 0;
  padding: 28px;
  border: 1px solid #dfe6f1;
  border-radius: 20px;
  background: white;
  box-shadow: 0 15px 38px rgba(24, 39, 75, 0.07);
}

.article-callout h3 {
  margin-top: 0;
}

.article-callout.pink {
  border-color: rgba(244, 63, 130, 0.2);
  background: #fff7fa;
}

.article-callout.gold {
  border-color: rgba(255, 184, 0, 0.28);
  background: #fffaf0;
}

.step-list {
  display: grid;
  gap: 18px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 72px;
  padding: 20px 22px 20px 72px;
  border: 1px solid #e2e7f0;
  border-radius: 18px;
  background: white;
}

.step-list li::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  content: counter(list-item);
  font-weight: 800;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border: 1px solid #e1e7f1;
  border-radius: 14px;
  background: white;
}

.checklist li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blue);
  border-radius: 5px;
  content: "";
}

.template-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 0 0 1px #dfe5ef;
}

.template-table th,
.template-table td {
  padding: 15px;
  border-bottom: 1px solid #e5e9f1;
  text-align: left;
  vertical-align: top;
}

.template-table th {
  color: var(--ink);
  background: #edf4ff;
  font-size: 14px;
}

.template-table td {
  color: #526077;
}

.article-sidebar {
  align-self: start;
  position: sticky;
  top: 108px;
}

.sidebar-card {
  padding: 26px;
  border: 1px solid #dfe6f1;
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 42px rgba(24, 39, 75, 0.08);
}

.sidebar-card + .sidebar-card {
  margin-top: 18px;
}

.sidebar-card h2,
.sidebar-card h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 14px;
}

.sidebar-card .button {
  width: 100%;
  margin-top: 8px;
}

.button-share {
  border: 1px solid rgba(12, 102, 228, 0.2);
  color: var(--blue-dark);
  background: #edf4ff;
}

.share-card {
  border-color: rgba(12, 102, 228, 0.18);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 63, 130, 0.08), transparent 42%),
    #f7faff;
}

.sidebar-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.sidebar-links a {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 72px 0 96px;
}

.resource-card {
  padding: 32px;
  border: 1px solid #dfe6f1;
  border-radius: 24px;
  background: white;
  box-shadow: 0 16px 40px rgba(24, 39, 75, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  box-shadow: 0 24px 54px rgba(24, 39, 75, 0.12);
  transform: translateY(-5px);
}

.resource-card span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.resource-card h2 {
  margin-top: 16px;
  font-size: 28px;
  letter-spacing: -1px;
}

.resource-card p {
  color: var(--muted);
}

.resource-card strong {
  color: var(--blue-dark);
}

.professional-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
  padding: 76px 0 94px;
}

.professional-grid h2 {
  font-size: 40px;
  letter-spacing: -1.8px;
}

.professional-grid p,
.professional-grid li {
  color: #526077;
  font-size: 17px;
}

.professional-card {
  padding: 34px;
  border: 1px solid #dfe6f1;
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
}

.qr-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border-radius: 22px;
  background: #f2f6ff;
}

.qr-panel img {
  width: 220px;
  height: auto;
  max-width: 100%;
  padding: 8px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(21, 39, 75, 0.12);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-outline {
  border: 1px solid #ccd6e5;
  color: var(--ink);
  background: white;
}

.disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #dfe5ef;
  color: #69758a;
  font-size: 14px;
}

.print-toolbar {
  position: sticky;
  top: 78px;
  z-index: 20;
  padding: 12px 0;
  border-bottom: 1px solid #dfe5ef;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.print-toolbar .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.handout {
  width: min(850px, calc(100% - 40px));
  margin: 46px auto 80px;
  padding: 52px;
  border: 1px solid #dbe3ef;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.handout-header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.handout-header img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
}

.handout h1 {
  margin-top: 42px;
  font-size: 50px;
  letter-spacing: -2.5px;
}

.handout-lede {
  color: #526077;
  font-size: 21px;
}

.handout-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.handout-feature {
  padding: 18px;
  border-radius: 16px;
  background: #f3f7ff;
}

.handout-feature strong {
  display: block;
  margin-bottom: 4px;
}

.handout-cta {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  border-radius: 24px;
  color: white;
  background: var(--ink);
}

.handout-cta img {
  width: 210px;
  height: auto;
  max-width: 100%;
  padding: 8px;
  object-fit: contain;
  background: white;
  border-radius: 16px;
}

.handout-cta h2 {
  font-size: 31px;
}

.handout-cta p {
  color: #dce5f5;
}

.legal-document {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  padding: 64px 0 88px;
}

.legal-summary {
  margin-bottom: 42px;
  padding: 24px 26px;
  border: 1px solid #dce5f2;
  border-radius: 20px;
  background: #f2f6ff;
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-document section + section {
  margin-top: 38px;
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: 30px;
  letter-spacing: -0.8px;
}

.legal-document h3 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.legal-document p,
.legal-document li {
  color: #4a5870;
  line-height: 1.75;
}

.legal-document ul,
.legal-document ol {
  padding-left: 24px;
}

.legal-document li + li {
  margin-top: 8px;
}

.legal-document a:not(.button) {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-action {
  margin-top: 26px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 30px 0 42px;
}

.support-card {
  padding: 24px;
  border: 1px solid #e2e8f2;
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 36px rgba(21, 39, 75, 0.08);
}

.support-card h2 {
  margin-bottom: 8px;
  font-size: 23px;
}

.footer-bottom {
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #c4ccda;
  font-size: 11px;
  font-weight: 600;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 900px) {
  .content-page main {
    padding-top: 68px;
  }

  .content-hero {
    padding-top: 72px;
  }

  .content-layout,
  .professional-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .qr-panel,
  .handout-cta {
    grid-template-columns: 1fr;
  }

  .handout-features {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .content-hero h1,
  .handout h1 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }

  .content-hero p {
    font-size: 17px;
  }

  .content-layout {
    gap: 42px;
    padding-top: 48px;
  }

  .article-body h2 {
    font-size: 29px;
  }

  .template-table {
    display: block;
    overflow-x: auto;
  }

  .handout {
    width: min(100% - 24px, 850px);
    padding: 28px 22px;
  }

  .legal-document {
    width: min(100% - 32px, 900px);
    padding: 48px 0 70px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .site-footer,
  .print-toolbar,
  .article-sidebar,
  .no-print {
    display: none !important;
  }

  .content-page main {
    padding: 0;
  }

  .handout {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .handout-cta {
    color-adjust: exact;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .checklist li,
  .article-callout,
  .template-table {
    break-inside: avoid;
  }
}
