:root {
  --bg: #0b0b0b;
  --text: #d7d7d7;
  --muted: #a0a0a0;
  --accent: #00e289;
  --accent-orange: #ff9100;
  --accent-orange-border: #ffae4a;
  --primary: #1f1f1f;
  --border: #2b2b2b;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 84px;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

#bg-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(1200px 600px at 80% 40%, rgba(255, 145, 0, 0.14), transparent 70%),
              radial-gradient(800px 400px at 20% 80%, rgba(255, 255, 255, 0.10), transparent 70%),
              #000;
}

.solo {
  position: relative;
  z-index: 1;
  padding: 120px 0 96px;
}
.solo-inner { text-align: center; }
.solo-eyebrow {
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.solo-title {
  margin: 0;
  font-size: clamp(28px, 5.4vw, 56px);
  font-weight: 800;
  color: #eaeaea;
}
.solo-accent { color: var(--accent-orange); }
.solo-desc {
  color: var(--muted);
  max-width: 720px;
  margin: 16px auto 8px;
}
.solo-actions { display: flex; justify-content: center; }

.container {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding-inline: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 800;
  letter-spacing: 1px;
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 4px;
}
.nav a:hover { color: var(--text); }
.dropdown { position: relative; }
.dropdown-toggle {
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  padding: 6px 4px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  min-width: 160px;
  background: #101010;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
}
.dropdown-menu a:hover {
  background: #161616;
}
.actions .btn-primary {
  background: var(--accent-orange);
  color: #241200;
  border: 1px solid var(--accent-orange-border);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
}
.actions .btn-primary:hover { filter: brightness(1.06); }

.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 64px);
  padding: 0 0 calc(24px + env(safe-area-inset-bottom));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: end;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.hero-text .title {
  font-size: clamp(44px, 6.2vw, 72px);
  margin: 0 0 16px;
  color: #e8e8e8;
}
.hero-text .subtitle {
  font-size: clamp(32px, 4.8vw, 48px);
  margin: 0;
  color: #c8c8c8;
  font-weight: 600;
}
.hero-cta .lede {
  color: #ffffff;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  justify-content: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.55) 55%,
    #000 100%);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn-success {
  background: var(--accent-orange);
  color: #241200;
  border-color: var(--accent-orange-border);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: #6a6a6a; }
.sub-link {
  color: var(--muted);
  text-decoration: none;
}
.sub-link:hover { color: var(--text); }

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.features {
  position: relative;
  z-index: 1;
  padding: 0;
  background: #0a0a0a;
}
.features-pin {
  position: sticky;
  top: 64px; /* match header height */
  height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 0.62fr 2.38fr;
  gap: 28px;
  align-items: start;
  padding: 72px 0 120px;
}
.features-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
}
.features-left .features-heading {
  font-size: clamp(18px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: #eaeaea;
}
.features-left .features-heading span,
.features-left .features-heading strong {
  display: block;
  white-space: nowrap;
}
.features-view {
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100%;
}
.features-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 520px;
  gap: 30px;
  padding-right: 30px;
  transition: transform .35s ease;
  will-change: transform;
}
.features-controls {
  display: none; /* Hide controls since we are using scroll-jacking */
  gap: 10px;
  margin-top: 18px;
}
.features-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #121315;
  color: #f1f1f1;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.features-nav:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}
.features-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.feature-card {
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 16px;
  min-height: 620px;
}
.feature-card:hover {
  border-color: #3a3a3a;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.feature-eyebrow {
  color: var(--accent-orange);
  font-weight: 700;
  letter-spacing: 1px;
}
.feature-title {
  margin: 0;
  font-size: 28px;
  color: #e6e6e6;
}
.feature-media {
  width: 100%;
  aspect-ratio: auto;
  border: 1px dashed var(--border);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(transparent, transparent),
    radial-gradient(800px 400px at 70% 30%, rgba(255, 145, 0, 0.10), transparent 70%),
    #0b0b0b;
}
.feature-desc {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
.feature-media img {
  width: 100%;
  height: auto !important;
  object-fit: cover !important;
  object-position: center;
  display: block;
  background: transparent;
}

@media (max-width: 1200px) {
  .features-pin { grid-template-columns: 1fr; height: auto; position: static; padding: 80px 0 100px; }
  .features-left { margin-bottom: 22px; align-items: flex-start; min-height: auto; }
  .features-track { grid-auto-columns: minmax(340px, 1fr); }
}

.trust {
  position: relative;
  z-index: 1;
  padding: 84px 0 100px;
  background: #0a0a0a;
}
.trust-inner {
  text-align: center;
}
.trust-title {
  margin: 0;
  font-size: clamp(38px, 5.2vw, 56px);
  color: #f1f1f1;
}
.trust-subtitle {
  margin: 16px auto 48px;
  max-width: 860px;
  color: var(--muted);
  font-size: 16px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
}
.trust-card {
  text-align: left;
  background: #111315;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 22px 18px 16px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.trust-card-title {
  margin: 0;
  font-size: 30px;
  color: #f0f0f0;
}
.trust-card-desc {
  margin: 12px 0 0;
  color: #7f8894;
  font-size: 14px;
  line-height: 1.6;
  max-width: 95%;
}
.trust-icon {
  margin-top: auto;
  color: var(--accent-orange);
  width: 28px;
  height: 28px;
  display: inline-flex;
}
.trust-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card-title { font-size: 26px; }
}

.team-section {
  position: relative;
  z-index: 1;
  padding: 110px 0 130px;
  background: #0a0a0a;
}
.team-header {
  margin-bottom: 64px;
  text-align: center;
}
.team-tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--accent-orange);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.team-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f1f1f1;
}
.team-desc {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,145,0,.45);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.team-card:hover::before {
  opacity: 1;
}
.card-image-wrapper {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}
.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f7783;
  font-size: 20px;
  letter-spacing: 0.04em;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform .5s ease;
}
.team-card:hover .card-image {
  transform: scale(1.04);
}
.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 22px 20px;
  background: linear-gradient(to top, rgba(10,10,10,.95), rgba(10,10,10,.55) 55%, transparent);
  transform: translateY(58px);
  transition: transform .35s ease;
}
.team-card:hover .card-overlay {
  transform: translateY(0);
}
.member-name {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 6px;
}
.member-role {
  color: var(--accent-orange);
  font-size: 14px;
  margin-bottom: 10px;
}
.member-brief {
  color: #9ca3ad;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s ease .08s;
}
.team-card:hover .member-brief {
  opacity: 1;
  transform: translateY(0);
}
.card-footer {
  padding: 20px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-role {
  font-size: 13px;
  color: var(--muted);
}
.arrow-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.team-card:hover .arrow-icon {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #1f1300;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

/* 演示环境弹窗样式 */
.demo-modal {
  display: none; /* 默认隐藏 */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明背景 */
  backdrop-filter: blur(5px); /* 背景模糊 */
  align-items: center;
  justify-content: center;
}

.demo-modal-content {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #888;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.demo-modal-close:hover {
  color: #fff;
}

.demo-modal-content h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #fff;
  font-size: 20px;
}

.demo-modal-content input[type="text"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #2a2a2a;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.demo-modal-content input[type="text"]:focus {
  border-color: var(--accent-orange);
}

.demo-modal-btn {
  width: 100%;
  padding: 12px;
  cursor: pointer;
  background-color: var(--accent-orange, #f39c12);
  color: #241200;
  border: 1px solid var(--accent-orange-border, #e08e0b);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: filter 0.2s;
}

.demo-modal-btn:hover {
  filter: brightness(1.1);
}
/* 图片放大弹窗样式 */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.show {
  display: flex;
  opacity: 1;
}

.image-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.image-modal.show .image-modal-content {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10001;
}

.image-modal-close:hover {
  color: var(--accent-orange);
}

.feature-media img {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-media img:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card-image-wrapper {
    height: 340px;
  }
  .card-overlay {
    transform: translateY(0);
  }
  .member-brief {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-section {
  position: relative;
  z-index: 1;
  padding: 96px 0 120px;
  background: #0a0a0a;
}
.form-inner {
  max-width: 760px;
}
.form-title {
  margin: 0 0 26px;
  font-size: clamp(32px, 4.4vw, 46px);
  color: #f2f2f2;
}
.apply-form {
  display: grid;
  gap: 16px;
}
.form-item {
  display: grid;
  gap: 8px;
}
.form-item span {
  color: #b6bcc5;
  font-size: 14px;
}
.form-item input {
  width: 100%;
  height: 52px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #121315;
  color: #f0f0f0;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}
.form-item input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255,145,0,.2);
}
.form-submit {
  margin-top: 10px;
  width: 160px;
  height: 50px;
  font-size: 18px;
  border-radius: 10px;
}

.lab-page {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: radial-gradient(1200px 600px at 80% 20%, rgba(255, 145, 0, 0.12), transparent 70%), #0a0a0a;
}
.lab-inner {
  max-width: 1200px;
}
.lab-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(34px, 5.2vw, 56px);
  color: #f3f3f3;
  font-weight: 800;
}
.lab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}
.lab-card {
  background: #0f1012;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}
.lab-card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e2226;
  margin-bottom: 16px;
}
.lab-card-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.lab-card-title {
  margin: 0 0 10px;
  font-size: 24px;
  color: #f4f4f4;
}
.lab-card-desc {
  margin: 0;
  color: #a9b0ba;
  line-height: 1.7;
  font-size: 16px;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #090909;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 44px 0 18px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #f5f5f5;
}
.footer-desc {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #c5c5c5;
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #8f8f8f;
  font-size: 12px;
}

/* 汉堡菜单基础样式（默认隐藏） */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.hamburger-menu span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

@media (max-width: 900px) {
  .container {
    width: 100%;
    padding-inline: 16px;
  }
  .header-inner {
    height: 58px;
  }
  .logo {
    font-size: 20px;
  }
  .hamburger-menu {
    display: flex;
  }
  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px; /* header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 58px);
    background: #101010;
    padding-top: 40px;
    transition: left 0.3s ease-in-out;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }
  .nav.active {
    left: 0;
  }
  .nav a {
    font-size: 20px;
  }
  /* 汉堡菜单动画状态 */
  .hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .actions .btn-primary {
    padding: 8px 12px;
    font-size: 14px;
  }
  .hero {
    min-height: auto;
    padding: 86px 0 42px; /* 增加 top padding，避免被 fixed header 遮挡 (58px header + 28px spacing) */
  }
  .hero-inner {
    gap: 24px;
  }
  .hero-text .title {
    font-size: clamp(32px, 11vw, 48px);
    margin-bottom: 8px;
  }
  .hero-text .subtitle {
    font-size: clamp(24px, 8vw, 34px);
  }
  .hero-cta {
    align-items: flex-start;
    text-align: left;
  }
  .hero-cta .lede {
    max-width: none;
  }
  .cta-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }
  .btn {
    min-height: 44px;
  }
  .solo {
    padding: 66px 0 60px;
  }
  .solo-title {
    font-size: clamp(26px, 9vw, 42px);
  }
  .features {
    padding: 10px 0 0;
  }
  .features-pin {
    padding: 24px 0 44px;
    display: flex;
    flex-direction: column;
    height: auto !important; /* disable sticky height */
    position: relative; /* disable sticky */
  }
  .features-left {
    margin-bottom: 12px;
    align-items: flex-start;
    min-height: auto;
  }
  .features-left .features-heading {
    font-size: clamp(22px, 8vw, 34px);
  }
  .features-view {
    overflow: visible;
    display: block;
    min-height: auto;
    touch-action: pan-y;
  }
  .features-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 0;
    padding-bottom: 6px;
    transform: none !important; /* disable JS transform */
  }
  .features-controls { display: none; } /* hide controls on mobile since it's vertical */
  .feature-card {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
  }
  .feature-title {
    font-size: 22px;
  }
  .feature-desc {
    font-size: 16px;
  }
  .trust {
    padding: 60px 0 72px;
  }
  .trust-title {
    font-size: clamp(30px, 10vw, 46px);
  }
  .trust-subtitle {
    margin-bottom: 26px;
  }
  .team-section {
    padding: 68px 0 80px;
  }
  .team-header {
    margin-bottom: 34px;
  }
  .team-title {
    font-size: clamp(28px, 9vw, 42px);
  }
  .team-desc {
    font-size: 16px;
  }
  .form-section {
    padding: 64px 0 78px;
  }
  .form-title {
    font-size: clamp(30px, 9vw, 40px);
    margin-bottom: 18px;
  }
  .form-submit {
    width: 100%;
  }
  .lab-page {
    padding: 98px 0 58px;
  }
  .lab-title {
    margin-bottom: 26px;
  }
  .lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .lab-card-media img {
    height: 220px;
  }
  .site-footer {
    padding-top: 30px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .lab-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .actions .btn-primary {
    padding: 7px 10px;
    font-size: 13px;
  }
  .hero-cta .lede {
    font-size: 14px;
  }
  .feature-card {
    padding: 14px;
  }
  .member-name {
    font-size: 22px;
  }
  .card-footer {
    padding: 16px;
  }
  .footer-logo {
    font-size: 24px;
  }
}
