/* dcorr.de — standalone static site (structured layout) */

:root {
  --brand: #284367;
  --brand-soft: #3d5a80;
  --brand-mute: #5a7a9e;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --band: #e8eef5;
  --hero-bg: #0a1528;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --section-pad: clamp(3.25rem, 6vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: #fff;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.page-home .site-header--dark {
  background: #0a1528;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 1700px) {
  .site-header__inner,
  .wrap,
  .hero__inner {
    max-width: 1240px;
  }
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand-mark--dark {
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.brand-mark--dark img {
  filter: none;
}

.brand-mark img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
}

.nav-toggle--dark {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 1.9rem;
  align-items: center;
}

@media (max-width: 1260px) {
  .site-header__inner {
    gap: 0.7rem;
  }

  .site-nav ul {
    gap: 0 1.35rem;
  }

  .site-nav a,
  .nav-lang {
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-left: 0.55rem;
    padding: 0.46rem 0.8rem !important;
    font-size: 0.84rem !important;
  }
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  padding: 0.42rem 0.64rem;
  line-height: 1;
  border-radius: 999px;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  background: rgba(40, 67, 103, 0.08);
}

.site-nav--dark a {
  color: rgba(226, 232, 240, 0.86);
}

.site-nav--dark a:hover,
.site-nav--dark a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.4rem;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.94rem;
  line-height: 1;
  white-space: nowrap;
}

.nav-lang a {
  color: rgba(226, 232, 240, 0.7);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
}

.nav-lang a:hover,
.nav-lang a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-lang__current {
  color: #fff;
  font-weight: 600;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 0.5rem 0.95rem !important;
  border-radius: 999px;
  text-decoration: none !important;
  margin-left: 0.65rem;
  font-weight: 600 !important;
  white-space: nowrap;
  word-break: keep-all;
  box-shadow: 0 6px 18px rgba(40, 67, 103, 0.2);
}

.nav-cta:hover {
  background: var(--brand-soft);
  color: #fff !important;
}

.nav-cta--dark {
  background: #dbeafe;
  color: #10223b !important;
  border: 1px solid rgba(120, 168, 216, 0.55);
}

.nav-cta--dark:hover {
  background: #bfdbfe;
  color: #0b1b33 !important;
  border-color: rgba(120, 168, 216, 0.75);
}

.site-nav--dark a.nav-cta--dark:hover,
.site-nav--dark a.nav-cta--dark:focus-visible {
  background: #bfdbfe;
  color: #0b1b33 !important;
}

@media (max-width: 1320px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: 100%;
    margin-top: 0.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    min-width: 220px;
    display: none;
  }

  .site-nav--dark {
    background: #111f33;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.6rem 0.5rem;
  }

  .nav-lang {
    margin: 0.45rem 0 0.25rem;
    justify-content: center;
    gap: 0.6rem;
  }

  .nav-lang a,
  .nav-lang__current {
    padding: 0;
  }

  .nav-cta,
  .nav-cta--dark {
    text-align: center;
    margin-left: 0;
  }
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: min(92vh, 880px);
  overflow: hidden;
  background: var(--hero-bg);
}

.hero--dark {
  color: #e2e8f0;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 20% 40%, rgba(40, 67, 103, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10, 21, 40, 0.2) 0%, rgba(10, 21, 40, 0.85) 100%);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__canvas canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(5rem, 12vw, 7rem) 1.25rem var(--section-pad);
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
}

.hero__content {
  max-width: 40rem;
  padding-bottom: 0.5rem;
}

.hero .section-kicker.hero__kicker {
  margin: 0 0 1rem;
  color: rgba(165, 198, 235, 0.92);
  letter-spacing: 0.16em;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__lead {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.88);
  max-width: 38ch;
}

@media (max-width: 1024px) {
  .hero {
    min-height: min(84svh, 760px);
  }

  .hero__inner {
    min-height: min(84svh, 760px);
  }
}

@media (max-width: 640px) {
  .hero__inner {
    padding-top: clamp(4.2rem, 12vw, 5.2rem);
  }

  .hero__title {
    line-height: 1.12;
  }

  .hero__lead {
    font-size: 1rem;
    max-width: 34ch;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__research-link {
  display: inline-block;
  margin-top: 0.95rem;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.74);
  text-decoration: none;
}

.hero__research-link:hover,
.hero__research-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: #fff;
  color: var(--hero-bg) !important;
  text-decoration: none !important;
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--hero-bg) !important;
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: rgba(40, 67, 103, 0.35);
}

.btn--ghost:hover {
  border-color: var(--brand);
  background: rgba(40, 67, 103, 0.06);
  color: var(--brand);
}

.btn--research {
  background: var(--brand);
  color: #ffffff !important;
  border-color: var(--brand);
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(40, 67, 103, 0.22);
}

.btn--research:hover,
.btn--research:focus-visible {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: #ffffff !important;
}

.btn--ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none !important;
}

.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

/* ——— Sections ——— */

main > .section {
  position: relative;
}

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

.section--band {
  background: var(--band);
  border-top: 1px solid rgba(40, 67, 103, 0.08);
  border-bottom: 1px solid rgba(40, 67, 103, 0.08);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--section-pad) 1.25rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: 1.5rem 2.5rem;
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 640px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.section-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mute);
  line-height: 1.4;
}

.section-kicker__num {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.section-head__text .section-title {
  margin: 0 0 0.65rem;
}

.section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.02rem;
}

.showcase__lead {
  max-width: 52ch;
}

/* Editorial intro (Vita / Vertrauen) */

.section--editorial {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.wrap--editorial {
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-bottom: clamp(2.75rem, 5vw, 3.75rem);
}

.editorial {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 768px) {
  .editorial {
    grid-template-columns: 1fr;
  }
}

.editorial__figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 220px;
  justify-self: start;
  grid-column: 1;
}

.editorial__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  box-shadow: none;
}

.editorial__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  display: block;
}

.editorial__caption {
  margin-top: 0.95rem;
  padding-top: 0.8rem;
  border-top: 0;
  display: grid;
  gap: 0.2rem;
}

.editorial__caption-name {
  font-size: 0.9rem;
  font-weight: 640;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.editorial__caption-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-mute);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .editorial__figure {
    grid-column: auto;
    justify-self: start;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .editorial__content {
    grid-column: auto;
  }
}

.editorial__content {
  padding-top: 0.15rem;
  max-width: 54rem;
  grid-column: 2;
  justify-self: start;
}

.editorial__label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-mute);
}

.editorial__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink);
  max-width: 28ch;
}

.editorial__body p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.56;
  max-width: 56ch;
}

@media (max-width: 640px) {
  .editorial__body p {
    max-width: none;
  }
}

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

.editorial__body .editorial__lead {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.54;
}

.editorial__body strong {
  color: var(--ink);
  font-weight: 650;
}

@media (min-width: 769px) {
  .editorial__figure {
    position: sticky;
    top: 5.5rem;
  }
}

/* Value props */

.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

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

@media (max-width: 1100px) {
  .prop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .prop-grid {
    grid-template-columns: 1fr;
  }
}

.prop-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.prop-card:hover {
  border-color: rgba(40, 67, 103, 0.28);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.prop-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(40, 67, 103, 0.09);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop-card__title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--ink);
}

.prop-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1200px) {
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cards-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.56;
}

/* Process timeline */

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), rgba(40, 67, 103, 0.2));
  border-radius: 2px;
  pointer-events: none;
}

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

  .process::before {
    top: 0;
    bottom: 0;
    left: 22px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--brand), rgba(40, 67, 103, 0.2));
  }
}

.process__step {
  position: relative;
  padding: 0 1rem 0 0;
}

@media (max-width: 900px) {
  .process__step {
    padding: 0 0 0 3.25rem;
  }
}

.process__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(40, 67, 103, 0.12);
}

.process__title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--ink);
}

.process__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
}

@media (max-width: 900px) {
  .process__text {
    max-width: none;
  }
}

.phase-note {
  margin-top: 1.6rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--brand);
  background: rgba(40, 67, 103, 0.06);
  color: var(--ink);
  line-height: 1.6;
  max-width: none;
}

/* FundStars — ein Bild, dezent skaliert */

.award-photo {
  margin: 0 auto 2.5rem;
  max-width: min(100%, 480px);
  text-align: center;
}

.award-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.09);
  border: 1px solid var(--line);
}

/* Testimonials */

.testimonials-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.25rem;
}

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

@media (max-width: 900px) {
  .testimonial-grid--two {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.58;
}

.testimonial footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--ink);
}

.testimonial__org {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.35;
}

.research-reference-line {
  margin: 0.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

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

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 0.95rem 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.58;
}

/* Contact dark band */

.section--contact {
  padding: 0;
}

.contact--dark {
  background: linear-gradient(165deg, #0d1a2d 0%, #0a1528 45%, #071018 100%);
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head--on-dark {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section-kicker--on-dark {
  color: rgba(148, 180, 220, 0.9);
}

.section-kicker--on-dark .section-kicker__num {
  color: rgba(255, 255, 255, 0.95);
}

.section-title--on-dark {
  color: #fff;
}

.section-intro--on-dark {
  color: rgba(226, 232, 240, 0.82);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }
}

.contact-card--dark {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card--dark address,
.contact-card--dark p {
  margin: 0 0 1rem;
  font-style: normal;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.55;
}

.contact-card__title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 180, 220, 0.95);
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148, 180, 220, 0.85);
}

.contact-card--dark a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-card--dark a:hover {
  border-bottom-color: #fff;
  color: #fff;
}

.contact-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
}

.form--dark label {
  color: #ffffff !important;
}

.form--dark input,
.form--dark textarea {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0f172a;
  border-radius: 10px;
}

.form--dark input::placeholder,
.form--dark textarea::placeholder {
  color: #64748b;
}

.form--dark input:focus,
.form--dark textarea:focus {
  outline: 2px solid rgba(120, 168, 216, 0.5);
  outline-offset: 1px;
  border-color: rgba(120, 168, 216, 0.45);
}

.form--dark .checkbox--dark label {
  color: #ffffff !important;
  font-weight: 550;
}

.form--dark .checkbox--dark a {
  color: #ffffff !important;
  text-decoration-color: rgba(255, 255, 255, 0.95);
  text-decoration-thickness: 1.5px;
}

.form-note--dark {
  color: rgba(148, 163, 184, 0.9);
}

/* Footer */

.site-footer {
  padding: 2.25rem 1.25rem;
  background: #050a10;
  color: #94a3b8;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 2rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

.footer-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .footer-nav {
    justify-content: center;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-col h3 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  color: #fff;
}

.footer-col a {
  color: #cbd5e1;
  font-size: 0.88rem;
}

.footer-col--research {
  gap: 0.45rem;
}

.footer-regime {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-regime__title {
  margin: 0 0 0.2rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-regime__text {
  margin: 0 0 0.45rem;
  color: #94a3b8;
  font-size: 0.8rem;
}

.footer-regime__form {
  display: flex;
  gap: 0.45rem;
}

.footer-regime__form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

.footer-regime__form input::placeholder {
  color: #94a3b8;
}

.footer-regime__form button {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 8px;
  width: 2.2rem;
  cursor: pointer;
}

.footer-brand img {
  height: 32px;
  width: auto;
  opacity: 0.95;
}

.site-footer__meta {
  font-size: 0.85rem;
  color: #64748b;
  grid-column: 1 / -1;
}

.consent-manage-link {
  color: #cbd5e1;
  margin-left: 0.6rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-manage-link:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* Forms (light / legal) */

.form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  margin-bottom: 1rem;
  background: #fff;
}

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

.form .checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.form .checkbox input {
  width: auto;
  margin: 0.2rem 0 0;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Legal page */

.legal {
  background: var(--surface);
  min-height: 60vh;
}

.legal .wrap {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.legal h1 {
  margin-top: 0;
  font-size: 2rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--brand);
}

.legal h3 {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.legal p,
.legal ul {
  color: var(--muted);
  max-width: 75ch;
}

.legal ul {
  padding-left: 1.2rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Research */

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

.research-grid--single {
  grid-template-columns: 1fr;
}

.research-hub .wrap {
  max-width: 980px;
}

.research-page-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
}

.research-page-mesh canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.research-page-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(248, 251, 255, 0.24) 55%, rgba(241, 245, 249, 0.34) 100%);
  pointer-events: none;
}

.research-hub {
  position: relative;
  overflow: hidden;
}

.research-hub .wrap {
  position: relative;
  z-index: 2;
}

.research-hub__head {
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.42);
}

.research-hub__head .section-kicker {
  margin-bottom: 0.4rem;
}

.research-hub__head h1 {
  color: #0f172a;
}

.research-hub__head .section-intro {
  max-width: 74ch;
  color: #475569;
}

.research-grid--editorial {
  gap: 0.52rem;
}

.research-hub .research-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.28);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 250, 252, 0.72) 100%);
  backdrop-filter: blur(6px);
  padding: 1.05rem 1rem 1.1rem;
  gap: 0.58rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 24px rgba(15, 23, 42, 0.1);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms cubic-bezier(0.22, 1, 0.36, 1), background 320ms ease;
}

.research-hub .research-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 250, 252, 0.8) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 16px 32px rgba(15, 23, 42, 0.13), 0 0 0 1px rgba(147, 197, 253, 0.2);
}

.research-hub .research-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -45%;
  width: 52%;
  height: 185%;
  background: linear-gradient(110deg, transparent 0%, rgba(191, 219, 254, 0.16) 48%, transparent 100%);
  transform: translateX(-135%) rotate(10deg);
  opacity: 0;
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), opacity 440ms ease;
  pointer-events: none;
}

.research-hub .research-card:hover::before {
  transform: translateX(320%) rotate(10deg);
  opacity: 0.7;
}

.research-hub .research-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #0f172a;
  transition: color 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.research-hub .research-card p {
  max-width: 86ch;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.53;
  transition: color 240ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.research-hub .research-card:hover h3,
.research-hub .research-card:hover p {
  transform: translateY(-1px);
}

.research-hub .research-card .status-badge {
  align-self: flex-start;
  order: 0;
  margin: 0.05rem 0 0;
}

.research-hub .research-card .btn--research {
  margin-top: 0.15rem;
  min-height: 2rem;
  padding: 0.44rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(59, 130, 246, 0.42);
  background: rgba(255, 255, 255, 0.8);
  color: #1d4ed8 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.research-hub .research-card .btn--research:hover,
.research-hub .research-card .btn--research:focus-visible {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.62);
  color: #1e3a8a !important;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .research-grid {
    grid-template-columns: 1fr;
  }
}

.research-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.research-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.research-grid--compact .research-card {
  padding: 0.9rem 0.9rem 1rem;
  gap: 0.65rem;
}

.research-grid--compact .research-card h3 {
  font-size: 1rem;
}

.research-grid--compact .research-card p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.research-grid--compact .btn {
  font-size: 0.76rem;
  padding: 0.46rem 0.72rem;
}

.research-grid--compact .research-card .btn--research {
  width: 100%;
  min-height: 2.2rem;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  white-space: nowrap;
  font-weight: 560;
  letter-spacing: 0.003em;
  border: 1px solid rgba(62, 96, 140, 0.48);
  background: linear-gradient(180deg, #36567e 0%, #2b4467 100%);
  box-shadow: 0 5px 14px rgba(16, 34, 59, 0.2);
}

.research-carousel {
  position: relative;
  margin-top: 0.2rem;
}

.research-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 14px;
}

.research-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.research-carousel__track {
  display: flex;
  gap: 0.9rem;
  padding: 0.2rem 0.1rem 0.45rem;
}

.research-carousel__track .research-card {
  flex: 0 0 calc((100% - (2 * 0.9rem)) / 3);
  min-width: 0;
  scroll-snap-align: start;
  border-color: rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.research-carousel__track .research-card:hover {
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(62, 96, 140, 0.45);
}

.research-carousel__nav {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  cursor: pointer;
}

.research-carousel__nav:hover {
  background: #ffffff;
  border-color: rgba(62, 96, 140, 0.5);
}

.research-carousel__nav[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.research-carousel__nav--prev {
  left: -0.9rem;
}

.research-carousel__nav--next {
  right: -0.9rem;
}

.research-carousel__dots {
  margin-top: 0.65rem;
  display: flex;
  justify-content: center;
  gap: 0.38rem;
}

.research-carousel__dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
}

.research-carousel__dot.is-active {
  background: #36567e;
  box-shadow: 0 0 0 3px rgba(54, 86, 126, 0.14);
}

@media (max-width: 1100px) {
  .research-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .research-carousel__track .research-card {
    flex-basis: calc((100% - 0.9rem) / 2);
  }

  .research-carousel__nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .research-grid--compact {
    grid-template-columns: 1fr;
  }

  .research-carousel__track .research-card {
    flex-basis: 100%;
  }
}

.research-card h3 {
  margin: 0;
}

.research-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.research-highlight__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.3rem 0.64rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1;
}

.status-badge--coming {
  background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
  color: #9a3412;
  border: 1px solid #fdba74;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.status-badge--live {
  background: linear-gradient(180deg, #ecfdf3 0%, #dcfce7 100%);
  color: #166534;
  border: 1px solid #86efac;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.status-badge--gated {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  color: #334155;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.status-badge--featured {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: 1px solid #15803d;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 6px 14px rgba(21, 128, 61, 0.32);
}

.research-card--featured {
  position: relative;
  border-color: var(--brand);
  border-width: 1.5px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  box-shadow: 0 12px 32px rgba(40, 67, 103, 0.14), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transform: translateY(-1px);
}

.research-card--featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 4px rgba(40, 67, 103, 0.08);
}

.research-card--featured h3 {
  color: var(--brand);
}

.research-card--featured .btn--research {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
}

.research-card--featured .btn--research:hover {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: #ffffff;
}

.research-card .status-badge {
  order: -1;
  align-self: flex-end;
  margin: -0.05rem -0.05rem 0.05rem 0;
}

.research-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.paper-summary,
.paper-method {
  max-width: 78ch;
  color: var(--muted);
}

.paper-summary p,
.paper-method p {
  margin: 0 0 0.9rem;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.9rem;
}

@media (max-width: 900px) {
  .findings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.finding {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  padding: 0.8rem;
}

.finding__label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.finding__value {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--ink);
}

.chart-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 860px) {
  .chart-slots {
    grid-template-columns: 1fr;
  }
}

.chart-slot {
  border: 1px dashed #94a3b8;
  border-radius: 10px;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.92rem;
  text-align: center;
  padding: 1rem;
}

.cta-panel {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cta-panel h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
}

.cta-panel > p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 68ch;
}

.paper-disclaimer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  max-width: 86ch;
}

.paper-disclaimer h2 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.paper-disclaimer p {
  margin: 0 0 0.7rem;
  color: #64748b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.paper-gated {
  position: relative;
  margin: 1.25rem 0 1.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background: var(--surface-2);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.paper-gated__content {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.3rem 1.5rem;
  filter: blur(10px) saturate(0.85);
  -webkit-filter: blur(10px) saturate(0.85);
  pointer-events: none;
  user-select: none;
}

.paper-gated__content > h2:first-child {
  margin-top: 0;
}

.paper-gated__content .paper-summary,
.paper-gated__content .paper-method {
  max-width: none;
}

.paper-gated__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.78) 0%, rgba(241, 245, 249, 0.86) 100%);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.paper-gated__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 650;
  color: #475569;
  background: rgba(255, 255, 255, 0.78);
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.paper-gated__title {
  margin: 0.55rem 0 0.15rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 650;
  color: #0f172a;
}

.paper-gated__hint {
  margin: 0 0 0.85rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 52ch;
}

.research-form {
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1rem 1.1rem;
}

.research-form .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.research-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.research-form input[type="text"],
.research-form input[type="email"],
.research-form select,
.research-form textarea {
  width: 100%;
  padding: 0.68rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.research-form textarea {
  resize: vertical;
  min-height: 110px;
  margin-bottom: 0.95rem;
}

.research-form input:focus,
.research-form select:focus,
.research-form textarea:focus {
  outline: 2px solid rgba(40, 67, 103, 0.25);
  outline-offset: 1px;
  border-color: rgba(40, 67, 103, 0.45);
}

.research-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.research-form .checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.research-form .checkbox label {
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.research-form .btn {
  margin-top: 0.3rem;
}

@media (max-width: 700px) {
  .research-form .grid-2 {
    grid-template-columns: 1fr;
  }
}

.field-help,
.form-message {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.form-message--error {
  color: #b91c1c;
}

.form-message--success {
  color: #166534;
}

.turnstile-placeholder {
  margin: 0.95rem 0 1rem;
  border: 1px dashed #94a3b8;
  border-radius: 8px;
  padding: 0.72rem 0.78rem;
  color: #334155;
  font-size: 0.84rem;
  background: #f8fafc;
}

.newsletter-box {
  margin-top: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.15rem 1.2rem;
}

.newsletter-box .section-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.newsletter-box .section-intro {
  margin-bottom: 0.95rem;
}

@media (max-width: 700px) {
  .research-form {
    padding: 0.85rem 0.8rem 0.95rem;
  }

  .research-form .btn {
    width: 100%;
  }
}

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

.regime-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  background: rgba(10, 21, 40, 0.97);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  transform: translateY(120%);
  transition: transform 240ms ease;
}

.regime-bar.is-visible {
  transform: translateY(0);
}

.regime-bar p {
  margin: 0;
  font-size: 0.88rem;
}

.regime-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.regime-bar__close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
}

.modal__panel {
  position: relative;
  width: min(92vw, 560px);
  background: #ffffff;
  color: var(--ink);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
  padding: 1.1rem 1.1rem 1.2rem;
}

.modal__panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.modal__panel > p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .regime-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .regime-bar p {
    font-size: 0.84rem;
  }

  .regime-bar__actions {
    justify-content: space-between;
  }
}

.consent-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 120;
}

.consent-banner__panel {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
  padding: 1rem 1rem 1.1rem;
}

.consent-banner__panel h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.consent-banner__panel p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent-banner__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.consent-banner__options label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  font-size: 0.86rem;
  color: var(--ink);
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consent-banner__actions .btn {
  font-size: 0.88rem;
  padding: 0.5rem 0.85rem;
}

.consent-banner__legal {
  margin-top: 0.65rem !important;
}

@media (max-width: 700px) {
  .consent-banner__options {
    grid-template-columns: 1fr;
  }
}
