@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Apple-style light theme */
  --black: #ffffff; /* base bg (kept var name for reuse) */
  --surface: #f5f5f7; /* apple grey section */
  --card: #ffffff;
  --border: #e3e3e6;
  --green: #1c6e78; /* accessible dark turquoise for text/lines on light */
  --green-bright: #2f8a96; /* muted turquoise for solid fills */
  --green-dim: rgba(28, 110, 120, 0.06);
  --green-mid: rgba(28, 110, 120, 0.16);
  /* tinted "feature" sections — soft teal */
  --green-section: #eef5f6;
  --green-section-card: #ffffff;
  --green-section-border: #dde9eb;
  /* text */
  --text: #1d1d1f; /* apple near-black */
  --muted: #6e6e73; /* apple secondary grey */
  --faint: #c7c7cc;
  --serif: "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  /* radii — squared off, no rounded corners */
  --r-lg: 0px;
  --r-md: 0px;
  --r-sm: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* designer detail — selection uses the primary green */
::selection {
  background: var(--green-bright);
  color: #fff;
}

::-moz-selection {
  background: var(--green-bright);
  color: #fff;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-logo svg {
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  background: var(--green);
  border: none;
  padding: 9px 20px;
  border-radius: 0;
  transition: background 0.25s;
}

.nav-cta:hover {
  background: #15565e;
}

/* ── HERO ── */
#hero {
  min-height: 110vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 48px 100px;
}

/* animated canvas lives behind everything */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* soft vignette over canvas — fades to white */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 45%, transparent 45%, rgba(251, 251, 253, 0.5) 100%), linear-gradient(to bottom, rgba(251, 251, 253, 0.4) 0%, transparent 25%, transparent 80%, rgb(251, 251, 253) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s forwards;
}

.hero-headline .green-word {
  color: var(--green);
  display: block;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 56px;
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 0;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #15565e;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--faint);
  border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
}

.btn-ghost:hover {
  border-color: var(--green);
  background: var(--green-dim);
}

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-hint span {
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── TICKER ── */
.ticker {
  background: var(--green-bright);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}

.ticker-item {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f0f7f8;
  padding: 0 22px;
}

.ticker-item span {
  color: rgba(240, 247, 248, 0.45);
  margin-right: 22px;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 160px 48px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 64px;
}

.section-label::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green);
}

/* ── ABOUT ── */
#about {
  background: var(--green-section);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-headline em {
  font-style: normal;
  color: var(--green);
}

.about-body p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.15rem;
}

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

/* ── MODEL ── */
#model {
  background: var(--black);
}

.model-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
}

.model-left h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.model-left h2 em {
  font-style: normal;
  color: var(--green);
}

.model-left p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.1rem;
}

.model-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.model-card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--r-lg);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.model-card-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 14px;
  opacity: 0.9;
}

.model-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.model-card p {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

/* ── CRITERIA ── */
#criteria {
  background: var(--black);
}

.criteria-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: end;
}

.criteria-top h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.criteria-top h2 em {
  font-style: normal;
  color: var(--green);
}

.criteria-top p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.15rem;
}

.criteria-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.criterion {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  position: relative;
}

.criterion-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--green-section-border);
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color 0.35s, background 0.35s;
}

.criterion-icon-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s, transform 0.4s;
}

.criterion:hover .criterion-icon-wrap {
  border-color: transparent;
  background: var(--green-dim);
}

.criterion:hover .criterion-icon-wrap::after {
  opacity: 1;
  transform: scale(1);
}

.criterion-icon {
  width: 30px;
  height: 30px;
  color: var(--green);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.criterion:hover .criterion-icon {
  transform: scale(1.08);
}

.criterion h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.criterion p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}

/* ── TEAM ── */
#team {
  background: var(--green-section);
}

.team-head {
  max-width: 640px;
  margin-bottom: 72px;
}

.team-head h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.team-head h2 em {
  font-style: normal;
  color: var(--green);
}

.team-head p {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  font-size: 1.15rem;
}

.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.team-card {
  background: var(--green-section-card);
  border: 1px solid var(--green-section-border);
  border-radius: var(--r-lg);
  padding: 2.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: var(--green);
}

.team-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--green);
  margin-bottom: 18px;
  padding-right: 88px;
}

.team-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  line-height: 1.05;
  color: var(--text);
}

.team-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 30px;
}

.team-links {
  display: block;
}

.team-link + .team-link {
  margin-top: 12px;
}

@media (min-width: 901px) {
  .team-links {
    display: flex;
    gap: 20px;
  }
  .team-link + .team-link {
    margin-top: 0;
  }
}
.team-link {
  font-size: 0.92rem;
  letter-spacing: 0;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.team-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.team-avatar {
  position: absolute;
  top: 2.6rem;
  right: 2.6rem;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--green-section-border);
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s, border-color 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .team-avatar {
  filter: grayscale(0%);
  border-color: var(--green);
  transform: scale(1.05);
}

/* ── CTA ── */
#contact {
  background: var(--green-section);
  text-align: center;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.contact-inner h2 em {
  font-style: normal;
  color: var(--green);
}

.contact-inner p {
  color: var(--muted);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 48px;
}

.contact-emails {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-email {
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 3px;
  letter-spacing: 0;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: var(--green);
  border-color: var(--green);
}

/* ── FOOTER ── */
footer {
  padding: 40px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  line-height: 0;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 0.6;
}

.footer-logo svg {
  display: block;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0;
}

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

.footer-links a {
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--green);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s, transform 0.75s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
  from {
    opacity: 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}
/* ── CONTACT MODAL ── */
.modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 200;
  visibility: hidden;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.45s;
}

.modal-scrim.open {
  background: rgba(0, 0, 0, 0.32);
  visibility: visible;
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  background: #ffffff;
  color: #1d1d1f;
  z-index: 201;
  border-radius: 0;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -40px 0 90px rgba(0, 0, 0, 0.18);
}

.modal-scrim.open .modal-panel {
  transform: translateX(0);
}

.modal-inner {
  padding: 64px 64px 56px;
  width: 100%;
  margin: auto 0;
}

.modal-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 42px;
  height: 42px;
  border: 1px solid #e2e2e2;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #0d0d0d;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.modal-close:hover {
  background: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
  transform: rotate(90deg);
}

.modal-close svg {
  width: 16px;
  height: 16px;
}

.modal-inner h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #1d1d1f;
}

.modal-inner > p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #6e6e73;
  margin-bottom: 36px;
}

/* Long-form text panels (e.g. Impressum) — top-aligned instead of centered */
.modal-inner--text {
  margin: 0;
}

.modal-inner--text h2 {
  margin-bottom: 24px;
}

.modal-inner--text h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 32px 0 12px;
}

.modal-inner--text address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6e6e73;
  margin-bottom: 24px;
}

.modal-inner--text a {
  color: #1c6e78;
}

.modal-inner--text small {
  font-size: 0.8rem;
  color: var(--faint);
}

#contact-form {
  margin-top: 2rem;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #6e6e73;
  margin-bottom: 9px;
}

.field input,
.field textarea {
  width: 100%;
  background: #f5f5f7;
  border: 1px solid #e3e3e6;
  border-radius: 0;
  padding: 15px 18px;
  font-family: var(--sans);
  font-size: 1rem;
  color: #1d1d1f;
  transition: border-color 0.2s, background 0.2s;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #1c6e78;
  background: #fff;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: #b4b4b0;
}

/* Apple-style terms toggle */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 32px;
  cursor: pointer;
}

.toggle {
  position: relative;
  flex-shrink: 0;
  width: 50px;
  height: 30px;
  border-radius: 30px;
  background: #d8d8d4;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.5, 1);
}

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

.toggle-input:checked + .toggle {
  background: #1c6e78;
}

.toggle-input:checked + .toggle::after {
  transform: translateX(20px);
}

.toggle-input:focus-visible + .toggle {
  box-shadow: 0 0 0 3px rgba(28, 110, 120, 0.35);
}

.toggle-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #5a5a5a;
}

.toggle-label a {
  color: #134f57;
  text-decoration: underline;
}

.modal-submit {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 16px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.25s, opacity 0.2s;
}

.modal-submit:hover {
  background: #15565e;
}

.modal-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--green);
}

.modal-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.modal-success.show {
  display: block;
}

.modal-success svg {
  width: 52px;
  height: 52px;
  color: #1c6e78;
  margin-bottom: 20px;
}

.modal-success h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0d0d0d;
}

.modal-success p {
  color: #5a5a5a;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .modal-panel {
    width: 100vw;
  }
  .modal-inner {
    padding: 80px 28px 48px;
  }
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 100px 24px;
  }
  .about-grid,
  .model-split,
  .criteria-top,
  .team-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .criteria-list {
    grid-template-columns: 1fr 1fr;
  }
  .model-card,
  .criterion,
  .team-card {
    padding: 1.6rem;
  }
  .team-avatar {
    top: 1.6rem;
    right: 1.6rem;
    width: 60px;
    height: 60px;
  }
  .team-card-role {
    padding-right: 72px;
  }
  footer {
    padding: 28px 24px;
  }
}
@media (max-width: 600px) {
  .criteria-list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
