:root {
  color-scheme: dark;
  --bg: #030506;
  --panel: #0b1012;
  --panel-strong: #11181b;
  --text: #f4f7f8;
  --muted: #a7b2b7;
  --line: rgba(255, 255, 255, 0.12);
  --aqua: #55f0df;
  --aqua-soft: rgba(85, 240, 223, 0.14);
  --steel: #7f98a2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px clamp(20px, 4vw, 56px) 16px;
  background: rgba(3, 5, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  line-height: 1.02;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 22px rgba(85, 240, 223, 0.9);
}

.brand-logo {
  display: inline-flex;
  width: clamp(112px, 16vw, 168px);
  height: auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 5vw, 72px);
}

.nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--aqua);
}


.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switch button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #00110f;
  background: var(--aqua);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 248px clamp(20px, 6vw, 76px) 96px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.74;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.82) 32%, rgba(3, 5, 6, 0.26) 78%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.12) 58%, #030506 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.pre-label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(85, 240, 223, 0.34);
  border-radius: 999px;
  color: #dffffb;
  background: rgba(85, 240, 223, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.8rem, 15vw, 10.5rem);
  line-height: 0.84;
  font-weight: 800;
  letter-spacing: 0;
}


h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.22rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 18px;
  color: #d8e3e6;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-note {
  width: min(640px, 100%);
  margin-bottom: 16px;
  color: #b9c8cc;
  font-size: 1rem;
}

.hero-place {
  margin-bottom: 16px;
  color: #d8e3e6;
}

.hero-invite {
  margin-bottom: 34px;
}

.hero-actions,
.cta,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.92rem;
}

.button-primary {
  background: var(--aqua);
  border-color: var(--aqua);
  color: #00110f;
}

.button-primary:hover {
  background: #92fff2;
}

.button-ghost {
  color: #e8eff1;
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 86px;
}

.hero-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d5e1e5;
  background: rgba(3, 5, 6, 0.64);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.hero-strip span:hover {
  border-color: rgba(85, 240, 223, 0.42);
  color: var(--aqua);
}

.section,
.split-section,
.cta,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-subline {
  max-width: 780px;
  margin: -8px 0 18px;
  color: #d8e3e6;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.feature-grid,
.use-grid,
.study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fields-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 920px;
}

.fields-grid article {
  border-radius: 8px;
}

.fields-grid article h3 {
  color: var(--aqua);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.18;
}

.fields-bridge {
  margin: 18px 0;
  padding: 28px 0 10px;
  border-top: 1px solid var(--line);
}

.fields-bridge .eyebrow {
  margin-bottom: 12px;
}

.fields-bridge p:not(.eyebrow) {
  width: min(880px, 100%);
  color: #d8e3e6;
  font-size: 1rem;
}

.brochure-downloads {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 46px);
  align-items: end;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.study-meta,
.brochure-downloads .study-meta {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.brochure-downloads h3 {
  margin-bottom: 10px;
  color: var(--aqua);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.16;
}

.brochure-downloads p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: #c6d2d6;
  font-size: 0.96rem;
}

.brochure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.brochure-actions .button {
  min-width: 118px;
}

.brochure-actions .button:hover {
  border-color: var(--aqua);
  color: #00110f;
  background: var(--aqua);
}


.development-section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.development-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.development-copy {
  position: sticky;
  top: 118px;
}

.development-copy h2 {
  margin-bottom: 24px;
}

.development-copy p:not(.eyebrow) {
  max-width: 620px;
}

.development-copy p:last-child {
  margin-top: -4px;
  color: #d8e3e6;
}

.development-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
}

.development-grid article {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.development-grid article:nth-child(2),
.development-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(85, 240, 223, 0.09), rgba(255, 255, 255, 0.026)),
    var(--panel);
}

.development-grid article > span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.development-grid h3 {
  color: var(--aqua);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.28;
}

.development-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.62;
}

.development-action-card {
  border-color: rgba(85, 240, 223, 0.34) !important;
  background:
    linear-gradient(135deg, rgba(85, 240, 223, 0.18), rgba(255, 255, 255, 0.035)),
    #071012 !important;
}

.development-action-card .button {
  width: 100%;
  margin-top: auto;
}

.development-action-card .button:hover {
  border-color: var(--aqua);
  color: #00110f;
  background: var(--aqua);
}

body.modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(85, 240, 223, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 240, 223, 0.12), transparent 32%),
    #071012;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: -12px -12px 8px 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--aqua);
  border-color: rgba(85, 240, 223, 0.42);
}

.modal-panel h2 {
  margin-bottom: 28px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.modal-body {
  clear: both;
}

.modal-body h3 {
  margin: 32px 0 14px;
  color: var(--aqua);
}

.modal-body p,
.modal-body li {
  color: #c9d5d9;
  font-size: 1rem;
  line-height: 1.78;
}

.modal-body ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.modal-body li {
  margin-bottom: 9px;
}

.feature,
.use-grid article,
.study-card,
.spec-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.feature {
  min-height: 280px;
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(85, 240, 223, 0.38);
  border-radius: 50%;
  color: var(--aqua);
  background: var(--aqua-soft);
  font-size: 0.8rem;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
  padding: 112px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-intro {
  margin-top: 0;
}

.split-copy p {
  max-width: 720px;
}

.split-copy {
  position: relative;
}

.split-copy > :not(.principle-water) {
  position: relative;
  z-index: 1;
}

.principle-water {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  top: -82px;
  left: clamp(-70px, -4%, -22px);
  width: min(680px, 96%);
  height: clamp(430px, 44vw, 468px);
  margin: 0;
  background: transparent;
}

.principle-water::before,
.principle-water::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.principle-water::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0) 0%, rgba(3, 5, 6, 0) 70%, rgba(3, 5, 6, 0.52) 100%),
    linear-gradient(180deg, #030506 0%, rgba(3, 5, 6, 0) 14%, rgba(3, 5, 6, 0) 72%, #030506 100%);
}

.principle-water img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  opacity: 1;
  filter: saturate(1.08) brightness(1.03) contrast(1.04);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.project-intro {
  align-items: start;
}

.project-intro .eyebrow {
  margin-top: 198px;
}

.principle-subhead {
  max-width: 720px;
  margin: 34px 0 12px;
  color: var(--aqua);
  font-size: 1rem;
  line-height: 1.35;
}

.principle-subhead + p {
  margin-top: 0;
}

.source-note {
  max-width: 720px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #7f98a2;
  font-size: 9px;
  line-height: 1.55;
}

.spec-panel {
  padding: 12px;
}

.spec-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 22px 18px;
  border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
  border-bottom: 0;
}

.spec-row span {
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 800;
}

.spec-row strong {
  color: var(--text);
  text-align: left;
  line-height: 1.38;
}

.use-section {
  padding-bottom: 84px;
}

.use-grid article {
  padding: 30px;
}


.study-section {
  padding-top: 28px;
}

.video-section {
  padding-top: 28px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070b0d;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.video-fallback a {
  color: var(--aqua);
  font-weight: 800;
}

.video-subtitle-note {
  width: min(880px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.video-subtitle-note strong {
  color: var(--aqua);
  font-weight: 800;
}

.study-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
}

.study-card h3 {
  color: var(--aqua);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  line-height: 1.25;
}

.study-card p:not(.study-meta) {
  margin-bottom: 20px;
}

.study-card a {
  margin-top: auto;
  color: var(--aqua);
  font-weight: 800;
}

.study-card a:hover {
  color: #92fff2;
}

.study-card a[aria-current="true"] {
  color: #fff;
}

.study-viewer {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #070b0d;
}

.study-viewer h3 {
  margin-bottom: 18px;
}

.study-preview {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.study-preview p,
.study-preview li {
  color: #c9d5d9;
  line-height: 1.75;
}

.study-preview ul {
  margin: 0 0 22px;
  padding-left: 20px;
}

.study-preview a {
  color: var(--aqua);
  font-weight: 800;
}

.contact-section {
  padding-top: 28px;
}

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

.person-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.person-card img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(85, 240, 223, 0.32);
}


.person-card-third {
  grid-column: 1 / -1;
  max-width: calc(50% - 9px);
}

.person-card h3 {
  margin-bottom: 6px;
}

.person-card p {
  margin-bottom: 0;
}

.cta {
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 86px;
  padding: 38px;
  border: 1px solid rgba(85, 240, 223, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 240, 223, 0.13), rgba(255, 255, 255, 0.03)),
    #071012;
}

.cta div {
  max-width: 720px;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  margin-bottom: 0;
}

.cta-actions {
  justify-content: flex-end;
}

.cta-actions .button {
  border-color: var(--line);
  color: #e8eff1;
  background: rgba(255, 255, 255, 0.05);
}

.cta-actions .button:hover {
  border-color: var(--aqua);
  color: #00110f;
  background: var(--aqua);
}

.footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 54px 0 70px;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.footer > div {
  min-width: 0;
}

.footer-heading {
  margin-bottom: 28px;
}

.footer-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3.6vw, 3.2rem);
  line-height: 1.04;
}

.footer-heading h2 span {
  font-weight: 700;
  text-transform: none;
}

.footer-disclaimer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-logos {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.logo-tile {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.logo-tile span {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-tile img {
  width: 100%;
  max-width: 330px;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
  padding: 12px;
  border-radius: 6px;
  background: #fff;
}

.imprint h2,
.privacy h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.imprint p,
.privacy p,
.footer p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.legal-small h2 {
  font-size: 1.05rem;
}

.legal-small p {
  font-size: 0.78rem;
  line-height: 1.55;
}

.imprint a,
.privacy a {
  color: var(--aqua);
}

.privacy {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(85, 240, 223, 0.08), transparent 34%),
    var(--bg);
}

.article-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 80px;
}

.article-main article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 42px;
}

.article-main h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
}

.article-main h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.article-main p,
.article-main li {
  color: #c9d5d9;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-main ul {
  padding-left: 20px;
}

.article-main li {
  margin-bottom: 12px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--aqua);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    gap: 16px;
  }

  .header-actions {
    gap: clamp(24px, 6vw, 56px);
  }

  .nav {
    width: auto;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .hero {
    min-height: auto;
    padding-top: 224px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.96) 0%, rgba(3, 5, 6, 0.72) 58%, rgba(3, 5, 6, 0.34) 100%),
      linear-gradient(180deg, rgba(3, 5, 6, 0.06) 50%, #030506 100%);
  }

  .feature-grid,
  .use-grid,
  .study-grid,
  .fields-grid,
  .brochure-downloads,
  .development-layout,
  .people-grid,
  .split-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 86px;
  }

  .person-card-third {
    max-width: none;
  }

  .development-copy {
    position: static;
  }
}



@media (max-width: 640px) {
  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    overflow: visible;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 16px;
    overflow: visible;
    font-size: 0.8rem;
  }

  .language-switch {
    align-self: flex-start;
  }

  .brochure-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 20px;
  }

  .nav {
    gap: 8px 14px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 232px 20px 64px;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 6.4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .section,
  .split-section {
    padding: 74px 0;
  }

  .feature,
  .use-grid article,
  .study-card,
  .cta {
    padding: 24px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 128px;
  }

  .footer-heading h2 {
    font-size: 1.6rem;
  }

  .study-card {
    min-height: auto;
  }

  .person-card {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .person-card-third {
    max-width: none;
  }

  .person-card img {
    width: 64px;
    height: 64px;
  }

  .study-viewer {
    padding: 16px;
  }

  .study-preview {
    padding: 18px;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brochure-actions {
    width: 100%;
  }

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

  .development-grid article {
    min-height: 0;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    max-height: 90vh;
  }

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

  .spec-row strong {
    text-align: left;
  }
}


@media (max-width: 420px) {
  .development-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .development-grid article {
    min-height: auto;
  }
}


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

  .person-card img {
    width: 72px;
    height: 72px;
  }
}
