:root {
  --ink: #101826;
  --muted: #667384;
  --line: #dfe7ee;
  --soft: #f5f9fc;
  --white: #ffffff;
  --blue: #145ea8;
  --blue-deep: #073c73;
  --aqua: #44c3d6;
  --graphite: #08111f;
  --steel: #7c8b9d;
  --platinum: #edf4f8;
  --cyan: #27d5e8;
  --footer: #071321;
  --shadow: 0 24px 70px rgba(7, 19, 33, 0.14);
  --shadow-strong: 0 30px 90px rgba(5, 14, 26, 0.22);
  --glass: rgba(8, 18, 32, 0.76);
  --glass-line: rgba(108, 227, 241, 0.24);
  --aqua-soft: rgba(39, 213, 232, 0.12);
  --blue-soft: rgba(20, 94, 168, 0.1);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 58px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(7, 19, 33, 0.06), transparent 420px),
    linear-gradient(rgba(20, 94, 168, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 94, 168, 0.035) 1px, transparent 1px),
    #f8fbfd;
  background-size: auto, 36px 36px, 36px 36px, auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  padding: 10px clamp(20px, 4.8vw, 68px);
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(39, 213, 232, 0.08), transparent 34%),
    rgba(7, 19, 33, 0.26);
  border-bottom: 1px solid rgba(108, 227, 241, 0.14);
  box-shadow: 0 12px 42px rgba(4, 12, 24, 0.16);
  backdrop-filter: blur(32px) saturate(1.45);
  -webkit-backdrop-filter: blur(32px) saturate(1.45);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.site-header::after {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: -1px;
  width: min(420px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 213, 232, 0.9), transparent);
  content: "";
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 78px;
}

.site-header .brand img {
  display: block;
  width: 178px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 28px rgba(39, 213, 232, 0.22));
  user-select: none;
  -webkit-user-drag: none;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.35vw, 24px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition:
    color 180ms ease,
    text-shadow 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.42);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav .caret {
  display: none;
  margin-left: 8px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 220ms ease;
  opacity: 0.7;
}

.has-submenu.is-open > a > .caret {
  transform: rotate(-135deg) translateY(0);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  text-shadow: 0 0 18px rgba(39, 213, 232, 0.42);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background: rgba(6, 16, 30, 0.5);
  border: 1px solid rgba(39, 213, 232, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 8px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.site-nav li:hover .dropdown,
.site-nav li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.dropdown a {
  display: flex;
  min-height: auto;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  white-space: nowrap;
}

.dropdown a:hover {
  color: var(--white);
  background: rgba(39, 213, 232, 0.1);
}

.language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 30;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  min-width: 132px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.11), transparent 52%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(39, 213, 232, 0.24);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 14px 42px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 5px;
  color: var(--graphite);
  background: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.language-label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-switch.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-toggle:focus-visible,
.language-switch:hover .language-toggle,
.language-switch.is-open .language-toggle {
  border-color: rgba(39, 213, 232, 0.44);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(39, 213, 232, 0.13);
  transform: translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: 184px;
  max-height: min(64vh, 420px);
  padding: 8px;
  overflow: auto;
  background:
    linear-gradient(150deg, rgba(39, 213, 232, 0.12), transparent 46%),
    rgba(6, 16, 30, 0.74);
  border: 1px solid rgba(39, 213, 232, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu button {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: left;
}

.language-menu button:hover,
.language-menu button[aria-selected="true"] {
  color: var(--white);
  background: rgba(39, 213, 232, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(39, 213, 232, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(39, 213, 232, 0.55);
  background: rgba(39, 213, 232, 0.1);
  transform: translateY(-1px);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1.6px;
  margin: 2px auto;
  background: var(--cyan);
  border-radius: 1px;
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(3.6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-3.6px) rotate(-45deg);
}

.staff-verify-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.42), rgba(39, 213, 232, 0.16) 70%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(39, 213, 232, 0.55);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 14px 38px rgba(39, 213, 232, 0.18),
    0 0 0 4px rgba(39, 213, 232, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  outline: 0;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.staff-verify-trigger:hover,
.staff-verify-trigger:focus-visible {
  color: var(--white);
  border-color: rgba(108, 227, 241, 0.85);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.6), rgba(39, 213, 232, 0.22) 70%),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 18px 48px rgba(39, 213, 232, 0.28),
    0 0 0 6px rgba(39, 213, 232, 0.1);
  transform: translateY(-1px);
}

.staff-verify-trigger:active {
  transform: translateY(0);
}

.staff-verify-icon {
  width: 16px;
  height: 16px;
  fill: var(--cyan);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(39, 213, 232, 0.55));
}

.staff-verify-label {
  white-space: nowrap;
}

.staff-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 32px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.staff-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(39, 213, 232, 0.18),
      transparent 58%
    );
  opacity: 0;
  transition: opacity 240ms ease;
}

.staff-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.staff-modal.is-open::before {
  opacity: 1;
}

.staff-modal-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(3, 12, 24, 0.72);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
}

.staff-modal-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: calc(100dvh - 2 * clamp(12px, 3vw, 32px));
  margin: auto;
  overflow-y: auto;
  padding: 28px 26px 24px;
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.1), transparent 55%),
    rgba(7, 19, 33, 0.96);
  border: 1px solid rgba(39, 213, 232, 0.32);
  border-radius: 16px;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: var(--white);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transition:
    opacity 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(39, 213, 232, 0.4) transparent;
}

.staff-modal-panel::-webkit-scrollbar {
  width: 6px;
}

.staff-modal-panel::-webkit-scrollbar-thumb {
  background: rgba(39, 213, 232, 0.4);
  border-radius: 3px;
}

.staff-modal.is-open .staff-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.staff-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.staff-modal-close:hover,
.staff-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.staff-modal-header h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.staff-modal-header p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.staff-modal-field {
  display: block;
  margin-bottom: 8px;
}

.staff-modal-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.staff-modal-input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.staff-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.staff-modal-input:focus {
  border-color: var(--cyan);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(39, 213, 232, 0.18);
}

.staff-modal-input[aria-invalid="true"] {
  border-color: #ff7070;
  box-shadow: 0 0 0 3px rgba(255, 112, 112, 0.18);
}

.staff-modal-hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.staff-modal-error {
  margin: 8px 0 0;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 70, 70, 0.14);
  border: 1px solid rgba(255, 70, 70, 0.42);
  border-radius: 8px;
  color: #ffcccc;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  animation: staff-error-shake 360ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

.staff-modal-error::before {
  content: "!";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: rgba(255, 70, 70, 0.85);
  color: #1a0303;
  border-radius: 50%;
  font-family: var(--font-display, system-ui);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

@keyframes staff-error-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.staff-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.staff-modal-btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.staff-modal-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.staff-modal-btn-primary {
  background: linear-gradient(135deg, rgba(39, 213, 232, 0.95), rgba(39, 213, 232, 0.65));
  color: #051018;
  border-color: rgba(39, 213, 232, 0.7);
}

.staff-modal-btn-primary:hover {
  background: linear-gradient(135deg, rgba(108, 227, 241, 1), rgba(39, 213, 232, 0.8));
  transform: translateY(-1px);
}

.staff-modal-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.18);
}

.staff-modal-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.staff-modal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 0;
  gap: 8px;
}

.staff-modal-success[hidden],
.staff-modal-form[hidden] {
  display: none;
}

.staff-modal-success-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 213, 232, 0.22), rgba(39, 213, 232, 0.06) 70%);
  border: 1px solid rgba(39, 213, 232, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(39, 213, 232, 0.35);
  animation: staff-success-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes staff-success-pop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.staff-modal-success-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--cyan);
  stroke: var(--cyan);
  stroke-width: 0.5;
}

.staff-modal-success h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.staff-modal-success p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

body.staff-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .staff-verify-trigger {
    height: 32px;
    padding: 0 10px;
  }
  .staff-verify-label {
    display: none;
  }
  .staff-verify-icon {
    width: 18px;
    height: 18px;
  }
  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .staff-verify-trigger {
    height: 30px;
    padding: 0 8px;
  }
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: var(--graphite);
}

.hero img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: saturate(0.9) contrast(1.05);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(39, 213, 232, 0.16) 49%, transparent 56%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 7px);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.54;
  animation: scanSweep 8s ease-in-out infinite;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 78% 28%, rgba(39, 213, 232, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(4, 14, 28, 0.9), rgba(6, 28, 52, 0.68) 48%, rgba(5, 33, 63, 0.24)),
    linear-gradient(rgba(39, 213, 232, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.1) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.hero-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--max));
  margin: auto;
  padding-top: 100px;
  color: var(--white);
}

.hero-panel p {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-panel h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(54px, 7.2vw, 96px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(17px, 2vw, 21px) !important;
  font-weight: 400 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-status-panel {
  position: absolute;
  right: clamp(26px, 6vw, 88px);
  bottom: 62px;
  z-index: 3;
  width: min(318px, calc(100% - 48px));
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.16), transparent 46%),
    rgba(7, 19, 33, 0.76);
  border: 1px solid var(--glass-line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.hero-status-panel::before {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.hero-status-panel p {
  position: relative;
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-status-panel div {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-status-panel span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-status-panel strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.hero-signal-rail {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.44fr 0.9fr 1.8fr;
  gap: 10px;
  pointer-events: none;
}

.hero-signal-rail span {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(39, 213, 232, 0.88), transparent);
  box-shadow: 0 0 22px rgba(39, 213, 232, 0.42);
  opacity: 0.72;
  transform-origin: left center;
  animation: signalPulse 3.8s ease-in-out infinite;
}

.hero-signal-rail span:nth-child(2) {
  animation-delay: 0.25s;
}

.hero-signal-rail span:nth-child(3) {
  animation-delay: 0.5s;
}

.hero-signal-rail span:nth-child(4) {
  animation-delay: 0.75s;
}

.hero-signal-rail span:nth-child(5) {
  animation-delay: 1s;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 40px, var(--max));
  margin: -58px auto 18px;
  position: relative;
  z-index: 4;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.13), transparent 42%),
    rgba(7, 19, 33, 0.9);
  border: 1px solid rgba(39, 213, 232, 0.3);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.tech-strip div {
  min-height: 118px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-strip div:last-child {
  border-right: 0;
}

.tech-strip strong {
  display: block;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.tech-strip span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.ecosystem {
  width: min(100% - 40px, var(--max));
  padding: clamp(54px, 7vw, 88px) 0 18px;
  margin: 0 auto;
}

.science-panel {
  width: min(100% - 40px, var(--max));
  padding: clamp(58px, 7vw, 92px) 0 18px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.58fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 28px;
  position: relative;
}

.section-heading::after {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: min(180px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(39, 213, 232, 0));
  content: "";
}

.section-heading p {
  grid-column: 1 / -1;
  margin: 0 0 -4px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.science-grid,
.matrix-grid,
.brand-pillars,
.knowledge-grid,
.clinic-grid,
.compliance-grid,
.results-grid {
  display: grid;
  gap: 14px;
}

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

.science-grid article,
.matrix-grid article,
.brand-pillars article,
.knowledge-grid article,
.clinic-grid article,
.compliance-grid article,
.results-grid article {
  position: relative;
  min-height: 246px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(39, 213, 232, 0.18);
  box-shadow: 0 26px 78px rgba(7, 19, 33, 0.1);
  backdrop-filter: blur(10px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.science-grid article::before,
.matrix-grid article::before,
.brand-pillars article::before,
.knowledge-grid article::before,
.clinic-grid article::before,
.compliance-grid article::before,
.results-grid article::before,
.audience-grid div::before,
.quality-grid div::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 720ms ease;
}

.science-grid article::after,
.matrix-grid article::after,
.brand-pillars article::after,
.knowledge-grid article::after,
.clinic-grid article::after,
.compliance-grid article::after,
.results-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-right: 1px solid rgba(39, 213, 232, 0.36);
  border-bottom: 1px solid rgba(39, 213, 232, 0.36);
  content: "";
}

.science-grid article:hover,
.matrix-grid article:hover,
.brand-pillars article:hover,
.knowledge-grid article:hover,
.clinic-grid article:hover,
.compliance-grid article:hover,
.results-grid article:hover,
.audience-grid div:hover,
.quality-grid div:hover {
  border-color: rgba(39, 213, 232, 0.42);
  box-shadow: 0 34px 88px rgba(7, 19, 33, 0.16);
  transform: translateY(-4px);
}

.science-grid article:hover::before,
.matrix-grid article:hover::before,
.brand-pillars article:hover::before,
.knowledge-grid article:hover::before,
.clinic-grid article:hover::before,
.compliance-grid article:hover::before,
.results-grid article:hover::before,
.audience-grid div:hover::before,
.quality-grid div:hover::before {
  opacity: 0.38;
  transform: translateX(120%);
}

.science-grid span,
.brand-pillars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--graphite);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.science-grid h3,
.matrix-grid h3,
.brand-pillars h3,
.clinic-grid h3,
.compliance-grid h3,
.results-grid h3 {
  margin: 24px 0 12px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.15;
  text-transform: uppercase;
}

.matrix-grid h3,
.compliance-grid h3 {
  margin-top: 14px;
}

.science-grid p,
.matrix-grid p,
.brand-pillars p,
.knowledge-grid p,
.clinic-grid p,
.compliance-grid p,
.results-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.science-note {
  max-width: 890px;
  padding: 18px 22px;
  margin: 18px 0 0;
  color: #455363;
  background: rgba(39, 213, 232, 0.08);
  border: 1px solid rgba(39, 213, 232, 0.18);
  font-size: 13px;
  line-height: 1.65;
}

.knowledge-panel {
  width: min(100% - 40px, var(--max));
  padding: clamp(38px, 5vw, 68px) 0 18px;
  margin: 0 auto;
}

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

.knowledge-grid article {
  min-height: 196px;
}

.knowledge-grid strong {
  display: block;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ecosystem-card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
  border: 1px solid rgba(39, 213, 232, 0.18);
  box-shadow: 0 28px 80px rgba(7, 19, 33, 0.18);
  text-decoration: none;
  isolation: isolate;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ecosystem-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 14, 26, 0.05), rgba(5, 14, 26, 0.82)),
    linear-gradient(135deg, rgba(39, 213, 232, 0.24), transparent 42%);
}

.ecosystem-card::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
}

.ecosystem-card img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  opacity: 0.72;
  transition:
    transform 420ms ease,
    opacity 420ms ease;
}

.ecosystem-card span,
.ecosystem-card small {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 3;
}

.ecosystem-card span {
  bottom: 54px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.ecosystem-card small {
  bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.ecosystem-card:hover img {
  opacity: 0.92;
  transform: scale(1.06);
}

.ecosystem-card:hover {
  border-color: rgba(39, 213, 232, 0.46);
  box-shadow: 0 34px 92px rgba(7, 19, 33, 0.26);
  transform: translateY(-4px);
}

.audience-panel {
  width: min(100% - 40px, var(--max));
  padding: clamp(46px, 6vw, 76px) 0 18px;
  margin: 0 auto;
}

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

.audience-grid div {
  position: relative;
  min-height: 238px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 94, 168, 0.13);
  box-shadow: 0 26px 78px rgba(7, 19, 33, 0.12);
  backdrop-filter: blur(10px);
}

.audience-grid div::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(39, 213, 232, 0.22);
  content: "";
  transform: rotate(18deg);
}

.audience-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--graphite);
  background: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.audience-grid h3 {
  margin: 28px 0 12px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  padding: 34px 20px 10px;
  margin: 0 auto;
}

.product-index a {
  min-width: 148px;
  padding: 12px 18px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 213, 232, 0.2);
  box-shadow: 0 12px 34px rgba(7, 19, 33, 0.06);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.product-index a:hover {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.selection-guide {
  width: min(100% - 40px, var(--max));
  padding: clamp(42px, 6vw, 72px) 0 12px;
  margin: 0 auto;
}

.selection-table {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.09), transparent 42%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(39, 213, 232, 0.2);
  box-shadow: 0 26px 78px rgba(7, 19, 33, 0.1);
  backdrop-filter: blur(10px);
}

.selection-row {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr 1fr 1.1fr;
  min-height: 74px;
  border-bottom: 1px solid rgba(20, 94, 168, 0.11);
}

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

.selection-row span {
  display: flex;
  align-items: center;
  padding: 18px;
  color: #3d4a58;
  border-right: 1px solid rgba(20, 94, 168, 0.1);
  font-size: 13px;
  line-height: 1.35;
}

.selection-row span:last-child {
  border-right: 0;
}

.selection-head {
  min-height: 58px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.14), transparent 44%),
    var(--graphite);
}

.selection-head span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.selection-row:not(.selection-head) span:first-child {
  color: var(--graphite);
  font-weight: 700;
  text-transform: uppercase;
}

.protocol-matrix {
  width: min(100% - 40px, var(--max));
  padding: clamp(48px, 6vw, 78px) 0 12px;
  margin: 0 auto;
}

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

.matrix-grid article {
  min-height: 238px;
}

.matrix-grid strong {
  display: inline-flex;
  min-height: 28px;
  padding: 6px 10px;
  color: #0a3e67;
  background: rgba(39, 213, 232, 0.12);
  border: 1px solid rgba(39, 213, 232, 0.22);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.workflow {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  width: min(100% - 40px, var(--max));
  padding: clamp(34px, 5vw, 54px);
  margin: 34px auto 20px;
  color: var(--white);
  background:
    linear-gradient(rgba(39, 213, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #071321, #0b2743 64%, #0f4568);
  background-size: 52px 52px, 52px 52px, auto;
  border: 1px solid rgba(39, 213, 232, 0.24);
  box-shadow: var(--shadow-strong);
}

.workflow-copy p {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.workflow-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

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

.workflow-step {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.workflow-step strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1;
}

.workflow-step h3 {
  margin: 22px 0 9px;
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
}

.workflow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.product-section {
  position: relative;
  padding: clamp(52px, 7vw, 96px) 20px;
  overflow: hidden;
}

.product-section:nth-of-type(odd) {
  background:
    linear-gradient(rgba(39, 213, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, #f6fafc);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.product-section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.88);
}

.section-kicker {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto 22px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 32px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.product-reverse .product-media {
  order: 2;
}

.product-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(39, 213, 232, 0.22);
  background: var(--soft);
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.product-media::before {
  position: absolute;
  inset: 16px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
}

.product-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 72%, rgba(5, 14, 26, 0.34)),
    linear-gradient(90deg, rgba(39, 213, 232, 0.18), transparent 18%, transparent 82%, rgba(39, 213, 232, 0.12));
  content: "";
  opacity: 0.72;
}

.product-media img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition:
    filter 350ms ease,
    transform 350ms ease;
}

.product-media:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.product-copy h2 {
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy {
  position: relative;
  padding: clamp(22px, 3.6vw, 42px);
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(20, 94, 168, 0.13);
  box-shadow: 0 26px 78px rgba(7, 19, 33, 0.1);
  backdrop-filter: blur(12px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.product-copy::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-top: 1px solid rgba(39, 213, 232, 0.42);
  border-right: 1px solid rgba(39, 213, 232, 0.42);
  content: "";
}

.product-copy::after {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(39, 213, 232, 0.78), transparent);
  content: "";
}

.product:hover .product-copy {
  border-color: rgba(39, 213, 232, 0.3);
  box-shadow: 0 32px 92px rgba(7, 19, 33, 0.14);
  transform: translateY(-2px);
}

.protocol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 22px;
}

.protocol-tags span {
  min-height: 30px;
  padding: 7px 11px;
  color: #0a3e67;
  background: rgba(39, 213, 232, 0.11);
  border: 1px solid rgba(39, 213, 232, 0.24);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(39, 213, 232, 0.05);
}

.product-copy p {
  margin: 0 0 18px;
  color: #3d4a58;
  font-size: 15px;
}

.list-intro {
  color: var(--ink) !important;
  font-weight: 700;
}

.simple-list,
.two-column-list {
  padding: 0;
  margin: 0 0 26px;
  color: #28384c;
  list-style: none;
}

.simple-list li,
.two-column-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
}

.simple-list li::before,
.two-column-list li::before {
  position: absolute;
  left: 0;
  color: var(--cyan);
  content: "•";
}

.two-column-list {
  columns: 2;
  column-gap: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 28px;
}

.feature-grid span {
  min-height: 42px;
  padding: 10px 12px;
  color: #26374b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 213, 232, 0.16);
  font-size: 13px;
  line-height: 1.25;
}

.product-options {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.product-options div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(39, 213, 232, 0.16);
}

.product-options h3 {
  margin: 0 0 8px;
  color: var(--blue-deep);
  font-size: 15px;
  text-transform: uppercase;
}

.product-options p {
  margin: 3px 0;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), #0d7fb8);
  border: 1px solid rgba(39, 213, 232, 0.42);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #061f3b, var(--blue));
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-outline:hover {
  color: var(--graphite);
  background: var(--white);
  border-color: var(--white);
}

.button-light {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--aqua);
  border-color: var(--aqua);
}

.quality-panel {
  width: min(100% - 40px, var(--max));
  padding: clamp(54px, 7vw, 88px) 0;
  margin: 0 auto;
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
  width: min(100% - 40px, var(--max));
  padding: clamp(42px, 6vw, 72px);
  margin: 18px auto 0;
  color: var(--white);
  background:
    linear-gradient(rgba(39, 213, 232, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #071321, #102a43 62%, #0f4568);
  background-size: 52px 52px, 52px 52px, auto;
  border: 1px solid rgba(39, 213, 232, 0.24);
  box-shadow: var(--shadow-strong);
}

.brand-story-copy p {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-story-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.brand-story-copy span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.brand-pillars {
  grid-template-columns: 1fr;
}

.brand-pillars article {
  min-height: 0;
  padding: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-pillars h3 {
  color: var(--white);
}

.brand-pillars p {
  color: rgba(255, 255, 255, 0.72);
}

.clinic-panel {
  width: min(100% - 40px, var(--max));
  padding: clamp(52px, 7vw, 88px) 0 0;
  margin: 0 auto;
}

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

.clinic-grid article {
  min-height: 238px;
}

.clinic-grid span {
  display: inline-flex;
  min-height: 28px;
  padding: 6px 10px;
  color: #0a3e67;
  background: rgba(39, 213, 232, 0.12);
  border: 1px solid rgba(39, 213, 232, 0.22);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.quality-heading {
  margin-bottom: 30px;
}

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

.quality-grid div {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(39, 213, 232, 0.09), transparent 46%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(39, 213, 232, 0.18);
  box-shadow: 0 26px 78px rgba(7, 19, 33, 0.1);
  backdrop-filter: blur(10px);
}

.quality-grid strong {
  display: block;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
}

.quality-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.regulatory-note {
  max-width: 830px;
  padding: 18px 22px;
  margin: 18px 0 0;
  color: #4d5c6c;
  background: rgba(39, 213, 232, 0.08);
  border: 1px solid rgba(20, 94, 168, 0.14);
  font-size: 13px;
  line-height: 1.65;
}

.compliance-panel {
  width: min(100% - 40px, var(--max));
  padding: 0 0 clamp(46px, 6vw, 76px);
  margin: 0 auto;
}

.compliance-grid,
.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-grid article,
.results-grid article {
  min-height: 218px;
}

.results-panel {
  width: min(100% - 40px, var(--max));
  padding: 0 0 clamp(54px, 7vw, 88px);
  margin: 0 auto;
}

.results-grid strong {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  line-height: 1;
}

.faq-section {
  width: min(100% - 40px, var(--max));
  padding: 10px 0 clamp(68px, 8vw, 108px);
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(39, 213, 232, 0.16);
  box-shadow: 0 18px 52px rgba(7, 19, 33, 0.08);
  backdrop-filter: blur(10px);
}

.faq-list summary {
  position: relative;
  min-height: 66px;
  padding: 21px 60px 21px 24px;
  cursor: pointer;
  color: var(--graphite);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  height: 18px;
  color: var(--blue-deep);
  content: "+";
  font-size: 22px;
  line-height: 18px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  padding: 0 24px 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(rgba(39, 213, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 213, 232, 0.07) 1px, transparent 1px),
    var(--footer);
  background-size: 58px 58px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: start;
  width: min(100% - 40px, var(--max));
  padding: 70px 0 36px;
  margin: 0 auto;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 98px;
  max-width: 100%;
  margin-bottom: 22px;
}

.footer-brand h2,
.join-form h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

address {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.8;
  text-transform: uppercase;
}

address a {
  text-decoration: none;
}

.join-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(39, 213, 232, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.join-form p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-transform: uppercase;
}

.join-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.join-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(39, 213, 232, 0.32);
  border-radius: 0;
  font: inherit;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  width: min(100% - 40px, var(--max));
  padding: 26px 0;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

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

.copyright {
  padding: 18px 20px 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-deep), #0d7fb8);
  border: 1px solid rgba(39, 213, 232, 0.46);
  box-shadow: 0 18px 50px rgba(5, 23, 43, 0.28);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.floating-cta:hover {
  box-shadow: 0 24px 68px rgba(39, 213, 232, 0.28);
  transform: translateY(-2px);
}

.mobile-action-bar {
  display: none;
}

.reveal-ready .reveal-target {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-ready .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scanSweep {
  0%,
  100% {
    background-position: -90vw 0, 0 0;
  }

  50% {
    background-position: 90vw 0, 0 0;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.62);
  }

  48% {
    opacity: 0.96;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 160px 1fr auto;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    padding-block: 8px;
  }

  .brand {
    width: 150px;
    height: 66px;
  }

  .site-header .brand img {
    width: 150px;
    max-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(7, 19, 33, 0.46);
    border-bottom: 1px solid rgba(39, 213, 232, 0.18);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(30px) saturate(1.35);
    -webkit-backdrop-filter: blur(30px) saturate(1.35);
    transition: max-height 220ms ease;
  }

  body.nav-open .site-nav {
    max-height: 640px;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 18px 22px;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav li:last-child {
    border-bottom: 0;
  }

  .site-nav a {
    width: 100%;
    min-height: 44px;
    padding: 12px 4px;
    font-size: 13px;
  }

  .site-nav .caret {
    display: inline-block;
  }

  .dropdown {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    overflow: hidden;
    transition:
      max-height 260ms ease,
      opacity 200ms ease,
      visibility 200ms ease,
      padding 200ms ease;
  }

  .has-submenu.is-open > .dropdown {
    max-height: 360px;
    padding: 4px 0 12px;
    opacity: 1;
    visibility: visible;
  }

  .dropdown a {
    position: relative;
    padding: 10px 12px 10px 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    border-left: 2px solid rgba(39, 213, 232, 0.35);
    margin-left: 8px;
    border-radius: 0 4px 4px 0;
  }

  .dropdown a:hover,
  .dropdown a:focus-visible {
    background: rgba(39, 213, 232, 0.08);
    color: var(--white);
    border-left-color: var(--cyan);
  }

  .dropdown a::after {
    display: none;
  }

  .product,
  .product-reverse {
    grid-template-columns: 1fr;
  }

  .product-reverse .product-media {
    order: initial;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .tech-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tech-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

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

  .science-grid,
  .knowledge-grid,
  .clinic-grid,
  .matrix-grid,
  .compliance-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-story {
    grid-template-columns: 1fr;
  }

  .selection-row {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .science-grid,
  .knowledge-grid,
  .clinic-grid,
  .matrix-grid,
  .compliance-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .selection-head {
    display: none;
  }

  .selection-row {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
    border-bottom: 1px solid rgba(20, 94, 168, 0.12);
  }

  .selection-row span {
    min-height: 0;
    padding: 8px 0;
    border-right: 0;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 76px;
    background-size: 28px 28px;
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: minmax(130px, 1fr) auto;
    gap: 6px;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    padding: 6px 12px;
  }

  .header-actions {
    gap: 6px;
  }

  .brand {
    width: 116px;
    height: 48px;
  }

  .site-header .brand img {
    width: 116px;
    max-height: 48px;
  }

  .language-toggle {
    height: 32px;
    min-width: 0;
    gap: 5px;
    padding: 0 8px;
    font-size: 10px;
  }

  .language-code {
    min-width: 22px;
    height: 20px;
    font-size: 9px;
  }

  .language-label {
    max-width: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .language-menu {
    right: -40px;
    width: 172px;
  }

  .staff-verify-trigger {
    height: 32px;
    padding: 0 8px;
    gap: 0;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.06),
      0 10px 26px rgba(39, 213, 232, 0.18),
      0 0 0 3px rgba(39, 213, 232, 0.05);
  }

  .staff-verify-label {
    display: none;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .site-nav {
    max-height: 0;
    box-shadow: 0 24px 60px rgba(7, 19, 33, 0.16);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-nav {
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
  }

  .site-nav ul {
    padding: 12px 16px 22px;
  }

  .site-nav a {
    min-height: 42px;
    font-size: 12px;
    padding: 10px 4px;
  }

  .dropdown a {
    padding: 9px 12px 9px 20px;
    font-size: 11px;
  }

  .hero,
  .hero img {
    min-height: 590px;
    height: 590px;
  }

  .hero img {
    object-position: 62% center;
    opacity: 0.62;
  }

  .hero::after {
    background:
      radial-gradient(circle at 68% 26%, rgba(39, 213, 232, 0.14), transparent 32%),
      linear-gradient(180deg, rgba(4, 14, 28, 0.52), rgba(4, 14, 28, 0.92)),
      linear-gradient(rgba(39, 213, 232, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(39, 213, 232, 0.08) 1px, transparent 1px);
    background-size: auto, auto, 46px 46px, 46px 46px;
  }

  .hero-panel {
    width: calc(100% - 32px);
    justify-content: flex-end;
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .hero-panel h1 {
    font-size: 46px;
  }

  .hero-lede {
    margin-top: 16px !important;
    font-size: 15px !important;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 260px);
  }

  .hero-status-panel {
    display: none;
  }

  .tech-strip {
    width: calc(100% - 32px);
    margin-top: -44px;
  }

  .tech-strip div {
    min-height: 92px;
    padding: 20px 22px;
  }

  .tech-strip strong {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .workflow-copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section-heading span,
  .workflow-copy span {
    font-size: 14px;
  }

  .product-index {
    position: sticky;
    top: 70px;
    z-index: 12;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: none;
    padding: 10px 16px;
    overflow-x: auto;
    background: rgba(7, 19, 33, 0.56);
    border-block: 1px solid rgba(39, 213, 232, 0.16);
    backdrop-filter: blur(24px) saturate(1.25);
    -webkit-backdrop-filter: blur(24px) saturate(1.25);
    scrollbar-width: none;
  }

  .product-index::-webkit-scrollbar {
    display: none;
  }

  .product-index a {
    flex: 0 0 auto;
    min-width: auto;
    padding: 10px 13px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
  }

  .product-section {
    padding-inline: 16px;
    padding-block: 46px;
  }

  .product {
    gap: 22px;
  }

  .product-media img {
    aspect-ratio: 1.12 / 1;
  }

  .product-media::before {
    inset: 10px;
  }

  .product-copy h2 {
    margin-bottom: 14px;
    font-size: 34px;
  }

  .protocol-tags {
    gap: 7px;
    margin-bottom: 18px;
  }

  .protocol-tags span {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .workflow {
    width: calc(100% - 32px);
    padding: 28px 18px;
    margin-top: 24px;
  }

  .workflow-step {
    min-height: 0;
  }

  .quality-panel,
  .faq-section,
  .audience-panel,
  .science-panel,
  .knowledge-panel,
  .selection-guide,
  .protocol-matrix,
  .clinic-panel,
  .compliance-panel,
  .results-panel {
    width: calc(100% - 32px);
  }

  .brand-story {
    width: calc(100% - 32px);
    padding: 28px 18px;
    margin-top: 8px;
  }

  .quality-grid div {
    min-height: 0;
  }

  .audience-grid div {
    min-height: 0;
  }

  .science-grid article,
  .knowledge-grid article,
  .clinic-grid article,
  .matrix-grid article,
  .brand-pillars article,
  .compliance-grid article,
  .results-grid article {
    min-height: 0;
    padding: 18px;
  }

  .brand-story-copy h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .brand-story-copy span {
    font-size: 14px;
  }

  .feature-grid,
  .two-column-list {
    display: grid;
    grid-template-columns: 1fr;
    columns: auto;
  }

  .feature-grid span,
  .product-options div,
  .quality-grid div,
  .audience-grid div,
  .workflow-step {
    padding: 18px;
  }

  .faq-list summary {
    min-height: 58px;
    padding: 18px 52px 18px 18px;
    font-size: 13px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .footer-main,
  .footer-nav {
    width: calc(100% - 32px);
  }

  .footer-main {
    padding-top: 54px;
  }

  .ecosystem {
    width: calc(100% - 32px);
    padding-top: 42px;
  }

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

  .ecosystem-card,
  .ecosystem-card img {
    min-height: 230px;
  }

  .floating-cta {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 25;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.1fr;
    overflow: hidden;
    background: rgba(7, 19, 33, 0.94);
    border: 1px solid rgba(39, 213, 232, 0.32);
    box-shadow: 0 20px 60px rgba(5, 14, 26, 0.34);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-deep), #0d7fb8);
    border-right: 0;
  }
}
