:root {
  --ink-deep: #0E0F14;
  --ink-navy: #161B2E;
  --parchment: #F5F2EC;
  --paper-white: #FFFFFF;
  --clause-red: #9B1C2E;
  --redline: #C4364C;
  --slate-mid: #6B7280;
  --slate-pale: #9CA3AF;
  --ink-text: #1F2937;
  --parchment-text: #E8E3DA;
  --ghost-light: #F0EDE6;
  --border-dark: #2A2F3E;
  --border-light: #DDD8CF;
  --font-heading: 'Newsreader', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --container-max: 1200px;
  --container-wide: 1440px;
  --section-pad-v: 6rem;
  --section-pad-v-sm: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --nav-height: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-text);
  background: var(--paper-white);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.UDL-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-container--wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-section {
  padding: var(--section-pad-v) 0;
}

.UDL-section--dark {
  background: var(--ink-deep);
  color: var(--parchment-text);
}

.UDL-section--dark-alt {
  background: var(--ink-navy);
  color: var(--parchment-text);
}

.UDL-section--light {
  background: var(--parchment);
  color: var(--ink-text);
}

.UDL-section--white {
  background: var(--paper-white);
  color: var(--ink-text);
}

.UDL-section--brand {
  background: var(--clause-red);
  color: var(--paper-white);
}

.UDL-section--parchment {
  background: var(--parchment);
  color: var(--ink-text);
}

.UDL-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clause-red);
  display: block;
  margin-bottom: 1rem;
}

.UDL-section--dark .UDL-eyebrow,
.UDL-section--dark-alt .UDL-eyebrow {
  color: var(--redline);
}

.UDL-section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-text);
  margin-bottom: 1.25rem;
}

.UDL-section--dark .UDL-section-headline,
.UDL-section--dark-alt .UDL-section-headline {
  color: var(--parchment-text);
}

.UDL-section--brand .UDL-section-headline {
  color: var(--paper-white);
}

.UDL-section-subhead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate-mid);
  max-width: 640px;
}

.UDL-section--dark .UDL-section-subhead,
.UDL-section--dark-alt .UDL-section-subhead {
  color: var(--slate-pale);
}

.UDL-section--brand .UDL-section-subhead {
  color: rgba(255,255,255,0.85);
}

.UDL-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.UDL-btn--primary {
  background: var(--clause-red);
  color: var(--paper-white);
  border-color: var(--clause-red);
}

.UDL-btn--primary:hover {
  background: var(--redline);
  border-color: var(--redline);
  color: var(--paper-white);
}

.UDL-btn--outline-light {
  background: transparent;
  color: var(--parchment-text);
  border-color: var(--parchment-text);
}

.UDL-btn--outline-light:hover {
  background: rgba(232,227,218,0.1);
  color: var(--parchment-text);
}

.UDL-btn--outline-dark {
  background: transparent;
  color: var(--ink-text);
  border-color: var(--ink-text);
}

.UDL-btn--outline-dark:hover {
  background: rgba(31,41,55,0.06);
  color: var(--ink-text);
}

.UDL-btn--ghost-dark {
  background: transparent;
  color: var(--slate-pale);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.UDL-btn--ghost-dark:hover {
  color: var(--parchment-text);
}

.UDL-btn--ghost-light {
  background: transparent;
  color: var(--slate-mid);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.UDL-btn--ghost-light:hover {
  color: var(--ink-text);
}

.UDL-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.UDL-page--dark-top .UDL-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.UDL-page--light-top .UDL-nav {
  background: var(--parchment);
  border-bottom: 1px solid var(--border-light);
}

.UDL-nav.UDL-nav--scrolled {
  background: var(--ink-deep);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.32);
}

.UDL-page--light-top .UDL-nav.UDL-nav--scrolled {
  background: var(--paper-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.UDL-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.UDL-nav__logo img {
  height: 32px;
  width: auto;
}

.UDL-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.UDL-nav__link {
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.UDL-page--dark-top .UDL-nav .UDL-nav__link {
  color: var(--parchment-text);
}

.UDL-page--dark-top .UDL-nav .UDL-nav__link:hover {
  color: var(--paper-white);
  background: rgba(255,255,255,0.08);
}

.UDL-page--light-top .UDL-nav .UDL-nav__link {
  color: var(--ink-text);
}

.UDL-page--light-top .UDL-nav .UDL-nav__link:hover {
  color: var(--clause-red);
  background: transparent;
}

.UDL-nav.UDL-nav--scrolled .UDL-nav__link {
  color: var(--parchment-text);
}

.UDL-nav.UDL-nav--scrolled .UDL-nav__link:hover {
  color: var(--paper-white);
  background: rgba(255,255,255,0.08);
}

.UDL-page--light-top .UDL-nav.UDL-nav--scrolled .UDL-nav__link {
  color: var(--ink-text);
}

.UDL-page--light-top .UDL-nav.UDL-nav--scrolled .UDL-nav__link:hover {
  color: var(--clause-red);
  background: transparent;
}

.UDL-nav__caret {
  font-size: 10px;
  transition: transform 0.2s;
}

.UDL-nav__item--dropdown {
  position: relative;
}

.UDL-nav__item--dropdown:hover .UDL-nav__caret {
  transform: rotate(180deg);
}

.UDL-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-deep);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  list-style: none;
  z-index: 10;
}

.UDL-nav__item--dropdown:hover .UDL-nav__dropdown,
.UDL-nav__item--dropdown:focus-within .UDL-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.UDL-nav__dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 14px;
  color: var(--parchment-text);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}

.UDL-nav__dropdown-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--paper-white);
}

.UDL-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.UDL-nav__signin {
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}

.UDL-page--dark-top .UDL-nav .UDL-nav__signin {
  color: var(--parchment-text);
}

.UDL-page--dark-top .UDL-nav .UDL-nav__signin:hover {
  color: var(--paper-white);
}

.UDL-page--light-top .UDL-nav .UDL-nav__signin {
  color: var(--ink-text);
}

.UDL-page--light-top .UDL-nav .UDL-nav__signin:hover {
  color: var(--clause-red);
}

.UDL-nav.UDL-nav--scrolled .UDL-nav__signin {
  color: var(--parchment-text);
}

.UDL-nav.UDL-nav--scrolled .UDL-nav__signin:hover {
  color: var(--paper-white);
}

.UDL-page--light-top .UDL-nav.UDL-nav--scrolled .UDL-nav__signin {
  color: var(--ink-text);
}

.UDL-page--light-top .UDL-nav.UDL-nav--scrolled .UDL-nav__signin:hover {
  color: var(--clause-red);
}

.UDL-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.UDL-hamburger__bar {
  width: 24px;
  height: 2px;
  background: var(--parchment-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  display: block;
}

.UDL-page--light-top .UDL-hamburger .UDL-hamburger__bar {
  background: var(--ink-text);
}

.UDL-nav--scrolled .UDL-hamburger .UDL-hamburger__bar {
  background: var(--parchment-text);
}

.UDL-page--light-top .UDL-nav--scrolled .UDL-hamburger .UDL-hamburger__bar {
  background: var(--ink-text);
}

.UDL-nav--open .UDL-hamburger .UDL-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.UDL-nav--open .UDL-hamburger .UDL-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.UDL-nav--open .UDL-hamburger .UDL-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.UDL-nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--ink-deep);
  border-top: 1px solid var(--border-dark);
  padding: 1rem 0 2rem;
  z-index: 899;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.UDL-nav--open .UDL-nav__mobile {
  display: block;
}

.UDL-nav__mobile-list {
  list-style: none;
  padding: 0 1.5rem;
}

.UDL-nav__mobile-item {
  border-bottom: 1px solid var(--border-dark);
}

.UDL-nav__mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 16px;
  color: var(--parchment-text);
  transition: color 0.2s;
}

.UDL-nav__mobile-link:hover {
  color: var(--paper-white);
}

.UDL-nav__mobile-sub {
  list-style: none;
  padding: 0 0 0.5rem 1rem;
}

.UDL-nav__mobile-sub-link {
  display: block;
  padding: 0.625rem 0;
  font-size: 14px;
  color: var(--slate-pale);
  transition: color 0.2s;
}

.UDL-nav__mobile-sub-link:hover {
  color: var(--parchment-text);
}

.UDL-nav__mobile-actions {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.UDL-footer {
  background: var(--ink-deep);
  color: var(--parchment-text);
  padding: 5rem 0 2.5rem;
}

.UDL-footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-footer__logo img {
  height: 30px;
  width: auto;
}

.UDL-footer__tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--slate-pale);
  max-width: 260px;
}

.UDL-footer__address {
  font-size: 13px;
  color: var(--slate-pale);
  font-style: normal;
  line-height: 1.7;
}

.UDL-footer__col-head {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchment-text);
  margin-bottom: 1.25rem;
}

.UDL-footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.UDL-footer__col-links li a {
  font-size: 14px;
  color: var(--slate-pale);
  transition: color 0.2s;
}

.UDL-footer__col-links li a:hover {
  color: var(--parchment-text);
}

.UDL-footer__bottom {
  max-width: var(--container-max);
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.UDL-footer__bottom-sig {
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: italic;
  color: var(--slate-pale);
}

.UDL-footer__bottom-copy {
  font-size: 13px;
  color: var(--slate-pale);
}

.UDL-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.UDL-footer__bottom-links li a {
  font-size: 13px;
  color: var(--slate-pale);
  transition: color 0.2s;
}

.UDL-footer__bottom-links li a:hover {
  color: var(--parchment-text);
}

.UDL-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
}

.UDL-hero--dark {
  background: var(--ink-deep);
}

.UDL-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.UDL-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: var(--parchment-text);
}

.UDL-hero__subhead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate-pale);
  max-width: 520px;
}

.UDL-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.UDL-hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.UDL-hero--light {
  background: var(--parchment);
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
}

.UDL-hero--light .UDL-hero__headline {
  color: var(--ink-text);
  font-style: normal;
}

.UDL-hero--light .UDL-hero__subhead {
  color: var(--slate-mid);
}

.UDL-page-hero {
  background: var(--ink-deep);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  color: var(--parchment-text);
}

.UDL-page-hero--light {
  background: var(--parchment);
  color: var(--ink-text);
}

.UDL-page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.UDL-page-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-page-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.15;
  color: var(--parchment-text);
}

.UDL-page-hero--light .UDL-page-hero__headline {
  color: var(--ink-text);
  font-style: normal;
}

.UDL-page-hero__subhead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate-pale);
}

.UDL-page-hero--light .UDL-page-hero__subhead {
  color: var(--slate-mid);
}

.UDL-page-hero__ornament {
  display: flex;
  justify-content: center;
  align-items: center;
}

.UDL-proof-bar {
  background: var(--ink-navy);
  padding: 3.5rem 0;
}

.UDL-proof-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.UDL-proof-bar__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.UDL-proof-bar__value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--parchment-text);
  line-height: 1;
}

.UDL-proof-bar__label {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-pale);
  line-height: 1.5;
}

.UDL-proof-bar__divider {
  width: 1px;
  background: var(--border-dark);
  height: 60px;
  align-self: center;
  display: none;
}

.UDL-how-it-works {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-how-it-works__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-how-it-works__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

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

.UDL-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
}

.UDL-step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.UDL-step__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.3;
}

.UDL-step__body {
  font-size: 15px;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.7;
}

.UDL-feature-split {
  padding: var(--section-pad-v) 0;
}

.UDL-feature-split__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.UDL-feature-split--reverse .UDL-feature-split__inner {
  direction: rtl;
}

.UDL-feature-split--reverse .UDL-feature-split__text,
.UDL-feature-split--reverse .UDL-feature-split__visual {
  direction: ltr;
}

.UDL-feature-split__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-feature-split__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.25;
}

.UDL-feature-split__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.75;
}

.UDL-feature-split__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.UDL-use-cases {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-use-cases__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-use-cases__head {
  margin-bottom: 3rem;
}

.UDL-use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.UDL-use-case-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.UDL-use-case-card:hover {
  border-color: var(--clause-red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  color: inherit;
}

.UDL-use-case-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.3;
}

.UDL-use-case-card__body {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.7;
  flex: 1;
}

.UDL-use-case-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--clause-red);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s;
}

.UDL-use-case-card:hover .UDL-use-case-card__link {
  gap: 0.625rem;
}

.UDL-testimonials {
  background: var(--ink-deep);
  padding: var(--section-pad-v) 0;
  color: var(--parchment-text);
}

.UDL-testimonials__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-testimonials__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.UDL-testimonials .UDL-section-headline {
  color: var(--parchment-text);
}

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

.UDL-testimonial {
  background: var(--ink-navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.UDL-testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--parchment-text);
  line-height: 1.7;
  flex: 1;
}

.UDL-testimonial__quote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--clause-red);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.UDL-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 1rem;
}

.UDL-testimonial__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--parchment-text);
}

.UDL-testimonial__firm {
  font-size: 12px;
  color: var(--slate-pale);
}

.UDL-cta-band {
  padding: var(--section-pad-v-sm) 0;
}

.UDL-cta-band--brand {
  background: var(--clause-red);
}

.UDL-cta-band--dark {
  background: var(--ink-deep);
}

.UDL-cta-band__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.UDL-cta-band__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--paper-white);
  line-height: 1.2;
}

.UDL-cta-band__body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.UDL-inline-mock {
  background: var(--ink-navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--parchment-text);
  position: relative;
  overflow: hidden;
}

.UDL-mock-hero {
  width: 100%;
  max-width: 480px;
  background: var(--ink-navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.UDL-mock-hero__header {
  background: rgba(255,255,255,0.04);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.UDL-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-dark);
}

.UDL-mock-dot:first-child {
  background: #9B1C2E;
}

.UDL-mock-hero__title {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--slate-pale);
  margin-left: 0.25rem;
}

.UDL-mock-hero__body {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
}

.UDL-mock-clause-text {
  flex: 1;
}

.UDL-mock-clause-line {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--parchment-text);
  line-height: 1.8;
  padding: 2px 0;
}

.UDL-mock-clause-line--muted {
  color: var(--slate-pale);
}

.UDL-mock-annotations {
  width: 190px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.UDL-mock-flag {
  background: rgba(155,28,46,0.15);
  border-left: 2px solid var(--clause-red);
  border-radius: 0 3px 3px 0;
  padding: 0.5rem 0.625rem;
}

.UDL-mock-flag__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--redline);
  font-weight: 500;
  line-height: 1.4;
}

.UDL-mock-flag__ref {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-pale);
  margin-top: 2px;
}

.UDL-mock-pipeline {
  background: var(--ink-navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  width: 100%;
}

.UDL-mock-pipeline__stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.UDL-mock-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.UDL-mock-stage__node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--clause-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(155,28,46,0.15);
  color: var(--redline);
}

.UDL-mock-stage__label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--slate-pale);
  text-align: center;
  max-width: 80px;
  line-height: 1.4;
}

.UDL-mock-stage__arrow {
  width: 40px;
  height: 2px;
  background: var(--border-dark);
  position: relative;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 1.5rem;
}

.UDL-mock-stage__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--border-dark);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.UDL-mock-diff {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.UDL-mock-diff__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ghost-light);
  border-bottom: 1px solid var(--border-light);
}

.UDL-mock-diff__col-label {
  padding: 0.625rem 1rem;
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.UDL-mock-diff__col-label--right {
  border-left: 1px solid var(--border-light);
}

.UDL-mock-diff__rows {
  display: flex;
  flex-direction: column;
}

.UDL-mock-diff__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--ghost-light);
}

.UDL-mock-diff__cell {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-mid);
  line-height: 1.5;
}

.UDL-mock-diff__cell--right {
  border-left: 1px solid var(--border-light);
}

.UDL-mock-diff__cell--flagged {
  border-left: 3px solid var(--clause-red);
  background: rgba(155,28,46,0.04);
  color: var(--ink-text);
}

.UDL-mock-folder {
  background: var(--parchment);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  width: 100%;
}

.UDL-mock-folder__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.UDL-mock-folder__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.UDL-mock-folder__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.UDL-mock-folder__icon {
  color: var(--slate-mid);
  font-size: 14px;
  flex-shrink: 0;
}

.UDL-mock-folder__name {
  font-size: 13px;
  color: var(--ink-text);
  flex: 1;
}

.UDL-mock-folder__bar-wrap {
  width: 80px;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  overflow: hidden;
}

.UDL-mock-folder__bar {
  height: 100%;
  border-radius: 3px;
}

.UDL-mock-folder__bar--green {
  background: #16A34A;
  width: 100%;
}

.UDL-mock-folder__bar--red {
  background: var(--clause-red);
  width: 65%;
}

.UDL-mock-folder__bar--gray {
  background: var(--border-light);
  width: 30%;
}

.UDL-mock-brief {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.UDL-mock-brief__header {
  background: var(--ink-deep);
  padding: 1rem 1.5rem;
}

.UDL-mock-brief__doc-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--parchment-text);
}

.UDL-mock-brief__meta {
  font-size: 11px;
  color: var(--slate-pale);
  margin-top: 3px;
}

.UDL-mock-brief__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.UDL-mock-brief__section-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  border-bottom: 1px solid var(--ghost-light);
  padding-bottom: 0.5rem;
}

.UDL-mock-brief__entry {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.UDL-mock-brief__badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 1px;
}

.UDL-mock-brief__badge--high {
  background: rgba(155,28,46,0.15);
  color: var(--clause-red);
}

.UDL-mock-brief__badge--med {
  background: rgba(251,191,36,0.15);
  color: #92400E;
}

.UDL-mock-brief__badge--std {
  background: rgba(107,114,128,0.12);
  color: var(--slate-mid);
}

.UDL-mock-brief__text {
  font-size: 12px;
  color: var(--ink-text);
  line-height: 1.5;
}

.UDL-mock-brief__clause {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-mid);
  margin-top: 3px;
}

.UDL-mock-arch {
  background: var(--ink-navy);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  width: 100%;
}

.UDL-mock-arch__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-pale);
  text-align: center;
  margin-bottom: 1.5rem;
}

.UDL-mock-arch__diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.UDL-mock-arch__firm {
  border: 1.5px dashed var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 100px;
}

.UDL-mock-arch__firm-label {
  font-size: 11px;
  color: var(--slate-pale);
  font-weight: 500;
}

.UDL-mock-arch__firm-icon {
  font-size: 20px;
  color: var(--parchment-text);
}

.UDL-mock-arch__engine {
  border: 1.5px solid var(--clause-red);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(155,28,46,0.1);
}

.UDL-mock-arch__engine-label {
  font-size: 11px;
  color: var(--redline);
  font-weight: 500;
}

.UDL-mock-arch__arrow {
  color: var(--border-dark);
  font-size: 16px;
}

.UDL-mock-api {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
}

.UDL-mock-api__endpoint {
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
}

.UDL-mock-api__endpoint:last-child {
  border-bottom: none;
}

.UDL-mock-api__method-path {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.375rem;
}

.UDL-mock-api__method {
  font-size: 11px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}

.UDL-mock-api__method--post {
  background: rgba(155,28,46,0.12);
  color: var(--clause-red);
}

.UDL-mock-api__method--get {
  background: rgba(107,114,128,0.12);
  color: var(--slate-mid);
}

.UDL-mock-api__path {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-text);
}

.UDL-mock-api__desc {
  font-size: 12px;
  color: var(--slate-mid);
  margin-left: 60px;
}

.UDL-pricing-section {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-pricing-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.UDL-pricing-card {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper-white);
  position: relative;
}

.UDL-pricing-card--featured {
  border-color: var(--clause-red);
  box-shadow: 0 8px 40px rgba(155,28,46,0.12);
  background: var(--paper-white);
}

.UDL-pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clause-red);
  color: var(--paper-white);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 14px;
  border-radius: 12px;
  white-space: nowrap;
}

.UDL-pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 0.5rem;
}

.UDL-pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink-text);
  line-height: 1;
  margin: 1rem 0 0.25rem;
}

.UDL-pricing-card__unit {
  font-size: 13px;
  color: var(--slate-mid);
  margin-bottom: 1rem;
}

.UDL-pricing-card__desc {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.UDL-pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}

.UDL-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.5;
}

.UDL-pricing-card__features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(155,28,46,0.12);
  border: 1.5px solid var(--clause-red);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='%239B1C2E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
}

.UDL-pricing-card__note {
  font-size: 12px;
  color: var(--slate-pale);
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 1rem;
}

.UDL-pricing-rationale {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-pricing-rationale__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-pricing-rationale__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 1.25rem;
}

.UDL-pricing-rationale__body {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
}

.UDL-faq {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-faq__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-faq__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 2.5rem;
}

.UDL-faq-item {
  border-bottom: 1px solid var(--border-light);
}

.UDL-faq-item:first-of-type {
  border-top: 1px solid var(--border-light);
}

.UDL-faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  gap: 1rem;
  color: var(--ink-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

.UDL-faq-item__question:hover {
  color: var(--clause-red);
}

.UDL-faq-item__icon {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--slate-mid);
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.UDL-faq-item--open .UDL-faq-item__icon {
  transform: rotate(45deg);
  color: var(--clause-red);
}

.UDL-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.UDL-faq-item--open .UDL-faq-item__answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.UDL-faq-item__answer-text {
  font-size: 15px;
  color: var(--slate-mid);
  line-height: 1.75;
}

.UDL-capabilities-grid {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-capabilities-grid__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-capabilities-grid__head {
  margin-bottom: 3rem;
}

.UDL-capabilities-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.UDL-capability-item {
  padding: 1.25rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--ink-text);
  line-height: 1.5;
}

.UDL-capability-item::before {
  content: '\25A0';
  color: var(--clause-red);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.UDL-integrations {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-integrations__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-integrations__head {
  margin-bottom: 3rem;
}

.UDL-integrations__logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.UDL-integration-logo {
  padding: 0.875rem 1.5rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-mid);
}

.UDL-security-section {
  padding: var(--section-pad-v) 0;
}

.UDL-security-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-security-section__head {
  margin-bottom: 3rem;
}

.UDL-security-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
}

.UDL-security-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--parchment-text);
  line-height: 1.55;
}

.UDL-security-section--light .UDL-security-points li {
  background: var(--paper-white);
  border-color: var(--border-light);
  color: var(--ink-text);
}

.UDL-security-points li::before {
  content: '\2713';
  color: var(--clause-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.UDL-about-founder {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-about-founder__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.UDL-about-founder__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.UDL-about-founder__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1rem;
}

.UDL-about-founder__name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.2;
}

.UDL-about-founder__title {
  font-size: 14px;
  font-weight: 500;
  color: var(--clause-red);
  letter-spacing: 0.06em;
}

.UDL-about-founder__bio {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
}

.UDL-team-grid {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-team-grid__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-team-grid__head {
  margin-bottom: 3rem;
}

.UDL-team-grid__members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.UDL-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.UDL-team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  background: var(--ghost-light);
}

.UDL-team-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-text);
}

.UDL-team-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--clause-red);
  letter-spacing: 0.04em;
}

.UDL-team-card__bio {
  font-size: 14px;
  color: var(--slate-mid);
  line-height: 1.7;
}

.UDL-about-values {
  background: var(--ink-deep);
  padding: var(--section-pad-v) 0;
}

.UDL-about-values__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.UDL-about-values__head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.UDL-about-values__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.UDL-about-values__points li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 16px;
  color: var(--parchment-text);
  line-height: 1.65;
  padding-left: 1.25rem;
  border-left: 2px solid var(--clause-red);
}

.UDL-about-location {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-about-location__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.UDL-about-location__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-about-location__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink-text);
}

.UDL-about-location__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.75;
}

.UDL-about-location__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.UDL-docs-hero {
  background: var(--parchment);
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
}

.UDL-docs-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.UDL-docs-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink-text);
  line-height: 1.15;
}

.UDL-docs-hero__subhead {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-top: 0.875rem;
}

.UDL-docs-ornament {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.UDL-docs-ornament__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.UDL-docs-ornament__icon {
  color: var(--clause-red);
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.UDL-docs-ornament__label {
  font-size: 13px;
  color: var(--slate-mid);
}

.UDL-docs-layout {
  background: var(--paper-white);
  padding: 4rem 0 6rem;
}

.UDL-docs-layout__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-docs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.UDL-docs-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--paper-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.UDL-docs-card:hover {
  border-color: var(--clause-red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  color: inherit;
}

.UDL-docs-card__icon {
  font-size: 20px;
  color: var(--clause-red);
}

.UDL-docs-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-text);
}

.UDL-docs-card__meta {
  font-size: 13px;
  color: var(--slate-mid);
}

.UDL-docs-prose {
  background: var(--paper-white);
  padding: 4rem 0 6rem;
}

.UDL-docs-prose__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.UDL-docs-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}

.UDL-docs-sidebar__head {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 1rem;
}

.UDL-docs-sidebar__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.UDL-docs-sidebar__links li a {
  display: block;
  font-size: 14px;
  color: var(--slate-mid);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.UDL-docs-sidebar__links li a:hover,
.UDL-docs-sidebar__links li a.UDL-active {
  color: var(--clause-red);
  background: rgba(155,28,46,0.06);
}

.UDL-docs-content {
  min-width: 0;
}

.UDL-docs-content__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink-text);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.UDL-docs-content__subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.UDL-qs-steps {
  list-style: none;
  counter-reset: qs-step;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-qs-steps li {
  counter-increment: qs-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--ghost-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.55;
}

.UDL-qs-steps li::before {
  content: counter(qs-step);
  min-width: 28px;
  height: 28px;
  background: var(--clause-red);
  color: var(--paper-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.UDL-blog-hero {
  background: var(--parchment);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
}

.UDL-blog-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.UDL-blog-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  font-style: italic;
  color: var(--ink-text);
  line-height: 1.2;
}

.UDL-blog-hero__subhead {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-top: 1rem;
}

.UDL-blog-hero__ornament {
  padding: 1.5rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.UDL-blog-hero__ornament-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 1rem;
}

.UDL-blog-hero__category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.UDL-category-pill {
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--ghost-light);
  color: var(--slate-mid);
  border: 1px solid var(--border-light);
}

.UDL-category-pill--active {
  background: var(--clause-red);
  color: var(--paper-white);
  border-color: var(--clause-red);
}

.UDL-blog-list {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-blog-list__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.UDL-blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.UDL-blog-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: var(--border-light);
  color: inherit;
}

.UDL-blog-card__cover {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--ghost-light);
}

.UDL-blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.UDL-blog-card__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clause-red);
}

.UDL-blog-card__headline {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.35;
}

.UDL-blog-card:hover .UDL-blog-card__headline {
  color: var(--clause-red);
}

.UDL-blog-card__date {
  font-size: 12px;
  color: var(--slate-pale);
  margin-top: auto;
}

.UDL-article-hero {
  background: var(--parchment);
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
}

.UDL-article-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-article-hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clause-red);
  margin-bottom: 1rem;
}

.UDL-article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink-text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.UDL-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: var(--slate-mid);
  flex-wrap: wrap;
}

.UDL-article-body {
  background: var(--paper-white);
  padding: 4rem 0 6rem;
}

.UDL-article-body__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-prose {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-text);
}

.UDL-prose h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.UDL-prose h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.UDL-prose p {
  margin-bottom: 1.25rem;
  color: var(--ink-text);
}

.UDL-prose ul,
.UDL-prose ol {
  padding-left: 1.75rem;
  margin-bottom: 1.25rem;
}

.UDL-prose ul {
  list-style: disc;
}

.UDL-prose ol {
  list-style: decimal;
}

.UDL-prose li {
  margin-bottom: 0.5rem;
  color: var(--ink-text);
}

.UDL-prose blockquote {
  border-left: 3px solid var(--clause-red);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--ghost-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--slate-mid);
}

.UDL-prose pre {
  background: var(--ink-deep);
  color: var(--parchment-text);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.UDL-prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--ghost-light);
  color: var(--clause-red);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.UDL-prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-size: inherit;
}

.UDL-prose img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.UDL-case-studies {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-case-studies__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-case-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.UDL-case-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.UDL-case-card__sidebar {
  background: var(--ink-deep);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.UDL-case-card__firm-type {
  font-size: 12px;
  color: var(--slate-pale);
  font-weight: 400;
  line-height: 1.5;
}

.UDL-case-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--parchment-text);
  line-height: 1.35;
}

.UDL-case-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--paper-white);
}

.UDL-case-card__block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.UDL-case-card__block-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.UDL-case-card__block-text {
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.65;
}

.UDL-case-card__outcome {
  padding: 1.25rem;
  background: var(--ghost-light);
  border-left: 3px solid var(--clause-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.UDL-case-card__outcome-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clause-red);
  margin-bottom: 0.5rem;
}

.UDL-case-card__outcome-text {
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.65;
}

.UDL-contact-section {
  background: var(--paper-white);
  padding: var(--section-pad-v) 0;
}

.UDL-contact-section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.UDL-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.UDL-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.UDL-form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-text);
}

.UDL-form-input,
.UDL-form-textarea,
.UDL-form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-text);
  background: var(--paper-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.UDL-form-input:focus,
.UDL-form-textarea:focus,
.UDL-form-select:focus {
  border-color: var(--clause-red);
  box-shadow: 0 0 0 3px rgba(155,28,46,0.08);
}

.UDL-form-input::placeholder,
.UDL-form-textarea::placeholder {
  color: var(--slate-pale);
}

.UDL-form-textarea {
  resize: vertical;
  min-height: 140px;
}

.UDL-contact-info {
  background: var(--parchment);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.UDL-contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.UDL-contact-info__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.UDL-contact-info__value {
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.5;
}

.UDL-contact-info__value a {
  color: var(--clause-red);
  transition: color 0.2s;
}

.UDL-contact-info__value a:hover {
  color: var(--redline);
}

.UDL-legal-content {
  background: var(--paper-white);
  padding: calc(var(--nav-height) + 3rem) 0 5rem;
}

.UDL-legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  color: var(--ink-text);
}

.UDL-legal-content__inner h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--ink-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.UDL-legal-content__inner .UDL-legal-updated {
  font-size: 13px;
  color: var(--slate-mid);
  margin-bottom: 3rem;
  display: block;
}

.UDL-legal-content__inner h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-text);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.UDL-legal-content__inner h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-text);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.UDL-legal-content__inner p {
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.UDL-legal-content__inner ul,
.UDL-legal-content__inner ol {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
}

.UDL-legal-content__inner ul {
  list-style: disc;
}

.UDL-legal-content__inner ol {
  list-style: decimal;
}

.UDL-legal-content__inner li {
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.UDL-legal-content__inner a {
  color: var(--clause-red);
  transition: color 0.2s;
}

.UDL-legal-content__inner a:hover {
  color: var(--redline);
}

.UDL-auth-page {
  min-height: 100vh;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.UDL-auth-card {
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}

.UDL-auth-card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.UDL-auth-card__logo img {
  height: 30px;
  width: auto;
}

.UDL-auth-card__title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink-text);
  text-align: center;
  margin-bottom: 0.375rem;
}

.UDL-auth-card__subtitle {
  font-size: 14px;
  color: var(--slate-mid);
  text-align: center;
  margin-bottom: 2rem;
}

.UDL-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-auth-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.UDL-auth-form__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.UDL-auth-form__link {
  font-size: 13px;
  color: var(--clause-red);
  transition: color 0.2s;
}

.UDL-auth-form__link:hover {
  color: var(--redline);
}

.UDL-auth-card__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.UDL-auth-card__footer-text {
  font-size: 13px;
  color: var(--slate-mid);
}

.UDL-auth-card__footer-text a {
  color: var(--clause-red);
  transition: color 0.2s;
}

.UDL-auth-card__footer-text a:hover {
  color: var(--redline);
}

.UDL-auth-card__legal {
  margin-top: 1rem;
  font-size: 11px;
  color: var(--slate-pale);
}

.UDL-auth-card__legal a {
  color: var(--slate-mid);
  transition: color 0.2s;
}

.UDL-auth-card__legal a:hover {
  color: var(--ink-text);
}

.UDL-sol-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.UDL-sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.125rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-text);
  line-height: 1.5;
}

.UDL-sol-list li::before {
  content: '\25A0';
  color: var(--clause-red);
  font-size: 8px;
  margin-top: 4px;
  flex-shrink: 0;
}

.UDL-sol-features {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-sol-features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-sol-features__head {
  margin-bottom: 2.5rem;
}

.UDL-sol-problem {
  padding: var(--section-pad-v) 0;
}

.UDL-sol-problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.UDL-sol-problem__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink-text);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.UDL-sol-problem__body {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.8;
}

.UDL-sol-workflow {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-sol-workflow__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.UDL-sol-workflow__head {
  margin-bottom: 2.5rem;
}

.UDL-sol-workflow-steps {
  list-style: none;
  counter-reset: workflow-step;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.UDL-sol-workflow-steps li {
  counter-increment: workflow-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-text);
  line-height: 1.55;
}

.UDL-sol-workflow-steps li::before {
  content: counter(workflow-step);
  min-width: 28px;
  height: 28px;
  background: var(--clause-red);
  color: var(--paper-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.UDL-sec-compliance {
  background: var(--parchment);
  padding: var(--section-pad-v) 0;
}

.UDL-sec-compliance__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.UDL-sec-compliance__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--ink-text);
  margin-bottom: 1.25rem;
}

.UDL-sec-compliance__body {
  font-size: 16px;
  color: var(--slate-mid);
  line-height: 1.8;
}

.UDL-sec-compliance__ornament {
  padding: 2rem;
  background: var(--paper-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.UDL-sec-compliance__ornament-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clause-red);
  margin-bottom: 1rem;
}

.UDL-sec-compliance__points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.UDL-sec-compliance__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 13px;
  color: var(--slate-mid);
  line-height: 1.5;
  list-style: none;
}

.UDL-sec-compliance__points li::before {
  content: '\2713';
  color: var(--clause-red);
  font-weight: 700;
  flex-shrink: 0;
}

.UDL-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.UDL-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink-navy);
  border-top: 1px solid var(--border-dark);
  z-index: 9999;
  padding: 1rem 0;
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  color: var(--parchment-text);
  line-height: 1.6;
  flex: 1;
  min-width: 260px;
}

.cookie-banner__text a {
  color: var(--redline);
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-banner__text a:hover {
  color: var(--parchment-text);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  color: var(--parchment-text);
  background: transparent;
  border: 1.5px solid var(--parchment-text);
}

.cookie-banner__btn:hover {
  background: var(--parchment-text);
  color: var(--ink-deep);
}

.cookie-banner__btn--primary {
  background: var(--clause-red);
  color: var(--paper-white);
  border-color: var(--clause-red);
}

.cookie-banner__btn--primary:hover {
  background: var(--redline);
  border-color: var(--redline);
  color: var(--paper-white);
}

@media (max-width: 1024px) {
  .UDL-proof-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .UDL-capabilities-grid__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .UDL-pricing-grid {
    gap: 1rem;
  }

  .UDL-about-founder__inner {
    grid-template-columns: 260px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .UDL-hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .UDL-hero__visual {
    justify-content: center;
  }

  .UDL-page-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .UDL-feature-split__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .UDL-feature-split--reverse .UDL-feature-split__inner {
    direction: ltr;
  }

  .UDL-about-values__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .UDL-case-card {
    grid-template-columns: 1fr;
  }

  .UDL-contact-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .UDL-about-location__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .UDL-sec-compliance__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .UDL-about-founder__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .UDL-about-founder__photo {
    max-width: 300px;
  }

  .UDL-blog-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .UDL-docs-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad-v: 4rem;
    --section-pad-v-sm: 2.5rem;
  }

  .UDL-nav__links,
  .UDL-nav__actions {
    display: none;
  }

  .UDL-hamburger {
    display: flex;
  }

  .UDL-steps {
    grid-template-columns: 1fr;
  }

  .UDL-use-cases__grid {
    grid-template-columns: 1fr;
  }

  .UDL-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .UDL-pricing-grid {
    grid-template-columns: 1fr;
  }

  .UDL-team-grid__members {
    grid-template-columns: repeat(2, 1fr);
  }

  .UDL-capabilities-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .UDL-sol-list {
    grid-template-columns: 1fr;
  }

  .UDL-sol-problem__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .UDL-docs-prose__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .UDL-docs-sidebar {
    position: static;
  }

  .UDL-docs-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .UDL-blog-grid {
    grid-template-columns: 1fr;
  }

  .UDL-form-row {
    grid-template-columns: 1fr;
  }

  .UDL-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .UDL-footer__brand {
    grid-column: 1 / -1;
  }

  .UDL-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .UDL-proof-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .UDL-hero {
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .UDL-container,
  .UDL-container--wide {
    padding: 0 1.25rem;
  }

  .UDL-footer__inner {
    grid-template-columns: 1fr;
  }

  .UDL-team-grid__members {
    grid-template-columns: 1fr;
  }

  .UDL-docs-cards {
    grid-template-columns: 1fr;
  }

  .UDL-capabilities-grid__items {
    grid-template-columns: 1fr;
  }

  .UDL-auth-card {
    padding: 2rem 1.5rem;
  }

  .UDL-proof-bar__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .UDL-hero__headline {
    font-size: 2.25rem;
  }
}

.UDL-auth-card__headline {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--ink-text);
  text-align: center;
  margin-bottom: 0.375rem;
}

.UDL-auth-card__sub {
  font-size: 14px;
  color: var(--slate-mid);
  text-align: center;
  margin-bottom: 2rem;
}

.UDL-auth-card__switch {
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--slate-mid);
  text-align: center;
}

.UDL-auth-card__switch a {
  color: var(--clause-red);
  transition: color 0.2s;
}

.UDL-auth-card__switch a:hover {
  color: var(--redline);
}

.UDL-auth-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.UDL-article-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink-text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.UDL-article-hero__lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1rem;
}

.UDL-article-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  color: var(--slate-mid);
  transition: color 0.2s;
  margin-bottom: 1rem;
}

.UDL-article-hero__back:hover {
  color: var(--clause-red);
}

.UDL-contact-form {
  width: 100%;
}
