:root {
  --ink: #102a43;
  --ink-soft: #334e68;
  --muted: #627d98;
  --paper: #ffffff;
  --surface: #f3f8fb;
  --surface-strong: #e7f2f7;
  --line: #cfdee8;
  --blue: #075985;
  --blue-dark: #063b59;
  --blue-soft: #dff3fb;
  --teal: #0f766e;
  --teal-dark: #0b5752;
  --teal-soft: #dff7f3;
  --accent: #d97706;
  --accent-soft: #fff2d8;
  --success: #166534;
  --success-soft: #e7f7eb;
  --warning: #8a4b08;
  --warning-soft: #fff7e6;
  --danger: #9f1239;
  --danger-soft: #fff1f4;
  --shadow-sm: 0 7px 20px rgba(16, 42, 67, 0.08);
  --shadow-md: 0 18px 45px rgba(16, 42, 67, 0.13);
  --radius-sm: 0.65rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --content: 1180px;
  --header-offset: 7.2rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-dark);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

::selection {
  color: #fff;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 800px);
}

.topbar {
  color: #e8f7fb;
  background: var(--blue-dark);
  font-size: 0.88rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 2.65rem;
  gap: 1rem;
}

.topbar__identity,
.topbar__contact {
  margin: 0;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(207, 222, 232, 0.95);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3.05rem;
  aspect-ratio: 1;
  color: #fff;
  background:
    linear-gradient(145deg, var(--blue) 0 48%, var(--teal) 48% 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand__text {
  display: grid;
  line-height: 1.12;
}

.brand__text strong {
  font-size: 1.08rem;
  letter-spacing: 0.015em;
}

.brand__text small {
  margin-top: 0.24rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  content: "";
}

.nav-toggle__icon::before {
  transform: translateY(-0.4rem);
}

.nav-toggle__icon::after {
  transform: translateY(0.4rem);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 0.68rem;
  color: var(--ink-soft);
  border-radius: 0.55rem;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.site-nav .language-link {
  margin-left: 0.4rem;
  color: #fff;
  background: var(--teal);
}

.site-nav .language-link:hover {
  color: #fff;
  background: var(--teal-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(93, 216, 203, 0.35), transparent 25%),
    radial-gradient(circle at 8% 80%, rgba(152, 211, 239, 0.28), transparent 28%),
    linear-gradient(122deg, #063b59 0%, #075985 52%, #0f766e 100%);
}

.hero::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 36rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.035),
    0 0 0 9rem rgba(255, 255, 255, 0.025);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: 3.5rem;
  min-height: 34rem;
  padding-block: 5.3rem 5.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.5rem;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.hero .eyebrow {
  color: #c5fff4;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 68ch;
  margin: 1.5rem 0 0;
  color: #e8f7fb;
  font-size: clamp(1.04rem, 1.9vw, 1.26rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button--primary {
  color: var(--blue-dark);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.17);
}

.button--primary:hover {
  color: var(--blue-dark);
  background: #f5fcff;
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.button--blue {
  color: #fff;
  background: var(--blue);
}

.button--blue:hover {
  color: #fff;
  background: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}

.button--teal {
  color: #fff;
  background: var(--teal);
}

.button--teal:hover {
  color: #fff;
  background: var(--teal-dark);
}

.hero__panel {
  padding: 1.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero__panel h2 {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.fact-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.fact-list > div {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.fact-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.ownership-band {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.ownership-band__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.ownership-band__icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  aspect-ratio: 1;
  color: var(--warning);
  background: var(--accent-soft);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 950;
}

.ownership-band p {
  margin: 0;
}

.ownership-band strong {
  color: var(--blue-dark);
}

.ownership-band__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  padding-block: 5.5rem;
}

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

.section--blue {
  color: #fff;
  background: var(--blue-dark);
}

.section--compact {
  padding-block: 3.6rem;
}

.section__head {
  max-width: 790px;
  margin-bottom: 2.4rem;
}

.section__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3.15rem);
  line-height: 1.1;
  letter-spacing: -0.032em;
}

.section--blue .section__head h2,
.section--blue .section__head p {
  color: #fff;
}

.section__head p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card {
  padding: 1.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card--flat {
  box-shadow: none;
}

.card--tinted {
  background: var(--blue-soft);
  border-color: #b9dce9;
}

.card h3 {
  margin: 0 0 0.65rem;
  color: var(--blue-dark);
  font-size: 1.2rem;
  line-height: 1.3;
}

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

.card__number {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: 2rem;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 2rem 0 0.65rem;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose strong {
  color: var(--ink);
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
}

.prose li + li {
  margin-top: 0.45rem;
}

.quote-card {
  align-self: start;
  padding: 1.7rem;
  color: #fff;
  background: linear-gradient(145deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-card p {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 720;
  line-height: 1.6;
}

.quote-card footer {
  margin-top: 1rem;
  color: #d6f8f2;
  font-size: 0.87rem;
  font-weight: 700;
}

.values-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.values-list li::before {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.45rem;
  aspect-ratio: 1;
  margin-top: 0.12rem;
  content: "✓";
  color: var(--success);
  background: var(--success-soft);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline__item {
  position: relative;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: var(--radius);
}

.timeline__date {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.timeline__item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.timeline__item p {
  margin: 0;
  color: var(--ink-soft);
}

.status-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.1rem;
  color: var(--warning);
  background: var(--warning-soft);
  border: 1px solid #f1d39c;
  border-radius: var(--radius-sm);
}

.status-note::before {
  flex: 0 0 auto;
  content: "i";
  display: grid;
  place-items: center;
  width: 1.5rem;
  aspect-ratio: 1;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 950;
}

.transparency-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
  gap: 1.5rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 0.92rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  width: 36%;
  color: var(--blue-dark);
  background: #f6fbfd;
  font-size: 0.88rem;
}

.data-table td {
  color: var(--ink-soft);
}

.data-table td strong {
  color: var(--ink);
}

.verification-card {
  padding: 1.55rem;
  color: #fff;
  background: linear-gradient(155deg, var(--blue-dark), var(--teal-dark));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.verification-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.verification-card p {
  color: #def8f4;
}

.verification-card a {
  color: #fff;
}

.code {
  display: block;
  margin: 1rem 0;
  padding: 0.75rem;
  color: var(--ink);
  background: #fff;
  border-radius: 0.6rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1.15rem;
  color: var(--danger);
  background: var(--danger-soft);
  border: 1px solid #f3c3d1;
  border-left: 5px solid var(--danger);
  border-radius: var(--radius-sm);
}

.disclaimer strong {
  color: var(--danger);
}

.context-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.context-panel__label {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 17rem;
  padding: 1.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.17), transparent 28%),
    linear-gradient(145deg, var(--blue), var(--teal));
  border-radius: var(--radius);
  text-align: center;
}

.context-panel__label strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
}

.context-panel__label span {
  display: block;
  margin-top: 0.5rem;
  color: #d9f8f2;
  font-weight: 700;
}

.context-panel__body h3 {
  margin-top: 0;
  color: var(--blue-dark);
  font-size: 1.5rem;
}

.context-panel__body p {
  color: var(--ink-soft);
}

.resources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
}

.resource-link:hover {
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-color: #a9d2e3;
}

.resource-link::after {
  flex: 0 0 auto;
  content: "↗";
  color: var(--teal);
}

.resource-link small {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details__item {
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-details__item strong {
  display: block;
  color: var(--blue-dark);
}

.contact-details__item p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}

.contact-form {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: grid;
  gap: 0.38rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field__legend {
  color: var(--ink);
  font-size: 0.89rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.82rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #9fb6c6;
  border-radius: 0.55rem;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 89, 133, 0.15);
  outline: none;
}

.field__help {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.captcha-row label {
  flex: 1 1 auto;
}

.captcha-row input {
  flex: 0 0 6.5rem;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 1rem;
}

.check-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.22rem;
}

.check-row label {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-actions p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.legal-nav a {
  padding: 0.55rem 0.8rem;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border: 1px solid #b9dce9;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-stack {
  display: grid;
  gap: 1.25rem;
}

.legal-article {
  padding: 1.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-article h3 {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.legal-article h4 {
  margin: 1.45rem 0 0.4rem;
  color: var(--ink);
  font-size: 1.03rem;
}

.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.legal-article ul {
  padding-left: 1.25rem;
}

.legal-article table {
  margin-top: 1rem;
}

.cookie-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  color: var(--success);
  background: var(--success-soft);
  border: 1px solid #b8e1c1;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.cookie-status::before {
  width: 0.62rem;
  aspect-ratio: 1;
  content: "";
  background: var(--success);
  border-radius: 50%;
}

.callout {
  padding: 1.3rem;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid #efd39d;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
}

.callout p {
  margin: 0;
}

.site-footer {
  color: #dcebf2;
  background: #082f49;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-block: 3.5rem 2rem;
}

.footer__brand {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer__summary {
  max-width: 55ch;
  color: #b9d3df;
}

.site-footer h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: #e5f6fb;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #acc7d4;
  font-size: 0.82rem;
}

.footer__bottom p {
  margin: 0;
}

.back-to-top {
  color: #fff;
  font-weight: 800;
}

.response-page {
  min-height: 100vh;
  padding-block: 4rem;
  background: var(--surface);
}

.response-card {
  max-width: 720px;
  margin: auto;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.response-card h1 {
  color: var(--blue-dark);
}

.response-card p {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 0.48rem;
    font-size: 0.82rem;
  }

  .brand__text small {
    display: none;
  }

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

@media (max-width: 920px) {
  :root {
    --header-offset: 5.8rem;
  }

  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 4.7rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 4.7rem 0 auto 0;
    display: grid;
    max-height: calc(100vh - 4.7rem);
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow-y: auto;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 3rem;
    padding-inline: 0.85rem;
    font-size: 0.95rem;
  }

  .site-nav .language-link {
    margin: 0.35rem 0 0;
  }

  .hero__inner,
  .mission-layout,
  .transparency-grid,
  .context-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    gap: 2rem;
    padding-block: 4.3rem 5rem;
  }

  .hero h1 {
    max-width: 16ch;
  }

  .hero__panel {
    max-width: 660px;
  }

  .ownership-band__inner {
    grid-template-columns: auto 1fr;
  }

  .ownership-band__label {
    grid-column: 2;
  }

  .timeline,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .context-panel__label {
    min-height: 12rem;
  }
}

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

  .brand__text strong {
    font-size: 0.93rem;
  }

  .brand__mark {
    width: 2.7rem;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 3.5rem 4.6rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.4rem);
  }

  .hero__actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ownership-band {
    margin-top: -1.4rem;
  }

  .ownership-band__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ownership-band__label {
    grid-column: auto;
  }

  .section {
    padding-block: 4.2rem;
  }

  .grid-2,
  .grid-4,
  .resources,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .captcha-row {
    align-items: stretch;
    flex-direction: column;
  }

  .captcha-row input {
    flex: auto;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
  }

  .data-table th {
    width: auto;
    padding-bottom: 0.35rem;
    border-bottom: 0;
  }

  .data-table td {
    padding-top: 0.35rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .hero__actions,
  .contact-form,
  .site-footer,
  .back-to-top {
    display: none !important;
  }

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

  .hero {
    color: #000;
    background: #fff;
  }

  .hero__inner {
    display: block;
    min-height: 0;
    padding: 1rem 0;
  }

  .hero__panel,
  .card,
  .legal-article,
  .data-table,
  .context-panel {
    box-shadow: none;
  }

  .section {
    padding-block: 1.2rem;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}


/* Integración WordPress */
.form-notice {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid #b8c8d4;
  border-left-width: 5px;
  border-radius: 0.55rem;
  background: #f5f9fb;
}
.form-notice p { margin: 0; }
.form-notice--success { border-left-color: #17856f; background: #eef9f6; }
.form-notice--error { border-left-color: #b1463f; background: #fff5f4; }
.response-page { min-height: 70vh; padding: clamp(4rem, 10vw, 8rem) 1rem; background: #edf4f7; }
.response-card { max-width: 760px; margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem); background: #fff; border-radius: 1rem; box-shadow: 0 18px 45px rgba(8, 49, 74, .12); }
.response-card h1 { color: #063b59; }
.wp-block-image img, .entry-content img { max-width: 100%; height: auto; }

/* Nuevo anagrama de ATLAS en la cabecera */
.brand__mark {
  background: transparent url("../images/anagrama-atlas.png") center center / contain no-repeat;
  color: transparent;
  font-size: 0;
  overflow: hidden;
}
