:root {
  --navy-950: #0b2236;
  --navy-900: #12324a;
  --navy-800: #1b4663;
  --teal-800: #0d5f62;
  --teal-700: #117277;
  --teal-100: #dff2f0;
  --gold-700: #a96b08;
  --gold-500: #d69a2d;
  --gold-100: #fff0cc;
  --cream-50: #fbfaf6;
  --cream-100: #f4efe4;
  --slate-900: #1b2730;
  --slate-700: #3c4c57;
  --slate-600: #52636f;
  --slate-300: #c8d0d5;
  --slate-200: #dfe5e8;
  --slate-100: #eef2f3;
  --white: #ffffff;
  --danger: #9e2a2b;
  --success: #24663b;
  --shadow-sm: 0 2px 10px rgba(11, 34, 54, 0.08);
  --shadow-md: 0 12px 32px rgba(11, 34, 54, 0.13);
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --max-width: 74rem;
  --text-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: calc(100% * var(--text-scale));
  background: var(--cream-50);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-900);
  background: var(--cream-50);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--teal-800);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--navy-900);
}

p,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 760;
  line-height: 1.17;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.65rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

h4 {
  font-size: 1.12rem;
}

strong {
  color: var(--navy-950);
}

hr {
  border: 0;
  border-top: 1px solid var(--slate-200);
  margin: 2.5rem 0;
}

::selection {
  background: var(--gold-100);
  color: var(--navy-950);
}

:focus-visible {
  outline: 4px solid var(--gold-500);
  outline-offset: 3px;
}

.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: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(48rem, 100%);
  margin-inline: auto;
}

.section {
  padding: clamp(3.75rem, 8vw, 7rem) 0;
}

.section-sm {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section-muted {
  background: var(--cream-100);
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-dark h2,
.section-dark h3,
.section-dark strong,
.section-dark a {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  color: var(--teal-800);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.65rem;
  height: 0.2rem;
  content: "";
  background: var(--gold-500);
  border-radius: 999px;
}

.section-dark .eyebrow {
  color: var(--gold-100);
}

.lead {
  max-width: 48rem;
  color: var(--slate-700);
  font-size: clamp(1.18rem, 2vw, 1.36rem);
  line-height: 1.62;
}

.section-dark .lead {
  color: #dbe6ed;
}

.kicker {
  color: var(--teal-800);
  font-weight: 750;
}

.text-center {
  text-align: center;
}

.text-center .lead {
  margin-inline: auto;
}

.utility-bar {
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.9rem;
}

.utility-inner {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-message {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.utility-dot {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  background: #75d2c8;
  border-radius: 50%;
}

.text-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.text-controls span {
  margin-right: 0.35rem;
}

.text-button {
  min-width: 2.25rem;
  min-height: 2rem;
  padding: 0.2rem 0.55rem;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.4rem;
  cursor: pointer;
}

.text-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--slate-200);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 5.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.78rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  margin-top: 0.3rem;
  color: var(--teal-800);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 0.65rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.66rem;
  color: var(--navy-950);
  border-radius: 0.55rem;
  font-size: 0.91rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal-800);
  background: var(--teal-100);
}

.site-nav .nav-cta {
  margin-left: 0.4rem;
  padding-inline: 0.95rem;
  color: var(--white);
  background: var(--teal-800);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--navy-900);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(214, 154, 45, 0.2), transparent 27rem),
    linear-gradient(145deg, #f7fbfa 0%, var(--cream-50) 60%, #f7efe0 100%);
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 26rem;
  height: 26rem;
  content: "";
  border: 3rem solid rgba(17, 114, 119, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(2.25rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.hero .lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}

.hero-art {
  position: relative;
}

.hero-art img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 20px 24px rgba(11, 34, 54, 0.14));
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 39rem;
  margin-top: 1.45rem;
  padding-top: 1.15rem;
  color: var(--slate-700);
  border-top: 1px solid var(--slate-300);
  font-size: 0.94rem;
}

.hero-note svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--teal-800);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--navy-900);
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.72rem 1.2rem;
  color: var(--white);
  background: var(--teal-800);
  border: 2px solid var(--teal-800);
  border-radius: 0.7rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.button:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--slate-300);
}

.button-secondary:hover {
  color: var(--navy-950);
  background: var(--gold-100);
  border-color: var(--gold-500);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--navy-950);
  background: var(--gold-100);
  border-color: var(--gold-100);
}

.button-ghost {
  color: var(--teal-800);
  background: transparent;
  border-color: var(--teal-800);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--white);
}

.button svg,
.text-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 780;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.trust-grid {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 8.2rem;
  align-items: center;
  gap: 0.95rem;
  padding: 1.35rem 1.5rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--slate-200);
}

.icon-circle {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-800);
  background: var(--teal-100);
  border-radius: 50%;
}

.icon-circle svg {
  width: 1.55rem;
  height: 1.55rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.1rem;
  font-size: 1.03rem;
}

.trust-item span {
  display: block;
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.45;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: clamp(1.45rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p:last-child,
.card ul:last-child,
.card ol:last-child {
  margin-bottom: 0;
}

.card-accent {
  border-top: 0.35rem solid var(--gold-500);
}

.card-teal {
  border-top: 0.35rem solid var(--teal-700);
}

.card-icon {
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--teal-800);
  background: var(--teal-100);
  border-radius: 0.8rem;
}

.card-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.card .text-link {
  margin-top: 0.6rem;
}

.split {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.sticky-side {
  position: sticky;
  top: 8rem;
}

.feature-list,
.check-list,
.x-list {
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li,
.x-list li {
  position: relative;
  min-height: 1.7rem;
  padding-left: 2rem;
}

.feature-list li + li,
.check-list li + li,
.x-list li + li {
  margin-top: 0.8rem;
}

.feature-list li::before,
.check-list li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  content: "\2713";
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.x-list li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  content: "!";
  color: var(--white);
  background: var(--gold-700);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.callout {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--gold-100);
  border: 1px solid #e8c875;
  border-left: 0.45rem solid var(--gold-500);
  border-radius: var(--radius-md);
}

.callout h2,
.callout h3 {
  margin-bottom: 0.65rem;
}

.callout p:last-child,
.callout ul:last-child {
  margin-bottom: 0;
}

.callout-teal {
  background: var(--teal-100);
  border-color: #a9dcd6;
  border-left-color: var(--teal-700);
}

.callout-neutral {
  background: var(--slate-100);
  border-color: var(--slate-300);
  border-left-color: var(--navy-800);
}

.disclosure {
  padding: 1rem 1.15rem;
  color: var(--slate-700);
  background: var(--slate-100);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.55;
}

.disclosure strong {
  display: inline;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 86% 15%, rgba(214, 154, 45, 0.18), transparent 22rem),
    linear-gradient(140deg, #eef8f6, var(--cream-50) 70%);
  border-bottom: 1px solid var(--slate-200);
}

.page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
}

.page-hero .lead {
  max-width: 50rem;
  margin-bottom: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
  color: var(--slate-600);
  font-size: 0.88rem;
}

.breadcrumbs a {
  color: var(--slate-600);
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--slate-300);
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 4.25rem);
  grid-template-columns: minmax(0, 1fr) 17rem;
}

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

.article-body > h2 {
  margin-top: 3.25rem;
  margin-bottom: 1rem;
}

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

.article-body > h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-body li + li {
  margin-top: 0.5rem;
}

.article-aside {
  position: sticky;
  top: 8rem;
}

.toc {
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.toc h2 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.toc ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.toc li + li {
  margin-top: 0.45rem;
}

.toc a {
  display: block;
  padding: 0.28rem 0;
  color: var(--slate-700);
  font-size: 0.9rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--teal-800);
  text-decoration: underline;
}

.definition-list {
  margin: 0;
}

.definition-list div {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--slate-200);
}

.definition-list div:first-child {
  padding-top: 0;
}

.definition-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.definition-list dt {
  margin-bottom: 0.25rem;
  color: var(--navy-950);
  font-weight: 800;
}

.definition-list dd {
  margin: 0;
  color: var(--slate-700);
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  background: var(--white);
}

caption {
  padding: 1rem;
  color: var(--navy-950);
  background: var(--slate-100);
  font-weight: 800;
  text-align: left;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy-950);
  background: var(--teal-100);
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

.process {
  display: grid;
  gap: 1rem;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 5.4rem;
  padding: 1.3rem 1.3rem 1.3rem 5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 1.2rem;
  left: 1.3rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  content: counter(process);
  color: var(--white);
  background: var(--teal-800);
  border-radius: 50%;
  font-weight: 850;
}

.process-step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.process-step p:last-child {
  margin-bottom: 0;
}

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

.stat {
  padding: 1.4rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.stat strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--teal-800);
  font-size: 1.65rem;
}

.stat span {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.quote {
  position: relative;
  padding: 2rem 2rem 2rem 4rem;
  color: var(--navy-950);
  background: var(--white);
  border-left: 0.35rem solid var(--gold-500);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.quote::before {
  position: absolute;
  top: 0.8rem;
  left: 1.1rem;
  content: "\201c";
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.quote p {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.quote cite {
  color: var(--slate-600);
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

summary {
  position: relative;
  padding: 1.25rem 3.25rem 1.25rem 1.35rem;
  color: var(--navy-950);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  content: "+";
  color: var(--teal-800);
  background: var(--teal-100);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

.details-content {
  padding: 0 1.35rem 1.25rem;
  color: var(--slate-700);
}

.details-content p:last-child,
.details-content ul:last-child {
  margin-bottom: 0;
}

.form-card,
.tool-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

label,
legend {
  color: var(--navy-950);
  font-weight: 750;
}

.field-hint {
  color: var(--slate-600);
  font-size: 0.84rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.7rem 0.8rem;
  color: var(--slate-900);
  background: var(--white);
  border: 2px solid var(--slate-300);
  border-radius: 0.55rem;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--slate-600);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-700);
  outline: 3px solid rgba(17, 114, 119, 0.18);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.checkbox-row {
  display: grid;
  align-items: start;
  gap: 0.7rem;
  grid-template-columns: 1.25rem 1fr;
}

.checkbox-row input {
  width: 1.25rem;
  min-height: 1.25rem;
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
}

.form-status.is-visible {
  display: block;
}

.form-status.error {
  color: #751b1d;
  background: #fbe1e2;
  border: 1px solid #e8aeb0;
}

.form-status.success {
  color: #174a2a;
  background: #dff2e5;
  border: 1px solid #a6d8b4;
}

.tool-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tool-card h2 {
  font-size: 1.65rem;
}

.result-box {
  margin-top: 1.25rem;
  padding: 1.3rem;
  background: var(--teal-100);
  border: 1px solid #a9dcd6;
  border-radius: var(--radius-md);
}

.result-box[hidden] {
  display: none;
}

.result-label {
  display: block;
  color: var(--slate-700);
  font-size: 0.88rem;
}

.result-value {
  display: block;
  margin: 0.15rem 0 0.35rem;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 5vw, 2.45rem);
  font-weight: 850;
  line-height: 1.15;
}

.progress-track {
  width: 100%;
  height: 0.8rem;
  overflow: hidden;
  margin: 0.75rem 0;
  background: var(--slate-200);
  border-radius: 999px;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: var(--teal-700);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.checklist-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checklist {
  display: grid;
  gap: 1rem;
  counter-reset: checklist;
}

.checklist-item {
  display: grid;
  align-items: start;
  gap: 0.9rem;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  grid-template-columns: 2.4rem 1fr;
  counter-increment: checklist;
}

.checklist-item::before {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  content: counter(checklist);
  color: var(--white);
  background: var(--teal-800);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 850;
}

.checklist-item h2,
.checklist-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.checklist-item p:last-child {
  margin-bottom: 0;
}

.check-line {
  min-height: 2.25rem;
  margin-top: 0.7rem;
  border-bottom: 1px solid var(--slate-300);
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-item {
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.resource-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.resource-meta {
  margin-bottom: 0.65rem;
  color: var(--slate-600);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 16rem;
  height: 16rem;
  content: "";
  border: 2.2rem solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  margin-bottom: 0.55rem;
  color: var(--white);
}

.cta-band p {
  max-width: 44rem;
  margin-bottom: 0;
  color: #dbe6ed;
}

.cta-band .button-row {
  flex: 0 0 auto;
}

.site-footer {
  color: #dbe6ed;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding: 4.5rem 0 3rem;
  grid-template-columns: minmax(17rem, 1.4fr) repeat(3, minmax(9rem, 0.7fr));
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: #9eddd6;
}

.footer-brand p {
  max-width: 28rem;
  margin-top: 1rem;
  color: #c7d6df;
  font-size: 0.92rem;
}

.footer-heading {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  color: #dbe6ed;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-disclosure {
  padding: 1.4rem 0;
  color: #b8cbd6;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  min-height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #b8cbd6;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 1rem;
  bottom: 1rem;
  display: none;
  width: min(31rem, calc(100% - 2rem));
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(11, 34, 54, 0.25);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
}

.cookie-banner p {
  margin-bottom: 0.9rem;
  color: var(--slate-700);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-banner .button {
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}

.notice-bar {
  padding: 0.85rem 0;
  color: var(--navy-950);
  background: var(--gold-100);
  border-bottom: 1px solid #e8c875;
  font-size: 0.9rem;
  text-align: center;
}

.notice-bar p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 4rem 0;
  text-align: center;
}

.error-code {
  display: block;
  color: var(--gold-700);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
}

.source-note {
  color: var(--slate-600);
  font-size: 0.88rem;
}

.print-only {
  display: none;
}

@media (max-width: 70rem) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 150;
    top: calc(2.6rem + 5.1rem);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 3.4rem;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.6rem 0 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 58rem) {
  .hero-grid,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(32rem, 100%);
    margin-inline: auto;
  }

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

  .trust-item + .trust-item {
    border-top: 1px solid var(--slate-200);
    border-left: 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-aside {
    position: static;
    order: -1;
  }

  .toc ul {
    columns: 2;
    column-gap: 1.5rem;
  }

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

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-side {
    position: static;
  }
}

@media (max-width: 42rem) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .utility-message span:last-child {
    display: none;
  }

  .text-controls > span {
    display: none;
  }

  .brand-name {
    max-width: 13rem;
    font-size: 0.87rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .header-inner {
    min-height: 4.6rem;
  }

  .site-nav {
    top: calc(2.6rem + 4.6rem);
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero h1 {
    max-width: none;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stat-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .toc ul {
    columns: 1;
  }

  .process-step {
    padding: 4.6rem 1.2rem 1.2rem;
  }

  .process-step::before {
    top: 1rem;
    left: 1.2rem;
  }

  .checklist-item {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    padding: 1.2rem 0;
    flex-direction: column;
  }
}

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

@media print {
  :root {
    --text-scale: 0.95;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .utility-bar,
  .site-header,
  .site-footer,
  .cookie-banner,
  .no-print,
  .breadcrumbs,
  .article-aside,
  .cta-band,
  .notice-bar {
    display: none !important;
  }

  .section,
  .section-sm,
  .page-hero {
    padding: 1rem 0;
    background: #fff;
  }

  .container,
  .narrow {
    width: 100%;
  }

  .print-only {
    display: block;
  }

  .card,
  .checklist-item,
  .callout,
  .form-card,
  .tool-card {
    break-inside: avoid;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 8pt;
    word-break: break-all;
  }

  .check-line {
    min-height: 1.4rem;
  }
}
