@font-face {
  font-family: "Namian";
  src: url("font/namian-cufonfonts-webfont/Namian-Regular.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Namian";
  src: url("font/namian-cufonfonts-webfont/Namian-RegularItalic.woff")
    format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Namian";
  src: url("font/namian-cufonfonts-webfont/Namian-Medium.woff")
    format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Namian";
  src: url("font/namian-cufonfonts-webfont/Namian-SemiBold.woff")
    format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Namian";
  src: url("font/namian-cufonfonts-webfont/Namian-Bold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("font/titillium-web-cufonfonts/TitilliumWeb-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("font/titillium-web-cufonfonts/TitilliumWeb-Italic.ttf")
    format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("font/titillium-web-cufonfonts/TitilliumWeb-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titillium Web";
  src: url("font/titillium-web-cufonfonts/TitilliumWeb-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --ink: #18181b;
  --muted: #6b7280;
  --accent: #9db048;
  --soft: #f4f4f5;
  --glass: rgba(191, 191, 191, 0.15);
  --shadow: 0 25px 60px rgba(9, 9, 11, 0.08);
  --radius-lg: 24px;
  --radius-sm: 12px;
  --radius-pill: 9999px;
  --max-width: 1160px;
  --font-display: "Namian", "Times New Roman", serif;
  --font-body: "Titillium Web", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.section-inner {
  width: min(92vw, var(--max-width));
  margin: 0 auto;
}

.accent {
  color: var(--accent);
}

.accent-italic {
  color: var(--accent);
  font-style: italic;
}

.site-header {
  width: 100%;
  padding: 32px 0 0;
  position: relative;
  z-index: 2;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 12px 28px rgba(24, 24, 27, 0.12);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.logo-img--tall {
  width: 44px;
  height: 80px;
}

.logo-img--main {
  width: 120px;
  height: auto;
}

.logo-text {
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-btn {
  display: none;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(157, 176, 72, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  border: none;
}

.btn-pill {
  background: rgba(157, 176, 72, 0.2);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(24, 24, 27, 0.2);
}

.btn-pill:hover,
.btn-outline:hover {
  background: #9db048;
  color: #ffffff;
  border-color: #9db048;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
}

.btn-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.btn-link::after {
  content: "→";
  margin-left: 6px;
  color: var(--accent);
}

.hero {
  width: 100%;
  padding: 72px 0 96px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  margin: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-funded {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-sub {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  max-width: 560px;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head.left {
  text-align: left;
}

.contact-page .section-head {
  margin-bottom: 12px;
}

.contact-page .content-stack > p {
  margin: 0;
}

.section-head h2,
.capabilities h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 12px;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.section-head p {
  margin: 0 auto;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.5;
}

.about-hero {
  width: 100%;
  padding: 96px 0 48px;
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 12px;
}

.about-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.5;
}

.content-section {
  width: 100%;
  padding: 88px 0;
}

.content-section:nth-of-type(even) {
  background: #fafafa;
}

.content-section--backdrop {
  position: relative;
  padding-bottom: 96px;
  background: transparent;
}

.content-section--backdrop::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: min(900px, 90vw);
  height: 360px;
  transform: translateX(-50%);
  background: url("textures/palaestra logo effect.svg") center / contain no-repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.content-section--backdrop .section-inner {
  position: relative;
  z-index: 2;
}

.content-stack {
  display: grid;
  gap: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.subhead {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.content-split--facts {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.content-split--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.content-split--logo {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.content-split--contact {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.partner-logo {
  width: min(280px, 70vw);
  height: auto;
  justify-self: center;
  align-self: center;
  object-fit: contain;
}

.partner-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.deliverables-table {
  width: 100%;
  overflow-x: auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.deliverables-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.deliverables-table th,
.deliverables-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e4e4e7;
  font-size: 14px;
}

.delivered-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.deliverables-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #fafafa;
}

.deliverables-table tbody tr:nth-child(even) {
  background: rgba(157, 176, 72, 0.05);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.contact-details h4 {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}

.contact-details p {
  margin: 0 0 6px;
  color: var(--muted);
  line-height: 1.5;
}

.contact-details .social-row {
  margin: 2px 0 4px;
}

.contact-address {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.demo-headers {
  color: var(--ink);
}

.demo-headers h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.demo-headers h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  margin: 0;
}

.demo-headers h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
}

.demo-headers h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}

.demo-headers h5 {
  font-family: var(--font-display);
  font-size: 14px;
  margin: 0;
}

.demo-headers h6 {
  font-family: var(--font-display);
  font-size: 12px;
  margin: 0;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(24, 24, 27, 0.15);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(157, 176, 72, 0.6);
  box-shadow: 0 0 0 3px rgba(157, 176, 72, 0.18);
  background: #ffffff;
}

.about-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.media-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame--tall {
  min-height: 320px;
}

.media-frame--wide {
  min-height: 280px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-img--contain {
  object-fit: contain;
}

.about-logo-foreground {
  width: min(280px, 70vw);
  height: auto;
  justify-self: center;
  align-self: center;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.fact-card {
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.fact-value {
  margin-top: 8px;
  font-weight: 600;
}

.pull-quote {
  margin: 0;
  padding: 24px 32px;
  border-left: 4px solid var(--accent);
  background: rgba(157, 176, 72, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}

.about {
  position: relative;
  width: 100%;
  padding: 48px 0 96px;
}

.about .section-inner {
  position: relative;
  z-index: 2;
}

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

.about-grid--top {
  margin-bottom: 16px;
}

.about-grid--bottom {
  margin-top: 16px;
}

.about-grid--top > * {
  min-height: 320px;
}

.about-grid--bottom > * {
  min-height: 160px;
}

.about-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 180px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.08);
}

.about-image {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)),
    radial-gradient(circle at top right, rgba(157, 176, 72, 0.3), transparent 60%);
}

.about-image--left {
  min-height: 320px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)),
    radial-gradient(circle at top left, rgba(157, 176, 72, 0.4), transparent 60%),
    url("images/industiral-office-building.jpg") center/cover no-repeat;
  grid-column: span 7;
}

.about-image--right {
  min-height: 220px;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.5)),
    radial-gradient(circle at bottom right, rgba(157, 176, 72, 0.35), transparent 60%);
  grid-column: span 4;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 50%);
}

.about-photo-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.about-image--left .about-photo-content {
  inset: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-image--left .about-photo-link {
  margin-top: 8px;
}

.about-image--right .about-photo-content {
  inset: auto 0 0 0;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.about-card-logo {
  width: auto;
  height: 85%;
  max-height: 240px;
  object-fit: contain;
  margin: 0;
  transition: transform 0.3s ease;
}

.about-image--right .metric-icon {
  top: 50%;
  left: 0;
  width: 100%;
  height: 70%;
  transform: translateY(-50%);
  object-fit: contain;
  opacity: 0.85;
}

.about-photo-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-photo-link::after {
  content: "→";
}

.metric-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  box-shadow: 0 20px 40px rgba(24, 24, 27, 0.18);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-card:hover,
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(24, 24, 27, 0.14);
}

.metric-card--icon {
  position: relative;
  overflow: hidden;
}

.metric-icon {
  position: absolute;
  inset: 36px 0;
  width: 100%;
  height: calc(100% - 72px);
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.metric-card--icon .metric-number,
.metric-card--icon .metric-label {
  position: relative;
  z-index: 1;
}

.about-grid--bottom .metric-card {
  grid-column: span 4;
}

.metric-card--map {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  grid-column: span 5;
  min-height: 320px;
}

.metric-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  transition: transform 0.3s ease;
}

.about-grid article:hover .about-card-logo,
.about-grid article:hover .metric-map,
.about-grid article:hover .metric-icon {
  transform: scale(1.08);
}

.metric-card--map .metric-number,
.metric-card--map .metric-label {
  position: relative;
  z-index: 1;
}

.metric-card--soft {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}


.glass-pop {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 50px rgba(24, 24, 27, 0.22);
  backdrop-filter: blur(8px) saturate(130%);
  -webkit-backdrop-filter: blur(8px) saturate(130%);
}

.glass-pop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 40px;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 14px;
}

.about-hills {
  display: none;
}

.about-texture {
  display: none;
}

.about-texture::after {
  display: none;
}

.capabilities {
  width: 100%;
  padding: 96px 0;
  background: #fafafa;
}

.capabilities h2 {
  text-align: center;
}

.capability-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.capability-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.capability-icon {
  width: 72px;
  height: 72px;
  position: relative;
  display: grid;
  place-items: center;
}

.capability-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.capability-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.consortium {
  width: 100%;
  padding: 96px 0 112px;
  position: relative;
}

.consortium::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 520px;
  height: 520px;
  background: rgba(157, 176, 72, 0.18);
  filter: blur(60px);
  transform: translate(-50%, 40%);
  z-index: 0;
}

.consortium .section-inner {
  position: relative;
  z-index: 1;
}

.consortium-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.consortium-card {
  background: rgba(195, 195, 195, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(24, 24, 27, 0.08);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

.consortium-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(24, 24, 27, 0.14);
}

.consortium-card--enduser {
  grid-column: span 4;
}

.consortium-card--partner {
  grid-column: span 4;
}

.consortium-card--partner-row {
  grid-column: span 4;
}

.consortium-card--partner-left {
  grid-column: 3 / span 4;
}

.consortium-card--partner-right {
  grid-column: 7 / span 4;
}

.consortium-card--partner-bottom {
  grid-column: 5 / span 4;
}

.consortium-tag {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.consortium-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
}

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

.consortium-meta {
  font-size: 14px;
  font-weight: 600;
}

.footer {
  width: 100%;
  padding: 80px 0 56px;
  background: var(--soft);
  border-radius: 48px 48px 0 0;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.5;
}

.footer-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-text {
  flex: 1;
  min-width: 0;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-dot {
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-dot img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  align-items: center;
}

.footer-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cta .footer-actions {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 0;
}

.footer-cta .btn {
  width: 220px;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 300;
}

.footer-eu-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .content-split,
  .content-split--facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .about {
    overflow: hidden;
  }

  .about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 180px;
    bottom: 0;
    background: linear-gradient(
      180deg,
      rgba(182, 196, 162, 0) 0%,
      rgba(145, 161, 122, 0.55) 22%,
      rgba(111, 129, 93, 0.72) 100%
    );
    pointer-events: none;
    z-index: 1;
  }

  .nav-bar {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .site-header {
    padding-top: 16px;
  }

  .logo {
    margin: 0;
  }

  .logo-img--main {
    width: 92px;
  }

  .nav-toggle-btn {
    position: static;
    transform: none;
    margin-left: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
  }

  .nav-toggle-btn span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    overflow: hidden;
    pointer-events: none;
    padding-top: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
  }

  .nav-links a:hover {
    background: rgba(157, 176, 72, 0.15);
  }

  .nav-cta {
    order: 4;
    display: none;
    width: auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.2s ease;
    margin: 0 auto;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
    pointer-events: auto;
    padding-top: 10px;
  }

  .nav-toggle:checked ~ .nav-cta {
    display: inline-flex;
    max-height: 60px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 6px;
  }

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

  .section-head.left {
    text-align: center;
  }

  .consortium-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .consortium-card--enduser,
  .consortium-card--partner,
  .consortium-card--partner-row,
  .consortium-card--partner-bottom {
    grid-column: auto;
  }

  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .about-image--left,
  .about-image--right,
  .metric-card--map {
    grid-column: auto;
  }

  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta {
    align-items: flex-start;
  }

  .footer-cta .btn {
    width: auto;
  }

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

  .home-bg {
    width: 100%;
    border-radius: 0 0 26px 26px;
    background-position: center top;
    background-size: min(165vw, 1100px) auto;
    opacity: 0.78;
  }

  .metric-map {
    object-fit: contain;
    object-position: center;
    opacity: 0.5;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 0 72px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .home-bg {
    background-position: center top;
    background-size: min(220vw, 900px) auto;
  }
}
.page {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 100vh;
  background: url("textures/circle-grid-pattern.svg") left top / 1000px 1000px
    repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.page > * {
  position: relative;
  z-index: 2;
}

.top-shell {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.top-shell > * {
  position: relative;
  z-index: 2;
}

.home-bg {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(120vw, 1600px);
  transform: translateX(-50%);
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: url("textures/unsplash.png") 50% -15% / 1600px auto no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

h1,
h2,
h3,
.logo-text,
.metric-number {
  font-family: var(--font-display);
}

p {
  font-family: var(--font-body);
}

@supports (overflow: clip) {
  .top-shell {
    overflow-x: clip;
  }
}

@media (max-width: 900px) {
  .content-section,
  .footer {
    overflow: visible;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .footer {
    padding: 64px 0 44px;
    border-radius: 32px 32px 0 0;
  }

  .footer .section-inner {
    width: min(94vw, var(--max-width));
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .footer-cta {
    align-items: flex-start;
  }

  .footer-cta .footer-actions {
    align-items: flex-start;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-eu-logo {
    height: 32px;
    width: auto;
  }
}