:root {
  --paper: #fbfaf7;
  --paper-deep: #f2eee6;
  --white: #ffffff;
  --ink: #152536;
  --ink-soft: #526171;
  --navy: #102a43;
  --navy-deep: #091d2f;
  --navy-soft: #dfe8ef;
  --coral: #bc5139;
  --coral-soft: #f4dfd8;
  --line: #d9ddd9;
  --success: #246b4b;
  --error: #9f3528;
  --shadow-sm: 0 12px 34px rgba(16, 42, 67, 0.08);
  --shadow-lg: 0 24px 70px rgba(16, 42, 67, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image: radial-gradient(rgba(16, 42, 67, 0.16) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #e78a72;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 1.23rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 11px;
}

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

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

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

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.2);
}

.button-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.25);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(16, 42, 67, 0.22);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--navy);
}

.button-ghost {
  color: var(--navy);
  background: transparent;
  border-color: rgba(16, 42, 67, 0.17);
}

.button-coral {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(123, 46, 31, 0.24);
}

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

.button-light-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-light-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) 0 84px;
}

.hero::after {
  position: absolute;
  top: -180px;
  right: -120px;
  z-index: -1;
  width: 560px;
  height: 560px;
  content: "";
  background: radial-gradient(circle, rgba(188, 81, 57, 0.13), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #f3ae9d;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.4vw, 5.45rem);
  font-weight: 500;
  letter-spacing: -0.057em;
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.honesty-note {
  max-width: 650px;
  margin: 18px 0 0;
  padding-left: 15px;
  color: #4b5965;
  border-left: 3px solid var(--coral);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.hero-visual,
.future-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  content: "";
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.874 / 1;
  object-fit: cover;
  border: 1px solid rgba(16, 42, 67, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.5;
}

.hero-visual figcaption {
  padding-left: 18px;
  color: #dce6ec;
}

.section {
  padding: clamp(78px, 9vw, 126px) 0;
}

.section-tinted {
  background: var(--paper-deep);
  border-block: 1px solid rgba(16, 42, 67, 0.08);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.future-copy h2,
.newsletter-copy h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.category-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.category-card:hover img {
  transform: scale(1.025);
}

.category-card-body {
  padding: 25px 26px 29px;
}

.card-kicker,
.process-card span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3,
.benefit-card h3,
.process-card h3,
.news-card h3 {
  margin: 9px 0 0;
  color: var(--navy-deep);
  font-size: 1.24rem;
  line-height: 1.3;
}

.category-card p,
.benefit-card p,
.process-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  min-height: 240px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 42, 67, 0.11);
  border-radius: var(--radius-sm);
}

.benefit-card > span {
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
}

.benefit-card h3 {
  margin-top: 34px;
  font-size: 1.05rem;
}

.benefit-card p {
  font-size: 0.87rem;
}

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

.process-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius-md);
}

.process-card img {
  width: 100%;
  aspect-ratio: 2 / 2.25;
  object-fit: cover;
  object-position: center 24%;
}

.process-card > div {
  padding: 22px;
}

.process-card h3 {
  font-size: 1.12rem;
}

.feed-section {
  color: var(--white);
  background: var(--navy-deep);
}

.feed-section .section-heading h2 {
  color: var(--white);
}

.feed-section .section-heading > p:last-child {
  color: #bed0de;
}

.filter-shell {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 30px;
  padding: 20px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  min-height: 44px;
  padding: 9px 17px;
  color: #d8e5ed;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.filter-button:hover {
  border-color: rgba(255, 255, 255, 0.65);
}

.filter-button.is-active {
  color: var(--navy-deep);
  background: var(--white);
  border-color: var(--white);
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  color: #d8e5ed;
  font-size: 0.78rem;
}

.progress-copy strong {
  color: var(--white);
}

.progress-track {
  height: 6px;
  margin-top: 9px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

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

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.news-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 27px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: opacity 240ms ease, transform 240ms var(--ease), border-color 180ms ease;
}

.news-card:hover {
  border-color: rgba(188, 81, 57, 0.72);
}

.news-card.is-filter-start,
.news-card.is-filtered-out {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  color: #803623;
  background: var(--coral-soft);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-meta time {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.news-card h3 {
  margin-top: 23px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.news-card > p:not(.source-line) {
  margin: 15px 0 0;
  color: var(--ink-soft);
}

.source-line {
  margin: auto 0 12px;
  padding-top: 24px;
  color: #687582;
  font-size: 0.78rem;
}

.source-link {
  width: fit-content;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration-color: rgba(16, 42, 67, 0.28);
}

.source-link:hover {
  color: var(--coral);
}

.sponsorship-note {
  margin: 26px 0 0;
  padding: 18px 20px;
  color: #c6d6e1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.sponsorship-note strong {
  color: var(--white);
}

.newsletter-section {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

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

.newsletter-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #c9d8e3;
  font-size: 1.04rem;
}

.newsletter-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 26px 0 0;
  color: #dbe6ed;
  list-style: none;
}

.newsletter-copy li {
  position: relative;
  padding-left: 25px;
}

.newsletter-copy li::before {
  position: absolute;
  left: 0;
  color: #f3ae9d;
  content: "✓";
  font-weight: 900;
}

.form-card {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.field + .field {
  margin-top: 17px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-deep);
  font-size: 0.88rem;
  font-weight: 780;
}

.field input {
  width: 100%;
  min-height: 53px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8cfce;
  border-radius: 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(16, 42, 67, 0.1);
  outline: none;
}

.field input::placeholder {
  color: #8a949d;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin: 20px 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

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

.consent-row a {
  color: var(--navy);
  font-weight: 750;
}

.form-fineprint {
  margin: 13px 0 0;
  color: #74808a;
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.form-message {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.success-message {
  color: #154a34;
  background: #e4f2ea;
  border: 1px solid #a9d1bb;
}

.error-message {
  color: #78271e;
  background: #f8e8e4;
  border: 1px solid #e0afa5;
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.future-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.future-copy p:not(.eyebrow) {
  margin: 21px 0 28px;
  color: var(--ink-soft);
}

.editorial-quote {
  padding: 80px 0;
  text-align: center;
  background: var(--paper-deep);
  border-block: 1px solid rgba(16, 42, 67, 0.08);
}

.editorial-quote blockquote {
  max-width: 850px;
  margin: 0 auto;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.editorial-quote p {
  margin: 20px 0 0;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta {
  padding: clamp(66px, 8vw, 100px) 0;
  color: var(--white);
  background: var(--navy-deep);
}

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

.final-cta h2 {
  max-width: 720px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #b9cbd7;
}

.final-actions {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  gap: 11px;
}

.site-footer {
  padding: 70px 0 25px;
  color: #596875;
  background: #eef0ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 18px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.86rem;
}

.footer-grid p + p {
  margin-top: 13px;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: var(--navy-deep);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
  list-style: none;
}

.footer-grid a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  margin-top: 45px;
  border-top: 1px solid rgba(16, 42, 67, 0.13);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 500;
  display: flex;
  width: min(calc(100% - 40px), 980px);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px;
  margin-inline: auto;
  color: var(--white);
  background: #10273a;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
}

.cookie-banner p {
  margin: 0;
  color: #cbd8e0;
  font-size: 0.8rem;
}

.cookie-banner a {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.reveal {
  opacity: 1;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.has-js .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal-delay-1 {
  transition-delay: 80ms;
}

.has-js .reveal-delay-2 {
  transition-delay: 140ms;
}

.has-js .reveal-delay-3 {
  transition-delay: 200ms;
}

.has-js .reveal-delay-4 {
  transition-delay: 260ms;
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-header {
  position: static;
}

.legal-main {
  padding-bottom: 100px;
}

.legal-hero {
  padding: 70px 0 55px;
  background: var(--paper-deep);
  border-bottom: 1px solid rgba(16, 42, 67, 0.1);
}

.legal-hero .container {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 760px;
}

.legal-hero p {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.legal-container {
  width: min(calc(100% - 40px), 850px);
  margin: 58px auto 0;
}

.legal-container h2 {
  margin: 42px 0 12px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-container h3 {
  margin: 28px 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-container p,
.legal-container li {
  color: #465563;
}

.legal-container ul,
.legal-container ol {
  padding-left: 24px;
}

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

.legal-callout {
  padding: 19px 21px;
  margin: 28px 0;
  background: var(--coral-soft);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.back-home {
  display: inline-flex;
  margin-top: 45px;
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
  }

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

  .benefit-card {
    min-height: 215px;
  }

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

  .process-card img {
    aspect-ratio: 3 / 2;
    object-position: center 24%;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 70px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .newsletter-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 10px;
  }

  .newsletter-copy {
    max-width: 660px;
  }

  .form-card {
    max-width: 620px;
  }

  .filter-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .final-actions {
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    max-width: 600px;
  }
}

@media (max-width: 680px) {
  .container,
  .legal-container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav-shell > .button {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.78rem;
  }

  .category-grid,
  .benefit-grid,
  .process-grid,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .benefit-card h3 {
    margin-top: 22px;
  }

  .process-card img {
    aspect-ratio: 4 / 3;
  }

  .news-card {
    min-height: 290px;
    padding: 23px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .cookie-actions .button {
    flex: 1;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

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

  .hero-visual::before {
    inset: 10px -7px -10px 7px;
  }

  .category-card-body,
  .form-card {
    padding: 22px 19px;
  }

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

  .filter-button:first-child {
    grid-column: 1 / -1;
  }

  .news-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cookie-actions {
    flex-direction: column-reverse;
  }

  .legal-hero {
    padding-top: 48px;
  }
}

@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;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
