:root {
  --paper: #f3f5f7;
  --white: #ffffff;
  --ink: #111318;
  --muted: #5c6572;
  --line: #d8dde4;
  --camera: #007c74;
  --camera-dark: #07524e;
  --camera-soft: #e5f4f1;
  --mouse: #d60721;
  --mouse-dark: #9e0014;
  --mouse-soft: #fff0f2;
  --audio: #3d5a98;
  --audio-dark: #273d6c;
  --audio-soft: #edf1f7;
  --mic: #2f7657;
  --mic-dark: #1e503b;
  --mic-soft: #edf6f1;
  --power: #5b6472;
  --power-dark: #2f3742;
  --power-soft: #eef1f5;
  --shopee: #ee4d2d;
  --blue: #1459c7;
  --shadow: 0 18px 48px rgba(17, 19, 24, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: var(--white);
  background: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #353b45;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav .nav-pending {
  color: #9aa1ab;
  font-size: 12px;
  font-weight: 800;
  cursor: default;
}

.main-nav a:hover {
  color: var(--camera);
}

.catalog-section {
  padding: 74px 0 86px;
  background: var(--white);
}

.catalog-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 56px;
  align-items: end;
}

.catalog-head {
  max-width: 780px;
}

.eyebrow,
.section-index,
.product-type,
.market-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
}

.eyebrow {
  color: var(--camera);
}

.catalog-head h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 66px;
  line-height: 0.94;
  text-transform: uppercase;
}

.catalog-head > p:last-child {
  max-width: 66ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.catalog-count {
  padding: 20px 0 4px;
  border-top: 2px solid var(--ink);
}

.catalog-count > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.catalog-count strong {
  display: block;
  margin-top: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  line-height: 0.8;
}

.catalog-count strong small {
  color: var(--muted);
  font-size: 28px;
}

.catalog-count p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.category-bar {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-bar a,
.category-bar span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 8px 12px;
  color: #414955;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.category-bar .category-current {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.category-bar .category-pending {
  color: #989faa;
  background: #f5f6f8;
  border-style: dashed;
}

.category-bar strong {
  color: inherit;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  line-height: 1;
}

.catalog-status {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.catalog-status span {
  height: 4px;
  background: var(--line);
}

.catalog-status .is-complete:first-child {
  background: var(--camera);
}

.catalog-status .is-complete:nth-child(2) {
  background: var(--mouse);
}

.catalog-status .is-complete:nth-child(3) {
  background: var(--audio);
}

.catalog-status .is-complete:nth-child(4) {
  background: var(--mic);
}

.catalog-status .is-complete:nth-child(5) {
  background: var(--power);
}

.product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 18px;
}

.catalog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.catalog-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #eef1f4;
}

.catalog-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.catalog-media:hover img {
  transform: scale(1.025);
}

.catalog-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 46px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: rgba(17, 19, 24, 0.88);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.catalog-copy {
  min-height: 302px;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
}

.catalog-card-camera .product-type {
  color: var(--camera);
}

.catalog-card-mouse .product-type {
  color: var(--mouse);
}

.catalog-card-audio .product-type {
  color: var(--audio);
}

.catalog-card-mic .product-type {
  color: var(--mic);
}

.catalog-card-power .product-type {
  color: var(--power);
}

.catalog-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-copy > p:not(.product-type) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.chip-list {
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.chip-list li {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #3f4752;
  background: var(--paper);
  font-size: 10px;
  font-weight: 800;
}

.catalog-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.text-link,
.buy-link {
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  border-bottom: 1px solid currentColor;
}

.buy-link {
  padding: 9px 11px;
  border-radius: 5px;
  color: var(--white);
  background: var(--shopee);
}

.pending-buy {
  padding: 9px 11px;
  border: 1px dashed #b8bec7;
  border-radius: 5px;
  color: #8a929d;
  background: #f5f6f8;
  font-size: 11px;
  font-weight: 800;
}

.product-section {
  padding: 92px 0;
}

.camera-section {
  background: var(--camera-soft);
}

.mouse-section {
  background: var(--mouse-soft);
}

.audio-section {
  background: var(--audio-soft);
}

.mic-section {
  background: var(--mic-soft);
}

.power-section {
  background: var(--power-soft);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 76px;
  align-items: center;
}

.product-layout-reverse {
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
}

.product-gallery {
  position: relative;
  width: min(100%, 500px);
}

.product-layout-reverse .product-gallery {
  justify-self: end;
}

.main-image-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 24, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-image-wrap img,
.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thumb-row {
  position: absolute;
  right: -18px;
  bottom: 22px;
  display: grid;
  gap: 8px;
}

.thumb {
  width: 74px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 6px;
  padding: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 19, 24, 0.2);
  cursor: pointer;
}

.camera-section .thumb.is-active {
  border-color: var(--camera);
}

.mouse-section .thumb.is-active {
  border-color: var(--mouse);
}

.audio-section .thumb.is-active {
  border-color: var(--audio);
}

.mic-section .thumb.is-active {
  border-color: var(--mic);
}

.power-section .thumb.is-active {
  border-color: var(--power);
}

.section-index {
  color: var(--muted);
}

.product-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 70px;
  line-height: 0.86;
  text-transform: uppercase;
}

.camera-section .product-copy h2 span {
  color: var(--camera);
}

.mouse-section .product-copy h2 span {
  color: var(--mouse);
}

.audio-section .product-copy h2 span {
  color: var(--audio);
}

.mic-section .product-copy h2 span {
  color: var(--mic);
}

.power-section .product-copy h2 span {
  color: var(--power);
}

.product-copy .audio-product-title {
  font-size: 60px;
}

.lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-lines {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 24, 0.18);
}

.feature-lines div {
  padding: 15px 12px 15px 0;
  border-bottom: 1px solid rgba(17, 19, 24, 0.18);
}

.feature-lines div:nth-child(odd) {
  border-right: 1px solid rgba(17, 19, 24, 0.18);
}

.feature-lines div:nth-child(even) {
  padding-left: 16px;
}

.feature-lines strong,
.feature-lines span {
  display: block;
}

.feature-lines strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.feature-lines span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.button-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 17px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

.btn-camera {
  background: var(--camera);
}

.btn-camera:hover {
  background: var(--camera-dark);
}

.btn-mouse {
  background: var(--mouse);
}

.btn-mouse:hover {
  background: var(--mouse-dark);
}

.btn-audio {
  background: var(--audio);
}

.btn-audio:hover {
  background: var(--audio-dark);
}

.btn-mic {
  background: var(--mic);
}

.btn-mic:hover {
  background: var(--mic-dark);
}

.btn-power {
  background: var(--power);
}

.btn-power:hover {
  background: var(--power-dark);
}

.btn-disabled {
  border-color: #bcc3cb;
  color: #8b939d;
  background: rgba(255, 255, 255, 0.45);
  cursor: default;
}

.btn-disabled:hover {
  transform: none;
}

.btn-outline {
  border-color: rgba(17, 19, 24, 0.28);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.55);
}

.mode-rail {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 24, 0.18);
  border-bottom: 1px solid rgba(17, 19, 24, 0.18);
}

.mode-rail > div {
  position: relative;
  min-height: 100px;
  display: grid;
  align-content: center;
  padding: 14px 20px 14px 54px;
}

.mode-rail > div:first-child {
  border-right: 1px solid rgba(17, 19, 24, 0.18);
}

.mode-rail span {
  position: absolute;
  top: 20px;
  left: 12px;
  color: var(--mouse);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 800;
}

.mode-rail strong,
.mode-rail small {
  display: block;
}

.mode-rail strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.mode-rail small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.not-headphones {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 4px solid var(--audio);
  color: var(--audio-dark);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.spec-band {
  padding: 76px 0;
}

.camera-specs {
  background: var(--white);
}

.mouse-specs {
  background: var(--white);
}

.audio-specs {
  background: var(--white);
}

.audio-specs .eyebrow {
  color: var(--audio);
}

.mic-specs {
  background: var(--white);
}

.mic-specs .eyebrow {
  color: var(--mic);
}

.power-specs {
  background: var(--white);
}

.power-specs .eyebrow {
  color: var(--power);
}

.section-head {
  max-width: 720px;
}

.section-head h2,
.warranty-copy h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 46px;
  line-height: 1;
  text-transform: uppercase;
}

.section-head > p:last-child {
  max-width: 68ch;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.spec-grid {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.spec-grid div {
  min-height: 116px;
  padding: 20px 20px 18px 0;
  border-bottom: 1px solid var(--line);
}

.spec-grid div:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
}

.spec-grid div:not(:nth-child(3n + 1)) {
  padding-left: 20px;
}

.spec-grid dt,
.spec-list dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.spec-grid dd {
  margin: 9px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
}

.compare-section {
  padding: 84px 0;
  background: #eff4f7;
}

.compare-head .eyebrow {
  color: var(--shopee);
}

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

.market-card {
  min-height: 252px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.market-shopee {
  color: var(--white);
  background: var(--shopee);
  border-color: var(--shopee);
}

.market-label {
  color: var(--camera);
}

.market-shopee .market-label {
  color: #ffe7df;
}

.market-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.market-card strong {
  display: block;
  margin-top: 13px;
  font-size: 16px;
}

.market-card > p:last-of-type {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.market-shopee > p:last-of-type {
  color: #fff0ec;
}

.market-card a {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.comparison-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

.comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
}

.comparison-table tbody th {
  color: var(--camera-dark);
  font-weight: 800;
}

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

.warning-box {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px;
  border-left: 6px solid var(--shopee);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--ink);
}

.warning-box strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.warning-box p {
  margin: 0;
  color: #c6ccd4;
  font-size: 12px;
}

.g309-compare-section {
  padding: 84px 0;
  background: #fff6f7;
}

.g309-compare-head .eyebrow {
  color: var(--mouse);
}

.market-g309-featured {
  color: var(--white);
  background: var(--mouse);
  border-color: var(--mouse);
}

.market-g309-featured .market-label {
  color: #ffe5e9;
}

.market-g309-featured > p:last-of-type {
  color: #fff0f2;
}

.g309-compare-section .comparison-table tbody th {
  color: var(--mouse-dark);
}

.g309-verdict {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  padding: 28px;
  border-left: 6px solid var(--mouse);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--ink);
}

.g309-verdict .eyebrow {
  color: #ff5368;
}

.g309-verdict h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  line-height: 1;
  text-transform: uppercase;
}

.g309-verdict > div:last-child > p {
  margin: 0;
  color: #c6ccd4;
  font-size: 12px;
}

.g309-verdict .verdict-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #3b414a;
  color: #ffb8c1;
}

.xm5-compare-section {
  padding: 84px 0;
  background: #f5f7fb;
}

.xm5-compare-head .eyebrow {
  color: var(--audio);
}

.market-audio-featured {
  color: var(--white);
  background: var(--audio);
  border-color: var(--audio);
}

.market-audio-featured .market-label {
  color: #dce7ff;
}

.market-audio-featured > p:last-of-type {
  color: #edf3ff;
}

.xm5-compare-section .comparison-table tbody th {
  color: var(--audio-dark);
}

.xm5-warning {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
  border-left: 6px solid var(--audio);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--ink);
}

.xm5-warning strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.xm5-warning p {
  margin: 0;
  color: #c6ccd4;
  font-size: 12px;
}

.xm5-warning b {
  color: var(--white);
}

.mic-compare-section {
  padding: 84px 0;
  background: #f2f7f4;
}

.mic-compare-head .eyebrow {
  color: var(--mic);
}

.market-mic-featured {
  color: var(--white);
  background: var(--mic);
  border-color: var(--mic);
}

.market-mic-featured .market-label {
  color: #dff4e8;
}

.market-mic-featured > p:last-of-type {
  color: #eff9f3;
}

.mic-compare-section .comparison-table tbody th {
  color: var(--mic-dark);
}

.mic-warning {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
  border-left: 6px solid var(--mic);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--ink);
}

.mic-warning strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.mic-warning p {
  margin: 0;
  color: #c6ccd4;
  font-size: 12px;
}

.power-compare-section {
  padding: 84px 0;
  background: #f4f6f8;
}

.power-compare-head .eyebrow {
  color: var(--power);
}

.market-power-featured {
  color: var(--white);
  background: var(--power);
  border-color: var(--power);
}

.market-power-featured .market-label {
  color: #e6ebf1;
}

.market-power-featured > p:last-of-type {
  color: #f1f4f7;
}

.power-compare-section .comparison-table tbody th {
  color: var(--power-dark);
}

.power-warning {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
  border-left: 6px solid var(--power);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white);
  background: var(--ink);
}

.power-warning strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.power-warning p {
  margin: 0;
  color: #c6ccd4;
  font-size: 12px;
}

.polar-section {
  padding: 84px 0;
  color: var(--white);
  background: #111814;
}

.polar-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.polar-section .eyebrow {
  color: #70d3a8;
}

.polar-section .section-head > p:last-child {
  color: #aebbb4;
}

.polar-options {
  border-top: 1px solid #3b4841;
}

.polar-options article {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid #3b4841;
}

.polar-options article > span {
  color: #70d3a8;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  font-weight: 800;
  line-height: 1;
}

.polar-options h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
}

.polar-options p {
  margin: 9px 0 0;
  color: #aebbb4;
  font-size: 12px;
}

.g309-info-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.mouse-specs .eyebrow {
  color: var(--mouse);
}

.benefit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit-grid article {
  min-height: 118px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--mouse);
}

.benefit-grid article:nth-child(2),
.benefit-grid article:nth-child(3) {
  color: var(--ink);
  background: var(--mouse-soft);
}

.benefit-grid strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  text-transform: uppercase;
}

.benefit-grid p {
  margin: 4px 0 0;
  font-size: 11px;
}

.spec-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.spec-list dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.warranty-section {
  padding: 82px 0;
  background: #eaf2ff;
}

.warranty-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.warranty-number {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}

.warranty-number strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 142px;
  line-height: 0.8;
}

.warranty-number span {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.42);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

.warranty-copy .eyebrow {
  color: var(--blue);
}

.warranty-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.warranty-copy .warranty-note {
  padding: 14px 16px;
  border-left: 4px solid var(--mouse);
  color: #343b46;
  background: rgba(255, 255, 255, 0.7);
}

.site-footer {
  color: #c2c8d0;
  background: #080a0e;
}

.footer-wrap {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 30px;
  align-items: center;
}

.footer-wrap strong {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
}

.footer-wrap p {
  margin: 2px 0 0;
  font-size: 10px;
}

.footer-wrap > a {
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.brand:focus-visible,
.main-nav a:focus-visible,
.category-bar a:focus-visible,
.catalog-media:focus-visible,
.text-link:focus-visible,
.buy-link:focus-visible,
.btn:focus-visible,
.thumb:focus-visible,
.market-card a:focus-visible,
.footer-wrap > a:focus-visible {
  outline: 3px solid rgba(20, 89, 199, 0.38);
  outline-offset: 3px;
}

.reveal {
  animation: reveal 560ms ease both;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 180ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    animation: none;
  }

  .catalog-media img,
  .btn {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .catalog-head-row {
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 34px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }

  .product-layout,
  .product-layout-reverse {
    gap: 44px;
  }

  .g309-info-layout {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .main-nav .nav-pending {
    display: none;
  }

  .catalog-head-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .catalog-count {
    max-width: 100%;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 16px;
    align-items: end;
  }

  .catalog-count strong {
    margin-top: 0;
    font-size: 56px;
  }

  .catalog-count p {
    margin: 0;
    padding-bottom: 2px;
  }

  .catalog-head h1 {
    font-size: 54px;
  }

  .product-layout,
  .product-layout-reverse,
  .g309-info-layout,
  .warranty-layout,
  .polar-layout {
    grid-template-columns: 1fr;
  }

  .polar-layout {
    gap: 38px;
  }

  .product-gallery,
  .product-layout-reverse .product-gallery {
    width: min(100%, 560px);
    justify-self: center;
  }

  .product-layout-reverse .product-copy {
    order: 2;
  }

  .product-layout-reverse .product-gallery {
    order: 1;
  }

  .product-copy h2 {
    font-size: 62px;
  }

  .product-copy .audio-product-title {
    font-size: 54px;
  }

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

  .spec-grid div:not(:nth-child(3n)) {
    border-right: 0;
  }

  .spec-grid div:not(:nth-child(3n + 1)) {
    padding-left: 0;
  }

  .spec-grid div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .spec-grid div:nth-child(even) {
    padding-left: 20px;
  }

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

  .market-card {
    min-height: auto;
  }

  .warranty-number {
    min-height: 240px;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
}

@media (max-width: 680px) {
  .main-nav a:first-child {
    display: none;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav .nav-pending {
    display: none;
  }

  .catalog-section {
    padding: 52px 0 64px;
  }

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

  .product-section {
    padding: 68px 0;
  }

  .product-copy h2 {
    font-size: 52px;
  }

  .product-copy .audio-product-title {
    font-size: 46px;
  }

  .section-head h2,
  .warranty-copy h2 {
    font-size: 38px;
  }

  .warning-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .xm5-warning {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mic-warning {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .power-warning {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .catalog-head h1 {
    font-size: 44px;
  }

  .catalog-count {
    grid-template-columns: 1fr auto;
  }

  .catalog-count p {
    grid-column: 1 / -1;
  }

  .category-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .category-bar a,
  .category-bar span {
    justify-content: space-between;
  }

  .catalog-copy {
    min-height: 286px;
  }

  .product-copy .audio-product-title {
    font-size: 40px;
  }

  .catalog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .thumb-row {
    right: 10px;
  }

  .thumb {
    width: 62px;
  }

  .feature-lines,
  .mode-rail,
  .spec-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-lines div:nth-child(odd),
  .mode-rail > div:first-child,
  .spec-grid div:nth-child(odd) {
    border-right: 0;
  }

  .feature-lines div:nth-child(even),
  .spec-grid div:nth-child(even) {
    padding-left: 0;
  }

  .mode-rail > div:first-child {
    border-bottom: 1px solid rgba(17, 19, 24, 0.18);
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .polar-options article {
    grid-template-columns: 56px 1fr;
  }

  .warranty-number {
    min-height: 210px;
  }

  .warranty-number strong {
    font-size: 108px;
  }

  .warranty-number span {
    font-size: 18px;
  }
}
