/* ==========================================================================
   Finetica — design tokens
   Every colour, radius, shadow and type step used on the site is declared here.
   Nothing below this block hard-codes a colour or a pixel font size.
   ========================================================================== */

:root {
  /* Brand — sampled from the Finetica mark. */
  --brand-700: #c9352f; /* interactive text and fills: >=4.9:1 on every surface below */
  --brand-600: #f04848; /* the mark's core coral */
  --brand-500: #ff5f52;
  --brand-400: #ff7a68;
  --brand-100: #ffe4df;
  --brand-50: #fff6f4;

  /* Ink — cool navy-greys keep dense information scannable. */
  --ink-900: #0f1922;
  --ink-800: #1b2836;
  --ink-700: #2c3d4e;
  --ink-500: #58697a;
  --ink-400: #7b8a99;
  --ink-200: #d5dee6;
  --ink-100: #e8eef4;
  --ink-50: #f5f8fb;
  --white: #ffffff;

  /* Accent — used sparingly for confirmation and data cues. */
  --accent-700: #0a6b60;
  --accent-600: #109a89;
  --accent-50: #e7f6f4;

  /* Semantic aliases — components reference these, never the ramps above. */
  --surface: var(--white);
  --surface-sunken: var(--ink-50);
  --surface-invert: var(--ink-900);
  --text: var(--ink-800);
  --text-strong: var(--ink-900);
  --text-muted: var(--ink-500);
  --text-invert: var(--white);
  --border: var(--ink-100);
  --border-strong: var(--ink-200);
  --primary: var(--brand-700);
  --primary-hover: #ad2c27;
  --primary-soft: var(--brand-50);
  --focus: var(--brand-700);

  /* Shape */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-pill: 999px;

  /* Elevation — soft and shallow; this is a light, clinical surface. */
  --shadow-sm: 0 1px 2px rgb(15 25 34 / 0.04), 0 1px 3px rgb(15 25 34 / 0.05);
  --shadow-md: 0 2px 4px rgb(15 25 34 / 0.04), 0 8px 24px rgb(15 25 34 / 0.06);
  --shadow-lg: 0 4px 8px rgb(15 25 34 / 0.04), 0 20px 48px rgb(15 25 34 / 0.09);

  /* Space scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Type */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --step--1: clamp(0.8125rem, 0.79rem + 0.1vw, 0.875rem);
  --step-0: clamp(0.9375rem, 0.91rem + 0.14vw, 1rem);
  --step-1: clamp(1.0625rem, 1.02rem + 0.22vw, 1.1875rem);
  --step-2: clamp(1.25rem, 1.18rem + 0.35vw, 1.5rem);
  --step-3: clamp(1.5rem, 1.36rem + 0.7vw, 2rem);
  --step-4: clamp(1.875rem, 1.6rem + 1.35vw, 2.75rem);
  --step-5: clamp(2.25rem, 1.75rem + 2.5vw, 3.75rem);

  /* Layout */
  --container: 72rem;
  --container-narrow: 48rem;
  --header-height: 4.5rem;
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--space-4));
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-strong);
  text-wrap: balance;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p,
ul,
ol {
  margin: 0 0 var(--space-4);
}

p {
  text-wrap: pretty;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary-hover);
}

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

hr {
  height: 1px;
  margin: var(--space-6) 0;
  border: 0;
  background: var(--border);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: calc(-1 * var(--space-9));
  z-index: 100;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  font-weight: 600;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: var(--space-4);
}

/* The inlined icon sprite. Hidden here rather than with an inline style so the
   Content-Security-Policy does not need to allow inline styles. */
.icon-sprite {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: min(100% - 2 * var(--space-5), var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2 * var(--space-5), var(--container-narrow));
}

.section {
  padding-block: var(--space-9);
}

.section--tight {
  padding-block: var(--space-8);
}

.section--sunken {
  background: var(--surface-sunken);
}

.section__head {
  max-width: 42rem;
  margin-bottom: var(--space-7);
}

.section__head:last-child {
  margin-bottom: 0;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.lede {
  font-size: var(--step-1);
  color: var(--text-muted);
  max-width: 38rem;
}

.section__head--center .lede {
  margin-inline: auto;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.grid > * {
  flex: 1 1 16rem;
}

.grid--2 > * { flex-basis: 24rem; }
.grid--4 > * { flex-basis: 12rem; }

/* Vertical rhythm between sibling blocks in a column. */
.stack > * + * {
  margin-top: var(--space-5);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--primary);
  color: var(--text-invert);
}

.btn--primary:hover {
  background: var(--primary-hover);
  color: var(--text-invert);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text-strong);
}

.btn--ghost:hover {
  border-color: var(--ink-400);
  color: var(--text-strong);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--step--1);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-strong);
}

.brand__mark {
  width: auto;
  height: 1.75rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.6rem;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-strong);
}

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

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    display: none;
    padding: var(--space-4) var(--space-5) var(--space-5);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .site-header[data-nav="open"] .site-nav {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }

  .site-nav .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-9) var(--space-8);
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--brand-50), transparent 70%),
    radial-gradient(50rem 26rem at 0% 0%, var(--accent-50), transparent 65%);
}

.hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8);
}

.hero__copy {
  flex: 1 1 26rem;
}

.hero__visual {
  flex: 1 1 24rem;
}

.hero h1 {
  margin-bottom: var(--space-5);
}

.hero .lede {
  font-size: var(--step-2);
  line-height: 1.5;
  color: var(--ink-700);
  max-width: 34rem;
}

.hero__note {
  margin-top: var(--space-5);
  font-size: var(--step--1);
  color: var(--text-muted);
}

/* A stylised workpaper panel — pure CSS, no imagery to load. */
.panel {
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.panel__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-strong);
}

.panel__rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--surface-sunken);
  font-size: var(--step--1);
}

.panel__row span:first-child {
  color: var(--ink-700);
}

.panel__value {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--text-strong);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.15rem var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 600;
  white-space: nowrap;
}

.pill--ok {
  background: var(--accent-50);
  color: var(--accent-700);
}

.pill--attention {
  background: var(--brand-50);
  color: var(--brand-700);
}

.pill--neutral {
  background: var(--ink-100);
  color: var(--ink-700);
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.strip {
  padding-block: var(--space-5);
  border-block: 1px solid var(--border);
  background: var(--surface-sunken);
}

.strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3) var(--space-7);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-700);
}

.strip__list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.strip__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: var(--radius-pill);
  background: var(--brand-600);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.card--interactive:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-bottom: var(--space-2);
  font-size: var(--step-1);
}

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

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

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  color: var(--brand-700);
}

.card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

/* Numbered steps */
.steps {
  counter-reset: step;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-pill);
  background: var(--surface-invert);
  color: var(--text-invert);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ==========================================================================
   Feature list / workpaper index
   ========================================================================== */

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-grid li {
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-700);
}

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

.check-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.75rem;
  height: 0.4rem;
  border-left: 2px solid var(--accent-600);
  border-bottom: 2px solid var(--accent-600);
  transform: rotate(-45deg);
}

.check-list strong {
  color: var(--text-strong);
  font-weight: 600;
}

/* Split feature row */
.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8);
}

.split > * {
  flex: 1 1 22rem;
}

.split--reverse > :first-child {
  order: 2;
}

@media (max-width: 52rem) {
  .split--reverse > :first-child {
    order: 0;
  }
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--surface-invert);
  color: var(--text-invert);
  text-align: center;
}

.cta-band h2 {
  color: var(--text-invert);
}

.cta-band p {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ink-200);
}

.cta-band .btn-row {
  justify-content: center;
}

.cta-band .btn--ghost {
  background: transparent;
  border-color: color-mix(in srgb, var(--white) 40%, transparent);
  color: var(--text-invert);
}

.cta-band .btn--ghost:hover {
  border-color: var(--white);
  color: var(--text-invert);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field__label {
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--text-strong);
}

.field__hint {
  font-size: var(--step--1);
  color: var(--text-muted);
}

.field__error {
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--brand-700);
}

.input,
.textarea,
.select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  font-size: var(--step-0);
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input:hover,
.textarea:hover,
.select:hover {
  border-color: var(--ink-400);
}

.input:focus,
.textarea:focus,
.select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
  outline: none;
}

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

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

.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.field-row > .field {
  flex: 1 1 14rem;
}

/* Honeypot — off-screen rather than display:none so bots still see it. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--step-0);
}

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

.alert--success {
  border-color: color-mix(in srgb, var(--accent-600) 35%, transparent);
  background: var(--accent-50);
  color: var(--accent-700);
}

.alert--error {
  border-color: color-mix(in srgb, var(--brand-700) 30%, transparent);
  background: var(--brand-50);
  color: var(--brand-700);
}

/* ==========================================================================
   Legal documents
   ========================================================================== */

.doc-header {
  padding-block: var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--surface-sunken);
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
  color: var(--text-muted);
}

.doc-layout {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-block: var(--space-7) var(--space-9);
}

.doc-toc {
  flex: 1 1 15rem;
  align-self: flex-start;
  position: sticky;
  top: calc(var(--header-height) + var(--space-5));
  max-height: calc(100vh - var(--header-height) - var(--space-8));
  overflow-y: auto;
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-sunken);
}

.doc-toc h2 {
  margin-bottom: var(--space-3);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.doc-toc ol {
  margin: 0;
  padding-left: var(--space-5);
  font-size: var(--step--1);
}

.doc-toc li {
  margin-bottom: var(--space-2);
}

.doc-toc a {
  color: var(--ink-700);
  text-decoration: none;
}

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

.doc-body {
  flex: 3 1 32rem;
  max-width: 46rem;
}

.doc-body h2 {
  margin-top: var(--space-7);
  padding-top: var(--space-2);
  font-size: var(--step-2);
}

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

.doc-body h3 {
  margin-top: var(--space-5);
  font-size: var(--step-1);
}

.doc-body ul,
.doc-body ol {
  padding-left: var(--space-5);
}

.doc-body li {
  margin-bottom: var(--space-2);
}

.doc-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
  font-size: var(--step--1);
}

.doc-body th,
.doc-body td {
  padding: var(--space-3);
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.doc-body th {
  background: var(--surface-sunken);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-strong);
}

.table-scroll {
  overflow-x: auto;
}

.callout {
  padding: var(--space-5);
  margin-bottom: var(--space-5);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  background: var(--primary-soft);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  background: var(--surface-sunken);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
}

.site-footer__brand {
  flex: 1 1 18rem;
}

.site-footer__blurb {
  margin-top: var(--space-3);
  max-width: 22rem;
  font-size: var(--step--1);
  color: var(--text-muted);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  flex: 2 1 22rem;
}

.site-footer__nav > div {
  flex: 1 1 9rem;
}

.site-footer__heading {
  margin-bottom: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--step--1);
}

.site-footer__nav li {
  margin-bottom: var(--space-2);
}

.site-footer__nav a {
  color: var(--ink-700);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2) var(--space-5);
  padding-block: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: var(--step--1);
  color: var(--text-muted);
}

.site-footer__legal p {
  margin: 0;
}

/* ==========================================================================
   Motion & print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer__nav,
  .doc-toc,
  .skip-link,
  .btn,
  .cta-band {
    display: none !important;
  }

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

  .doc-layout,
  .section {
    padding-block: 0;
  }

  .doc-header {
    padding-block: 0 1.5rem;
    background: none;
  }

  .doc-body {
    max-width: none;
  }

  .doc-body table {
    break-inside: auto;
  }

  .doc-body tr,
  .callout {
    break-inside: avoid;
  }

  .site-footer {
    padding-top: 1rem;
  }

  .site-footer__inner {
    display: none;
  }

  .doc-body h2 {
    break-after: avoid;
  }

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