:root {
  --bg: #000000;
  --text: #e7e5ff;
  --muted: rgba(231, 229, 255, 0.72);
  --line: rgba(231, 229, 255, 0.14);
  --lime: #c1e54e;
  --lavender: #e7e5ff;
  --soft: #000000;
  --dark: #000000;
  --radius-button: 40px;
  --page: 1200px;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n4.d47a1b6347ce4a4c9f437608011273009d91f2b7.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n6.ec1178db7a7515114a2d84e3dd680832b7af8b99.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Jost;
  src: url("https://fonts.shopifycdn.com/jost/jost_n7.921dc18c13fa0b0c94c5e2517ffe06139c3615a3.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Jost, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.announcement {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 38px;
  padding: 6px 48px;
  border-bottom: 1px solid rgba(231, 229, 255, 0.12);
  color: var(--lavender);
  background: #000;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  min-height: 75px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(231, 229, 255, 0.1);
  background: #000;
}

.hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--lavender);
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  min-width: 96px;
  color: #fff;
  line-height: 1;
}

.logo img {
  width: clamp(104px, 10vw, 132px);
  height: auto;
}

.logo-tm {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-0.12em);
}

.logo .logo-tm,
.footer-logo .logo-tm {
  color: #fff !important;
}

.nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(231, 229, 255, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.06), rgba(231, 229, 255, 0.02)),
    rgba(8, 11, 13, 0.78);
  color: var(--lavender);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  background: rgba(193, 229, 78, 0.12);
  color: var(--lime);
  outline: 0;
}

.nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(193, 229, 78, 0.2);
}

.slideshow {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-picture,
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-picture img,
.slide img {
  object-fit: cover;
}

.slide-picture img {
  width: 100%;
  height: 100%;
}

.slide--product .slide-picture img,
.slide--product img {
  object-fit: cover;
  object-position: center right;
  padding: 0;
  background: #000;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.slide-shade.soft {
  background: rgba(0, 0, 0, 0.42);
}

.slide-copy {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 96px));
  margin: 0 0 214px 50px;
  padding: 0;
  color: var(--lavender);
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(193, 229, 78, 0.58);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(193, 229, 78, 0.14), rgba(193, 229, 78, 0.07));
  box-shadow: 0 0 24px rgba(193, 229, 78, 0.12);
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-badge-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.slide-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(45px, 5.2vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 700;
}

.slide-copy p {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--lavender);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.mobile-copy {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.button.primary {
  color: #050606;
  background: var(--lime);
}

.button.secondary {
  color: var(--lime);
  background: var(--lavender);
}

.slide-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 660px;
  margin-top: 16px;
}

.slide-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(231, 229, 255, 0.2);
  border-radius: 999px;
  color: var(--lavender);
  background:
    linear-gradient(180deg, rgba(12, 17, 22, 0.8), rgba(12, 17, 22, 0.46)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  backdrop-filter: blur(14px);
}

.slide-feature-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  display: flex;
  min-width: 154px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transform: translateX(-50%);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
}

.slide-arrow {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 24px;
  line-height: 34px;
  cursor: pointer;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.slide-arrow:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.slide-count {
  min-width: 36px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0;
}

.hero-feature-strip {
  position: absolute;
  left: 50%;
  bottom: 62px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(980px, calc(100% - 96px));
  padding: 12px;
  border: 1px solid rgba(231, 229, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(12, 18, 23, 0.76), rgba(5, 8, 10, 0.62)),
    rgba(0, 0, 0, 0.44);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.hero-feature-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(231, 229, 255, 0.12);
  border-radius: 18px;
  background: rgba(231, 229, 255, 0.05);
  color: var(--lavender);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-feature-icon {
  width: 38px;
  height: 38px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(193, 229, 78, 0.12);
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.rich-text,
.closer,
.faq,
.privacy,
.reserve {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: #000;
}

.narrow {
  max-width: 950px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

h2 {
  margin: 0 0 22px;
  color: var(--lavender);
  font-size: clamp(34px, 4.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
}

h3 {
  margin: 28px 0 14px;
  color: var(--lavender);
  font-size: clamp(23px, 3vw, 27px);
  line-height: 1.16;
  font-weight: 700;
  text-align: center;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

.rich-text p {
  margin: 0 0 18px;
  text-align: center;
}

.reserve-form label {
  display: grid;
  gap: 8px;
  text-align: left;
}

.reserve-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(231, 229, 255, 0.65);
  border-radius: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--lavender);
  font: inherit;
}

.reserve-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.banner-card {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.22) 44%, rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.banner-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-box {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 110px);
  padding: 0;
  color: var(--lavender);
  background: transparent;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.8);
}

.mode-head {
  padding-bottom: 48px;
}

.multirow {
  display: grid;
  gap: 0;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #000;
}

.row.reverse .media-card {
  order: 2;
}

.media-card {
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card video {
  display: block;
}

.row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 6vw, 88px);
}

.row-copy span {
  margin-bottom: 18px;
  color: #5c6f16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, #000 0%, #080909 48%, #000 100%);
}

.team-story {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 18px;
  width: min(var(--page), 100%);
  margin: 0 auto 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: rgba(231, 229, 255, 0.045);
  text-align: center;
}

.team-story-head {
  display: grid;
  justify-items: center;
}

.team-story span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-story span {
  color: #c1e54e;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.15;
  text-shadow: 0 0 18px rgba(193, 229, 78, 0.24);
}

.team-story p {
  margin: 0;
  color: rgba(231, 229, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.team-story-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(840px, 100%);
}

.team-story-summary {
  display: -webkit-box;
  max-width: 820px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.team-story-summary[hidden] {
  display: none;
}

.team-story-full {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 860px;
  padding-top: 4px;
  text-align: left;
}

.team-story-full[hidden] {
  display: none;
}

.team-story-toggle {
  min-width: 178px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(193, 229, 78, 0.48);
  border-radius: 999px;
  background: transparent;
  color: var(--lime);
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.team-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-profile-avatar span {
  color: rgba(231, 229, 255, 0.42);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.team-profile-wrap {
  display: grid;
  gap: 24px;
  width: min(var(--page), 100%);
  margin: 28px auto 0;
}

.team-profile-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.66fr) minmax(410px, 1.08fr) minmax(280px, 0.8fr);
  align-items: start;
  gap: clamp(22px, 3.2vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #151a1f;
}

.team-profile-panel--no-gallery {
  grid-template-columns: minmax(190px, 0.72fr) minmax(360px, 1.08fr);
}

.team-profile-panel[hidden] {
  display: none;
}

.field-tests-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(231, 229, 255, 0.1);
  border-bottom: 1px solid rgba(231, 229, 255, 0.1);
  background:
    radial-gradient(circle at 82% 22%, rgba(193, 229, 78, 0.08), transparent 34%),
    #090a0b;
}

.field-tests-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 760px;
}

.section-kicker {
  color: var(--acid);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-tests-copy h2 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.field-tests-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.field-tests-card {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(193, 229, 78, 0.36);
  background:
    linear-gradient(145deg, rgba(193, 229, 78, 0.18), rgba(20, 25, 29, 0.88)),
    #151a1f;
  color: var(--lavender);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.field-tests-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(5, 6, 6, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.field-tests-card-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.06) contrast(1.04) brightness(0.86);
  transition: transform 220ms ease, filter 220ms ease;
}

.field-tests-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 229, 78, 0.7);
  background:
    linear-gradient(145deg, rgba(193, 229, 78, 0.24), rgba(20, 25, 29, 0.9)),
    #151a1f;
}

.field-tests-card:hover .field-tests-card-cover {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.06) brightness(0.92);
}

.field-tests-card span {
  position: relative;
  z-index: 2;
  margin-bottom: 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-tests-card strong {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.field-tests-card em {
  position: relative;
  z-index: 2;
  color: rgba(231, 229, 255, 0.72);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.field-feedback {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(231, 229, 255, 0.1);
  background:
    radial-gradient(circle at 18% 12%, rgba(193, 229, 78, 0.08), transparent 28%),
    linear-gradient(180deg, #080909 0%, #030404 100%);
}

.field-feedback-copy {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  max-width: 430px;
  padding-top: 6px;
}

.field-feedback-copy h2 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
}

.field-feedback-copy p {
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.field-evidence-carousel {
  overflow: hidden;
}

.evidence-carousel-controls {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.evidence-carousel-button {
  display: grid;
  width: 44px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(193, 229, 78, 0.42);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(193, 229, 78, 0.08);
  cursor: pointer;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.evidence-carousel-button:hover,
.evidence-carousel-button:focus-visible {
  border-color: rgba(193, 229, 78, 0.78);
  background: rgba(193, 229, 78, 0.18);
  outline: 0;
  transform: translateY(-1px);
}

.evidence-carousel-shell {
  min-width: 0;
  overflow: hidden;
}

.evidence-carousel-track {
  display: flex;
  gap: 20px;
  min-width: 0;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.evidence-carousel-track::-webkit-scrollbar {
  display: none;
}

.evidence-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 min(370px, 78vw);
  overflow: hidden;
  border: 1px solid rgba(231, 229, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.025)),
    #111417;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.3);
  scroll-snap-align: start;
}

.evidence-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.evidence-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.evidence-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.evidence-card-copy span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.evidence-card-copy strong {
  color: var(--lime);
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.evidence-card-copy h3 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.08;
}

.evidence-card-copy p {
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.58;
}

.evidence-proof-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(231, 229, 255, 0.12);
}

.evidence-proof-list div {
  display: grid;
  grid-template-columns: minmax(104px, 0.42fr) 1fr;
  gap: 10px;
  align-items: start;
}

.evidence-proof-list dt,
.evidence-proof-list dd {
  margin: 0;
  line-height: 1.35;
}

.evidence-proof-list dt {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-proof-list dd {
  color: rgba(231, 229, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.evidence-card-copy small {
  color: rgba(231, 229, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 28px);
  width: 100%;
  max-width: 860px;
  margin: 0;
}

.feedback-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  min-height: 245px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.055), rgba(231, 229, 255, 0.02)),
    #111417;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
}

.feedback-card:nth-child(even) {
  transform: translateY(22px);
}

.feedback-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.feedback-stars {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.feedback-card time {
  color: rgba(231, 229, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
}

.feedback-card > strong {
  color: var(--lavender);
  font-size: 20px;
  line-height: 1.2;
}

.feedback-card > p {
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 2px;
}

.feedback-author > span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(193, 229, 78, 0.36);
  border-radius: 50%;
  background: rgba(193, 229, 78, 0.09);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.feedback-author div {
  display: grid;
  gap: 2px;
}

.feedback-author b {
  color: var(--lavender);
  font-size: 14px;
  line-height: 1.2;
}

.feedback-author em {
  color: rgba(231, 229, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.field-test-hero {
  display: grid;
  gap: 18px;
  padding: clamp(86px, 11vw, 148px) clamp(18px, 6vw, 124px) clamp(44px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(5, 6, 6, 0.82)),
    url("assets/field-test-cover-robot-bank.png") center 58% / cover;
  color: var(--lavender);
}

.field-test-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
}

.field-test-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.62;
}

.field-test-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 64px);
  background: #050606;
}

.field-test-item {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #151a1f;
}

.field-test-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
}

.field-test-item:first-child img {
  object-position: center 58%;
}

.field-test-item div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.field-test-item span {
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.field-test-item h2 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
}

.field-test-item p {
  margin: 0;
  color: rgba(231, 229, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
}

.field-test-note {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 64px);
  background: #000;
  color: var(--lavender);
  text-align: center;
}

.field-test-note h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
}

.field-test-note p {
  max-width: 740px;
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.field-test-note code {
  color: var(--acid);
}

.team-profile-bio {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  min-height: 100%;
  padding: clamp(18px, 2.4vw, 26px);
  background: transparent;
  text-align: center;
}

.team-profile-avatar {
  display: grid;
  width: min(190px, 100%);
  margin: 4px auto 8px;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 38%, rgba(193, 229, 78, 0.22), transparent 34%),
    #090a0a;
}

.team-profile-name {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.team-profile-intro {
  margin: 0;
  color: rgba(231, 229, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.team-profile-intro {
  max-width: 250px;
}

.team-profile-link {
  display: inline-flex;
  margin-top: 2px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.team-profile-link:hover {
  color: #d9ff65;
}

.team-profile-main {
  display: grid;
  align-self: stretch;
  align-content: stretch;
  scroll-margin-top: 96px;
}

.team-profile-facts {
  display: grid;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(231, 229, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.045), rgba(231, 229, 255, 0.015)),
    rgba(0, 0, 0, 0.16);
}

.team-profile-facts div {
  display: grid;
  grid-template-columns: minmax(132px, 0.44fr) 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(13px, 1.8vw, 18px) 18px;
  border-top: 1px solid rgba(231, 229, 255, 0.1);
}

.team-profile-facts div:first-child {
  border-top: 0;
}

.team-profile-facts dt,
.team-profile-facts dd {
  margin: 0;
}

.team-profile-facts dt {
  color: #8ea92a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.team-profile-facts dd {
  color: rgba(231, 229, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.team-profile-gallery {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.team-profile-gallery div {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(231, 229, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.015)),
    #090a0a;
  color: rgba(231, 229, 255, 0.46);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-profile-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
  cursor: zoom-in;
}

.team-profile-gallery div:first-child img {
  object-position: center 38%;
}

.team-profile-gallery div:nth-child(2) img {
  object-position: center 45%;
}

.team-profile-gallery[aria-label="William Liu profile images"] div:first-child img,
.member-media-grid[aria-label="William Liu profile images"] img:first-child {
  object-position: center 48%;
}

.member-page {
  background: #000;
}

.member-hero {
  --member-hero-image-height: clamp(480px, 46vw, 660px);
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 0;
  background: #0b0d0e;
}

.member-hero-bg {
  position: relative;
  inset: auto;
  width: 100%;
  height: var(--member-hero-image-height);
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  opacity: 1;
  filter: brightness(0.92) contrast(1.04);
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 74%,
    rgba(0, 0, 0, 0.86) 84%,
    rgba(0, 0, 0, 0.36) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 74%,
    rgba(0, 0, 0, 0.86) 84%,
    rgba(0, 0, 0, 0.36) 94%,
    transparent 100%
  );
  z-index: 0;
}

.member-hero--william .member-hero-bg {
  object-position: center 43%;
  filter: brightness(0.98) contrast(1.03);
}

.member-hero--leo {
  --member-hero-image-height: clamp(560px, 50vw, 720px);
}

.member-hero-bg.member-hero-bg--leo {
  object-position: center 88%;
}

.member-hero--chester {
  --member-hero-image-height: clamp(620px, 48vw, 720px);
  background:
    radial-gradient(circle at 72% 28%, rgba(193, 229, 78, 0.08), transparent 34%),
    linear-gradient(90deg, #050606 0%, #111719 48%, #050606 100%);
}

.member-hero--chester .member-hero-bg {
  height: var(--member-hero-image-height);
  object-fit: cover;
  object-position: 52% center;
  background: #0b0d0e;
  filter: brightness(0.96) contrast(1.04);
}

.member-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--member-hero-image-height) - 410px);
  z-index: 1;
  display: block;
  height: 520px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 13, 14, 0) 0%,
    rgba(11, 13, 14, 0.06) 16%,
    rgba(11, 13, 14, 0.2) 34%,
    rgba(11, 13, 14, 0.5) 58%,
    rgba(11, 13, 14, 0.86) 82%,
    #0b0d0e 100%
  );
  transform: translateY(8px);
}

.member-hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--page), calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px) 0 clamp(18px, 3vw, 36px);
}

.member-breadcrumb {
  margin: 0 0 20px;
  color: rgba(231, 229, 255, 0.66);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.member-breadcrumb a {
  color: var(--lime);
}

.member-hero h1 {
  max-width: 700px;
  margin: 0 0 14px;
  color: var(--lavender);
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  text-align: left;
}

.member-hero-role {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-hero-summary {
  max-width: 640px;
  margin: 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.member-detail {
  padding: clamp(4px, 1.2vw, 16px) clamp(18px, 5vw, 64px) clamp(54px, 8vw, 104px);
  background: #0b0d0e;
}

.member-profile-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(24px, 3vw, 36px);
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #151a1f;
}

.member-back-link {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: -6px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-profile-main {
  display: grid;
  align-content: start;
  gap: clamp(24px, 3vw, 34px);
}

.member-facts {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(231, 229, 255, 0.18);
}

.member-facts div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(231, 229, 255, 0.14);
}

.member-facts dt,
.member-facts dd {
  margin: 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.member-facts dt {
  color: var(--lavender);
  font-weight: 700;
}

.member-story {
  display: grid;
  gap: 16px;
  max-width: none;
}

.member-story p {
  margin: 0;
  color: rgba(231, 229, 255, 0.72);
  font-size: 16px;
  line-height: 1.78;
}

.member-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-content: start;
  gap: 14px;
}

.member-media-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #090a0a;
}

.member-profile-card--no-gallery {
  grid-template-columns: 1fr;
  max-width: 1040px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(12px);
}

.image-lightbox img {
  display: block;
  width: auto;
  max-width: min(92vw, 1180px);
  max-height: 84vh;
  object-fit: contain;
  border: 1px solid rgba(231, 229, 255, 0.22);
  background: #050606;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.image-lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  display: grid;
  width: 44px;
  aspect-ratio: 1 / 1;
  place-items: center;
  border: 1px solid rgba(231, 229, 255, 0.34);
  border-radius: 50%;
  color: var(--lavender);
  background: rgba(12, 13, 13, 0.78);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(193, 229, 78, 0.72);
  color: var(--lime);
  outline: 0;
}

.video-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background: #0c0d0d;
}

.video-label {
  width: min(1120px, 100%);
  margin: 0 auto 14px;
  color: #5c6f16;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-placeholder {
  position: relative;
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.09), transparent 24%),
    #030404;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #030404;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  transform: translate(-50%, -50%);
}

.video-ready .play-mark {
  display: none;
}

.play-mark::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 22px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 22px solid rgba(255, 255, 255, 0.8);
}

.closer {
  background: #000;
}

.section-title {
  max-width: var(--page);
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p {
  max-width: 680px;
  margin: 0 auto;
}

.feature-grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-grid article {
  min-height: 420px;
  padding: 0;
  border: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.feature-grid article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.feature-grid h3 {
  margin: 22px 22px 12px;
  font-size: clamp(21px, 1.7vw, 24px);
  line-height: 1.12;
  text-align: left;
}

.feature-grid p {
  margin: 0 22px 24px;
  font-size: 16px;
}

.sonar-proof-section {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(64px, 7vw, 104px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 16% 18%, rgba(62, 215, 232, 0.12), transparent 28%),
    linear-gradient(180deg, #000 0%, #071012 56%, #000 100%);
  border-top: 1px solid rgba(231, 229, 255, 0.1);
}

.sonar-proof-head {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sonar-proof-head h2 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.sonar-proof-head p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(231, 229, 255, 0.72);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.7;
}

.sonar-proof-context {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(18px, 3vw, 32px);
  width: min(100%, 1240px);
  margin: 0 auto;
  align-items: stretch;
}

.sonar-underwater-card {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: #080c0d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.sonar-underwater-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sonar-underwater-card figcaption {
  padding: 18px 20px 20px;
  color: rgba(231, 229, 255, 0.7);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.sonar-proof-notes {
  display: grid;
  align-content: stretch;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(62, 215, 232, 0.08), transparent 48%),
    #111417;
}

.sonar-proof-notes div {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(231, 229, 255, 0.12);
}

.sonar-proof-notes div:last-child {
  border-bottom: 0;
}

.sonar-proof-notes dt,
.sonar-proof-notes dd {
  margin: 0;
}

.sonar-proof-notes dt {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.sonar-proof-notes dd {
  color: rgba(231, 229, 255, 0.74);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.sonar-reconstruction-module {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(62, 215, 232, 0.18);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.04), rgba(231, 229, 255, 0.015)),
    rgba(6, 10, 11, 0.92);
}

.sonar-reconstruction-module .sonar-reconstruction-showcase {
  gap: clamp(14px, 2vw, 22px);
}

.sonar-reconstruction-module .sonar-reconstruction-view {
  border-radius: 8px;
}

.spec-band {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  align-items: center;
  gap: 0;
  background: #000;
}

.spec-band > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.spec-list {
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 72px);
}

.spec-list div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(231, 229, 255, 0.16);
}

.spec-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-list strong {
  font-size: clamp(22px, 2.4vw, 32px);
}

.reserve {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  background: var(--dark);
  color: #fff;
}

.reserve p {
  color: rgba(255, 255, 255, 0.72);
}

.reserve-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(231, 229, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.025)),
    #0e0f0f;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.reserve-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.reserve-points li {
  color: var(--lavender);
  font-size: 16px;
}

.reserve-points li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.payment-panel {
  gap: 18px;
}

.payment-panel h3 {
  margin: 0;
  color: var(--lavender);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.05;
  text-align: left;
}

.payment-panel > p:first-of-type {
  margin: -4px 0 0;
  color: rgba(231, 229, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.payment-eyebrow {
  color: #6f871f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.payment-button {
  width: 100%;
  min-height: 58px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.payment-alert {
  padding: 15px 16px;
  border: 1px solid rgba(231, 229, 255, 0.16);
  background: rgba(231, 229, 255, 0.055);
  color: var(--lavender);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.shipping-note {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  border: 1px solid rgba(193, 229, 78, 0.24);
  background: rgba(193, 229, 78, 0.065);
}

.shipping-note span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.shipping-note strong {
  color: var(--lavender);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.spots-meter {
  display: grid;
  gap: 12px;
  padding: 18px 18px 17px;
  border: 1px solid rgba(193, 229, 78, 0.24);
  background: rgba(231, 229, 255, 0.055);
  color: #fff;
}

.spots-meter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.spots-meter-top span {
  color: var(--lime);
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

.spots-track {
  position: relative;
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(231, 229, 255, 0.18);
}

.spots-track span {
  display: block;
  position: static;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.fine-print {
  margin: 0;
  color: rgba(231, 229, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.65;
}

.waitlist-link {
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.verify-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(193, 229, 78, 0.13), transparent 32%),
    linear-gradient(180deg, #050606 0%, #000 100%);
}

.verify-header {
  position: relative;
  grid-template-columns: auto 1fr;
}

.verify-shell {
  display: grid;
  min-height: calc(100vh - 75px);
  place-items: center;
  padding: clamp(36px, 8vw, 86px) 18px;
}

.verify-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background:
    linear-gradient(130deg, rgba(231, 229, 255, 0.08), rgba(231, 229, 255, 0.02)),
    #080909;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
}

.verify-copy,
.verify-box {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 58px);
}

.verify-copy h1 {
  max-width: 560px;
  margin: 0;
  color: var(--lavender);
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.verify-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(231, 229, 255, 0.76);
  font-size: 16px;
  line-height: 1.65;
}

.verify-box {
  border-left: 1px solid rgba(231, 229, 255, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.verify-choice {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(231, 229, 255, 0.14);
  background: rgba(231, 229, 255, 0.055);
}

.verify-choice span {
  color: rgba(231, 229, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verify-choice strong {
  color: var(--lavender);
  font-size: 30px;
  line-height: 1;
}

.turnstile-widget {
  display: grid;
  min-height: 74px;
  align-items: center;
}

.verify-status {
  margin: 0;
  color: rgba(231, 229, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.verified-actions {
  display: grid;
  gap: 12px;
}

.verified-checkout[hidden] {
  display: none;
}

.reserve-form input {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.faq {
  max-width: var(--page);
  margin: 0 auto;
}

.faq h2,
.privacy h2 {
  text-align: center;
}

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

details {
  border: 1px solid var(--line);
  background: #000;
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  font-size: 16px;
}

details a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy {
  max-width: var(--page);
  margin: 0 auto;
}

.privacy-copy {
  max-width: 860px;
  margin: 0 auto;
}

.privacy-copy p {
  margin: 0 0 16px;
}

.privacy-copy a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.policy-hero {
  padding: clamp(78px, 10vw, 130px) clamp(18px, 6vw, 72px) clamp(40px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(12, 19, 23, 0.72), rgba(0, 0, 0, 0.95)),
    #000;
  text-align: center;
}

.policy-hero .eyebrow {
  display: block;
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-hero h1 {
  margin: 0 auto 18px;
  max-width: 820px;
  color: var(--lavender);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.policy-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.policy-layout {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 48px) clamp(68px, 8vw, 108px);
  background: #000;
}

.policy-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(231, 229, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(231, 229, 255, 0.035), rgba(231, 229, 255, 0.015)),
    rgba(14, 18, 21, 0.88);
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: clamp(23px, 3vw, 30px);
  text-align: left;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.policy-card p {
  margin: 0;
}

.policy-card p + p {
  margin-top: 14px;
}

.policy-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.policy-card a {
  color: var(--lime);
}

.footer {
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(260px, 0.65fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  padding: clamp(44px, 6vw, 72px) clamp(22px, 6vw, 76px);
  border-top: 1px solid rgba(231, 229, 255, 0.12);
  background:
    radial-gradient(circle at 8% 18%, rgba(193, 229, 78, 0.08), transparent 32%),
    #080909;
  color: #fff;
}

.footer a {
  color: var(--lavender);
  text-decoration: none;
}

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

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 580px;
}

.footer-brand strong:not(.footer-logo) {
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
}

.footer-logo {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
  width: fit-content;
  color: #fff;
  line-height: 1;
}

.footer-logo img {
  width: min(154px, 42vw);
  height: auto;
}

.footer-logo .logo-tm {
  font-size: 11px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: rgba(231, 229, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-list {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
  gap: 14px 24px;
  max-width: 560px;
  font-style: normal;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  color: rgba(231, 229, 255, 0.86);
  font-size: 13px;
  line-height: 1.48;
}

.footer-contact-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 4px;
}

.footer-social-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: none;
}

.footer-social-icon svg rect,
.footer-social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social-icon svg path + path {
  fill: #080909;
  stroke: none;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  color: var(--lime);
  opacity: 1;
  outline: 0;
  transform: translateY(-1px);
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
}

.footer-nav-links a {
  color: var(--lavender);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-nav-links a:hover,
.footer-nav-links a:focus-visible {
  color: var(--lime);
  outline: 0;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(231, 229, 255, 0.12);
  color: rgba(231, 229, 255, 0.52);
  font-size: 12px;
  line-height: 1.5;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-legal a {
  color: rgba(231, 229, 255, 0.72);
  font-weight: 700;
}

.footer-legal a[aria-current="page"] {
  color: var(--lime);
}

@media (max-width: 980px) {
  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 18px;
  }

  .footer-brand p {
    max-width: none;
  }

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

  .footer-nav-links {
    gap: 18px;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .shop-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-rows: 58px auto;
    gap: 0;
    min-height: 108px;
    padding: 0 clamp(16px, 4vw, 26px) 10px;
  }

  .hamburger {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 42px;
    overflow-x: auto;
    padding: 5px;
    border: 1px solid rgba(231, 229, 255, 0.16);
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(231, 229, 255, 0.07), rgba(231, 229, 255, 0.025)),
      rgba(13, 18, 22, 0.88);
    color: rgba(231, 229, 255, 0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 clamp(10px, 2.6vw, 14px);
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
  }

  .logo img {
    width: clamp(112px, 30vw, 138px);
  }

  .slideshow {
    min-height: 720px;
  }

  .slide--product .slide-picture img,
  .slide--product img {
    object-position: center bottom;
    padding-top: 0;
  }

  .row,
  .spec-band,
  .reserve,
  .verify-card,
  .team-story,
  .team-profile-panel,
  .member-profile-card,
  .member-profile-card--no-gallery {
    grid-template-columns: 1fr;
  }

  .member-media-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .verify-box {
    border-left: 0;
    border-top: 1px solid rgba(231, 229, 255, 0.12);
  }

  .row.reverse .media-card {
    order: 0;
  }

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

  .sonar-proof-context {
    grid-template-columns: 1fr;
  }

  .sonar-reconstruction-module .sonar-reconstruction-view {
    min-height: min(62vw, 480px);
  }

  .field-feedback {
    grid-template-columns: 1fr;
  }

  .field-feedback-copy {
    position: static;
    max-width: 760px;
  }

  .evidence-carousel-track {
    margin-right: calc(clamp(18px, 5vw, 64px) * -1);
    padding-right: clamp(18px, 5vw, 64px);
  }

  .team-profile-avatar {
    width: 176px;
  }

  .team-profile-bio {
    width: min(100%, 360px);
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .member-hero {
    --member-hero-mobile-image-height: min(62vh, 520px);
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 0;
    background: #0b0d0e;
  }

  .member-hero--leo {
    --member-hero-mobile-image-height: min(64vh, 540px);
  }

  .member-hero--chester {
    --member-hero-mobile-image-height: min(58vh, 500px);
  }

  .member-hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: var(--member-hero-mobile-image-height);
    object-fit: cover;
    object-position: center 38%;
    opacity: 1;
    filter: brightness(0.92) contrast(1.04);
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 74%,
      rgba(0, 0, 0, 0.86) 84%,
      rgba(0, 0, 0, 0.36) 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 74%,
      rgba(0, 0, 0, 0.86) 84%,
      rgba(0, 0, 0, 0.36) 94%,
      transparent 100%
    );
    z-index: 0;
  }

  .member-hero--william .member-hero-bg {
    object-position: 54% 42%;
    filter: brightness(0.96) contrast(1.03);
  }

  .member-hero--chester .member-hero-bg {
    height: var(--member-hero-mobile-image-height);
    object-position: 55% center;
  }

  .member-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--member-hero-mobile-image-height) - 340px);
    z-index: 1;
    display: block;
    height: 430px;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(11, 13, 14, 0) 0%,
      rgba(11, 13, 14, 0.06) 16%,
      rgba(11, 13, 14, 0.2) 34%,
      rgba(11, 13, 14, 0.5) 58%,
      rgba(11, 13, 14, 0.86) 82%,
      #0b0d0e 100%
    );
    transform: translateY(8px);
  }

  .member-hero-copy {
    position: relative;
    z-index: 2;
    width: min(100% - 36px, 620px);
    padding: 24px 0 28px;
  }

  .member-hero h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .member-hero-summary {
    font-size: 16px;
  }

  .member-detail {
    padding: 10px 18px 36px;
  }

  .member-profile-card,
  .member-profile-card--no-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 18px;
  }

  .member-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .member-media-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-gallery--mobile-fill {
    justify-items: stretch;
  }

  .team-profile-gallery--mobile-fill div {
    width: 100%;
    aspect-ratio: auto;
  }

  .team-profile-gallery--mobile-fill img {
    height: auto;
    object-fit: contain;
    background: transparent;
  }
}

@media (max-width: 760px) {
  .hero-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(560px, calc(100% - 56px));
    bottom: 58px;
    padding: 10px;
    border-radius: 20px;
  }

  .hero-feature-item {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 58px;
    gap: 9px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .hero-feature-icon {
    width: 32px;
    height: 32px;
    padding: 6px;
  }
}

@media (max-width: 620px) {
  .announcement {
    grid-template-columns: 1fr;
    font-size: 12px;
    min-height: 38px;
    padding: 6px 12px;
  }

  .slideshow {
    min-height: 0;
    padding-bottom: 48px;
  }

  .slide {
    position: relative;
    display: none;
    min-height: 0;
    opacity: 1;
    pointer-events: none;
  }

  .slide.active {
    display: block;
    pointer-events: auto;
  }

  .slide-picture,
  .slide img,
  .slide--product .slide-picture img,
  .slide--product img {
    position: relative;
    display: block;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .slide--product .slide-picture img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center bottom;
  }

  .slide-shade {
    display: none;
  }

  .slide-copy {
    width: auto;
    margin: 0;
    padding: 26px 18px 22px;
    text-align: center;
    background: #000;
  }

  .hero-badge {
    margin: 0 auto 14px;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero-badge-icon {
    width: 15px;
    height: 15px;
  }

  .slide-copy h1 {
    font-size: 36px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .slide-copy p {
    max-width: 320px;
    margin-inline: auto;
    font-size: 15px;
  }

  .desktop-copy {
    display: none;
  }

  .mobile-copy {
    display: inline;
  }

  .slide-copy .button {
    margin-inline: auto;
  }

  .slide-feature-tags {
    justify-content: center;
    gap: 10px;
    margin: 16px auto 0;
  }

  .slide-feature-tag {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .slide-feature-icon {
    width: 15px;
    height: 15px;
  }

  .hero-feature-strip {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
    margin: 0 18px 58px;
    padding: 10px;
    border-radius: 18px;
    transform: none;
  }

  .hero-feature-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    min-height: 54px;
    padding: 8px;
    border-radius: 14px;
    font-size: 10px;
  }

  .hero-feature-icon {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  .banner-card {
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .banner-card::after {
    display: none;
  }

  .banner-card > img {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .banner-box {
    margin: 0;
    padding: 28px 18px 44px;
    width: auto;
    text-align: center;
    text-shadow: none;
    background: #000;
  }

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

  .feature-grid article {
    min-height: auto;
  }

  .sonar-proof-section {
    padding: 44px 18px;
  }

  .sonar-proof-head {
    text-align: left;
  }

  .sonar-proof-head p {
    margin: 0;
  }

  .sonar-underwater-card img {
    aspect-ratio: 4 / 3;
  }

  .sonar-reconstruction-module {
    padding: 10px;
  }

  .sonar-reconstruction-module .sonar-reconstruction-view {
    min-height: 380px;
  }

  .team-section {
    padding-inline: 18px;
  }

  .field-tests-teaser {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .field-tests-card {
    min-height: 220px;
    padding: 22px;
  }

  .field-feedback {
    padding: 36px 18px;
  }

  .field-feedback-copy {
    gap: 14px;
  }

  .evidence-carousel-controls {
    padding-top: 0;
  }

  .evidence-carousel-button {
    width: 40px;
    font-size: 26px;
  }

  .evidence-carousel-track {
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
  }

  .evidence-card {
    flex-basis: min(310px, 84vw);
  }

  .evidence-card img {
    aspect-ratio: 4 / 5;
  }

  .evidence-card-copy {
    padding: 18px;
  }

  .evidence-proof-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feedback-card {
    min-height: 0;
    padding: 20px;
  }

  .feedback-card:nth-child(even) {
    transform: none;
  }

  .field-test-hero {
    padding: 96px 18px 42px;
  }

  .field-test-gallery {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .field-test-item div {
    padding: 18px;
  }

  .field-test-note {
    padding: 34px 18px;
  }

  .team-story,
  .team-profile-panel {
    border-radius: 0;
  }

  .team-story {
    padding: 22px 18px;
  }

  .team-story p {
    font-size: 15px;
  }

  .team-profile-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .spec-band > img {
    height: auto;
    min-height: 0;
    object-fit: contain;
    background: #000;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 18px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-nav-links {
    gap: 16px;
  }

  .verify-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .verify-header .nav {
    display: none;
  }

  .verify-shell {
    min-height: calc(100vh - 66px);
    padding: 18px;
  }

  .verify-copy,
  .verify-box {
    padding: 26px 18px;
  }

  .verify-copy h1 {
    font-size: 36px;
  }
}
