:root {
  --navy: #062744;
  --navy-deep: #001f3a;
  --ink: #09233b;
  --cyan: #12d8ea;
  --cyan-soft: #8ff8ff;
  --mist: #f7fafc;
  --line: #dce5ec;
  --muted: #687986;
  --coral: #c94c55;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--sans);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.is-page-entering {
  opacity: 0;
  transform: translateY(10px);
}

body.is-page-exiting {
  opacity: 0;
  transform: translateY(-8px);
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(90deg, rgba(2, 34, 60, 0.42), rgba(255, 255, 255, 0.38));
  backdrop-filter: blur(14px);
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 16px;
  border-color: rgba(6, 39, 68, 0.08);
  background: rgba(251, 253, 254, 0.88);
  box-shadow: 0 12px 34px rgba(6, 39, 68, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 9px;
  background: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(0, 31, 58, 0.2);
  overflow: hidden;
}

.brand-mark::before,
.report-brand-mark::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("ag-labs-logo.webp") center / contain no-repeat;
  transition: filter 180ms ease, opacity 180ms ease;
}

.brand-mark svg {
  display: none;
}

.brand-text {
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.site-header.is-scrolled .brand-text,
.site-header.menu-open .brand-text {
  color: var(--ink);
}

.site-header.is-scrolled .brand-mark {
  background: rgba(6, 39, 68, 0.06);
  box-shadow: none;
}

.site-header.is-scrolled .brand-mark::before,
.site-header.menu-open .brand-mark::before {
  filter: none;
}

.site-header:not(.is-scrolled) .brand-mark::before,
.site-footer .brand-mark::before,
.report-brand-mark::before {
  filter: brightness(0) invert(1);
}

.brand-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(9, 35, 59, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:not(.button) {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--cyan);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 30px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 16px 30px rgba(0, 31, 58, 0.18);
}

.button-outline {
  border: 1px solid var(--navy-deep);
  color: var(--navy-deep);
}

.button-submit {
  color: var(--white);
  background: #c94c55;
  box-shadow: 0 18px 35px rgba(201, 76, 85, 0.24);
}

.button-submit:hover {
  background: #b6424a;
}

.not-found-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 80px;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.92), rgba(247, 250, 252, 0.98)),
    url("about-hero-lab.webp") center/cover no-repeat;
}

.not-found-hero {
  width: min(760px, 100%);
  padding: 56px 40px;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(6, 39, 68, 0.12);
  text-align: center;
}

.not-found-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.95;
}

.not-found-copy {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.button-cyan {
  color: var(--navy-deep);
  background: var(--cyan);
  box-shadow: 0 18px 35px rgba(18, 216, 234, 0.24);
}

.button-glass {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.button-glass svg {
  width: 18px;
  height: 18px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  width: min(420px, calc(100% - 32px));
  align-items: flex-end;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(6, 39, 68, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(6, 39, 68, 0.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-page .cookie-banner {
  border-color: rgba(201, 76, 85, 0.22);
  background: linear-gradient(180deg, rgba(255, 245, 246, 0.98), rgba(255, 235, 237, 0.98));
  box-shadow: 0 24px 60px rgba(201, 76, 85, 0.2);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-copy {
  flex: 1 1 auto;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.home-page .cookie-banner-copy {
  color: #95131f;
}

.cookie-banner-actions {
  flex: 0 0 auto;
}

.cookie-banner-button {
  min-height: 44px;
  padding-inline: 18px;
}

.home-page .cookie-banner-button {
  background: #c94c55;
  box-shadow: 0 16px 30px rgba(201, 76, 85, 0.24);
}

.home-page .cookie-banner-button:hover {
  background: #b6424a;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 31, 58, 0.98) 0%, rgba(0, 31, 58, 0.78) 27%, rgba(0, 31, 58, 0.28) 57%, rgba(0, 31, 58, 0.1) 100%),
    url("hero-lab-pipette.webp") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 12.5% 100%;
  opacity: 0.45;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 31, 58, 0.72), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 48px));
  margin-left: clamp(24px, 27vw, 350px);
  padding-top: 26vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 7.3vw, 104px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero h1 em {
  display: block;
  color: var(--cyan);
  font-style: italic;
  font-weight: 500;
}

.hero-copy {
  max-width: 610px;
  margin: 32px 0 36px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 88px 6vw 46px;
  background: #fbfcfd;
}

.metric {
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.metric span,
.metric small {
  display: block;
}

.metric span {
  margin-top: -6px;
  font-weight: 700;
}

.metric small {
  margin-top: 8px;
  color: var(--muted);
}

.metric-warm strong,
.metric-warm small {
  color: var(--coral);
}

.notice {
  display: flex;
  justify-content: center;
  padding: 0 24px 74px;
  background: #fbfcfd;
}

.notice p {
  width: min(680px, 100%);
  margin: 0;
  padding: 20px 28px;
  border: 1px solid #edf2f6;
  border-radius: 3px;
  color: #b4bec7;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.services {
  padding: 92px 32px 78px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.compact {
  width: 100%;
  max-width: none;
  margin: 0 0 26px;
  text-align: left;
}

.section-heading.compact h2,
.section-heading.compact p:last-child {
  margin-left: 0;
}

.centered {
  justify-content: center;
  margin-bottom: 16px;
}

.section-heading h2,
.about h2,
.verify h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  max-width: 1210px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 24px;
}

.service-card {
  min-height: 216px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 216, 234, 0.35);
  box-shadow: 0 24px 50px rgba(6, 39, 68, 0.08);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: #edf1f4;
}

.service-icon.cyan {
  color: var(--cyan);
  background: #e2fdff;
}

.service-icon.muted {
  color: #6d7e8e;
}

.service-icon.pale {
  color: #b8c7d1;
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.service-card p {
  margin: 0;
  color: #5f7280;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.text-link {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
  align-items: center;
  gap: 10px;
  color: #00bdcc;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 90px 8vw;
  background: #f2f7f9;
}

.about p:last-child {
  margin: auto 0;
  color: #586d7c;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.verify {
  position: relative;
  padding: 96px 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 31, 58, 0.7), rgba(0, 31, 58, 0.88)),
    url("https://images.unsplash.com/photo-1581093588401-fbb62a02f120?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.verify-panel {
  width: min(620px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.verify-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  color: var(--cyan);
}

.verify p {
  margin: 18px auto 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.verify-form {
  display: grid;
  gap: 12px;
}

.verify-form label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verify-form div {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.verify-form input {
  width: min(300px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  font: 700 15px var(--sans);
  outline: none;
}

.verify-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.verify-home-cta {
  width: auto;
  min-width: 210px;
  margin-top: 4px;
  align-self: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
  padding: 66px 32px 28px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-deep);
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 0 0 13px;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 28px;
}

@media (max-width: 900px) {
  .site-header {
    padding: 16px 20px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
  }

  .site-header.is-scrolled .menu-toggle span,
  .site-header.menu-open .menu-toggle span {
    background: var(--navy-deep);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 24px;
    border: 1px solid rgba(6, 39, 68, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 44px rgba(6, 39, 68, 0.14);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 16px;
  }

  .site-header.menu-open {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-links .button-submit {
    margin-left: 0 !important;
  }

  .hero-content {
    margin-left: 24px;
    padding-top: 22vh;
  }

  .metrics,
  .service-grid,
  .about,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 36px;
  }
}

@media (max-width: 620px) {
  .brand-text {
    font-size: 17px;
  }

  .hero {
    min-height: 820px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 18vh;
  }

  .hero-actions,
  .verify-form div,
  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }

  .button,
  .verify-form input {
    width: 100%;
  }

  .cookie-banner {
    right: 16px;
    left: 16px;
    bottom: 16px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-button {
    width: 100%;
  }

  .site-footer {
    gap: 32px;
    padding-inline: 20px;
  }

  .footer-bottom {
    gap: 14px;
    align-items: flex-start;
  }

  .services {
    padding-inline: 20px;
  }

  .service-card {
    padding: 26px;
  }

  .report-shell {
    aspect-ratio: auto;
  }

  .verify-report {
    width: calc(100% - 16px);
  }

  .report-band {
    padding: 20px 16px;
  }

  .report-body {
    padding: 18px 16px 18px;
  }

  .report-topcards {
    gap: 10px;
  }

  .report-pill {
    min-width: 0;
    padding: 10px 12px;
  }

  .report-dates {
    gap: 8px;
  }

  .report-sample,
  .report-bottom {
    gap: 12px;
  }

  .report-panel-sample,
  .report-vial,
  .report-signature,
  .report-verify {
    border-radius: 14px;
  }

  .report-actions {
    flex-direction: column;
    gap: 10px;
  }

  .report-actions-outside {
    width: calc(100% - 16px);
    margin-top: 12px;
  }

  .report-actions .button {
    width: 100%;
  }

  .report-verify {
    grid-template-columns: 1fr;
  }

  .report-qr {
    width: 92px;
    justify-self: start;
  }
}

.service-page {
  background: #f7fafc;
}

.service-main {
  padding-top: 110px;
}

.service-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 26px;
}

.service-hero .eyebrow {
  margin-bottom: 10px;
}

.service-hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.service-intro {
  max-width: 810px;
  margin: 0 0 26px;
  color: #647381;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.currency-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(100%, 1160px);
  margin-top: 38px;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.currency-bar span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  color: #213246;
  font-weight: 700;
  border-right: 1px solid #e8edf1;
}

.currency-bar span:last-child {
  border-right: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.dot.usd {
  background: #2ecc71;
}

.dot.eur {
  background: #0f2e54;
}

.dot.cny {
  background: #18c9df;
}

.warning-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  width: min(100%, 1160px);
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid #f0e0a1;
  border-radius: 16px;
  color: #9a6920;
  background: #fff9df;
}

.warning-banner span {
  flex: 0 0 auto;
  margin-top: 1px;
}

.warning-banner p {
  margin: 0;
  line-height: 1.55;
}

.service-list {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
}

.service-accordion {
  margin-bottom: 18px;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.service-accordion summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.summary-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #34d29a;
  box-shadow: 0 0 0 5px rgba(52, 210, 154, 0.1);
}

.summary-dot.blue {
  background: #29b8e8;
  box-shadow: 0 0 0 5px rgba(41, 184, 232, 0.1);
}

.summary-title {
  color: #11263f;
  font-size: 18px;
  font-weight: 800;
}

.summary-count {
  margin-left: 8px;
  color: #74828f;
  font-size: 14px;
}

.service-accordion[open] summary {
  border-bottom: 1px solid #e8edf1;
}

.table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid #edf1f4;
}

.price-table th {
  color: #768290;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-table td {
  color: #15304b;
  font-size: 15px;
  font-weight: 700;
}

.price-table tbody tr td:nth-child(2) {
  color: #31a154;
}

.price-table tbody tr td:nth-child(3) {
  color: #0f2e54;
}

.price-table tbody tr td:nth-child(4) {
  color: #2a94b5;
}

.steps {
  width: min(1180px, calc(100% - 48px));
  margin: 76px auto 0;
  padding-bottom: 24px;
}

.compact {
  text-align: left;
  margin-bottom: 26px;
}

.compact h2 {
  font-size: clamp(38px, 4.8vw, 54px);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 24px 10px 0 0;
}

.step-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

.step-card h3,
.custom-quote h3 {
  margin: 0 0 12px;
  color: #12263d;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.step-card p,
.custom-quote p {
  margin: 0;
  color: #617181;
  font-size: 16px;
  line-height: 1.65;
}

.custom-quote {
  width: min(1180px, calc(100% - 48px));
  margin: 42px auto 0;
  padding: 26px 0 70px;
}

.quote-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.verify-anchor {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 30px;
}

.verify-anchor a {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 800;
}

.service-footer {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .currency-bar,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .currency-bar {
    display: grid;
  }

  .currency-bar span {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #e8edf1;
  }

  .quote-actions {
    flex-direction: column;
  }
}

.about-page {
  background: #f7fafc;
}

.about-main {
  padding-top: 0;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 44px 32px 36px;
  border-radius: 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 31, 58, 0.28) 0%, rgba(0, 31, 58, 0.52) 45%, rgba(0, 31, 58, 0.82) 100%),
    url("about-hero-lab.webp") center / cover no-repeat;
}

.about-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 31, 58, 0.6) 0%, rgba(0, 31, 58, 0.2) 42%, rgba(0, 31, 58, 0.48) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.about-hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.about-hero h1 em {
  color: var(--cyan);
  font-style: italic;
}

.about-hero p {
  max-width: 980px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.6;
}

.standard-section,
.journey-section,
.team-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 88px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.value-card {
  padding: 26px 28px;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  background: #fff;
}

.value-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: #617181;
  font-size: 16px;
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.timeline article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid #e6edf1;
}

.timeline strong {
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
}

.timeline p {
  margin: 0;
  color: #5e6f7d;
  font-size: 17px;
  line-height: 1.65;
}

.team-section .section-heading p {
  max-width: 860px;
  margin: 14px auto 0;
  color: #667683;
  font-size: 18px;
  line-height: 1.65;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.team-stats article {
  padding: 26px 18px;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.team-stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 0.9;
}

.team-stats span {
  display: block;
  margin-top: 10px;
  color: #657583;
  font-size: 14px;
  font-weight: 700;
}

.about-footer {
  margin-top: 88px;
}

@media (max-width: 900px) {
  .value-grid,
  .team-stats {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-hero {
    min-height: 82vh;
    padding: 36px 20px 28px;
  }
}

.contact-page {
  background: #f7fafc;
}

.contact-main {
  padding-top: 108px;
}

.contact-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 12px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.contact-copy {
  max-width: 760px;
  margin: 0 auto;
  color: #667683;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
}

.contact-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.contact-info-stack {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid #dfe6eb;
  border-radius: 18px;
  background: #fff;
}

.info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  color: var(--cyan);
  background: #e3fdff;
}

.info-icon svg {
  width: 23px;
  height: 23px;
}

.contact-info-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0;
  color: #667683;
  line-height: 1.55;
}

.contact-map-wrap {
  position: relative;
  min-height: 420px;
  border: 1px solid #dfe6eb;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 10px;
  color: #16324b;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(6, 39, 68, 0.12);
}

.contact-form-card {
  grid-column: 2;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #dfe6eb;
  border-radius: 18px;
  background: #fff;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: #16324b;
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #e3eaf0;
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
  font: 600 15px var(--sans);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(18, 216, 234, 0.65);
  box-shadow: 0 0 0 4px rgba(18, 216, 234, 0.14);
}

.contact-submit {
  justify-self: start;
  min-width: 180px;
}

.contact-footer {
  margin-top: 88px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    grid-column: auto;
  }
}

.verify-page {
  background: #f7fafc;
}

.verify-main {
  padding-top: 108px;
}

.verify-hero {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 24px;
  text-align: center;
}

.verify-hero-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--cyan);
}

.verify-hero h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.verify-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #667683;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
}

.verify-card {
  width: min(760px, calc(100% - 48px));
  margin: 18px auto 0;
  padding: 28px;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 18px 42px rgba(6, 39, 68, 0.08);
}

.verify-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.verify-card-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.verify-card-note {
  max-width: 300px;
  margin: 0;
  color: #607180;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.verify-form-page {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
}

.verify-entry-panel {
  width: 100%;
  padding: 18px;
  border: 1px solid #dde5eb;
  border-radius: 16px;
  background: #fff;
}

.verify-entry-panel {
  display: grid;
  gap: 10px;
}

.verify-form .verify-entry-panel,
.verify-form .verify-entry-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.verify-entry-panel label {
  display: block;
  width: 100%;
  color: #607180;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verify-entry-field {
  display: grid;
  gap: 10px;
}

.verify-entry-panel input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8e2ea;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.verify-entry-panel input:focus {
  border-color: rgba(18, 216, 234, 0.8);
  box-shadow: 0 0 0 4px rgba(18, 216, 234, 0.14);
  outline: 0;
}

.verify-helper {
  margin: 0;
  color: #74828f;
  font-size: 14px;
}

.verify-puzzle {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 10px 12px;
  border: 1px solid #dfe6eb;
  border-radius: 14px;
  background: #f8fafc;
}

.verify-piece {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 12px 24px rgba(0, 31, 58, 0.16);
  cursor: grab;
}

.verify-piece svg {
  width: 26px;
  height: 26px;
}

.verify-slot {
  display: grid;
  width: 54px;
  height: 54px;
  margin-left: auto;
  place-items: center;
  border: 2px dashed #cdd5dc;
  border-radius: 12px;
  color: #a8b4be;
  background: #fff;
  transition: all 180ms ease;
}

.verify-slot.is-over {
  border-color: var(--cyan);
  background: rgba(18, 216, 234, 0.08);
  box-shadow: 0 0 0 4px rgba(18, 216, 234, 0.12);
}

.verify-slot.is-placed {
  border-style: solid;
  border-color: rgba(18, 216, 234, 0.4);
  background: rgba(18, 216, 234, 0.1);
}

.verify-submit {
  width: 100%;
  min-height: 56px;
}

.verify-submit.is-disabled,
.verify-submit[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.verify-note {
  width: min(760px, calc(100% - 48px));
  margin: 16px auto 0;
  color: #74828f;
  font-size: 14px;
  text-align: center;
}

.verify-footer {
  margin-top: 88px;
}

.verify-report {
  width: min(1120px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 0 0 12px;
  scroll-margin-top: 132px;
}

.verify-report.is-visible {
  animation: reportReveal 420ms ease;
}

.report-shell {
  padding: 28px;
  border: 1px solid #dfe6eb;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.98));
  box-shadow: 0 28px 60px rgba(6, 39, 68, 0.12);
}

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6edf1;
}

.report-eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.report-header p {
  max-width: 700px;
  margin: 14px 0 0;
  color: #657583;
  font-size: 17px;
  line-height: 1.6;
}

.report-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #136a46;
  font-size: 14px;
  font-weight: 900;
  background: #eaf8f1;
}

.report-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2ecc71;
  box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.12);
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.report-meta-grid article,
.report-panel {
  padding: 18px 18px 20px;
  border: 1px solid #e2e9ee;
  border-radius: 16px;
  background: #fff;
}

.report-meta-grid span {
  display: block;
  margin-bottom: 8px;
  color: #75828d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-meta-grid strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.report-panel-large {
  background: linear-gradient(180deg, #fff, #f8fbfd);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading span {
  color: #74828f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-heading strong {
  color: #136a46;
  font-size: 14px;
  font-weight: 900;
}

.report-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f6;
}

.report-list li:last-child {
  border-bottom: 0;
}

.report-list span {
  color: #74828f;
  font-size: 14px;
  font-weight: 700;
}

.report-list strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-align: right;
}

.report-panel p {
  margin: 0;
  color: #607180;
  font-size: 16px;
  line-height: 1.7;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

@keyframes reportReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .report-header,
  .report-grid,
  .report-meta-grid {
    grid-template-columns: 1fr;
  }

  .report-header {
    flex-direction: column;
  }

  .report-status {
    align-self: flex-start;
  }
}

@media (max-width: 620px) {
  .verify-card,
  .report-shell {
    padding: 22px;
  }

  .report-list li {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .report-list strong {
    text-align: left;
  }
}

/* Verify report template */
.verify-report {
  width: min(794px, calc(100% - 24px));
  margin: 34px auto 0;
  scroll-margin-top: 128px;
}

.verify-report.is-visible {
  animation: reportReveal 420ms ease;
}

.report-shell {
  overflow: hidden;
  padding: 0;
  width: 100%;
  aspect-ratio: 210 / 297;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 28px 60px rgba(6, 39, 68, 0.14);
}

.report-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  color: #fff;
  background: linear-gradient(180deg, #08294b 0%, #072545 100%);
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.report-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.report-brand-mark svg {
  display: none;
}

.report-brand strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.report-brand span,
.report-band-links span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.78;
  font-size: 14px;
  font-weight: 600;
}

.report-band-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.report-band-links svg {
  width: 16px;
  height: 16px;
}

.report-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 26px 22px;
}

.report-toprow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.report-toprow h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.report-toprow p {
  margin: 2px 0 0;
  color: #5f7280;
  font-size: 13px;
  line-height: 1.4;
}

.report-topcards {
  display: flex;
  gap: 14px;
}

.report-pill {
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid #dfe6eb;
  border-radius: 16px;
  text-align: center;
  background: #fff;
}

.report-pill span {
  display: block;
  color: #9aa5b1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-pill strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.report-pill-dark {
  color: #fff;
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}

.report-pill-dark span,
.report-pill-dark strong {
  color: #fff;
}

.report-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.report-dates article {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 76px;
  padding: 12px 10px;
  border: 1px solid #e6edf2;
  border-radius: 14px;
  background: #fbfcfd;
  text-align: center;
}

.report-dates svg {
  width: 18px;
  height: 18px;
  color: #102f4b;
}

.report-dates span {
  color: #b1b9c1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-dates strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.report-sample {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  gap: 16px;
  margin-top: 20px;
}

.report-panel-sample,
.report-vial {
  min-height: 190px;
  border: 1px solid #e6edf2;
  border-radius: 16px;
  background: #fbfcfd;
}

.report-panel-sample {
  padding: 16px 20px 18px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0b2b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-title svg {
  width: 16px;
  height: 16px;
}

.panel-title.compact p {
  margin: 0;
}

.sample-dl {
  margin: 14px 0 0;
}

.sample-dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 0;
}

.sample-dl dt,
.sample-dl dd {
  margin: 0;
  font-size: 14px;
}

.sample-dl dt {
  color: #597083;
}

.sample-dl dd {
  color: var(--ink);
  font-weight: 800;
}

.report-vial {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #95131f 0%, #70131b 100%);
}

.report-vial svg {
  display: block;
  width: 100%;
  height: 100%;
}

.report-vial img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-results {
  margin-top: 20px;
}

.results-card {
  overflow: hidden;
  border: 1px solid #e6edf2;
  border-radius: 16px;
  background: #fff;
}

.results-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(180deg, #08294b 0%, #072545 100%);
}

.results-header svg {
  width: 16px;
  height: 16px;
}

.results-header span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 170px;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  padding: 10px 16px;
  border-right: 1px solid #e5ebf0;
  border-bottom: 1px solid #e5ebf0;
  text-align: center;
  vertical-align: middle;
}

.results-table th:last-child,
.results-table td:last-child {
  border-right: 0;
}

.results-table thead th {
  color: #0b2b4c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #f6f8fa;
}

.results-table tbody td {
  color: #132f49;
  font-size: 15px;
}

.results-side {
  display: grid;
  border-left: 1px solid #e5ebf0;
}

.results-side div {
  display: grid;
  place-items: center;
  padding: 16px 12px;
  text-align: center;
}

.results-side div:first-child {
  color: #fff;
  background: linear-gradient(180deg, #08294b 0%, #072545 100%);
}

.results-side div:last-child {
  background: #f7fafc;
}

.results-side span {
  color: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-side strong {
  display: block;
  margin-top: 6px;
  color: inherit;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.results-side div:last-child strong {
  color: var(--ink);
}

.report-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.report-signature,
.report-verify {
  min-height: 112px;
  padding: 10px 14px;
  border: 1px solid #e6edf2;
  border-radius: 16px;
  background: #fff;
}

.report-signature > span,
.report-verify .panel-title {
  color: #0b2b4c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-signature img {
  display: block;
  width: min(100%, 125px);
  height: auto;
  margin: 2px auto 0;
  object-fit: contain;
}

.report-signature strong {
  display: block;
  color: #12263d;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.report-signature em {
  font-style: italic;
}

.report-verify {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 16px;
  align-items: center;
}

.report-verify-text p {
  margin: 8px 0 10px;
  color: #5d6f7e;
  font-size: 13px;
  line-height: 1.55;
}

.verify-code {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 1px solid #dfe6eb;
  border-radius: 10px;
  color: #0b2b4c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: #fff;
}

.report-qr svg {
  width: 100%;
  height: auto;
  border: 1px solid #dfe6eb;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(6, 39, 68, 0.08);
}

.report-qr img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dfe6eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 39, 68, 0.08);
}

.report-disclaimer {
  margin: 20px 0 0;
  padding-top: 14px;
  border-top: 1px solid #eef2f5;
  color: #a0a9b2;
  font-size: 11px;
  line-height: 1.7;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.report-actions-outside {
  width: min(794px, calc(100% - 24px));
  margin: 18px auto 0;
  justify-content: center;
}

.verify-status {
  margin: 14px 0 0;
  color: #3a6a86;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.verify-status.is-error {
  color: #c94c55;
}

@media (max-width: 620px) {
  .verify-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .verify-card-note {
    max-width: none;
    text-align: left;
  }

  .verify-card,
  .verify-entry-panel {
    border-radius: 14px;
  }

  .verify-submit {
    min-height: 52px;
  }
}

.admin-page {
  background:
    radial-gradient(circle at top left, rgba(18, 216, 234, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 31, 58, 0.12), transparent 28%),
    var(--mist);
}

.admin-badge {
  padding: 10px 14px;
  border: 1px solid rgba(6, 39, 68, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.72);
}

.admin-open-site {
  margin-left: auto;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.admin-login-main {
  display: grid;
  min-height: calc(100vh - 96px);
  place-items: center;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.admin-login-card {
  width: min(520px, 100%);
  padding: 32px;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 35px rgba(6, 39, 68, 0.06);
}

.admin-login-card h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.admin-login-card p {
  margin: 0 0 22px;
  color: #4e6474;
  font-size: 16px;
  line-height: 1.6;
}

.admin-login-form {
  display: grid;
  gap: 14px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
}

.admin-login-form span {
  color: #607180;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-login-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8e2ea;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.admin-login-message {
  margin: 0;
  color: #95131f;
  font-size: 14px;
  line-height: 1.5;
}

.admin-login-message.is-error {
  color: #95131f;
}

.admin-login-button {
  width: 100%;
}

.admin-main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.admin-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.admin-hero p {
  max-width: 640px;
  margin: 14px 0 0;
  color: #4e6474;
  font-size: 17px;
  line-height: 1.6;
}

.admin-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-hero-meta article {
  min-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 30px rgba(6, 39, 68, 0.05);
}

.admin-hero-meta span {
  display: block;
  color: #8091a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-hero-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.admin-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 35px rgba(6, 39, 68, 0.05);
}

.admin-search {
  display: grid;
  gap: 8px;
  flex: 1 1 320px;
}

.admin-search span {
  color: #607180;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-search input,
.admin-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d8e2ea;
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

.admin-search input:focus,
.admin-form input:focus {
  outline: 2px solid rgba(18, 216, 234, 0.22);
  outline-offset: 0;
  border-color: rgba(18, 216, 234, 0.72);
}

.admin-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 18px;
}

.admin-table-card,
.admin-editor-card {
  overflow: hidden;
  border: 1px solid rgba(6, 39, 68, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 35px rgba(6, 39, 68, 0.05);
}

.admin-card-head {
  padding: 18px 20px 0;
}

.admin-card-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.admin-card-head p {
  margin: 6px 0 0;
  color: #607180;
  font-size: 14px;
  line-height: 1.5;
}

.admin-table-wrap {
  overflow: auto;
  margin-top: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e7edf3;
  text-align: left;
}

.admin-table th {
  color: #8091a1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #f8fafc;
}

.admin-table td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.admin-table tr {
  cursor: pointer;
  transition: background 180ms ease;
}

.admin-table tr:hover,
.admin-table tr.is-active {
  background: rgba(18, 216, 234, 0.08);
}

.admin-form {
  padding: 18px 20px 20px;
}

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

.admin-grid label {
  display: grid;
  gap: 8px;
}

.admin-media-field {
  display: grid;
  gap: 10px;
}

.admin-media-field label {
  display: grid;
  gap: 8px;
}

.admin-media-field input[type="file"] {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #d8e2ea;
  border-radius: 12px;
  color: #607180;
  font: inherit;
  background: #fff;
}

.admin-grid span {
  color: #607180;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-span-2 {
  grid-column: span 2;
}

.admin-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #607180;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-results-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.admin-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
}

.admin-result-row input {
  min-height: 48px;
}

.admin-result-remove {
  align-self: stretch;
  border: 1px solid #d8e2ea;
  border-radius: 12px;
  padding: 0 14px;
  color: #c94c55;
  font: inherit;
  font-weight: 800;
  background: #fff;
}

.admin-result-remove:hover {
  border-color: #c94c55;
}

.admin-import {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 900px) {
  .admin-hero,
  .admin-toolbar,
  .admin-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .admin-hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .admin-toolbar-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .admin-main {
    width: calc(100% - 24px);
    padding-top: 114px;
  }

  .admin-toolbar,
  .admin-table-card,
  .admin-editor-card {
    border-radius: 18px;
  }

  .admin-hero-meta {
    grid-template-columns: 1fr;
  }

  .admin-grid,
  .admin-result-row {
    grid-template-columns: 1fr;
  }

  .admin-span-2 {
    grid-column: span 1;
  }

  .admin-toolbar-actions .button,
  .admin-toolbar-actions .admin-import {
    width: 100%;
  }
}

@keyframes reportReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .report-shell {
    aspect-ratio: auto;
    overflow: visible;
  }

  .report-band,
  .report-toprow,
  .report-sample,
  .report-bottom,
  .report-verify,
  .results-grid-wrap {
    grid-template-columns: 1fr;
  }

  .report-band,
  .report-toprow {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-topcards {
    width: 100%;
    flex-direction: column;
  }

  .report-pill {
    width: 100%;
  }

  .report-dates {
    grid-template-columns: 1fr;
  }

  .report-band-links {
    justify-content: flex-start;
  }

  .results-grid-wrap {
    grid-template-columns: 1fr;
  }

  .results-side {
    border-left: 0;
    border-top: 1px solid #e5ebf0;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .verify-report {
    width: calc(100% - 24px);
  }

  .report-shell {
    padding: 16px;
  }

  .report-band,
  .report-body {
    padding-inline: 0;
  }

  .report-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .report-brand {
    justify-content: center;
    gap: 10px;
  }

  .report-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .report-band-links {
    justify-content: center;
    gap: 10px;
  }

  .report-band-links span {
    justify-content: center;
  }

  .report-toprow,
  .report-sample,
  .report-bottom,
  .report-verify,
  .results-grid-wrap {
    gap: 12px;
  }

  .report-topcards,
  .results-side {
    grid-template-columns: 1fr;
  }

  .report-panel,
  .report-signature,
  .report-verify,
  .results-card {
    border-radius: 14px;
  }

  .report-toprow h2 {
    font-size: 26px;
  }

  .report-signature,
  .report-verify,
  .report-panel-sample {
    min-height: auto;
  }

  .report-signature img {
    width: min(100%, 110px);
  }

  .results-table {
    table-layout: fixed;
  }

  .results-table th,
  .results-table td {
    padding: 8px 10px;
    font-size: 13px;
    word-break: break-word;
  }

  .results-table th,
  .results-table td {
    padding-inline: 10px;
  }

  .results-header,
  .results-side div {
    padding-inline: 12px;
  }

  .results-side strong {
    font-size: 22px;
  }

  .report-verify {
    grid-template-columns: 1fr;
  }

  .report-qr {
    max-width: 160px;
    margin-inline: auto;
  }

  .report-actions {
    flex-direction: column;
  }

  .report-actions .button {
    width: 100%;
  }
}
