:root {
  --yellow: #FFC107;
  --yellow-600: #e0a800;
  --charcoal: #2F3136;
  --ink: #0b0d12;
  --soft: #f7f7f9;
  --muted: #7a7f88;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #101218;
  background: #fff;
  padding-top: 72px;
}

a {
  color: #111
}

a:hover {
  color: #000;
  text-decoration: none
}

.container.narrow {
  max-width: 900px
}

.kicker {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #444;
  font-weight: 800
}

.lead {
  font-weight: 400
}

.nav-neo {
  background: rgba(16, 18, 24, .85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand-strong {
  font-weight: 800;
  letter-spacing: .08em
}

.brand-sub {
  font-weight: 700;
  color: var(--yellow);
  margin-top: -2px
}

.navbar .nav-link {
  position: relative;
  font-weight: 600;
  padding: .75rem 1rem;
  color: #fff !important;
  opacity: .9;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  opacity: 1
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .35rem;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.btn-call {
  background: var(--yellow);
  color: #111 !important;
  font-weight: 800;
  border-radius: 999px;
  padding: .5rem 1rem;
}

.btn-call:hover {
  background: var(--yellow-600)
}

.hero-angled {
  min-height: 46vh;
  background:
    linear-gradient(135deg, var(--yellow) 0 56%, transparent 56%) top left/100% 100% no-repeat,
    linear-gradient(135deg, var(--charcoal) 56%, var(--charcoal) 56%) top left/100% 100% no-repeat;
  box-shadow: inset 0 -60px 120px rgba(0, 0, 0, .25);
}

.wordmark {
  font-weight: 900;
  letter-spacing: .12em;
  font-size: clamp(28px, 5vw, 48px);
  text-shadow: 0 18px 36px rgba(0, 0, 0, .35);
}

.wordmark span {
  font-weight: 900;
  color: #fff;
  opacity: .9
}

.etym {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(14px, 2.2vw, 20px);
  opacity: .9;
}

.section {
  padding: 64px 0
}

.py-6 {
  padding-top: 84px;
  padding-bottom: 84px
}

.bg-soft {
  background: var(--soft)
}

.gradient {
  background: linear-gradient(180deg, #3a3d44, #6c7280);
  color: #fff;
}

.split {
  background: linear-gradient(90deg, #fff 0 50%, #fff 50%)
}

/* Fix: readable text on white cards inside the gradient section */
/* Keep Lab Information buttons aligned at bottom */
.gradient .panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* space between heading+list and button */
  height: 100%;
}

.gradient .panel .btn {
  align-self: flex-start;
  /* keeps button left-aligned */
  margin-top: auto;
  /* pushes it down if panel grows */
}


.gradient .panel h6,
.gradient .panel p,
.gradient .panel li,
.gradient .panel a {
  color: #101218;
  /* ensure headings, lists, links are dark */
}

.panel {
  background: #fff;
  border: 1px solid rgba(16, 18, 24, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  border-radius: 14px;
  padding: 24px;
}

#memberships {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0;
  padding: 0;
}

#memberships:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}


.panel.dark {
  background: #111;
  color: #fff;
  border-color: #000
}

.panel h5,
.panel h6 {
  font-weight: 800
}

.panel ul {
  margin-left: 1.2rem
}

.panel ul.sm li {
  margin: .25rem 0
}

.muted {
  color: var(--muted)
}

.btn-cta {
  background: var(--yellow);
  color: #111;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  padding: .7rem 1.25rem;
  box-shadow: 0 10px 20px rgba(255, 193, 7, .25);
}

.btn-cta:hover {
  background: var(--yellow-600);
  color: #111
}

.form-control {
  border-radius: 10px;
  border: 1px solid rgba(16, 18, 24, .12);
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .25);
}

.landing-hero {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-footer {
  background: #0f1116;
  color: #c7c9d1;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.site-footer a {
  color: #e7e8ec
}