/* SysTec Analytics Foundation CIO — Institutional styles */

:root {
  /* Official brand palette */
  --navy: #071f48;
  --navy-2: #0d1b3e;
  --blue-mid: #1e3a6e;
  --accent: #2b5be8;
  --steel: #6b7fa3;
  --steel-2: #8ca5c2;
  --gray-blue: #627792;
  --gray-blue-dark: #4f6379;
  --light: #f4f7fa;
  --white: #ffffff;

  /* Semantic aliases */
  --navy-deep: var(--navy-2);
  --blue: var(--blue-mid);
  --blue-bright: var(--accent);
  --ice: var(--light);
  --surface: var(--white);
  --text: var(--navy);
  --muted: var(--gray-blue-dark);
  --line: rgba(7, 31, 72, 0.12);
  --success: #1f7a5a;
  --warning: #a56a16;
  --focus: var(--steel-2);
  --header-height: 80px;
  --container: 1200px;
  --radius: 12px;
  --shadow: 0 12px 40px rgba(7, 31, 72, 0.08);
  --font: Inter, Arial, Helvetica, sans-serif;
  --transition: 0.25s ease;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--ice);
}

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

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

a:hover {
  color: var(--blue-bright);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--surface);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-name,
body[data-page="home"] .site-header:not(.is-scrolled) .brand-subtitle,
body[data-page="home"] .site-header:not(.is-scrolled) .main-nav a.nav-link {
  color: #ffffff;
}

body[data-page="home"] .site-header:not(.is-scrolled) .main-nav a.nav-link:hover,
body[data-page="home"] .site-header:not(.is-scrolled) .main-nav a.nav-link.is-active {
  color: rgba(255, 255, 255, 0.9);
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.site-header:not(.is-scrolled) .menu-toggle {
  color: var(--surface);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--navy);
}

.menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.25rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--blue);
}

.lang-switcher {
  position: relative;
  z-index: 120;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7, 31, 72, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.lang-trigger:hover,
.lang-trigger[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(43, 91, 232, 0.15);
}

.site-header:not(.is-scrolled) .lang-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.site-header:not(.is-scrolled) .lang-trigger:hover,
.site-header:not(.is-scrolled) .lang-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.lang-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.lang-current {
  white-space: nowrap;
}

.lang-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.lang-trigger[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7, 31, 72, 0.16);
}

.lang-menu[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.lang-option:hover {
  background: var(--light);
  color: var(--accent);
}

.lang-option.is-current {
  background: rgba(43, 91, 232, 0.1);
  color: var(--accent);
  font-weight: 700;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem;
  background: rgba(7, 31, 72, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

body:has(.cookie-banner:not(.is-hidden)) {
  padding-bottom: 5.5rem;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.cookie-desc {
  margin: 0;
  max-width: 52ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(244, 247, 250, 0.88);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.cookie-link {
  color: var(--steel-2);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.cookie-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* Hero — solid navy only, no gradient */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  background: #0d1b3e;
}

.hero-media {
  display: none;
}

.hero-image {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0d1b3e;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue-bright);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.hero-quote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 247, 250, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--blue-bright);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--surface);
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--surface);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--surface);
}

.section .btn-primary {
  background: var(--blue);
  color: var(--surface);
}

.section .btn-primary:hover {
  background: var(--navy);
  color: var(--surface);
}

.section .btn-secondary {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.section .btn-secondary:hover {
  background: var(--ice);
  color: var(--navy);
}

/* Sections */
.section {
  padding: 5rem 0;
  scroll-margin-top: var(--header-height);
}

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

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

.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.section h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.subsection-title {
  margin: 3rem 0 1.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--navy);
}

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

.prose {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.section-benefit .card,
.section-alt .card {
  background: var(--ice);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 58, 110, 0.22);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--blue);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3,
.card h4 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.card-compact {
  padding: 1.25rem;
}

/* Statement band */
.statement-band {
  padding: 4rem 0;
  background: var(--navy-2);
}

.statement-text {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--surface);
}

/* Impact steps */
.impact-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.impact-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step-number {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  font-weight: 700;
  color: var(--surface);
  background: var(--blue);
  border-radius: 50%;
}

.impact-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.impact-step p {
  margin: 0;
  color: var(--muted);
}

/* News */
.news-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue-bright);
}

.news-card h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-org {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-domain {
  margin: 0 0 1rem;
  color: var(--blue);
}

.contact-note {
  color: var(--muted);
}

.form-notice {
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  background: #f8f0e6;
  border: 1px solid #c9a06a;
  border-radius: var(--radius);
  color: #5c3d0f;
  font-weight: 500;
}

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

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

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.form-field input:disabled,
.form-field textarea:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: var(--light);
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-checkbox label {
  margin: 0;
  font-weight: 400;
  color: var(--muted);
}

button.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Legal */
.section-legal {
  background: var(--surface);
}

.legal-notice {
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  background: var(--ice);
  border-left: 4px solid var(--blue);
  color: var(--muted);
}

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

.legal-block {
  padding: 1.5rem;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.legal-block p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--navy-2);
  color: rgba(255, 255, 255, 0.92);
}

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

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.brand-footer .brand-name,
.brand-footer .brand-subtitle {
  color: var(--surface);
}

.brand-footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-domain {
  margin-top: 0.75rem;
}

.footer-nav h3,
.footer-legal h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--surface);
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

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

.footer-bottom p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-notice {
  color: rgba(244, 247, 250, 0.65);
  font-size: 0.85rem;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .section > .container > :not(.card-grid) {
    animation: fadeUp 0.7s ease both;
  }

  .card {
    animation: fadeUp 0.6s ease both;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem;
    background: var(--surface);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

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

  .nav-link {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open .nav-link {
    color: var(--navy);
  }

  .lang-switcher {
    margin-top: 1.5rem;
    width: 100%;
  }

  .lang-trigger {
    width: 100%;
    justify-content: center;
  }

  .lang-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
  }

  .site-header:not(.is-scrolled) .lang-trigger {
    color: var(--navy);
    background: var(--white);
    border-color: var(--line);
  }

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

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

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

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

  .container {
    width: min(100% - 1.5rem, var(--container));
  }
}

@media (max-width: 320px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }
}

/* ——— Multipage editorial system ——— */

.breadcrumb {
  padding: 1rem 0 0;
  background: var(--light);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--steel);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.hero-cinematic {
  min-height: 92vh;
}

.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  background: var(--navy-2);
  color: #ffffff;
}

.page-hero-editorial,
.page-hero-human,
.page-hero-institutional,
.page-hero-minimal {
  background: var(--navy-2);
  color: #ffffff;
}

.page-hero-editorial,
.page-hero-human {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  display: none;
}

.page-hero-editorial::after,
.page-hero-human::after {
  display: none;
}

.page-hero-minimal {
  border-bottom: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1,
.page-hero-minimal h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero-lead {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.section-dark {
  background: var(--navy-2);
  color: #ffffff;
}

.section-dark .statement-text {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
}

.section-intro-block {
  background: var(--white);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-60 {
  grid-template-columns: 1.1fr 0.9fr;
}

.split-50 {
  grid-template-columns: 1fr 1fr;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.visual-panel img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-head {
  margin-bottom: 2rem;
}

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

.portal-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.portal-card-accent {
  background: var(--navy-2);
  color: var(--white);
  justify-content: center;
}

.portal-num {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.portal-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--navy);
}

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

.portal-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.portal-arrow {
  font-size: 1.5rem;
}

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

.triptych-item {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.triptych-item h3 {
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.triptych-item p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.editorial-card {
  padding: 2rem;
  background: var(--navy-2);
  color: var(--white);
  border-radius: var(--radius);
}

.editorial-num {
  display: block;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.35;
}

.editorial-card h3 {
  margin: 0 0 0.75rem;
}

.prose.wide {
  max-width: 78ch;
}

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

.principle-card {
  padding: 1.5rem;
  background: var(--light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.principle-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--navy);
}

.principle-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
}

.cta-band p {
  margin: 0;
  max-width: 56ch;
  color: rgba(244, 247, 250, 0.85);
}

.area-feature {
  padding: 4rem 0;
}

.area-feature-alt {
  background: var(--light);
}

.area-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.area-feature-reverse .area-feature-visual {
  order: 2;
}

.area-feature-reverse .area-feature-content {
  order: 1;
}

.area-feature-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.area-num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}

.area-feature-content h2 {
  margin: 0 0 1rem;
  color: var(--navy);
}

.area-limit {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--steel);
  font-style: italic;
}

.governance-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.governance-pillar {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

.faq-item {
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary {
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.legal-notice-inline {
  padding: 1rem;
  background: var(--light);
  border-left: 4px solid var(--accent);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.related-links a {
  color: var(--steel-2);
  font-weight: 600;
}

.impact-cycle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
}

.cycle-step {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 4px solid var(--accent);
}

.cycle-num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-mid);
  border-radius: 50%;
}

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

.collab-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.collab-card:nth-child(odd) {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.news-feature {
  padding: 2rem;
  margin-bottom: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.news-tag {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.news-empty {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--light);
  border: 1px dashed var(--steel-2);
  border-radius: var(--radius);
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-panel {
  padding: 2rem;
  background: var(--navy-2);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-info-panel .contact-domain {
  color: var(--steel-2);
}

.contact-form-panel {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-doc p + p {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .split-60,
  .split-50,
  .portal-grid,
  .triptych,
  .principles-grid,
  .governance-pillars,
  .impact-cycle,
  .area-feature-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .area-feature-reverse .area-feature-visual,
  .area-feature-reverse .area-feature-content {
    order: unset;
  }

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

@media (max-width: 600px) {
  .portal-grid,
  .collab-grid {
    grid-template-columns: 1fr;
  }
}
