@font-face {
  font-family: "OrbitronLocal";
  src: local("Orbitron");
  font-weight: 400 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "OrbitronLocal", "Segoe UI", "Arial", sans-serif;
  font-size: 21px;
  color: #e9eef2;
  background: radial-gradient(circle at top, #11131a 0%, #07080d 40%, #030304 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.page {
  margin: 0 auto;
  padding: 28px 20px 0;
  text-align: center;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hero {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 34px 22px 34px;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.7) 0%, rgba(5, 6, 9, 0.9) 100%),
    url("1_back.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

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

.topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 10px 0 32px;
  color: #aeb6bf;
  letter-spacing: 3px;
  font-size: 17px;
}

.topbar__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a2f38, transparent);
}

.topbar__brand {
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(26, 30, 36, 0.9), rgba(12, 14, 18, 0.6));
  box-shadow:
    0 0 18px rgba(124, 130, 140, 0.25),
    0 0 26px rgba(80, 140, 255, 0.35),
    0 0 18px rgba(255, 60, 80, 0.25);
  text-shadow:
    0 0 8px rgba(180, 200, 255, 0.35),
    0 0 10px rgba(255, 120, 120, 0.25);
  animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
  0%,
  100% {
    box-shadow:
      0 0 18px rgba(124, 130, 140, 0.25),
      0 0 26px rgba(80, 140, 255, 0.35),
      0 0 18px rgba(255, 60, 80, 0.25);
  }
  50% {
    box-shadow:
      0 0 22px rgba(124, 130, 140, 0.35),
      0 0 34px rgba(100, 170, 255, 0.55),
      0 0 26px rgba(255, 90, 120, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar__brand {
    animation: none;
  }
}

.hero__headline {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero__headline span {
  display: block;
  font-weight: 500;
  color: #cfd5dd;
}

.hero__sub {
  margin: 0 0 18px;
  font-size: 15px;
  color: #9aa3ad;
}

.hero__emph {
  margin: 0 0 6px;
  font-size: 16px;
  color: #cfd5dd;
}

.hero__warn {
  color: #ff3b30;
  font-weight: 700;
}

.hero__note {
  margin: 0 0 30px;
  font-size: 14px;
  color: #98a1aa;
}

.hero__gold {
  color: #f3c04a;
  font-weight: 600;
}

.video-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}

.video-card {
  position: relative;
  width: min(760px, 100%);
  padding: 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 14, 20, 0.95), rgba(6, 8, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 26px rgba(80, 140, 255, 0.35),
    0 0 26px rgba(255, 60, 80, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(96, 150, 255, 0.35), transparent 55%),
    radial-gradient(circle, rgba(255, 80, 90, 0.3), transparent 60%);
  opacity: 0.8;
  filter: blur(18px);
  pointer-events: none;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.video-embed {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0b0f16;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}






.hero__foot {
  margin: 8px 0 0;
  font-size: 14px;
  color: #cdd3da;
}

.hero__foot--muted {
  margin-top: 4px;
  color: #8f97a0;
}

.cta {
  margin-top: 22px;
}

.cta__button {
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: linear-gradient(180deg, #ff4d4d, #d31313);
  box-shadow: 0 0 18px rgba(255, 50, 50, 0.6);
  cursor: pointer;
}

.cta__button:hover {
  filter: brightness(1.05);
}

.cta__hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: #6f7780;
}

.lab {
  margin-top: 0;
  padding: 36px 22px 48px;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.75) 0%, rgba(5, 6, 9, 0.9) 100%),
    url("2_back.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.lab::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='.35'/></svg>");
  pointer-events: none;
}

.lab > * {
  position: relative;
  z-index: 1;
}

.lab__problem h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.lab__problem p {
  margin: 6px 0 18px;
  font-size: 14px;
  color: #a3abb4;
}

.lab__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  justify-items: start;
  margin: 0 auto 18px;
  max-width: 520px;
  text-align: left;
  color: #cdd3da;
  font-size: 13px;
}

.lab__check {
  position: relative;
  padding-left: 22px;
}

.lab__check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #cdd3da;
}

.lab__rule {
  margin: 18px auto;
  padding: 10px 18px;
  font-size: 13px;
  color: #bfc6cf;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  max-width: 520px;
}

.lab__rule--thin {
  margin-top: 18px;
  margin-bottom: 8px;
  padding: 8px 18px;
}

.lab__statement h3 {
  margin: 0;
  font-size: 18px;
}

.lab__statement p {
  margin: 6px 0 18px;
  font-size: 13px;
  color: #9aa3ad;
}

.lab__pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 14px;
}

.pillar {
  background: linear-gradient(180deg, rgba(26, 28, 36, 0.9), rgba(14, 16, 22, 0.9));
  border-radius: 10px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #b5bcc6;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
}

.pillar__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45));
}

.pillar__icon--bars::before,
.pillar__icon--shield::before,
.pillar__icon--rise::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.pillar__icon--bars::before {
  inset: auto;
  bottom: 4px;
  left: 5px;
  width: 12px;
  height: 10px;
  border: none;
  background: linear-gradient(90deg, #cfd5dd 30%, transparent 0);
  background-size: 4px 100%;
}

.pillar__icon--shield::before {
  border-radius: 50% 50% 40% 40%;
}

.pillar__icon--rise::before {
  border: none;
  width: 14px;
  height: 10px;
  left: 5px;
  bottom: 5px;
  background: linear-gradient(90deg, transparent 0 30%, #cfd5dd 30% 32%, transparent 32% 100%);
  box-shadow: inset 0 -2px 0 #cfd5dd;
}

.lab__tagline {
  margin: 12px 0 22px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #cfd5dd;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 16px;
}

.plan-card {
  position: relative;
  background: linear-gradient(180deg, rgba(44, 48, 58, 0.98), rgba(18, 20, 26, 0.98));
  border-radius: 10px;
  padding: 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #cbd2da;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0.3;
  pointer-events: none;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card--mid {
  background:
    radial-gradient(circle at 50% 90%, rgba(190, 40, 40, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(34, 36, 45, 0.98), rgba(14, 16, 22, 0.98));
  transform: translateY(-6px);
}

.plan-card--gold {
  position: relative;
  border: 1px solid rgba(255, 198, 86, 0.7);
  box-shadow:
    0 0 24px rgba(255, 176, 67, 0.35),
    0 18px 30px rgba(0, 0, 0, 0.5);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 214, 124, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(58, 42, 18, 0.98), rgba(22, 16, 8, 0.98));
  overflow: visible;
  --float-base: 0px;
  animation: floatY 3s ease-in-out infinite;
}

.plan-card__badge {
  position: absolute;
  top: -8px;
  left: -6px;
  font-size: 9px;
  padding: 3px 10px;
  border-radius: 4px;
  background: linear-gradient(180deg, #c83a3a, #8f1f1f);
  color: #fff4e5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transform: rotate(-12deg);
  transform-origin: left top;
  white-space: nowrap;
}

.plan-card__head {
  position: relative;
  margin: -4px -4px 12px;
  padding: 10px 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(92, 98, 110, 0.95), rgba(44, 48, 60, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 12px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.plan-card__title {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.plan-card__sub {
  font-size: 12px;
  color: #d9dfe6;
}

.plan-card__meta {
  font-size: 12px;
  color: #b7c0ca;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 28px;
}

.plan-card__image {
  margin-top: 10px;
  padding: 10px 8px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.7), rgba(0, 0, 0, 0.75));
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.45));
}

.plan-card__price {
  margin-top: 10px;
  font-size: 13px;
  color: #ffcf7d;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 201, 96, 0.3);
}

.plan-card--mid .plan-card__head {
  background: linear-gradient(180deg, rgba(70, 74, 86, 0.95), rgba(28, 30, 38, 0.98));
}

.plan-card--gold .plan-card__head {
  background: linear-gradient(180deg, #f0c35a, #b3781f);
  color: #2a1a05;
  border: 1px solid rgba(255, 214, 124, 0.9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.plan-card--gold .plan-card__sub {
  color: #3a2408;
}

.lab__transform {
  margin: 12px 0 14px;
  font-size: 13px;
  color: #c7cdd6;
}

.lab__cta {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 120, 120, 0.7);
  color: #fff;
  background: linear-gradient(180deg, #ff4a4a, #b11212);
  box-shadow:
    0 0 14px rgba(255, 40, 40, 0.55),
    0 0 28px rgba(255, 20, 20, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  position: relative;
  animation: ctaGlow 2.2s ease-in-out infinite;
  cursor: pointer;
}

.lab__cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  border: 1px solid rgba(255, 80, 80, 0.6);
  box-shadow: 0 0 18px rgba(255, 60, 60, 0.55);
  opacity: 0.85;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow:
      0 0 14px rgba(255, 40, 40, 0.55),
      0 0 28px rgba(255, 20, 20, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
  50% {
    box-shadow:
      0 0 18px rgba(255, 60, 60, 0.7),
      0 0 36px rgba(255, 30, 30, 0.6),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lab__cta {
    animation: none;
  }
}

.lab__footer {
  margin-top: 18px;
  font-size: 12px;
  color: #8b939c;
}

.lab__logos {
  margin-top: 12px;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #6f7780;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lab__nih {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.tiers {
  margin-top: 0;
  padding: 42px 20px 50px;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.7) 0%, rgba(5, 6, 9, 0.9) 100%),
    url("3_back.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  display: none;
}

.tiers.is-visible {
  display: block;
  animation: tiersFadeIn 0.5s ease-out;
}

@keyframes tiersFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.tiers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.05) 60%, transparent 62%);
  background-size: 100% 24px;
  opacity: 0.25;
  pointer-events: none;
}

.tiers__title {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 10px;
}

.tiers__title h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 1px;
}

.tiers__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.tiers__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: #aab2bc;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.tiers__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(120, 160, 255, 0.6);
  color: #7ea0ff;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  padding: 14px 16px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(28, 32, 40, 0.96), rgba(14, 16, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 18px rgba(0, 0, 0, 0.5),
    0 16px 30px rgba(0, 0, 0, 0.45);
  text-align: left;
  overflow: hidden;
}

.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%);
  opacity: 0.25;
  pointer-events: none;
}

.tier-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.tier-card > * {
  position: relative;
  z-index: 1;
}

.tier-card__head {
  position: relative;
  margin: 0 -6px 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  background: linear-gradient(180deg, rgba(88, 94, 106, 0.9), rgba(48, 54, 66, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 12px rgba(0, 0, 0, 0.35);
}

.tier-card__sub {
  font-size: 12px;
  color: #b5bdc8;
  text-align: center;
  margin-bottom: 8px;
}

.tier-card__price {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  color: #e7edf5;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tier-card__list {
  margin: 0 0 14px;
  padding: 8px 10px;
  list-style: none;
  font-size: 12px;
  color: #cfd5dd;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.tier-card__list li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.tier-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a8b0ba;
}

.tier-card__muted {
  color: #7d8791;
}

.tier-card__list li.tier-card__muted::before {
  content: "—";
  color: #7d8791;
}

.tier-card__btn {
  display: block;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12px;
  color: #e6ebf2;
  background: linear-gradient(180deg, #4a4f59, #2a2f3a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.tier-card--silver {
  background: linear-gradient(180deg, rgba(88, 94, 104, 0.95), rgba(44, 48, 58, 0.98));
  border: 1px solid rgba(214, 220, 228, 0.6);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 0 20px rgba(0, 0, 0, 0.45),
    0 18px 30px rgba(0, 0, 0, 0.45);
}

.tier-card--silver .tier-card__head {
  background: linear-gradient(180deg, #e1e6ed, #9aa3ad);
  color: #1a222c;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.tier-card--silver .tier-card__price {
  color: #f0f4f8;
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.tier-card--silver .tier-card__list li::before {
  color: #d5dde7;
}

.tier-card--silver .tier-card__btn {
  background: linear-gradient(180deg, #e2e6ed, #9aa3ad);
  color: #1a222c;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 6px 12px rgba(0, 0, 0, 0.35);
}

.tier-card--gold {
  border: 1px solid rgba(255, 203, 88, 0.8);
  box-shadow:
    0 0 28px rgba(255, 184, 62, 0.45),
    0 18px 34px rgba(0, 0, 0, 0.45);
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 214, 124, 0.25), transparent 55%),
    linear-gradient(180deg, rgba(72, 52, 18, 0.97), rgba(28, 20, 8, 0.98));
  --float-base: -10px;
  animation: floatY 3.4s ease-in-out infinite;
}

.tier-card--gold .tier-card__head {
  background: linear-gradient(180deg, #f7cf74, #b6791c);
  color: #2b1a04;
  border: 1px solid rgba(255, 220, 140, 0.9);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.tier-card--gold .tier-card__price {
  color: #ffe5a5;
  border-bottom-color: rgba(255, 214, 124, 0.35);
}

.tier-card--gold .tier-card__list li::before {
  color: #ffd27a;
}

.tier-card__badge {
  display: inline-flex;
  margin-left: 6px;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 96, 0.7);
  color: #ffd37c;
  background: rgba(255, 191, 72, 0.18);
}

.tier-card--gold .tier-card__badge {
  display: block;
  margin: 6px auto 0;
  width: fit-content;
}

.tier-card__note {
  font-size: 11px;
  color: #d4c8ad;
  margin: 10px 0 12px;
  text-align: center;
}

.tier-card__btn--gold {
  background: linear-gradient(180deg, #f1c454, #c1871d);
  color: #1d1406;
  font-weight: 700;
  border: 1px solid rgba(255, 214, 124, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 16px rgba(255, 191, 72, 0.25);
}

.tier-card__foot {
  margin-top: 8px;
  font-size: 10px;
  color: #b89c63;
  text-align: center;
}

.tier-card--blue {
  background: linear-gradient(180deg, rgba(34, 46, 82, 0.96), rgba(16, 20, 36, 0.98));
  border: 1px solid rgba(92, 138, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(120, 165, 255, 0.22),
    inset 0 0 20px rgba(0, 0, 0, 0.5),
    0 18px 30px rgba(0, 0, 0, 0.45);
}

.tier-card--blue .tier-card__head {
  background: linear-gradient(180deg, #7aa6ff, #2f4f8f);
  color: #eaf1ff;
  border: 1px solid rgba(140, 185, 255, 0.7);
}

.tier-card--blue .tier-card__price {
  border-bottom-color: rgba(140, 185, 255, 0.3);
}

.tier-card--blue .tier-card__list li::before {
  color: #9ec1ff;
}

.tier-card__btn--blue {
  background: linear-gradient(180deg, #4460b2, #2a3d78);
  border: 1px solid rgba(120, 165, 255, 0.6);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(var(--float-base, 0px));
  }
  50% {
    transform: translateY(calc(var(--float-base, 0px) - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .plan-card--gold,
  .tier-card--gold {
    animation: none;
  }
}

.tiers__footer {
  margin: 18px 0 0;
  font-size: 11px;
  color: #8c96a1;
}

@media (max-width: 600px) {
  .hero__headline {
    font-size: 24px;
  }

  .topbar {
    font-size: 11px;
  }



  .lab {
    padding: 28px 16px 40px;
  }

  .lab__checks {
    grid-template-columns: 1fr;
  }

  .lab__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .plan-card--mid {
    transform: none;
  }

  .lab__logos {
    flex-direction: column;
  }

  .tiers__grid {
    grid-template-columns: 1fr;
  }

  .tier-card--gold {
    transform: none;
  }
}
