:root {
  --blue: #1e3a8a;
  --blue2: #2563eb;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  --line: #e2e8f0;
  --card: #ffffff;
  --soft: #eef6ff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #fff 100%);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 76px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0.2px;
  line-height: 1.05;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.brand small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.2;
  margin-top: -4px;
}

.navlinks {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  min-width: 0;
  font-size: 14px;
  color: #334155;
  white-space: nowrap;
}

.navlinks a {
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  text-align: center;
}

.navlinks a:nth-child(1) {
  width: 44px;
}

.navlinks a:nth-child(2) {
  width: 68px;
}

.navlinks a:nth-child(3) {
  width: 84px;
}

.navlinks a:nth-child(4) {
  width: 72px;
}

.navlinks a:nth-child(5) {
  width: 52px;
}

.navlinks a:nth-child(6) {
  width: 76px;
}

.navlinks a:nth-child(7) {
  width: 64px;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--blue2);
  border-color: var(--blue2);
}

.menu-btn {
  justify-self: end;
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 9px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.06);
}

.btn.primary {
  background: var(--blue2);
  color: #fff;
  border-color: var(--blue2);
}

.btn.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.hero {
  min-height: calc(100svh - 76px);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: #f4ebd8;
  isolation: isolate;
}

.hero-media {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  pointer-events: none;
  background: #f4ebd8;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 3vw, 36px) 22px 48px;
}

.hero-copy {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 18px 0 20px;
  letter-spacing: -0.055em;
}

.lead {
  font-size: 18px;
  color: #475569;
  max-width: 720px;
}

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

.product-text-layer {
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
  padding: clamp(44px, 7vw, 86px) 0;
}

.product-text-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 34px;
  align-items: start;
}

.product-text-layer h1 {
  margin: 18px 0 18px;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.product-text-layer .lead {
  max-width: 760px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 34%;
  color: var(--ink);
  background: #eef6ff;
  font-size: 14px;
}

.spec-table td {
  color: #475569;
  font-size: 14px;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

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

.rfq-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.rfq-form textarea,
.rfq-form .full {
  grid-column: 1 / -1;
}

.rfq-form textarea {
  min-height: 126px;
  resize: vertical;
}

.platform-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.platform-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.stat b {
  display: block;
  font-size: 28px;
  color: var(--blue2);
  line-height: 1;
}

.stat span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.04em;
}

.section p.sub {
  color: #64748b;
  margin: 10px 0 0;
  max-width: 760px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
}

.card h3 {
  font-size: 22px;
  line-height: 1.18;
  margin: 0 0 10px;
}

.card p {
  color: #64748b;
  margin: 0;
}

.pill {
  display: inline-flex;
  background: #eff6ff;
  color: var(--blue);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.product-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: #eef2ff;
}

.product-body {
  padding: 22px;
}

.spec-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #eef2f7;
  padding-top: 8px;
  color: #475569;
  font-size: 14px;
}

.spec-list strong {
  color: #0f172a;
}

.band {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: white;
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.band h2 {
  color: #fff;
}

.band p {
  color: #dbeafe;
}

.timeline {
  display: grid;
  gap: 14px;
}

.trow {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: start;
}

.year {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue2);
}

.trow .card {
  padding: 18px;
}

.image-panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}

.image-panel video {
  display: block;
  width: 100%;
  height: auto;
}

.ar99-pro-video-embed {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
  background: #fff;
}

.ar99-pro-video-embed img {
  display: block;
  width: 100%;
  height: auto;
}

.ar99-pro-video-embed video {
  position: absolute;
  left: 10.4%;
  top: 27.4%;
  width: 79.2%;
  height: 64.5%;
  border-radius: 2.4%;
  object-fit: cover;
  background: #f3f4f6;
}

.feature {
  display: flex;
  gap: 14px;
}

.icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 15px;
  background: #eff6ff;
  color: var(--blue2);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid #eef2f7;
  text-align: left;
  font-size: 14px;
}

.table th {
  background: #eff6ff;
  color: var(--blue);
  font-weight: 900;
}

.cta {
  padding: 78px 0;
}

.footer {
  background: #07112b;
  color: #cbd5e1;
  padding: 56px 0 28px;
}

.footer h3,
.footer b {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer a {
  color: #cbd5e1;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 22px;
  color: #94a3b8;
  font-size: 12px;
}

.page-title {
  padding: 72px 0 36px;
  background: linear-gradient(135deg, #eff6ff, #fff);
}

.page-title h1 {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 10px 0;
}

.breadcrumbs {
  font-size: 13px;
  color: #64748b;
}

.anchor-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.anchor-grid a {
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: #334155;
}

.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 20px;
  padding: 16px;
  margin-top: 18px;
}

.product-link {
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.product-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  border-color: #bfdbfe;
}

.product-link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue2);
}

.card-cta:after {
  content: " ->";
}

.mobile-only {
  display: none;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-2,
  .band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .navlinks {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    white-space: normal;
  }

  .navlinks a {
    width: auto;
    text-align: left;
  }

  .navlinks.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .section-head {
    display: block;
  }

  .hero-copy {
    width: 100%;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .grid-3,
  .grid-4,
  .stats {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    padding: 22px;
    border-radius: 28px;
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 68px;
  }

  .brand {
    width: auto;
  }

  .navlinks {
    top: 68px;
  }

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

  .btn {
    justify-content: center;
  }

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

  .section {
    padding: 52px 0;
  }

  .card {
    padding: 20px;
  }
}

.use-cases-page {
  --uc-bg: #f8fafc;
  --uc-surface: #ffffff;
  --uc-surface-strong: #f8fbff;
  --uc-line: #e2e8f0;
  --uc-text: var(--ink);
  --uc-muted: #64748b;
  --uc-accent: var(--blue2);
  --uc-accent-soft: var(--blue);
  --uc-shadow: var(--shadow);
  position: relative;
  color: var(--uc-text);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #fff 100%);
}

.use-cases-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.32;
}

.use-cases-page .topbar {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.use-cases-page .brand,
.use-cases-page .navlinks {
  color: #334155;
}

.use-cases-page .brand small {
  color: var(--muted);
}

.use-cases-page .footer,
.use-cases-page .footer a {
  color: #cbd5e1;
}

.use-cases-page .copyright {
  color: #94a3b8;
}

.use-cases-page .brand-mark {
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  color: #fff;
  box-shadow: none;
}

.use-cases-page .navlinks a:hover,
.use-cases-page .navlinks a.active {
  color: var(--blue2);
  border-color: var(--blue2);
}

.use-cases-page .menu-btn {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.use-cases-main {
  position: relative;
  padding-bottom: 48px;
}

.uc-hero {
  padding: 86px 0 44px;
}

.uc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: end;
}

.uc-hero-copy {
  padding-bottom: 14px;
}

.use-cases-page .uc-hero .breadcrumbs {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.uc-hero h1 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink);
  text-shadow: none;
}

.uc-hero-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(180px, 1fr);
  gap: 16px;
}

.uc-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid #dbeafe;
  box-shadow: var(--uc-shadow);
}

.uc-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(30, 58, 138, 0.08));
  pointer-events: none;
}

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

.uc-shot--tall {
  min-height: 530px;
  grid-row: span 2;
}

.uc-shell {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--uc-surface);
  border: 1px solid var(--uc-line);
  box-shadow: var(--uc-shadow);
}

.uc-shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(219, 234, 254, 0.7);
  pointer-events: none;
}

.uc-section {
  position: relative;
  padding: 18px 0 24px;
}

.uc-section--accent .uc-shell {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.uc-shell--spotlight {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.uc-header {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.uc-header--wide h2 {
  max-width: none;
}

.uc-tag {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--uc-accent);
}

.uc-header h2 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.uc-gallery {
  display: grid;
  gap: 16px;
}

.uc-gallery--confidant {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, 1fr);
}

.uc-gallery--confidant .uc-shot--hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 390px;
}

.uc-gallery--story {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, 1fr);
}

.uc-gallery--story .uc-shot--wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.uc-shot--banner {
  min-height: min(66vw, 520px);
}

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

.uc-duo .uc-shot {
  min-height: 320px;
}

.uc-caption {
  margin: 22px auto 0;
  max-width: 780px;
  color: #475569;
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.35;
  text-align: center;
}

.use-cases-page .footer {
  background: #07112b;
  border-top: 0;
}

@media (max-width: 920px) {
  .use-cases-page .navlinks {
    background: white;
    border-bottom-color: var(--line);
  }

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

  .uc-hero-copy {
    padding-bottom: 0;
  }

  .uc-hero-stack,
  .uc-gallery--confidant {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .uc-gallery--confidant .uc-shot--hero,
  .uc-gallery--story .uc-shot--wide {
    grid-column: 1 / -1;
  }

  .uc-gallery--story,
  .uc-duo {
    grid-template-columns: 1fr;
  }

  .uc-shot--tall {
    min-height: 420px;
  }

  .uc-header h2,
  .uc-header--wide h2 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .uc-hero {
    padding-top: 58px;
  }

  .uc-hero h1 {
    font-size: 58px;
  }

  .uc-hero-stack,
  .uc-gallery--confidant,
  .uc-gallery--story {
    grid-template-columns: 1fr;
  }

  .uc-shot--tall,
  .uc-gallery--confidant .uc-shot--hero,
  .uc-gallery--story .uc-shot--wide,
  .uc-duo .uc-shot,
  .uc-shot--banner {
    min-height: 260px;
    grid-column: auto;
    grid-row: auto;
  }

  .uc-shell,
  .uc-shell--spotlight {
    padding: 20px;
    border-radius: 26px;
  }

  .uc-section {
    padding: 14px 0 18px;
  }

  .uc-caption {
    text-align: left;
    font-size: 18px;
  }
}

.product-image-page {
  background: #fff;
}

.product-image-sequence {
  width: 100%;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.product-image-sequence img,
.product-image-sequence video {
  display: block;
  width: 100%;
  height: auto;
}

.confidant-video-embed {
  position: relative;
  overflow: hidden;
  line-height: 0;
  background: #fff;
}

.confidant-video-embed img {
  display: block;
  width: 100%;
  height: auto;
}

.confidant-video-embed video {
  position: absolute;
  left: 10.42%;
  top: 31.48%;
  width: 79.11%;
  height: 57.96%;
  object-fit: cover;
  background: #f3f4f6;
}

@media (max-width: 760px) {
  .product-text-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .product-text-layer {
    padding: 36px 0 50px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .spec-table td {
    padding-top: 0;
  }
}
