body.site-page {
  margin: 0;
  padding: 0;
  color: #1f1f22;
  background: #ececee;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 24px;
  background: rgba(236, 236, 238, 0.94);
  border-bottom: 1px solid #d2d2d6;
  backdrop-filter: blur(8px);
}

.site-logo img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a,
.site-lang a {
  color: #2f2f33;
  text-decoration: none;
  font-weight: 600;
}

.site-nav a.is-active,
.site-lang a.is-active {
  color: #047c99;
}

.site-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.site-main {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 28px 0 40px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7d8dc;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.45);
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

.hero-card p {
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  max-width: 70ch;
}

.hero-card--decorated .hero-bg-hex {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0.28;
  background: center/contain no-repeat url('/assets/img/hex-solid-soft.svg');
}

.hero-card--decorated .hero-bg-hex--a { top: -18px; right: 10%; }
.hero-card--decorated .hero-bg-hex--b { bottom: -22px; left: 8%; }
.hero-card--decorated .hero-bg-hex--c { top: 36%; right: -18px; }
.hero-card--decorated .hero-bg-hex--d {
  width: 62px;
  height: 62px;
  top: 12%;
  left: 42%;
  opacity: 0.46;
  background-image: url('/assets/img/hex-outline-teal.svg');
}

.page-hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d7d8dc;
  box-shadow: 0 10px 30px -24px rgba(0, 0, 0, 0.45);
  background: #d0d3d7;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: clamp(220px, 34vw, 380px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(16, 38, 44, 0.24), rgba(9, 34, 41, 0.54));
}

.page-hero-overlay h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 4rem);
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.page-hero-media .hero-static-hexes .hero-bg-hex {
  position: absolute;
  width: 96px;
  height: 96px;
  opacity: 0.42;
  background: center/contain no-repeat url('/assets/img/hex-outline-teal.svg');
}

.page-hero-media .hero-static-hexes .hero-bg-hex--a { top: 8%; left: 5%; }
.page-hero-media .hero-static-hexes .hero-bg-hex--b { top: 18%; right: 8%; width: 64px; height: 64px; }
.page-hero-media .hero-static-hexes .hero-bg-hex--c { bottom: 10%; left: 16%; width: 72px; height: 72px; }
.page-hero-media .hero-static-hexes .hero-bg-hex--d { bottom: 12%; right: 14%; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #047c99;
  color: #047c99;
  cursor: pointer;
}

.btn-link.primary {
  background: #047c99;
  color: #fff;
}

.section-card {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #d7d8dc;
  border-radius: 16px;
  padding: 24px;
}

.section-card h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px 30px;
}

.contact-copy p {
  font-size: 1.04rem;
  line-height: 1.56;
}

.contact-direct {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #d7d8dc;
  border-radius: 14px;
  background: #f8fafb;
}

.contact-direct p {
  margin: 0;
  line-height: 1.7;
}

.contact-form-shell {
  border: 1px solid #d7d8dc;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 250, 0.98));
}

.contact-form-shell h3 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.contact-form-shell p {
  margin: 0 0 16px;
  color: #3a3d44;
}

.contact-form .form-group:last-of-type {
  margin-bottom: 12px;
}

.contact-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.contact-status {
  min-height: 24px;
  margin: 10px 0 0;
  font-weight: 600;
}

.contact-status.is-error {
  color: #b3261e;
}

.contact-status.is-success {
  color: #1d6f42;
}

.contact-note {
  margin-top: 14px;
  font-size: 0.94rem;
  color: #52555d;
}

.reveal-answer-counter {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #5b6570;
  text-align: right;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.opportunity-card {
  border: 1px solid #d9d9dc;
  border-radius: 12px;
  padding: 14px;
  background: #fafafb;
}

.opportunity-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.opportunity-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.opportunity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.chip {
  border: 1px solid #c6dce3;
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 2px 8px;
  color: #0f5767;
}

.site-footer {
  margin-top: 34px;
  background: #03627a;
  color: #ffffff;
}

.site-footer-inner {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 32px 0 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 44px;
}

.site-footer-col {
  min-width: 0;
}

.site-footer-title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.site-footer-copy {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer-social-block {
  margin-top: 18px;
}

.site-footer-subtitle {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.site-footer-social-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-social-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 500;
}

.site-footer-social-nav a:hover,
.site-footer-social-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-social-nav img {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-nav a {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 500;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 14px;
  }
  .site-logo img {
    height: 38px;
  }
  .site-main {
    width: min(1200px, 95vw);
    padding-top: 18px;
  }

  .site-footer-inner {
    width: min(1200px, 95vw);
  }

  .hero-card {
    padding: 22px;
  }
  .page-hero-media img {
    height: clamp(210px, 52vw, 300px);
  }

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

/* Subpages using shared offcanvas nav */
body.site-page .site-main {
  padding-top: 86px;
}

body.site-page .offcanvas-links a.is-active {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.72);
  text-underline-offset: 4px;
}

.reveal-shell-head p { max-width: 72ch; }

.reveal-shell-head-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.reveal-shell-head-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.reveal-shell-head-main {
  min-width: 0;
}

.reveal-shell-head-title h2,
.reveal-shell-head-copy p {
  margin: 0;
}

.reveal-shell-head-copy {
  margin-top: 14px;
}

.reveal-shell-head-copy p {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.66;
  color: #2a2d34;
}

.reveal-shell-head-picker {
  min-width: 0;
}

.reveal-shell-head-picker-title {
  margin-bottom: 16px;
}

.reveal-shell-head-picker-title h2 {
  margin: 0;
}

.reveal-shell-head-module-grid {
  display: block;
}

.reveal-shell-head-module-grid .reveal-module-card + .reveal-module-card {
  margin-top: 18px;
}


.reveal-picker-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 520px);
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 16px;
  background: #eef7fb;
  color: #03627a;
  border: 1px solid rgba(3, 98, 122, 0.16);
  box-shadow: 0 8px 20px -18px rgba(3, 98, 122, 0.6);
}

.reveal-picker-hint-text {
  margin: 0;
  flex: 1 1 auto;
  font-size: clamp(1.02rem, 1.1vw, 1.08rem);
  line-height: 1.2;
  font-weight: 800;
  color: #000000;
}

.reveal-picker-hint-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: auto;
}

.reveal-root {
  position: relative;
}

.reveal-root textarea,
.reveal-root input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cfd7de;
  border-radius: 12px;
  background: #ffffff;
  color: #202126;
  font: inherit;
  resize: vertical;
}

.reveal-root textarea {
  max-width: 480px;
}

.reveal-root input {
  min-height: auto;
}

.reveal-stage {
  position: relative;
}

.reveal-root--with-overlay .reveal-stage {
  min-height: 560px;
}

.reveal-root--with-overlay.overlay-dismissed .reveal-stage {
  min-height: 0;
}

.reveal-root--with-overlay.overlay-dismissed .reveal-overlay {
  display: none;
}

.reveal-root--with-overlay .reveal-landing {
  display: none;
}

.reveal-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 32px;
  padding: 34px 36px;
  border: 1px solid #1f2023;
  border-radius: 22px;
  background: var(--reveal-overlay-bg, #141415);
  color: #ffffff;
  box-shadow: 0 18px 38px -28px rgba(0, 0, 0, 0.8);
  transition: opacity 320ms ease, visibility 320ms ease;
}

.reveal-overlay.is-exiting,
.reveal-overlay.is-hidden {
  opacity: 0;
}

.reveal-overlay.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.reveal-overlay-copy h2,
.reveal-overlay-copy h3,
.reveal-overlay-copy p {
  margin: 0;
}

.reveal-overlay-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.04;
}

.reveal-overlay-copy h3 {
  margin-top: 22px;
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

.reveal-overlay-copy p {
  margin-top: 24px;
  font-size: clamp(1.06rem, 1.28vw, 1.35rem);
  line-height: 1.34;
  color: rgba(255, 255, 255, 0.94);
}

.reveal-overlay .reveal-inline-label {
  color: rgba(255, 255, 255, 0.88);
}

.reveal-overlay-controls {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
}

.reveal-overlay-actions {
  margin-top: 0;
  display: block;
}

.reveal-overlay-actions .btn-link {
  display: block;
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 18px 22px;
  font-size: clamp(1.1rem, 1.36vw, 1.35rem);
  border-radius: 16px;
  box-sizing: border-box;
}

.reveal-overlay .btn-link {
  border-width: 4px;
}

.reveal-overlay .btn-link:not(.primary) {
  color: var(--reveal-overlay-secondary-fg, #047c99);
  border-color: var(--reveal-overlay-secondary-border, #047c99);
}

.reveal-overlay .btn-link.primary {
  border-color: rgba(255, 255, 255, 0.92);
}

.reveal-overlay-resume-group textarea {
  min-height: 60px;
  max-height: 60px;
  resize: none;
  max-width: none;
  box-sizing: border-box;
}

.reveal-overlay-resume-group {
  width: min(100%, 420px);
  justify-self: end;
}

.reveal-overlay-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 18px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.reveal-overlay.is-loading .reveal-overlay-indicator {
  opacity: 1;
}

.reveal-overlay-indicator span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  animation: reveal-overlay-pulse 1s ease-in-out infinite;
}

.reveal-overlay-indicator span:nth-child(2) {
  animation-delay: 0.14s;
}

.reveal-overlay-indicator span:nth-child(3) {
  animation-delay: 0.28s;
}

.reveal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.reveal-footer {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.reveal-root--with-overlay:not(.overlay-dismissed) .reveal-footer {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: auto;
  width: min(100%, 460px);
  margin-top: 0;
  z-index: 5;
}

.reveal-botguard {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f3f5f7;
  border: 1px solid #d7d8dc;
}

.reveal-root[data-variant="discovery"][data-module-id=""] [data-reveal-botguard] {
  display: none !important;
}

.reveal-botguard-copy {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 700;
  color: #26313a;
}

.reveal-botguard.is-complete .cf-turnstile {
  display: none;
}

.reveal-overlay .reveal-botguard {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.reveal-overlay .reveal-botguard-copy {
  color: rgba(255, 255, 255, 0.96);
}

.reveal-botguard--modal {
  margin-top: 10px;
}

.reveal-modal-status {
  min-height: 22px;
  margin: 6px 0 0;
  color: #4e5b65;
  font-weight: 600;
}

.reveal-actions .btn-link,
.reveal-module-card,
.reveal-root button,
.reveal-root [role="button"] {
  cursor: pointer;
}

.reveal-actions .btn-link[disabled],
.reveal-root button[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

.reveal-hint,
.reveal-status,
.reveal-phase,
.reveal-eta {
  color: #54606b;
}

.reveal-inline-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.reveal-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #9db7c0;
  color: #03627a;
  background: #f5fafb;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.reveal-status {
  min-height: 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reveal-status.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(3, 98, 122, 0.18);
  border-top-color: #03627a;
  animation: reveal-spin 0.9s linear infinite;
}

.reveal-status.is-error::before {
  display: none;
}

.reveal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 20px;
  margin-top: 18px;
}

.reveal-main {
  display: grid;
  gap: 14px;
}

.reveal-side-card,
.reveal-report,
.reveal-module-card,
.reveal-question-card {
  border: 1px solid #d7d8dc;
  border-radius: 16px;
  background: #fbfbfc;
  box-shadow: 0 10px 30px -26px rgba(0, 0, 0, 0.35);
}

.reveal-question-card,
.reveal-side-card,
.reveal-report,
.reveal-module-card {
  padding: 18px;
}

.reveal-question-card h3,
.reveal-side-card h3,
.reveal-report h3 {
  margin-top: 0;
}

.reveal-side {
  display: grid;
  gap: 16px;
}

.reveal-report {
  margin-top: 18px;
}

.reveal-report-section + .reveal-report-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d7d8dc;
}

.reveal-report-list {
  margin: 10px 0 0 20px;
  padding: 0;
}

.reveal-report-list li + li {
  margin-top: 6px;
}

.reveal-hints {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f3f5f7;
}

.reveal-progress {
  margin-top: 18px;
}

.reveal-progress-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f3f5f7;
}

.reveal-progress-title {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.3;
}

.reveal-progress-intro {
  margin: 8px 0 0;
  color: #54606b;
}

.reveal-progress-track {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.reveal-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #54606b;
}

.reveal-progress-step.is-current {
  color: #142033;
  font-weight: 700;
}

.reveal-progress-step.is-complete {
  color: #2e7d32;
}

.reveal-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid #b8c3cc;
  background: #ffffff;
  flex: 0 0 12px;
}

.reveal-progress-step.is-current .reveal-progress-dot {
  border-color: #03627a;
  background: #03627a;
}

.reveal-progress-step.is-complete .reveal-progress-dot {
  border-color: #2e7d32;
  background: #2e7d32;
}

.reveal-progress-label {
  line-height: 1.35;
}


.reveal-hints-title {
  margin: 0 0 10px;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.3;
}

.reveal-hints-list {
  margin: 0;
  padding-left: 24px;
}

.reveal-hints-list li + li {
  margin-top: 6px;
}

.reveal-mermaid {
  overflow: auto;
  border: 1px solid #d7d8dc;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.reveal-module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reveal-module-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.reveal-module-intro h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.reveal-module-intro p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.reveal-module-bullets {
  margin: 0 0 18px 20px;
  padding: 0;
}

.reveal-module-bullets li + li {
  margin-top: 8px;
}

.reveal-module-picker-right .reveal-shell-head {
  margin-bottom: 16px;
}

.reveal-module-picker-right .reveal-shell-head h2 {
  margin: 0;
}

.reveal-module-picker-right .reveal-module-grid {
  grid-template-columns: 1fr;
}

.reveal-module-card {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px -18px rgba(16, 24, 40, 0.42);
  transition: box-shadow 160ms ease;
}

.reveal-module-card:hover,
.reveal-module-card:focus-visible {
  box-shadow: 0 14px 26px -20px rgba(16, 24, 40, 0.5);
}

.reveal-module-card-icon {
  flex: 0 0 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
}

.reveal-module-card-icon img {
  display: block;
  width: min(100%, 96px);
  height: auto;
}

.reveal-module-card-copy {
  flex: 1 1 80%;
  min-width: 0;
}

.reveal-module-card.is-active {
  border-color: #2e7d32;
  background: #2e7d32;
  color: #ffffff;
}

.reveal-module-card.is-active .reveal-module-card-copy span,
.reveal-module-card.is-active .reveal-module-card-copy strong {
  color: #ffffff;
}

.reveal-module-card.is-active .reveal-module-card-icon img {
  filter: brightness(0) invert(1);
}

.reveal-module-card-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.reveal-module-card-copy span {
  display: block;
  color: #4b5560;
  line-height: 1.5;
}

.reveal-send-card {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #d7d8dc;
}

.reveal-send-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 18, 24, 0.56);
  z-index: 200;
}

.reveal-send-modal.is-open {
  display: flex;
}

.reveal-send-dialog {
  width: min(640px, 100%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 249, 251, 0.99));
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #d7d8dc;
  box-shadow: 0 28px 56px -34px rgba(10, 18, 28, 0.42);
}

.reveal-send-dialog h3 {
  margin-top: 0;
}

.reveal-send-dialog .form-group {
  margin-top: 14px;
}

.reveal-send-dialog .form-group span {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: #20242b;
}

.reveal-send-dialog input,
.reveal-send-dialog textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #cfd7dd;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbfcfd, #f4f7f9);
  color: #1f2329;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 2px rgba(16, 24, 40, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.reveal-send-dialog textarea {
  min-height: 120px;
  resize: vertical;
}

.reveal-send-dialog input::placeholder,
.reveal-send-dialog textarea::placeholder {
  color: #7a858f;
}

.reveal-send-dialog input:hover,
.reveal-send-dialog textarea:hover {
  border-color: #b8c6cf;
}

.reveal-send-dialog input:focus,
.reveal-send-dialog textarea:focus {
  outline: none;
  border-color: #047c99;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(4, 124, 153, 0.12);
}

@keyframes reveal-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes reveal-overlay-pulse {
  0%, 80%, 100% {
    opacity: 0.28;
    transform: scale(0.82);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.reveal-hints .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #03627a;
  border-radius: 999px;
  background: #03627a;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}


/* Offcanvas fine-tuning for subpages (FI/EN), keeps EN home separate content-wise */
body.site-page .offcanvas-menu {
  width: min(90vw, 380px);
  padding: 84px 22px 24px;
}

body.site-page .offcanvas-links {
  gap: 12px;
}

body.site-page .offcanvas-links a,
body.site-page .offcanvas-links a:visited {
  color: #ffffff;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  body.site-page .header-logo {
    top: 14px;
    left: 14px;
  }

  body.site-page .header-logo img {
    height: 30px;
  }

  body.site-page .nav-toggle-btn {
    top: 14px;
    right: 14px;
    padding: 7px;
  }

  body.site-page .nav-toggle-btn img,
  body.site-page .nav-close-btn img {
    width: 34px;
    height: 34px;
  }

  body.site-page .offcanvas-menu {
    width: min(92vw, 360px);
    padding: 78px 18px 20px;
  }

  body.site-page .offcanvas-links {
    gap: 10px;
  }

  body.site-page .offcanvas-links a,
  body.site-page .offcanvas-links a:visited {
    color: #ffffff;
    font-size: clamp(0.98rem, 4.4vw, 1.08rem);
    line-height: 1.18;
  }

  body.site-page .site-main {
    padding-top: 74px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 0 30px;
  }

  .reveal-grid,
  .reveal-module-grid,
  .reveal-module-layout,
  .reveal-shell-head-layout {
    grid-template-columns: 1fr;
  }

  .reveal-picker-hint {
    width: 100%;
  }

  .reveal-picker-hint-arrow {
    transform: rotate(90deg);
  }

  .reveal-overlay {
    position: static;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .reveal-root--with-overlay .reveal-stage {
    min-height: 0;
  }

  .reveal-overlay-copy p {
    max-width: none;
  }

  .reveal-overlay-resume-group {
    width: 100%;
    justify-self: stretch;
  }

  .reveal-module-card {
    gap: 14px;
  }

  .reveal-module-card-icon {
    flex-basis: 22%;
    min-width: 70px;
  }
}

.about-page-section {
  padding: 30px 32px;
}

.about-z-list {
  display: grid;
  gap: 30px;
}

.about-z-row {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 28px 34px;
  align-items: center;
}

.about-z-row--reverse {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 0.96fr);
}

.about-z-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-z-copy p {
  margin: 0;
  padding: 6px 0;
  font-size: clamp(1.05rem, 1.22vw, 1.24rem);
  line-height: 1.62;
  color: #27292f;
}

.about-z-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #d7d8dc;
  box-shadow: 0 16px 42px -30px rgba(0, 0, 0, 0.38);
  background: #edf1f3;
}

.about-z-media img {
  display: block;
  width: 100%;
  height: clamp(240px, 29vw, 360px);
  object-fit: cover;
}

.about-z-media--placeholder {
  position: relative;
}

.about-z-media--placeholder::after {
  content: attr(data-placeholder);
  position: absolute;
  inset: auto 18px 18px auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2b2e35;
  font-size: 0.92rem;
  font-weight: 700;
}

.about-inline-link {
  font-weight: 700;
}

.about-support-section {
  padding: 30px 32px;
}

.about-support-intro {
  text-align: center;
  max-width: 78ch;
  margin: 0 auto 26px;
}

.about-support-intro h2 {
  margin: 0 0 12px;
}

.about-support-intro p {
  margin: 0;
  font-size: clamp(1rem, 1.16vw, 1.16rem);
  line-height: 1.58;
  color: #3a3d44;
}

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

.about-support-card {
  min-height: 180px;
  padding: 22px 24px;
  border: 1px solid #d7d8dc;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 250, 0.96));
  box-shadow: 0 10px 30px -26px rgba(0, 0, 0, 0.3);
}

.about-support-card h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
}

.about-support-card h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.35;
  color: #047c99;
  font-weight: 700;
}

.about-support-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
  color: #2f3238;
}

.about-support-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  margin: 0 0 16px;
}

.about-support-logo--eleven {
  height: 24px;
}

.about-support-logo--canva {
  height: 26px;
}

.about-cta-section {
  padding: 34px 28px;
  text-align: center;
}

.about-cta-section h2 {
  margin: 0 0 12px;
}

.about-cta-section p {
  max-width: 74ch;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.26vw, 1.22rem);
  line-height: 1.62;
}

@media (max-width: 980px) {
  .about-z-row,
  .about-z-row--reverse {
    grid-template-columns: 1fr;
  }

  .about-z-row--reverse .about-z-media {
    order: -1;
  }

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

@media (max-width: 720px) {
  .about-page-section,
  .about-support-section,
  .about-cta-section {
    padding: 22px 20px;
  }

  .about-z-list {
    gap: 22px;
  }

  .about-z-row {
    gap: 18px;
  }

  .about-z-media img {
    height: 220px;
  }

  .about-support-card {
    min-height: 0;
  }
}

.about-z-media--logo {
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 250, 0.98));
}

.about-z-media--logo img {
  width: min(100%, 420px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
}


.about-z-media--logo-stack {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 250, 0.98));
}

.about-project-logo-link {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.about-project-logo-link img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  max-height: 150px;
  object-fit: contain;
}

.about-z-media--video {
  padding: 0;
  background: #101316;
}

.about-video-caption {
  padding: 12px 24px 8px;
  color: #ffffff;
}

.about-video-caption h3,
.about-video-caption h4,
.about-video-caption p {
  margin: 0;
  font-size: clamp(1.04rem, 1.28vw, 1.24rem);
  line-height: 1.32;
  color: #ffffff;
}

.about-video-placeholder {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.about-video-placeholder img,
.about-z-media--video iframe {
  display: block;
  width: 100%;
  height: clamp(240px, 29vw, 360px);
  object-fit: cover;
}

.about-z-media--video iframe {
  border: 0;
}

.about-video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 24, 0.12), rgba(9, 18, 24, 0.34));
}

.about-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(4, 124, 153, 0.92);
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-video-play::before {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-38%, -50%);
  border-style: solid;
  border-width: 13px 0 13px 20px;
  border-color: transparent transparent transparent #ffffff;
}

.about-support-link {
  color: inherit;
  text-decoration: none;
}

.about-support-link:hover,
.about-support-link:focus-visible {
  text-decoration: underline;
}

.about-support-logo-link {
  display: inline-block;
  text-decoration: none;
}

.service-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px 30px;
  align-items: stretch;
}

.service-intro-copy h2 {
  margin: 0 0 14px;
}

.service-intro-copy p {
  margin: 0;
  font-size: clamp(1.06rem, 1.26vw, 1.24rem);
  line-height: 1.6;
  color: #262930;
}

.service-intro-quote {
  position: relative;
  margin: 0;
  padding: 10px 4px 10px 22px;
  border-left: 4px solid #047c99;
  background: transparent;
  box-shadow: none;
}

.service-intro-quote::before {
  content: '';
}

.service-intro-quote-kicker {
  margin: 0 0 16px;
  padding-left: 0;
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #047c99;
}

.service-intro-quote p {
  margin: 0;
  padding-left: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #24272d;
}

.service-intro-quote p + p {
  margin-top: 12px;
}

.service-intro-quote-line {
  font-size: clamp(2rem, 3.2vw, 3rem) !important;
  line-height: 1.08 !important;
  font-weight: 300;
  color: #1f1f22 !important;
  letter-spacing: -0.02em;
}

.service-intro-quote-line--emphasis {
  color: #047c99 !important;
  font-weight: 400;
}

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

.service-intro-quote-body {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(4, 124, 153, 0.14);
}

.service-intro-quote-body p {
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.65;
  color: #2a2d34;
}

.service-intro-quote-body p + p {
  margin-top: 12px;
}

.service-intro-copy-body {
  margin-top: 16px;
}

.service-intro-copy-body p,
.service-intro-copy p {
  margin: 0;
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.66;
  color: #2a2d34;
}

.service-intro-copy-body p + p {
  margin-top: 12px;
}

.service-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px 30px;
  align-items: center;
}

.service-feature-copy h2 {
  margin: 0 0 14px;
}

.service-feature-copy p {
  margin: 0;
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.66;
  color: #2a2d34;
}

.service-feature-copy p + p {
  margin-top: 12px;
}

.service-feature-list {
  margin: 12px 0;
  padding-left: 24px;
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.66;
  color: #2a2d34;
}

.service-feature-list li + li {
  margin-top: 8px;
}

.service-feature-media {
  min-width: 0;
}

.service-feature-video-shell {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d7d8dc;
  background: #ffffff;
  box-shadow: 0 14px 34px -28px rgba(0, 0, 0, 0.28);
}

.service-feature-video-shell video {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.service-feature-video-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.service-feature-video-shell--plain {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.partner-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px 34px;
  align-items: start;
}

.partner-intro-copy h2 {
  margin: 0 0 14px;
}

.partner-intro-copy p {
  margin: 0 0 18px;
  font-size: clamp(1.02rem, 1.12vw, 1.12rem);
  line-height: 1.66;
  color: #2a2d34;
}

.partner-intro-side {
  min-width: 0;
}

.partner-intro-side-inner {
  height: 100%;
  padding-left: 28px;
  border-left: 5px solid #047c99;
}

.partner-intro-side-inner h2 {
  margin: 0 0 18px;
}

.partner-project + .partner-project {
  margin-top: 22px;
}

.partner-project img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin-bottom: 10px;
}

.partner-project p {
  margin: 0;
  font-size: clamp(0.98rem, 1.02vw, 1.06rem);
  line-height: 1.52;
  color: #24272d;
}

.partner-project-link {
  display: inline-block;
  margin-top: 8px;
  color: #047c99;
  text-decoration: none;
  font-weight: 700;
}

.partner-project-link:hover,
.partner-project-link:focus-visible {
  text-decoration: underline;
}

.partner-contact-link {
  margin: 28px 0 0;
}

.partner-contact-link a {
  color: #047c99;
  text-decoration: none;
  font-size: clamp(1.06rem, 1.2vw, 1.18rem);
  font-weight: 700;
}

.partner-contact-link a:hover,
.partner-contact-link a:focus-visible {
  text-decoration: underline;
}

.partner-opencalls-head {
  margin-bottom: 18px;
}

.partner-opencalls-head img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin-bottom: 14px;
}

.partner-opencalls-head p {
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.58;
  color: #2a2d34;
}

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

  .partner-intro-layout {
    grid-template-columns: 1fr;
  }

  .partner-intro-side-inner {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 5px solid #047c99;
  }
}

.reveal-root.is-final .reveal-answer-form {
  display: none;
}
