:root {
  --navy: #08295c;
  --navy-2: #0f376f;
  --green: #31b85b;
  --green-dark: #1f8d45;
  --ink: #132338;
  --muted: #637083;
  --line: #dfe6ee;
  --soft: #f4f7fa;
  --soft-green: #eefaf2;
  --white: #ffffff;
  --warning: #f5b64b;
  --shadow: 0 18px 55px rgba(8, 41, 92, 0.12);
  --shadow-soft: 0 12px 34px rgba(8, 41, 92, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 41, 92, 0.025) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--white);
  font-family: "Archivo", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

::selection {
  background: rgba(49, 184, 91, 0.22);
  color: var(--navy);
}

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

a {
  color: inherit;
}

.wrap {
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.trustbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  padding: 9px 18px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px rgba(8, 41, 92, 0.04);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 204px;
  height: auto;
}

.topic-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.topic-nav a,
.footer-links a,
.footer-button {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.topic-nav a:hover,
.footer-links a:hover,
.footer-button:hover {
  color: var(--green-dark);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(49, 184, 91, 0.23);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(31, 141, 69, 0.25);
}

.cta:focus-visible,
.topic-nav a:focus-visible,
.footer-links a:focus-visible,
.footer-button:focus-visible,
summary:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(49, 184, 91, 0.36);
  outline-offset: 3px;
}

.cta:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.cta-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

.cta-full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    linear-gradient(135deg, rgba(49, 184, 91, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 88%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--green));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 42px;
  align-items: stretch;
}

.hero-copy {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.overview-card::before,
.mini-card::before,
.audience-card::before,
.sidebar-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--green);
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #33465f;
  font-size: 21px;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.article-meta span,
.guide-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #cfdbe8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.micro-note,
.legal-note,
small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.overview-card h2 {
  font-size: 27px;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.guide-tags span {
  background: var(--soft-green);
  border-color: #cce8d4;
  color: var(--green-dark);
}

.clarity-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
}

.clarity-mini span {
  position: relative;
  padding-left: 25px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.clarity-mini span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--soft-green);
}

.number-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.number-list li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.number-list li::before {
  content: counter(item, decimal-leading-zero);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.overview-note {
  margin: 0;
  color: var(--muted);
}

.cred-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cred-grid div {
  display: grid;
  gap: 7px;
  padding: 22px 28px;
  border-left: 1px solid var(--line);
}

.cred-grid div:last-child {
  border-right: 1px solid var(--line);
}

.cred-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.cred-grid strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.section {
  padding: 76px 0;
}

.article-intro {
  background: var(--white);
}

.article-intro p:not(.section-label) {
  color: #3a4b61;
  font-size: 20px;
}

.clarity-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
}

.clarity-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(49, 184, 91, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 184, 91, 0.22), rgba(8, 41, 92, 0) 44%),
    linear-gradient(135deg, #092a5d, #0f376f);
  box-shadow: var(--shadow);
}

.clarity-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clarity-copy h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
}

.clarity-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.clarity-copy .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.clarity-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.clarity-steps article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.clarity-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.clarity-steps h3 {
  margin-top: auto;
}

.clarity-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

blockquote {
  position: relative;
  margin: 34px 0 0;
  padding: 30px 34px;
  border-left: 5px solid var(--green);
  background: var(--soft-green);
  color: var(--navy);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: var(--shadow-soft);
}

blockquote::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(49, 184, 91, 0.35);
}

.pain-section,
.faq-section {
  background: var(--soft);
}

.pain-section .section-head {
  max-width: 1180px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.pain-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.mini-card,
.audience-card {
  height: 100%;
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.mini-card:hover,
.audience-card:hover {
  transform: translateY(-2px);
  border-color: #cce8d4;
  box-shadow: 0 16px 42px rgba(8, 41, 92, 0.10);
}

.funnel-bridge:hover,
.soft-cta-row:hover,
.article-cta-panel:hover,
.prelead-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(8, 41, 92, 0.11);
}

.mini-number {
  display: block;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.funnel-bridge,
.soft-cta-row,
.article-cta-panel,
.prelead-panel {
  position: relative;
  display: grid;
  gap: 22px;
  align-items: center;
  border-radius: var(--radius);
}

.funnel-bridge {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 26px;
  padding: 26px;
  border: 1px solid rgba(49, 184, 91, 0.38);
  background:
    linear-gradient(135deg, rgba(49, 184, 91, 0.16), rgba(255, 255, 255, 0) 54%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.funnel-bridge::before,
.soft-cta-row::before,
.article-cta-panel::before,
.prelead-panel::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--green), rgba(49, 184, 91, 0));
}

.funnel-bridge span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.funnel-bridge h3,
.article-cta-panel h3,
.prelead-panel h2 {
  margin-bottom: 0;
}

.mini-card p,
.audience-card p,
.article-body p,
.mistake-list p,
.faq-list p {
  color: var(--muted);
}

.editorial-media {
  background: var(--soft);
}

.media-rows {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.feature-row-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.feature-copy {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-copy h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.feature-copy p:not(.section-label) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.optional-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
}

.soft-cta-row {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 22px;
  padding: 24px 26px;
  border: 1px solid rgba(8, 41, 92, 0.18);
  background:
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow-soft);
}

.soft-cta-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 700;
}

.image-placeholder,
.image-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  border: 1px dashed #b8c6d6;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 41, 92, 0.08), rgba(49, 184, 91, 0.10)),
    #ffffff;
  color: var(--navy);
}

.image-placeholder-large,
.image-panel-large {
  min-height: 380px;
  height: 100%;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-style: solid;
  background: var(--navy);
  box-shadow: var(--shadow-soft);
}

.image-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.image-panel:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 41, 92, 0) 42%, rgba(8, 41, 92, 0.72) 100%);
}

.image-panel figcaption {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
}

.article-deck {
  margin: -4px 0 24px;
  color: #3a4b61;
  font-size: 20px;
  line-height: 1.5;
}

.image-placeholder span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-placeholder strong {
  max-width: 280px;
  font-size: 20px;
  line-height: 1.18;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 58px;
  align-items: stretch;
}

.article-body {
  max-width: 780px;
}

.article-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.article-block:first-of-type {
  margin-top: 18px;
}

.article-cta-panel {
  margin-top: 30px;
  padding: 30px;
  border: 1px solid rgba(49, 184, 91, 0.32);
  background:
    linear-gradient(135deg, rgba(49, 184, 91, 0.14), rgba(255, 255, 255, 0) 44%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.article-cta-panel p:not(.section-label) {
  max-width: 650px;
}

.article-cta-panel .cta {
  justify-self: start;
}

.callout {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #cce8d4;
  border-radius: var(--radius);
  background: var(--soft-green);
  color: var(--navy) !important;
  font-weight: 700;
}

.sidebar {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.sidebar-box {
  flex: 0 0 auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sidebar-box h2 {
  font-size: 22px;
}

.sidebar-box a:not(.cta) {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.accent-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fbfffc;
  border-color: #cce8d4;
}

.accent-box small {
  display: block;
  margin-top: 14px;
}

.mistakes {
  background: #fffaf0;
}

.mistakes .section-head {
  max-width: 1040px;
}

.warning-bridge {
  border-color: #f0d8aa;
  background:
    linear-gradient(135deg, rgba(245, 182, 75, 0.24), rgba(255, 255, 255, 0) 56%),
    var(--white);
}

.warning-bridge::before {
  background: linear-gradient(90deg, var(--warning), rgba(245, 182, 75, 0));
}

.audience-section .section-head {
  max-width: 1120px;
}

.mistake-list {
  display: grid;
  gap: 14px;
}

.mistake-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid #f0d8aa;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(154, 100, 0, 0.05);
}

.mistake-list span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 182, 75, 0.18);
  color: #9a6400;
  font-weight: 800;
}

.mistake-list h3,
.mistake-list p {
  grid-column: 2;
}

.mistake-list h3 {
  margin-bottom: 6px;
}

.mistake-list p {
  margin-bottom: 0;
}

.prelead-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 26px;
  padding: 32px;
  border: 1px solid rgba(49, 184, 91, 0.28);
  background:
    linear-gradient(135deg, rgba(49, 184, 91, 0.24), rgba(8, 41, 92, 0) 42%),
    linear-gradient(135deg, #fbfffc, var(--white));
  box-shadow: var(--shadow);
}

.prelead-panel p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.checklist-section {
  background: var(--navy);
}

.checklist-card {
  padding: 42px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.check-grid li {
  position: relative;
  padding-left: 32px;
  color: #33465f;
  font-weight: 700;
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
}

.check-grid li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.lead-section {
  position: relative;
  padding: 78px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  overflow: hidden;
}

.lead-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(180deg, rgba(49, 184, 91, 0.14), transparent 46%);
  pointer-events: none;
}

.lead-layout {
  position: relative;
  z-index: 1;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 52px;
  align-items: stretch;
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-copy h2,
.lead-copy .section-label {
  color: var(--white);
}

.lead-copy .section-label {
  opacity: 0.76;
}

.lead-copy p,
.lead-copy li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.lead-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 24px 0;
}

.lead-copy .legal-note {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
}

.leadcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.leadcard::before {
  content: "Secure request";
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.leadcard form {
  width: 100%;
  display: grid;
  gap: 14px;
  align-content: center;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.finput {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #cdd8e5;
  border-radius: var(--radius);
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.finput:focus {
  outline: 3px solid rgba(49, 184, 91, 0.22);
  border-color: var(--green);
  background: var(--white);
}

.finput::placeholder {
  color: #7b8899;
}

.consent-note {
  margin: 2px 0 0;
  padding: 12px;
  border: 1px solid #d7e9dd;
  border-radius: var(--radius);
  background: var(--soft-green);
  color: #365244;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.banner {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.banner-ok {
  background: var(--soft-green);
  color: var(--green-dark);
}

.banner-err {
  background: #fff3f2;
  color: #a7342d;
}

.thanks {
  text-align: center;
}

.thanks h3 {
  font-size: 30px;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 18px rgba(8, 41, 92, 0.045);
}

summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 20px 20px;
  margin: 0;
}

.final-cta {
  padding: 58px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-inner h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.legal-accordions {
  padding: 42px 0 48px;
  background: var(--soft);
}

.legal-accordions .wrap {
  display: grid;
  gap: 10px;
}

.legal-head {
  max-width: 760px;
  margin-bottom: 14px;
}

.legal-head h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-head .section-label {
  margin-bottom: 8px;
}

.legal-accordions details {
  border-color: #d8e2ec;
}

.legal-accordions summary {
  min-height: 62px;
  display: flex;
  align-items: center;
}

.legal-accordions details h3 {
  margin: 4px 20px 8px;
  font-size: 18px;
  line-height: 1.2;
}

.site-footer {
  padding: 50px 0 28px;
  background: #071f45;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  width: 205px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 6px;
  padding: 8px 10px;
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.footer-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  max-width: 560px;
}

.footer-links a,
.footer-button {
  color: rgba(255, 255, 255, 0.88);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: right;
  white-space: nowrap;
}

.footer-links a:hover,
.footer-button:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
}

.modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 69, 0.68);
}

.modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: 30px;
  border: 1px solid #cce8d4;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.imprint-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.imprint-list dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.imprint-list dd {
  margin: -8px 0 8px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.legal-modal-panel h3 {
  margin: 22px 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.legal-modal-panel p {
  color: var(--muted);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .mini-card[data-reveal]:nth-child(2),
.reveal-ready .audience-card[data-reveal]:nth-child(2),
.reveal-ready .faq-list details[data-reveal]:nth-child(2),
.reveal-ready .mistake-list article[data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-ready .mini-card[data-reveal]:nth-child(3),
.reveal-ready .audience-card[data-reveal]:nth-child(3),
.reveal-ready .faq-list details[data-reveal]:nth-child(3),
.reveal-ready .mistake-list article[data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-ready .mini-card[data-reveal]:nth-child(4),
.reveal-ready .audience-card[data-reveal]:nth-child(4),
.reveal-ready .faq-list details[data-reveal]:nth-child(4),
.reveal-ready .mistake-list article[data-reveal]:nth-child(4) {
  transition-delay: 200ms;
}

.reveal-ready .faq-list details[data-reveal]:nth-child(5),
.reveal-ready .mistake-list article[data-reveal]:nth-child(5) {
  transition-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.compact-funnel .hero {
  padding: 54px 0 42px;
}

body.compact-funnel .section {
  padding: 48px 0;
}

body.compact-funnel .article-intro {
  padding-bottom: 40px;
}

body.compact-funnel .clarity-section {
  padding-bottom: 44px;
}

body.compact-funnel .cred-grid div {
  padding: 16px 24px;
}

body.compact-funnel .section-head {
  margin-bottom: 24px;
}

body.compact-funnel h1 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.4vw, 68px);
}

body.compact-funnel h2 {
  margin-bottom: 14px;
}

body.compact-funnel .lead {
  margin-bottom: 20px;
}

body.compact-funnel .article-meta,
body.compact-funnel .guide-tags,
body.compact-funnel .clarity-mini {
  margin-bottom: 16px;
}

body.compact-funnel blockquote {
  margin-top: 24px;
  padding: 24px 28px;
}

body.compact-funnel .clarity-panel,
body.compact-funnel .checklist-card,
body.compact-funnel .prelead-panel {
  padding: 28px;
}

body.compact-funnel .clarity-steps article,
body.compact-funnel .mini-card,
body.compact-funnel .audience-card {
  min-height: 205px;
  padding: 20px;
}

body.compact-funnel .feature-copy,
body.compact-funnel .image-panel-large {
  min-height: 320px;
}

body.compact-funnel .optional-media-grid {
  display: none;
}

body.compact-funnel .soft-cta-row,
body.compact-funnel .funnel-bridge,
body.compact-funnel .article-cta-panel {
  margin-top: 20px;
  padding: 22px 24px;
}

body.compact-funnel .article-layout {
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) 315px;
}

body.compact-funnel .article-block {
  padding: 20px 0;
}

body.compact-funnel .article-block:first-of-type {
  margin-top: 10px;
}

body.compact-funnel .sidebar {
  padding: 14px;
}

body.compact-funnel .sidebar-box {
  padding: 18px;
}

body.compact-funnel .mistake-list {
  gap: 10px;
}

body.compact-funnel .mistake-list article {
  padding: 18px;
}

body.compact-funnel .check-grid {
  margin: 20px 0 24px;
}

body.compact-funnel .lead-section {
  padding: 60px 0;
}

body.compact-funnel .lead-copy ul {
  margin: 18px 0;
}

body.compact-funnel .faq-list {
  margin-top: 20px;
}

body.compact-funnel .final-cta {
  padding: 42px 0;
}

body.compact-funnel .legal-accordions {
  padding: 34px 0 38px;
}

@media (max-width: 1020px) {
  body.compact-funnel .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body.compact-funnel .hero {
    padding: 40px 0 34px;
  }

  body.compact-funnel .section {
    padding: 40px 0;
  }

  body.compact-funnel .clarity-panel,
  body.compact-funnel .checklist-card,
  body.compact-funnel .prelead-panel {
    padding: 22px;
  }

  body.compact-funnel .feature-copy,
  body.compact-funnel .image-panel-large {
    min-height: auto;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
  }

  .topic-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .article-layout,
  .lead-layout,
  .clarity-panel {
    grid-template-columns: 1fr;
  }

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

  .cred-grid div,
  .cred-grid div:last-child {
    border-right: 1px solid var(--line);
  }

  .hero-copy,
  .overview-card {
    grid-column: auto;
  }

  .sidebar {
    position: static;
  }

  .pain-grid,
  .audience-grid,
  .clarity-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .funnel-bridge,
  .soft-cta-row,
  .prelead-panel {
    grid-template-columns: 1fr;
  }

  .funnel-bridge .cta,
  .soft-cta-row .cta,
  .prelead-panel .cta {
    justify-self: start;
  }

  .lead-layout {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 28px, 1220px);
  }

  .brand img {
    width: 168px;
  }

  .hero {
    padding: 48px 0 42px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .overview-card,
  .leadcard,
  .checklist-card {
    padding: 22px;
  }

  .pain-grid,
  .audience-grid,
  .optional-media-grid,
  .clarity-steps,
  .check-grid,
  .frow {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .feature-copy,
  .image-placeholder-large,
  .image-panel-large {
    min-height: auto;
  }

  .image-panel {
    min-height: 250px;
  }

  .feature-copy {
    padding: 24px;
  }

  .clarity-panel {
    padding: 22px;
  }

  .clarity-steps article {
    min-height: auto;
  }

  .funnel-bridge,
  .soft-cta-row,
  .article-cta-panel,
  .prelead-panel {
    padding: 22px;
  }

  .funnel-bridge .cta,
  .soft-cta-row .cta,
  .article-cta-panel .cta,
  .prelead-panel .cta {
    width: 100%;
  }

  .mini-card,
  .audience-card {
    min-height: auto;
  }

  .article-layout {
    gap: 26px;
  }

  .mistake-list article {
    grid-template-columns: 1fr;
  }

  .mistake-list h3,
  .mistake-list p {
    grid-column: auto;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }

  .modal {
    padding: 14px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
    padding: 24px 20px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    gap: 14px;
  }

  .cta-small {
    width: 100%;
  }

  h1 {
    font-size: 37px;
  }

  .topic-nav a {
    white-space: nowrap;
  }
}
