:root {
  --ink: #102f34;
  --ink-deep: #08272d;
  --ink-soft: #355158;
  --paper: #fffdf8;
  --canvas: #f5f1e9;
  --white: #ffffff;
  --coral: #ee705d;
  --coral-dark: #d95846;
  --coral-soft: #f9ded7;
  --mint: #dcebe6;
  --mint-light: #eff6f3;
  --line: #d8ded9;
  --line-dark: rgba(255, 255, 255, 0.17);
  --success: #16725d;
  --shadow-sm: 0 10px 35px rgba(13, 44, 50, 0.08);
  --shadow-lg: 0 30px 80px rgba(5, 34, 40, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-display: clamp(2.75rem, 5vw, 4.5rem);
  --type-lead: 1.25rem;
  --type-body: 1rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--coral-soft);
  color: var(--ink-deep);
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

h1,
h2 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 5.2vw, 4.9rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.5vw, 4.2rem);
}

h3 {
  color: var(--ink-deep);
  font-size: 1.18rem;
  line-height: 1.28;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink-deep);
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(238, 112, 93, 0.6);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--ink-soft);
}

.eyebrow-light {
  color: #f4a092;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(2px);
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(216, 80, 61, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 15px 32px rgba(216, 80, 61, 0.3);
}

.button-secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--ink-deep);
}

.button-light {
  background: var(--white);
  color: var(--ink-deep);
}

.button-coral {
  background: var(--coral);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  color: var(--white);
}

.button-coral:hover {
  background: #f17c68;
}

.button-ghost {
  min-width: 96px;
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--ink-soft);
  background: var(--mint-light);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.82rem;
}

.button-small:hover {
  background: var(--ink-deep);
}

.button-full {
  width: 100%;
}

.button-grow {
  flex: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 700;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  border-color: var(--white);
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.dark-link {
  border-color: rgba(11, 49, 55, 0.26);
  color: var(--ink);
}

.dark-link:hover {
  border-color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 47, 52, 0.1);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 44px;
  color: var(--coral);
  stroke-width: 1.5;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 680;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink-deep);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9aa8a5;
  font-size: 0.75rem;
  font-weight: 800;
}

.language-button {
  min-width: 28px;
  min-height: 32px;
  padding: 4px;
  border: 0;
  background: transparent;
  color: #8a9a97;
  font-size: 0.74rem;
  font-weight: 800;
}

.language-button.is-active {
  color: var(--ink-deep);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 34, 40, 0.1), rgba(5, 34, 40, 0.36)),
    radial-gradient(circle at 16% 0%, rgba(57, 116, 114, 0.38), transparent 33%);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(226, 239, 234, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 12%;
  left: 16%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px rgba(238, 112, 93, 0.12);
  content: "";
}

.hero-orbit-one {
  top: -35%;
  right: -12%;
  width: 660px;
  height: 660px;
}

.hero-orbit-two {
  right: 11%;
  bottom: -48%;
  width: 520px;
  height: 520px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 735px;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.82fr);
  align-items: center;
  gap: clamp(45px, 7vw, 92px);
  padding-top: 70px;
  padding-bottom: 78px;
}

.hero-copy {
  padding: 25px 0;
}

.hero h1 {
  color: var(--white);
}

html[lang="de"] .hero h1 {
  max-width: 720px;
  font-size: clamp(3.05rem, 4.6vw, 4.4rem);
}

.case-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  color: #dfecea;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fd9c3;
  box-shadow: 0 0 0 5px rgba(143, 217, 195, 0.12);
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 34px;
  color: #d4e1df;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #bed0cd;
  font-size: 0.78rem;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-list svg {
  width: 15px;
  height: 15px;
  color: #8fd9c3;
  stroke-width: 2.2;
}

/* Eligibility checker */
.claim-check-card {
  scroll-margin-top: 100px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.checker-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.checker-header .eyebrow {
  margin-bottom: 7px;
}

.checker-header h2 {
  max-width: 290px;
  margin: 0;
  font-family: var(--sans);
  font-size: 1.36rem;
  font-weight: 760;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.secure-badge {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--mint-light);
  color: var(--success);
  font-size: 0.65rem;
  font-weight: 760;
}

.secure-badge svg {
  width: 13px;
  height: 13px;
}

.progress-shell {
  margin: 24px 0 25px;
}

.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #71807e;
  font-size: 0.67rem;
  font-weight: 650;
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 10px;
  background: #e7eae6;
}

.progress-track span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 300ms ease;
}

.form-step[hidden] {
  display: none;
}

.field-group {
  margin-bottom: 19px;
}

.field-group > label,
.field-group legend {
  display: block;
  margin-bottom: 9px;
  color: var(--ink-deep);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.45;
}

.field-group fieldset,
fieldset.field-group {
  min-width: 0;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  border: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  border: 1px solid #ccd3cf;
  border-radius: 8px;
  outline: 0;
  background: var(--white);
  color: var(--ink-deep);
  font-size: 0.84rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

select {
  padding-right: 35px;
}

input::placeholder {
  color: #97a29f;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(16, 47, 52, 0.09);
}

input.is-invalid,
select.is-invalid {
  border-color: var(--coral-dark);
  background: #fff9f7;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 8px;
}

.choice {
  position: relative;
  display: flex;
  min-width: 0;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice span {
  display: flex;
  min-width: 0;
  min-height: 58px;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 10px 9px;
  border: 1px solid #d3d9d5;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.choice:hover span {
  border-color: #81918e;
}

.choice input:checked + span {
  border-color: var(--ink);
  background: var(--mint-light);
  box-shadow: inset 0 0 0 1px var(--ink);
  color: var(--ink-deep);
}

.choice input:focus-visible + span {
  outline: 3px solid rgba(238, 112, 93, 0.5);
  outline-offset: 2px;
}

.choice-row.is-invalid .choice span {
  border-color: rgba(216, 88, 70, 0.7);
}

.form-error {
  min-height: 18px;
  margin: -7px 0 8px;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 650;
}

.form-footnote {
  margin: 9px 0 0;
  color: #7f8d8a;
  font-size: 0.67rem;
  text-align: center;
}

.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-banner {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 18px;
  padding: 13px;
  border: 1px solid #c9e5da;
  border-radius: 10px;
  background: #f0f8f5;
}

.result-banner.needs-review {
  border-color: #ead6ad;
  background: #fff9eb;
}

.result-banner svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  color: var(--success);
  stroke-width: 1.9;
}

.result-banner.needs-review svg {
  color: #a66f18;
}

.result-banner strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink-deep);
  font-size: 0.78rem;
  line-height: 1.3;
}

.result-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.45;
}

.optional {
  color: #8b9895;
  font-size: 0.66rem;
  font-weight: 500;
}

.consent-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 15px;
  color: #667572;
  font-size: 0.65rem;
  line-height: 1.45;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.consent-row input[aria-invalid="true"] {
  outline: 2px solid var(--coral-dark);
  outline-offset: 2px;
}

.consent-row a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-actions {
  display: flex;
  gap: 9px;
}

.success-state {
  min-height: 408px;
  padding: 52px 18px 30px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--success);
}

.success-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.5;
}

.success-state .eyebrow {
  margin-bottom: 8px;
}

.success-state h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.success-state > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.text-button {
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid var(--ink-soft);
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

/* Producer strip */
.producer-strip {
  padding: 29px 0 26px;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
}

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

.producer-inner > p {
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.producer-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
  margin-bottom: 11px;
  color: var(--ink-deep);
}

.producer-list span {
  padding: 0 23px;
  border-right: 1px solid #cbd2ce;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.producer-list span:last-child {
  border-right: 0;
}

.producer-inner small {
  color: #7f8b88;
  font-size: 0.63rem;
}

/* Shared sections */
.section {
  padding: clamp(90px, 11vw, 145px) 0;
}

.section-heading {
  margin-bottom: 55px;
}

.narrow-heading {
  max-width: 790px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Eligibility */
.eligibility-section {
  background: var(--paper);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.criterion-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.criterion-card::after {
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  content: "";
}

.criterion-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #c8d2ce;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.criterion-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-light);
  color: var(--ink);
}

.criterion-icon svg {
  width: 27px;
  height: 27px;
}

.criterion-card h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.criterion-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.industry-panel {
  display: grid;
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--mint-light);
  grid-template-columns: 0.7fr 1.5fr;
  gap: 25px 45px;
}

.industry-copy .eyebrow {
  margin-bottom: 9px;
}

.industry-copy h3 {
  max-width: 250px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.industry-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.industry-tags > span {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(16, 47, 52, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-deep);
  font-size: 0.73rem;
  font-weight: 700;
}

.industry-tags svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--coral-dark);
}

/* Case */
.case-section {
  position: relative;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.case-section::before {
  position: absolute;
  top: -220px;
  left: -150px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.case-wave {
  position: absolute;
  right: -9%;
  bottom: -46%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.case-wave::before,
.case-wave::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: inherit;
  content: "";
}

.case-wave::before {
  inset: 60px;
}

.case-wave::after {
  inset: 125px;
}

.case-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 130px);
}

.case-copy {
  align-self: center;
}

.case-copy h2 {
  color: var(--white);
}

.case-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #b8ccca;
  font-size: 1rem;
}

.case-timeline {
  position: relative;
  padding: 7px 0;
}

.case-timeline::before {
  position: absolute;
  top: 19px;
  bottom: 87px;
  left: 114px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 36px;
  padding-bottom: 37px;
}

.timeline-item::before {
  position: absolute;
  top: 10px;
  left: 110px;
  width: 9px;
  height: 9px;
  border: 3px solid var(--ink-deep);
  border-radius: 50%;
  background: #7e9b98;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.32);
  content: "";
}

.timeline-current::before {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(238, 112, 93, 0.14);
}

.timeline-date {
  padding-top: 4px;
  color: #8fa8a5;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  text-align: right;
}

.timeline-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.95rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: #a9bfbc;
  font-size: 0.78rem;
}

.case-disclaimer {
  margin: 7px 0 0 128px;
  padding: 14px 15px;
  border-left: 2px solid var(--coral);
  background: rgba(255, 255, 255, 0.05);
  color: #91aaa7;
  font-size: 0.66rem;
  line-height: 1.5;
}

/* Process */
.process-section {
  background: var(--canvas);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.process-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.process-heading > p {
  margin-bottom: 4px !important;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-card {
  position: relative;
  display: flex;
  min-height: 308px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}

.process-card::after {
  position: absolute;
  top: 44px;
  right: -13px;
  z-index: 2;
  width: 24px;
  height: 1px;
  background: #c7d0cc;
  content: "";
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 63px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--coral-dark);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 600;
}

.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.process-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.process-time {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #788784;
  font-size: 0.63rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-card-accent {
  border-color: var(--ink);
  background: var(--ink);
}

.process-card-accent .process-number {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f4a092;
}

.process-card-accent h3 {
  color: var(--white);
}

.process-card-accent p {
  color: #bfd0ce;
}

.process-card-accent .process-time {
  border-color: rgba(255, 255, 255, 0.16);
  color: #9eb3b0;
}

/* Evidence */
.evidence-section {
  overflow: hidden;
  background: var(--paper);
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(60px, 11vw, 140px);
}

.evidence-copy > p:not(.eyebrow) {
  margin-bottom: 25px;
  color: var(--ink-soft);
}

.evidence-list {
  display: grid;
  gap: 11px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-deep);
  font-size: 0.86rem;
  font-weight: 650;
}

.evidence-list svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--success);
  stroke-width: 2.3;
}

.document-visual {
  position: relative;
  min-height: 555px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.85), transparent 24%),
    var(--mint);
}

.document-visual::before,
.document-visual::after {
  position: absolute;
  border: 1px solid rgba(16, 47, 52, 0.12);
  border-radius: 50%;
  content: "";
}

.document-visual::before {
  top: -90px;
  right: -100px;
  width: 320px;
  height: 320px;
}

.document-visual::after {
  right: -40px;
  bottom: -80px;
  width: 210px;
  height: 210px;
}

.document-stack,
.document-sheet {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 65%;
  height: 405px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(16, 47, 52, 0.16);
  transform: translateX(-50%);
}

.document-stack-back {
  opacity: 0.65;
  transform: translateX(-50%) rotate(7deg);
}

.document-stack-middle {
  opacity: 0.82;
  transform: translateX(-50%) rotate(-4deg);
}

.document-sheet {
  z-index: 2;
  padding: 29px;
  border: 1px solid rgba(16, 47, 52, 0.09);
}

.document-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}

.document-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.document-logo svg {
  width: 19px;
  height: 19px;
}

.document-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.55rem;
  font-weight: 750;
  text-transform: uppercase;
}

.document-status > span:first-child {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #49ae92;
}

.document-kicker {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.document-line {
  width: 60%;
  height: 7px;
  margin-bottom: 7px;
  border-radius: 5px;
  background: #e0e7e3;
}

.document-line-wide {
  width: 82%;
  height: 9px;
  background: #cbd7d2;
}

.document-table {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  margin-top: 31px;
  border-top: 1px solid #e0e6e2;
  border-left: 1px solid #e0e6e2;
}

.document-table span {
  height: 28px;
  border-right: 1px solid #e0e6e2;
  border-bottom: 1px solid #e0e6e2;
  background: #fbfcfa;
}

.document-table .document-highlight {
  background: #f8ddd7;
}

.document-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 27px;
}

.document-summary div {
  padding-top: 10px;
  border-top: 1px solid #dfe6e2;
}

.document-summary small,
.document-summary strong {
  display: block;
}

.document-summary small {
  margin-bottom: 5px;
  color: #8b9996;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
}

.document-summary strong {
  color: var(--ink-deep);
  font-size: 0.76rem;
}

.document-callout {
  position: absolute;
  right: -15px;
  bottom: 58px;
  z-index: 3;
  display: flex;
  min-width: 185px;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  border: 1px solid rgba(16, 47, 52, 0.08);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(16, 47, 52, 0.16);
}

.document-callout svg {
  width: 25px;
  height: 25px;
  color: var(--coral-dark);
}

.document-callout strong,
.document-callout span {
  display: block;
}

.document-callout strong {
  color: var(--ink-deep);
  font-size: 0.7rem;
}

.document-callout span {
  color: #81908d;
  font-size: 0.59rem;
}

/* Support */
.support-section {
  padding-bottom: 105px;
  background: var(--paper);
}

.support-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px 43px;
  border-radius: var(--radius-md);
  background: var(--ink);
  box-shadow: 0 25px 70px rgba(8, 39, 45, 0.16);
  color: var(--white);
}

.support-mark {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.support-mark span {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.support-copy .eyebrow {
  margin-bottom: 6px;
}

.support-copy h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.support-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #aec2bf;
  font-size: 0.76rem;
}

.support-contact {
  min-width: 218px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.support-contact span,
.support-contact small,
.support-contact a {
  display: block;
}

.support-contact span {
  margin-bottom: 3px;
  color: #9fb5b2;
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
}

.support-contact a {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 750;
}

.support-contact small {
  color: #8fa6a3;
  font-size: 0.59rem;
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 11vw, 140px);
}

.faq-heading {
  position: sticky;
  top: 118px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.faq-heading > p:not(.eyebrow) {
  margin-bottom: 27px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid #cbd3cf;
}

.faq-list details {
  border-bottom: 1px solid #cbd3cf;
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 21px 3px;
  color: var(--ink-deep);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--coral-dark);
  transition: transform 200ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -5px 0 0;
  padding: 0 42px 28px 3px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

/* Final CTA */
.final-cta-section {
  padding: 34px 0;
  background: var(--canvas);
}

.final-cta {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  padding: 60px 65px;
  border-radius: var(--radius-lg);
  background: var(--ink-deep);
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -160px;
  right: -80px;
  width: 380px;
  height: 380px;
}

.final-cta::after {
  right: 60px;
  bottom: -220px;
  width: 330px;
  height: 330px;
}

.final-cta > div,
.final-cta > a {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.55rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: #aec2bf;
  font-size: 0.9rem;
}

.final-cta .button {
  min-width: 218px;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  padding: 75px 0 35px;
  background: var(--canvas);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.55fr;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.footer-address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.7;
}

.footer-address strong {
  margin-bottom: 8px;
  color: var(--ink-deep);
}

.footer-address a {
  margin-top: 8px;
  border-bottom: 1px solid #a9b4b0;
  color: var(--ink-deep);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links a {
  border-bottom: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 680;
}

.footer-links a:hover {
  border-color: var(--ink-soft);
}

.legal-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  padding-top: 25px;
  border-top: 1px solid #cfd6d2;
  color: #788683;
  font-size: 0.59rem;
}

.legal-note p {
  max-width: 910px;
  margin-bottom: 0;
}

.legal-note span {
  flex-shrink: 0;
}

.mobile-cta {
  display: none;
}

/* Information and legal pages */
.legal-page {
  background: var(--canvas);
}

.legal-page .desktop-nav a[aria-current="page"]::after,
.legal-page .footer-links a[aria-current="page"] {
  border-color: var(--coral);
  color: var(--ink-deep);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 84px;
  background:
    radial-gradient(circle at 84% 2%, rgba(93, 157, 147, 0.24), transparent 30%),
    linear-gradient(112deg, var(--ink-deep), var(--ink));
  color: var(--white);
}

.legal-hero::after {
  position: absolute;
  top: -170px;
  right: -120px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.legal-back-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #c7d7d3;
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-back-link svg {
  width: 16px;
  height: 16px;
}

.legal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.38fr);
  align-items: end;
  gap: 70px;
}

.legal-hero-grid > * {
  min-width: 0;
}

.legal-hero h1 {
  max-width: 830px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: #c2d2cf;
  font-size: 1.08rem;
}

.legal-hero-meta {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(1, 18, 22, 0.16);
  backdrop-filter: blur(8px);
}

.legal-hero-meta-row {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.legal-hero-meta-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-hero-meta-row span {
  color: #9eb7b2;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero-meta-row strong {
  color: var(--white);
  font-size: 0.84rem;
}

.legal-body-section {
  padding: 72px 0 110px;
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}

.legal-sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
}

.legal-sidebar-card h2,
.legal-sidebar-card h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.legal-sidebar-card p,
.legal-sidebar-card address {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-style: normal;
}

.legal-sidebar-card a:not(.button) {
  border-bottom: 1px solid #aebbb7;
  color: var(--ink-deep);
  font-weight: 720;
}

.legal-sidebar-card .button {
  width: 100%;
  min-height: 46px;
  margin-top: 18px;
  padding: 11px 14px;
  font-size: 0.78rem;
}

.legal-sidebar-note {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.legal-sidebar-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-deep);
}

.legal-article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.legal-article-section {
  padding: 46px 54px;
  border-top: 1px solid var(--line);
}

.legal-article-section:first-child {
  border-top: 0;
}

.legal-article-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.legal-article-section h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.03rem;
}

.legal-article-section p,
.legal-article-section li {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.legal-article-section p:last-child,
.legal-article-section ul:last-child,
.legal-article-section ol:last-child {
  margin-bottom: 0;
}

.legal-article-section ul,
.legal-article-section ol {
  margin: 16px 0 0;
  padding-left: 21px;
}

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

.legal-article-section a:not(.button) {
  border-bottom: 1px solid #a7b6b2;
  color: var(--ink-deep);
  font-weight: 720;
}

.legal-section-intro {
  max-width: 760px;
  font-size: 1rem !important;
}

.legal-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.legal-fact {
  min-height: 150px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.legal-fact span {
  display: block;
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-fact strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.legal-fact p {
  margin: 8px 0 0;
  font-size: 0.76rem;
}

.legal-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.legal-scope-card {
  padding: 25px;
  border-radius: 15px;
}

.legal-scope-card.is-included {
  border: 1px solid #b8d4ca;
  background: var(--mint-light);
}

.legal-scope-card.is-excluded {
  border: 1px solid #edd2cb;
  background: #fff6f3;
}

.legal-scope-card strong {
  display: block;
  margin-bottom: 11px;
  color: var(--ink-deep);
}

.legal-scope-card ul {
  margin-top: 0;
}

.legal-source-box,
.legal-notice-box {
  padding: 28px;
  border-radius: 16px;
}

.legal-source-box {
  border: 1px solid #bdd1cb;
  background: var(--mint-light);
}

.legal-notice-box {
  border-left: 4px solid var(--coral);
  background: #fff4f0;
}

.legal-source-box h3,
.legal-notice-box h3 {
  margin-top: 0;
}

.legal-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 21px;
}

.legal-source-actions .button {
  min-height: 46px;
  padding: 11px 16px;
  font-size: 0.78rem;
}

.legal-definition-list {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  margin: 23px 0 0;
  border-top: 1px solid var(--line);
}

.legal-definition-list dt,
.legal-definition-list dd {
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.legal-definition-list dt {
  padding-right: 25px;
  color: var(--ink-deep);
  font-weight: 780;
}

.legal-definition-list dd {
  color: var(--ink-soft);
}

.legal-contact-block {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: normal;
}

.legal-contact-block strong {
  margin-bottom: 5px;
  color: var(--ink-deep);
}

.legal-updated {
  display: inline-flex;
  margin-top: 26px;
  padding: 8px 11px;
  border-radius: 7px;
  background: var(--canvas);
  color: #697b77;
  font-size: 0.66rem;
  font-weight: 760;
}

.legal-page .footer-links a[aria-current="page"] {
  border-bottom-width: 1px;
}

/* Reveal animation */
.animations-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 6vw, 4.6rem);
  }

  .criteria-grid {
    gap: 12px;
  }

  .criterion-card {
    padding: 25px;
  }

  .industry-panel {
    grid-template-columns: 1fr;
  }

  .industry-copy h3 {
    max-width: none;
  }

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

  .process-card::after {
    display: none;
  }

  .process-number {
    margin-bottom: 42px;
  }

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

  .support-contact {
    grid-column: 2;
    padding-left: 0;
    border-left: 0;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero-grid {
    min-height: 645px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(3rem, 4.7vw, 4rem);
  }

  .case-pill {
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-bottom: 23px;
    font-size: 1rem;
  }

  .trust-list {
    margin-top: 18px;
  }

  .claim-check-card {
    padding: 23px;
  }

  .progress-shell {
    margin: 18px 0;
  }

  .field-group {
    margin-bottom: 14px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .hero-copy {
    max-width: 740px;
    padding-bottom: 0;
  }

  .claim-check-card {
    width: min(100%, 620px);
  }

  .producer-list span {
    padding: 0 15px;
  }

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

  .criterion-card {
    display: grid;
    min-height: 0;
    grid-template-columns: auto 1fr;
    gap: 5px 22px;
    padding: 28px;
  }

  .criterion-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .criterion-card h3 {
    align-self: end;
    margin: 0;
  }

  .criterion-card p {
    grid-column: 2;
  }

  .case-grid,
  .evidence-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .case-grid {
    gap: 75px;
  }

  .case-copy {
    max-width: 710px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .evidence-grid {
    gap: 70px;
  }

  .evidence-copy {
    max-width: 700px;
  }

  .document-visual {
    width: min(100%, 670px);
  }

  .faq-grid {
    gap: 55px;
  }

  .faq-heading {
    position: static;
    max-width: 650px;
  }

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

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

  .footer-links {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 25px;
  }

  .legal-hero-grid,
  .legal-content-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid {
    align-items: start;
    gap: 38px;
  }

  .legal-hero-meta {
    max-width: 620px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-hero-meta-row {
    padding: 0 12px 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 0;
  }

  .legal-hero-meta-row:last-child {
    border-right: 0;
  }

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

@media (max-width: 680px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 38px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .language-button {
    min-width: 40px;
    min-height: 44px;
  }

  .hero-grid {
    padding-top: 54px;
    padding-bottom: 55px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .case-pill {
    margin-bottom: 23px;
    font-size: 0.61rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .claim-check-card {
    padding: 22px 19px;
    border-radius: 18px;
  }

  .checker-header {
    align-items: flex-start;
  }

  .secure-badge span {
    display: none;
  }

  .compact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .producer-strip {
    padding: 26px 0;
  }

  .producer-list {
    gap: 10px;
  }

  .producer-list span {
    padding: 6px 10px;
    border: 1px solid #d3d9d5;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.48);
    font-size: 0.8rem;
  }

  .producer-list span:last-child {
    border-right: 1px solid #d3d9d5;
  }

  .section {
    padding: 85px 0;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .criterion-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
  }

  .criterion-icon {
    grid-row: auto;
    margin-bottom: 25px;
  }

  .criterion-card h3 {
    margin-bottom: 8px;
  }

  .criterion-card p {
    grid-column: auto;
  }

  .industry-panel {
    padding: 27px 22px;
  }

  .industry-tags {
    grid-template-columns: 1fr 1fr;
  }

  .industry-tags > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    min-height: 86px;
  }

  .case-timeline::before {
    left: 12px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 37px;
  }

  .timeline-item::before {
    top: 8px;
    left: 8px;
  }

  .timeline-date {
    text-align: left;
  }

  .case-disclaimer {
    margin-left: 37px;
  }

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

  .process-card {
    min-height: 0;
  }

  .process-number {
    margin-bottom: 36px;
  }

  .document-visual {
    min-height: 445px;
  }

  .document-stack,
  .document-sheet {
    top: 55px;
    width: 76%;
    height: 330px;
  }

  .document-sheet {
    padding: 21px;
  }

  .document-topline {
    margin-bottom: 22px;
  }

  .document-table {
    margin-top: 22px;
  }

  .document-table span {
    height: 21px;
  }

  .document-summary {
    margin-top: 18px;
  }

  .document-callout {
    right: -5px;
    bottom: 25px;
  }

  .support-section {
    padding-bottom: 85px;
  }

  .support-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 31px 25px;
  }

  .support-mark {
    width: 66px;
    height: 66px;
  }

  .support-contact {
    grid-column: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 0.88rem;
  }

  .final-cta-section {
    padding: 0;
  }

  .final-cta {
    width: 100%;
    padding: 58px 24px;
    border-radius: 0;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 60px;
  }

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

  .footer-links {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .legal-hero {
    padding: 52px 0 60px;
  }

  .legal-back-link {
    margin-bottom: 31px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

  .legal-hero-lead {
    font-size: 0.96rem;
  }

  .legal-hero-meta {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .legal-hero-meta-row {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .legal-body-section {
    padding: 42px 0 75px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-article {
    border-radius: 18px;
  }

  .legal-article-section {
    padding: 32px 22px;
  }

  .legal-fact-grid,
  .legal-scope-grid {
    grid-template-columns: 1fr;
  }

  .legal-fact {
    min-height: 0;
  }

  .legal-definition-list {
    grid-template-columns: 1fr;
  }

  .legal-definition-list dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .legal-definition-list dd {
    padding-top: 0;
  }

  .legal-source-actions {
    flex-direction: column;
  }

  .legal-source-actions .button {
    width: 100%;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: var(--coral);
    box-shadow: 0 15px 35px rgba(8, 39, 45, 0.26);
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 780;
  }

  .mobile-cta svg {
    width: 17px;
    height: 17px;
  }

  .mobile-cta.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

/* Three-level typography system shared by the landing and information pages */
.landing-page,
.legal-page {
  font-size: var(--type-body);
}

.landing-page *,
.legal-page * {
  font-size: inherit !important;
}

.landing-page h1,
.landing-page h2,
.landing-page .hero h1,
.legal-page h1 {
  font-size: var(--type-display) !important;
}

.landing-page h3,
.landing-page .hero-lead,
.landing-page .checker-header h2,
.landing-page .producer-list span,
.landing-page .section-heading > p:not(.eyebrow),
.landing-page .case-copy > p:not(.eyebrow),
.landing-page .timeline-item strong,
.landing-page .evidence-copy > p:not(.eyebrow),
.landing-page .document-kicker,
.landing-page .support-copy h2,
.landing-page .support-mark span,
.landing-page .support-contact a,
.landing-page .faq-list summary,
.landing-page .brand-copy strong,
.legal-page h2,
.legal-page h3,
.legal-page .brand-copy strong,
.legal-page .legal-hero-lead,
.legal-page .legal-section-intro,
.legal-page .legal-fact strong,
.legal-page .legal-scope-card > strong {
  font-size: var(--type-lead) !important;
}

.landing-page .eyebrow,
.legal-page .eyebrow {
  letter-spacing: 0.08em;
}

.landing-page .producer-strip {
  padding: 42px 0 38px;
}

.landing-page .producer-inner > p {
  max-width: 760px;
  margin: 0 auto 20px;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.landing-page .producer-list {
  gap: 14px 0;
  margin-bottom: 18px;
}

.landing-page .producer-list span {
  padding: 2px 28px;
  line-height: 1.35;
}

.landing-page .producer-inner small {
  display: block;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.55;
}

.landing-page .industry-tags > span {
  min-height: 70px;
}

.landing-page .process-card {
  min-height: 340px;
}

.legal-page .legal-hero-meta-row strong,
.legal-page .legal-fact strong,
.legal-page .legal-scope-card strong,
.legal-page .legal-contact-block a,
.legal-page .legal-definition-list dt,
.legal-page .legal-definition-list dd,
.legal-page .legal-source-actions .button,
.legal-page .legal-updated {
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .legal-page .legal-hero-meta {
    grid-template-columns: 1fr;
  }

  .legal-page .legal-hero-meta-row {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .legal-page .legal-hero-meta-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .landing-page .choice-row {
    grid-template-columns: 1fr;
  }

  .landing-page .choice span {
    min-height: 48px;
  }

  .landing-page .producer-list {
    gap: 10px;
  }

  .landing-page .producer-list span {
    padding: 8px 12px;
  }
}
