
@font-face {
  font-family: "XP Sui Generis";
  src: url("../fonts/xp-sui-generis-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XP Sui Generis";
  src: url("../fonts/xp-sui-generis.woff") format("woff");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "XP Sui Generis";
  src: url("../fonts/xp-sui-generis-book.woff") format("woff");
  font-weight: 700 950;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07080a;
  --bg-2: #0d1117;
  --panel: #121821;
  --panel-2: #171e28;
  --line: rgba(255, 255, 255, 0.13);
  --text: #f4f6f8;
  --muted: #aab3bf;
  --soft: #dfe5ec;
  --red: #e30613;
  --red-2: #a9040d;
  --steel: #8fb4c9;
  --gold: #d3b35c;
  --light: #f5f6f7;
  --ink: #15191f;
  --max: 1180px;
  --header: 86px;
  --font-main: "XP Sui Generis", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  font-synthesis-weight: auto;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

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

p {
  margin: 0 0 1.1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}

/* HEADER */
.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  height: auto;
  min-height: 0;
  overflow: visible;
  background: rgba(7, 8, 10, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.site-header::before,
.site-header::after {
  content: none;
  display: none;
}

.header-top-red {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(90deg, #d60012, #8b0008);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  max-width: 82px;
  flex: 0 0 auto;
  overflow: hidden;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 82px;
  height: 58px;
  min-width: 82px;
  max-width: 82px;
  min-height: 58px;
  max-height: 58px;
  flex: 0 0 82px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.brand-text {
  display: none;
}

.brand-text small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex: 0 0 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  appearance: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: #f4f6f8;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(227, 6, 19, 0.2);
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.25);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

/* LAYOUT */
.section {
  position: relative;
  padding: 76px 0;
}

.section.tight {
  padding: 52px 0;
}

.section.light {
  background: var(--light);
  color: var(--ink);
}

.section.mid {
  background: #0b0f15;
}

.section.soil {
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.82), rgba(7, 8, 10, 0.96)),
    url("../img/soil-separator.jpg") center top / 100% 90px no-repeat,
    #07080a;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0 0 1rem;
  font-size: 2.4rem;
  line-height: 1.08;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.light .section-lead {
  color: #4d5967;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.92) 0%, rgba(7, 8, 10, 0.72) 48%, rgba(7, 8, 10, 0.34) 100%),
    var(--hero-image, url("../img/hero-xp-red.jpg")) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, #07080a, rgba(7, 8, 10, 0));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  min-height: calc(100vh - var(--header));
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 82px 0 120px;
}

.hero-copy {
  max-width: 700px;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: 4.4rem;
  line-height: 0.98;
}

.hero .lead {
  max-width: 650px;
  color: #d7dee8;
  font-size: 1.25rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 38px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: -80px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(17, 24, 33, 0.88);
  backdrop-filter: blur(18px);
}

.hero-stat {
  padding: 1.25rem;
}

.hero-stat + .hero-stat {
  border-left: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* PRODUCT HERO */
.product-hero {
  min-height: 620px;
}

.product-hero:not(.split-hero):not(.xtrem) {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.97) 0%, rgba(7, 8, 10, 0.82) 42%, rgba(7, 8, 10, 0.26) 76%, rgba(7, 8, 10, 0.08) 100%),
    var(--hero-image, url("../img/hero-xp-red.jpg")) center / cover no-repeat;
}

.product-hero .hero-inner {
  min-height: 620px;
}

.product-hero.split-hero {
  background:
    radial-gradient(circle at 80% 45%, rgba(75, 103, 121, 0.22), transparent 34%),
    linear-gradient(90deg, #07080a 0%, #0c1118 56%, #101823 100%);
}

.product-hero.xtrem {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.94), rgba(7, 8, 10, 0.72), rgba(7, 8, 10, 0.28)),
    url("../img/xtrem-hunter-depth-crop.jpg") center top / cover no-repeat;
}

.split-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.split-visual img {
  position: absolute;
  top: 50%;
  width: 286px;
  height: 879px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.55));
  transform: translateY(-50%);
}

.split-visual .left {
  right: 470px;
}

.split-visual .right {
  right: 160px;
}

.product-mark {
  max-width: 290px;
  margin-bottom: 1.4rem;
}

.product-mark.small {
  max-width: 185px;
}

/* GRIDS / CARDS */
.grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.product-card,
.feature-card,
.doc-card,
.support-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  overflow: hidden;
}

.product-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--card-image, linear-gradient(135deg, #131923, #08090c)) center / cover no-repeat;
  opacity: 0.78;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.12), rgba(7, 8, 10, 0.92));
}

.product-card .split-mini {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  height: 78%;
  opacity: 0.88;
  transform: translateX(8%);
}

.product-card .split-mini img {
  width: 95px;
  object-fit: contain;
}

.product-card-body {
  padding: 1.35rem;
}

.product-card h3,
.feature-card h3,
.support-card h3,
.doc-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.18;
}

.product-card p,
.feature-card p,
.support-card p,
.doc-card p {
  color: var(--muted);
}

.product-card .arrow {
  color: var(--red);
  font-weight: 900;
}

.feature-card,
.support-card,
.doc-card {
  padding: 1.35rem;
}

.feature-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 1.55rem;
}

.light .feature-card,
.light .support-card,
.light .doc-card {
  border-color: rgba(21, 25, 31, 0.12);
  background: #fff;
  color: var(--ink);
}

.light .feature-card p,
.light .support-card p,
.light .doc-card p {
  color: #53606d;
}

/* MEDIA / SPECS */
.media-band {
  min-height: 480px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.92) 0%, rgba(7, 8, 10, 0.62) 42%, rgba(7, 8, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.04), rgba(7, 8, 10, 0.88)),
    var(--band-image) center / cover no-repeat;
}

.media-band .container {
  padding-bottom: 3rem;
}

.media-panel {
  max-width: 530px;
  padding: 1.55rem;
  border-left: 4px solid var(--red);
  background: rgba(7, 8, 10, 0.74);
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 2.2rem;
}

.spec-image {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(21, 25, 31, 0.1);
  border-radius: 8px;
  background: #fff;
}

.spec-image.dark {
  border-color: var(--line);
  background: #0b0f15;
}

.spec-list {
  display: grid;
  gap: 0.8rem;
}

.spec-item {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(21, 25, 31, 0.12);
}

.spec-item span {
  color: #667180;
  font-weight: 800;
}

.spec-item strong {
  color: var(--ink);
}

.visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}

.proof-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
  background: #080a0d;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.proof-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.03) 0%, rgba(7, 8, 10, 0.22) 48%, rgba(7, 8, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.18), rgba(7, 8, 10, 0));
}

.proof-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 1.8rem;
}

.gallery-item {
  display: grid;
  gap: 0.8rem;
  padding: 16px;
  border: 1px solid rgba(21, 25, 31, 0.1);
  background: #fff;
  color: var(--ink);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: contain;
}

.gallery-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-item p {
  margin: 0;
  color: #566171;
  font-size: 0.92rem;
  line-height: 1.48;
}

/* PAGE HERO / DOCS */
.page-hero {
  padding: 96px 0 70px;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.6)),
    url("../img/hero-xp-red.jpg") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0 0 1rem;
  font-size: 3.2rem;
  line-height: 1.03;
}

.crumbs {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.crumbs a {
  color: #fff;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.doc-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
}

.doc-card .btn {
  margin-top: auto;
}

/* CONTACT */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-panel label {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--soft);
  font-weight: 800;
}

.contact-panel input,
.contact-panel textarea,
.contact-panel select {
  width: 100%;
  min-height: 46px;
  margin-bottom: 0.9rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0b0f15;
  color: #fff;
  font: inherit;
}

.contact-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(8, 8, 10, 0.94), rgba(20, 0, 3, 0.88)),
    url("../img/hero-xp-red.jpg") center / cover no-repeat;
}

.contact-premium .contact-box {
  align-items: stretch;
}

.contact-main-card,
.contact-info-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.premium-lines,
.support-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.premium-lines a,
.premium-lines p,
.support-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-list strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.support-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.notice {
  padding: 1rem;
  border-left: 4px solid var(--steel);
  background: rgba(143, 180, 201, 0.11);
  color: var(--soft);
}

/* ACCESSORIES */
.accessories-section,
.xp-accessories-page {
  background: #f5f6f7;
  color: #111827;
}

.accessories-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: start;
  color: #111827;
}

.accessory-filter {
  position: sticky;
  top: 120px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  color: #111827;
}

.accessory-filter h2 {
  margin: 0 0 18px;
  font-size: 18px;
  color: #111827;
}

.accessory-filter a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111827;
  font-weight: 800;
}

.accessory-filter a:hover {
  color: var(--red);
}

.accessory-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  color: #111827;
}

.accessory-head h1,
.accessory-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.accessory-head p {
  margin: 0;
  color: #4b5563;
}

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

.accessory-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.accessory-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin-bottom: 18px;
}

.accessory-card h3 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 22px;
  line-height: 1.15;
}

.accessory-card p {
  margin: 0 0 18px;
  color: #333;
  line-height: 1.55;
}

.accessory-card a {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 900;
}

.accessory-card a:hover {
  background: var(--red);
}

/* CTA / FOOTER */
.cta-strip {
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.9), rgba(91, 16, 23, 0.92)),
    #7d060d;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.cta-grid h2 {
  margin: 0 0 0.25rem;
  line-height: 1.18;
}

.cta-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 46px 0 34px;
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.95fr 1.1fr;
  gap: 1.5rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: #818b98;
  font-size: 0.86rem;
}

/* FLOATING CALL */
.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e30613, #8b0008);
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(227, 6, 19, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.floating-call span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
  line-height: 1;
}

.floating-call strong {
  display: block;
  line-height: 1.05;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-visual {
    opacity: 0.35;
  }

  .split-visual .left {
    right: 190px;
  }

  .split-visual .right {
    right: 0;
  }
}

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

  .accessory-filter {
    position: static;
  }

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

@media (max-width: 860px) {
  :root {
    --header: 68px;
  }

  .header-top-red {
    padding: 7px 10px;
    font-size: 10.5px;
    letter-spacing: 0;
    line-height: 1.2;
  }

  .nav-wrap {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 6px 0;
    gap: 10px;
  }

  .brand {
    max-width: 58px;
    gap: 0;
  }

  .brand-logo {
    width: 58px;
    height: 42px;
    min-width: 58px;
    max-width: 58px;
    min-height: 42px;
    max-height: 42px;
    flex-basis: 58px;
  }

  .brand-text {
    display: none;
  }

  .brand-text small {
    margin-top: 3px;
    font-size: 10.5px;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    z-index: 10001;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 14px;
    background: rgba(7, 8, 10, 0.99);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
    padding: 13px 10px;
    border-radius: 8px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: 2.75rem;
    line-height: 1.03;
  }

  .hero .lead {
    font-size: 1.08rem;
  }

  .hero-stats,
  .grid.two,
  .grid.three,
  .doc-grid,
  .visual-proof,
  .spec-layout,
  .cta-grid,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 0;
    width: min(var(--max), calc(100% - 40px));
  }

  .hero-stat + .hero-stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 56px 0;
  }

  .section-title,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .media-band {
    min-height: 410px;
  }

  .spec-item {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

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

  .proof-card {
    min-height: 340px;
  }

  .proof-card figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .accessory-grid {
    grid-template-columns: 1fr;
  }

  .accessory-head {
    display: block;
  }
}

@media (max-width: 560px) {
  .container,
  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .product-hero .hero-inner {
    min-height: 560px;
    padding: 64px 0 86px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

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

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

  .visual-proof {
    gap: 24px;
  }

  .proof-card {
    min-height: 285px;
  }

  .xp-accessory-show {
    min-height: 670px;
    padding: 46px 18px 285px;
  }

  .xp-accessory-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .xp-accessory-copy p {
    font-size: 0.94rem;
  }

  .xp-accessory-case {
    width: min(96vw, 460px);
    bottom: 12px;
  }

  .product-card {
    min-height: 310px;
  }

  .split-visual {
    opacity: 0.22;
  }

  .split-visual img {
    height: 520px;
  }

  .split-visual .left {
    right: 110px;
  }

  .split-visual .right {
    right: -55px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    border-radius: 18px;
    padding: 14px 16px;
    font-size: 16px;
  }
}

/* ACCESSORY FIXES */

.xp-accessories-page,
.accessories-section,
.accessories-main,
.accessories-layout,
.accessory-main,
.accessory-filter,
.accessory-filter h2,
.accessory-filter a,
.accessory-filter li,
.accessory-head,
.accessory-head h1,
.accessory-head h2,
.accessory-head h3,
.accessory-head p {
  color: #111827 !important;
}

.accessory-filter,
.accessory-card {
  background: #fff !important;
  color: #111827 !important;
  border: 1px solid rgba(0,0,0,.08) !important;
}

.accessory-card h3 {
  color: #d60012 !important;
}

.accessory-card p {
  color: #253041 !important;
}

@media (max-width: 860px) {
  .hero,
  .hero-inner,
  .product-hero,
  .product-hero .hero-inner {
    min-height: 560px !important;
  }

  .hero-inner,
  .product-hero .hero-inner {
    padding: 54px 0 86px !important;
  }

  .hero h1 {
    font-size: 2.35rem !important;
    line-height: 1.04 !important;
  }

  .hero .lead {
    font-size: 1.02rem !important;
  }

  .floating-call {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    justify-content: center !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 420px) {
  .header-top-red {
    font-size: 9.5px;
    letter-spacing: 0;
  }

  .brand {
    max-width: 52px;
  }

  .brand-logo {
    width: 52px;
    height: 38px;
    min-width: 52px;
    max-width: 52px;
    min-height: 38px;
    max-height: 38px;
    flex-basis: 52px;
  }

  .brand-text {
    display: none;
  }

  .brand-text small {
    font-size: 9.5px;
  }

  .hero h1 {
    font-size: 2.05rem !important;
  }
}

/* XP ORIGINAL HOMEPAGE REBUILD */

.home-xp-show {
  background: #050506;
  color: #fff;
  overflow: hidden;
}

.home-xp-show .btn {
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.xp-main-visual {
  position: relative;
  min-height: calc(100vh - 104px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #020203;
}

.xp-main-visual::before,
.xp-main-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.xp-main-visual::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 35%, rgba(0, 0, 0, 0.08) 68%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.82) 100%);
}

.xp-main-visual::after {
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0), #050506);
}

.xp-main-visual-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.xp-main-visual-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 8vh 0 18vh;
}

.xp-red-rule {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--red);
}

.xp-kicker {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.xp-main-visual h1 {
  max-width: 620px;
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: uppercase;
}

.xp-hero-line {
  max-width: 760px;
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(2.9rem, 6.5vw, 6.8rem);
  font-weight: 950;
  line-height: 0.92;
  text-transform: none;
}

.xp-hero-text {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.xp-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.xp-update-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 2;
  width: min(410px, calc(100% - 48px));
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: rgba(8, 9, 11, 0.84);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.xp-update-panel strong,
.xp-update-panel span {
  display: block;
}

.xp-update-panel strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.xp-update-panel span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.45;
}

.xp-deus-2-showcase {
  position: relative;
  min-height: 640px;
  padding: 88px 0 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 35%),
    linear-gradient(180deg, #121316 0%, #050506 100%);
  overflow: hidden;
}

.xp-showcase-copy {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.xp-deus-2-logo {
  width: min(340px, 80vw);
  margin: 0 auto 1.2rem;
}

.xp-showcase-copy h2 {
  margin: 0 auto 1rem;
  max-width: 800px;
  color: #fff;
  font-size: clamp(2rem, 4.8vw, 4.9rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.xp-showcase-copy p {
  max-width: 680px;
  margin: 0 auto 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.xp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.xp-text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.xp-topographic-img {
  width: min(1500px, 112vw);
  margin: 38px auto -2px;
}

.xp-product-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 760px;
}

.xp-split-panel {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 72px max(36px, 7vw);
}

.xp-split-deus {
  background: #f2f2f2;
  color: #111;
}

.xp-split-orx {
  background: #15130d;
  color: #fff;
}

.xp-split-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.xp-split-deus .xp-split-bg {
  opacity: 0.34;
}

.xp-split-orx .xp-split-bg {
  opacity: 0.62;
}

.xp-split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.xp-split-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.xp-split-deus::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.94));
}

.xp-split-deus::after {
  background: linear-gradient(90deg, rgba(246, 247, 248, 0.96) 0%, rgba(246, 247, 248, 0.9) 38%, rgba(246, 247, 248, 0.2) 68%, rgba(246, 247, 248, 0) 100%);
}

.xp-split-orx::before {
  background:
    radial-gradient(circle at 50% 22%, rgba(211, 179, 92, 0.22), rgba(211, 179, 92, 0) 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.86));
}

.xp-split-orx::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.08) 78%, rgba(0, 0, 0, 0) 100%);
}

.xp-split-half {
  position: absolute;
  z-index: -1;
  top: 20px;
  height: min(92%, 760px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.22));
}

.xp-split-half-left {
  left: calc(50% - 230px);
}

.xp-split-half-right {
  right: calc(50% - 230px);
}

.xp-split-copy {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.xp-split-logo {
  width: min(260px, 68vw);
  margin-bottom: 1.2rem;
}

.xp-split-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.2vw, 4.1rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.xp-split-copy p {
  max-width: 360px;
  margin: 0 0 1.55rem;
  color: currentColor;
  font-size: 1.05rem;
  line-height: 1.5;
  opacity: 0.86;
}

.xp-accessory-show {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  padding: 84px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(3, 3, 4, 0.98) 0%, rgba(3, 3, 4, 0.85) 44%, rgba(3, 3, 4, 0.22) 100%),
    radial-gradient(circle at 78% 52%, rgba(227, 6, 19, 0.18), rgba(227, 6, 19, 0) 34%),
    #050506;
  overflow: hidden;
}

.xp-accessory-copy {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
}

.xp-accessory-copy h2,
.xp-service-head h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.1rem, 3.8vw, 4.35rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.xp-accessory-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.xp-accessory-case {
  position: absolute;
  right: max(64px, calc((100vw - 1180px) / 2 - 120px));
  bottom: 8px;
  width: min(50vw, 680px);
  max-width: none;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.55));
}

.xp-gold-show {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 90px max(24px, calc((100vw - 1180px) / 2));
  background: #f4f4f2;
  color: #151515;
}

.xp-gold-show > img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.xp-gold-show h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.xp-gold-show p {
  max-width: 620px;
  color: rgba(21, 21, 21, 0.74);
  font-size: 1.05rem;
}

.xp-service-band {
  padding: 92px max(24px, calc((100vw - 1180px) / 2)) 104px;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.97)),
    url("../img/home/bg-support.jpg") center / cover no-repeat,
    #08090b;
}

.xp-service-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.xp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.xp-service-grid a {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: rgba(9, 11, 14, 0.82);
  transition: background 0.2s ease, transform 0.2s ease;
}

.xp-service-grid a:hover {
  background: rgba(227, 6, 19, 0.22);
  transform: translateY(-2px);
}

.xp-service-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 1.04rem;
  text-transform: uppercase;
}

.xp-service-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 1040px) {
  .xp-product-split,
  .xp-gold-show,
  .xp-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .xp-split-panel {
    min-height: 680px;
    padding: 56px 34px;
  }

  .xp-split-half-left {
    left: calc(50% - 195px);
  }

  .xp-split-half-right {
    right: calc(50% - 195px);
  }
}

@media (max-width: 760px) {
  .xp-main-visual {
    min-height: 680px;
  }

  .xp-main-visual::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.94) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.02));
  }

  .xp-main-visual-img {
    height: 54%;
    object-position: center top;
  }

  .xp-main-visual-copy {
    align-self: end;
    width: min(100% - 32px, 560px);
    padding: 245px 0 188px;
  }

  .xp-update-panel {
    right: 16px;
    bottom: 22px;
    width: calc(100% - 32px);
  }

  .xp-deus-2-showcase {
    min-height: 0;
    padding-top: 64px;
  }

  .xp-product-split,
  .xp-gold-show,
  .xp-service-grid {
    grid-template-columns: 1fr;
  }

  .xp-split-panel {
    min-height: 640px;
  }

  .xp-split-half {
    top: 34px;
    height: 78%;
    opacity: 0.72;
  }

  .xp-split-half-left {
    left: calc(50% - 170px);
  }

  .xp-split-half-right {
    right: calc(50% - 170px);
  }

  .xp-accessory-show {
    min-height: 720px;
    align-items: start;
    padding: 58px 20px 330px;
    background:
      linear-gradient(180deg, rgba(3, 3, 4, 0.98) 0%, rgba(3, 3, 4, 0.86) 58%, rgba(3, 3, 4, 0.22) 100%),
      radial-gradient(circle at 50% 78%, rgba(227, 6, 19, 0.2), rgba(227, 6, 19, 0) 38%),
      #050506;
  }

  .xp-accessory-case {
    right: 50%;
    bottom: 18px;
    width: min(92vw, 560px);
    transform: translateX(50%);
  }

  .xp-gold-show {
    padding: 64px 20px;
  }

  .xp-service-band {
    padding: 68px 20px 84px;
  }
}

@media (max-width: 480px) {
  .xp-main-visual-copy {
    width: calc(100% - 28px);
    padding-top: 225px;
  }

  .xp-main-visual h1 {
    font-size: 0.94rem;
  }

  .xp-hero-line {
    font-size: 2.35rem;
  }

  .xp-action-row .btn {
    width: 100%;
  }

  .xp-showcase-copy {
    width: calc(100% - 28px);
  }

  .xp-split-panel {
    min-height: 590px;
    padding: 42px 20px;
  }

  .xp-split-half {
    height: 68%;
  }

  .xp-split-half-left {
    left: calc(50% - 145px);
  }

  .xp-split-half-right {
    right: calc(50% - 145px);
  }

  .xp-split-copy h2,
  .xp-accessory-copy h2,
  .xp-gold-show h2,
  .xp-service-head h2 {
    font-size: 2.05rem;
  }
}

/* SEO / AEO CONTENT */

.authority-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.14), rgba(227, 6, 19, 0)),
    #08090b;
}

.authority-box,
.answer-box {
  padding: clamp(22px, 3vw, 34px);
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.05);
}

.authority-box h2,
.answer-box h2,
.seo-copy h2,
.faq-section h2 {
  margin: 0 0 1rem;
  color: inherit;
  font-size: clamp(1.75rem, 2.75vw, 2.85rem);
  line-height: 1.05;
}

.authority-box p,
.answer-box p,
.seo-copy p {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.76);
}

.light .answer-box,
.light .authority-box {
  border-left-color: var(--red);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.light .answer-box p,
.light .authority-box p,
.light .seo-copy p,
.light.seo-copy p {
  color: #4d5967;
}

.light.seo-copy {
  color: var(--ink);
  background: linear-gradient(180deg, #f4f5f7 0%, #ffffff 100%);
}

.light.seo-copy h2,
.light.seo-copy .eyebrow {
  color: var(--ink);
}

.seo-copy .container {
  max-width: 1120px;
}

.seo-copy p {
  margin: 0 0 1.05rem;
  line-height: 1.72;
}

.seo-copy .section-lead {
  margin-bottom: 1.3rem;
}

.seo-copy strong {
  color: inherit;
  font-weight: 900;
}

.light.seo-copy strong {
  color: #151a22;
}

.keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.35rem 0 0;
}

.keyword-links a,
.keyword-links span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(227, 6, 19, 0.28);
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.08);
  color: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.light .keyword-links a,
.light .keyword-links span,
.light.seo-copy .keyword-links a,
.light.seo-copy .keyword-links span {
  background: #fff;
  color: #1b2430;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.intent-card {
  min-height: 175px;
  padding: 1.15rem;
  border: 1px solid rgba(21, 25, 31, 0.11);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.intent-card strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #151a22;
  font-size: 1rem;
  line-height: 1.28;
}

.intent-card span {
  display: block;
  color: #566171;
  font-size: 0.92rem;
  line-height: 1.48;
}

.intent-card:hover {
  border-color: rgba(227, 6, 19, 0.45);
  transform: translateY(-2px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.seo-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  margin: 0;
  padding-left: 1.25rem;
  color: inherit;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.comparison-table {
  width: 100%;
  margin-top: 1.4rem;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border: 1px solid rgba(21, 25, 31, 0.12);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #111827;
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.faq-item {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.light .faq-item {
  border-color: rgba(21, 25, 31, 0.12);
  background: #fff;
  color: var(--ink);
}

.faq-item h3 {
  margin: 0 0 0.55rem;
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.light .faq-item p {
  color: #53606d;
}

.entity-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(227, 6, 19, 0.28);
  background: rgba(227, 6, 19, 0.08);
  color: inherit;
  font-weight: 750;
}

@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}
