:root {
  --bg: #08090b;
  --panel: #101216;
  --panel-2: #171a20;
  --ink: #f6f7f9;
  --muted: #aeb4bd;
  --line: #2a2f38;
  --cyan: #23b8ff;
  --green: #3ddc97;
  --amber: #ffbd4a;
  --red: #ff5f56;
  --white: #ffffff;
  --radius: 8px;
  --max: 1180px;
  --header: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(16px);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: var(--header);
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #11161c, #1b2027);
  color: var(--cyan);
  font-weight: 900;
}

.brand-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 44px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 4px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(35, 184, 255, 0.55);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a:hover {
  transform: scale(1.07);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  position: absolute;
  top: 13px;
  right: clamp(14px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px 10px 18px;
  background: linear-gradient(100deg, #ff62db 0%, #8d63ff 38%, #006cff 70%, #ff62db 100%);
  background-size: 220% 100%;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    0 0 18px rgba(255, 98, 219, 0.24),
    0 0 34px rgba(0, 108, 255, 0.28);
  white-space: nowrap;
  isolation: isolate;
  animation: premium-shift 5.5s ease-in-out infinite;
}

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

.premium-btn::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(100deg, rgba(255, 98, 219, 0.55), rgba(0, 108, 255, 0.62), rgba(141, 99, 255, 0.5));
  filter: blur(16px);
  opacity: 0.62;
  animation: premium-glow 4.2s ease-in-out infinite;
}

.premium-btn svg {
  width: 25px;
  height: 25px;
  flex: none;
  fill: currentColor;
}

@keyframes premium-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes premium-glow {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-btn,
  .premium-btn::before {
    animation: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--cyan);
  color: #021019;
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.btn-green {
  background: var(--green);
  color: #03140d;
}

.btn-disabled {
  border-color: var(--line);
  background: #2a2d34;
  color: #c4c9d1;
  cursor: default;
  text-align: center;
}

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

.icon-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 16px 20px 24px;
  background: var(--bg);
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--muted);
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-after-hero {
  padding-top: 58px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(135deg, rgba(35, 184, 255, 0.14), transparent 36%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 72px);
  background-position: center;
  background-size: cover;
}

.hero::before {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.88) 42%, rgba(8, 9, 11, 0.58) 72%, rgba(8, 9, 11, 0.38) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 11, 0.08) 22%, rgba(8, 9, 11, 0.18) 100%);
  z-index: -1;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050608;
}

.hero-bg-carousel .showcase-slide {
  filter: saturate(0.98) contrast(1.05);
  object-position: center;
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header));
  align-items: center;
  padding: 64px 0 96px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(35, 184, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(35, 184, 255, 0.08);
  padding: 7px 10px;
  color: #9bdfff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.media-slot {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(35, 184, 255, 0.08), transparent),
    var(--panel);
  color: var(--muted);
  text-align: center;
}

.media-slot strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.media-slot small {
  display: block;
  max-width: 240px;
  line-height: 1.45;
}

.showcase-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #050608;
}

.showcase-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.showcase-slide.active {
  opacity: 1;
  transform: scale(1);
}

.showcase-dots {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 7px;
}

.showcase-dots span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.showcase-dots span.active {
  background: var(--cyan);
}

.product-review-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(35, 184, 255, 0.12), transparent 32%),
    radial-gradient(circle at 18% 88%, rgba(199, 91, 255, 0.08), transparent 28%),
    var(--panel);
}

.review-carousel {
  position: relative;
  margin-top: 30px;
}

.review-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.05), transparent 34%),
    #0b0d11;
  padding: 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.review-slide:not(.active) {
  display: none;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.review-dots button {
  min-width: 108px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.review-dots button.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #061017;
}

.review-dots button:hover {
  border-color: rgba(35, 184, 255, 0.62);
  color: var(--ink);
  transform: translateY(-1px);
}

.review-copy {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(8px, 2vw, 18px);
}

.review-copy h3 {
  margin-top: 18px;
  font-size: clamp(62px, 8vw, 112px);
  line-height: 0.88;
}

.review-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.review-highlights span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 11px;
  color: #dfe7ef;
  font-size: 13px;
  font-weight: 800;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.review-visual {
  min-width: 0;
}

.review-photo-carousel {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(35, 184, 255, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.review-photo-carousel .showcase-frame {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.review-photo-carousel .showcase-slide {
  object-fit: contain;
  padding: clamp(6px, 2vw, 22px);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.42));
}

.review-photo-carousel .showcase-dots span {
  background: rgba(255, 255, 255, 0.24);
}

.review-photo-carousel .showcase-dots span.active {
  background: var(--cyan);
}

.spec-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.spec-card {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
}

.spec-card span {
  display: block;
  color: #8bdcff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
}

.spec-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.spec-card-wide {
  grid-column: span 2;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.hero h1 {
  color: #f1eee6;
  font-size: clamp(66px, 11vw, 146px);
  font-weight: 950;
  line-height: 0.86;
}

.hero h1 span {
  display: block;
}

.hero-title-accent {
  color: #c5a15c;
}

.lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.hero .lead {
  max-width: 560px;
  color: #aeb0b4;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.42;
}

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

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

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.category-tile {
  display: flex;
  flex-direction: column;
  min-height: 214px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: #101019;
  padding: 30px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.category-tile:hover {
  border-color: rgba(35, 184, 255, 0.34);
  background: #12131f;
  transform: translateY(-2px);
}

.category-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #080a0f;
  color: var(--cyan);
}

.category-icon svg {
  width: 30px;
  height: 30px;
}

.category-tile h3 {
  font-size: 21px;
  line-height: 1.2;
}

.category-tile p {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.link-line {
  margin-top: auto;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

.catalog-tools {
  position: sticky;
  top: var(--header);
  z-index: 20;
  border-block: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(12px);
}

.category-anchor-nav {
  position: sticky;
  top: var(--header);
  z-index: 20;
  border-block: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(12px);
}

.category-anchor-nav .wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-block: 13px;
  scrollbar-width: none;
}

.category-anchor-nav .wrap::-webkit-scrollbar {
  display: none;
}

.category-anchor-nav a {
  flex: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.category-anchor-nav a:hover {
  border-color: rgba(35, 184, 255, 0.34);
  background: rgba(35, 184, 255, 0.1);
  color: var(--ink);
}

.product-category-section {
  scroll-margin-top: calc(var(--header) + 74px);
  padding: 0 0 72px;
}

.product-category-section + .product-category-section {
  border-top: 1px solid var(--line);
  padding-top: 72px;
}

.product-category-section header {
  max-width: 680px;
  margin-bottom: 30px;
}

.product-category-section h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.product-category-section p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tool-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  padding: 14px 0;
}

.search {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  padding: 0 14px;
}

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

.product-card,
.support-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.product-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  overflow: hidden;
}

.product-art {
  display: grid;
  min-height: 126px;
  grid-template-rows: 1fr auto;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(35, 184, 255, 0.12), transparent 55%),
    #0c0f13;
}

.product-art-image {
  display: flex;
  height: 260px;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-icon svg {
  width: 62px;
  height: 62px;
  color: var(--cyan);
}

.product-icon.case svg,
.product-icon.accessory svg {
  color: var(--green);
}

.product-icon.psu svg {
  color: var(--amber);
}

.asset-note {
  align-self: stretch;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding: 8px 10px;
  color: rgba(174, 180, 189, 0.72);
  font-size: 11px;
  text-align: center;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-rating {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #fff;
  padding: 5px 11px 5px 8px;
  color: #1550c8;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.product-rating svg {
  width: 23px;
  height: 23px;
  fill: #ffc400;
}

.product-card h3 {
  margin-top: 8px;
  font-size: 18px;
}

.product-card p {
  margin: 9px 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-card .btn {
  margin-top: auto;
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  padding: 18px;
}

.product-modal.open {
  display: flex;
}

.product-modal-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 36px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 78% 8%, rgba(35, 184, 255, 0.12), transparent 30%),
    #101319;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
}

.product-modal-close {
  position: sticky;
  top: 14px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.86);
  color: var(--ink);
  cursor: pointer;
}

.product-modal-close::before,
.product-modal-close::after {
  grid-area: 1 / 1;
  width: 19px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.product-modal-close::before {
  transform: rotate(45deg);
}

.product-modal-close::after {
  transform: rotate(-45deg);
}

.product-modal-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 28px;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 24px;
}

.product-modal-gallery,
.product-modal-info {
  max-width: 100%;
  min-width: 0;
}

.product-modal-main {
  display: grid;
  min-height: 420px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-modal-main img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  padding: 12px;
}

.product-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-modal-thumbs button {
  min-width: 0;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  padding: 4px;
}

.product-modal-thumbs button.active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(35, 184, 255, 0.18);
}

.product-modal-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-modal-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.product-modal-title-row h2 {
  min-width: 0;
  font-size: clamp(52px, 8vw, 94px);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.product-modal-info p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

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

.modal-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.premium-proof-section {
  padding-top: 18px;
}

.premium-proof {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(35, 184, 255, 0.16), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(255, 72, 216, 0.18), transparent 30%),
    #101319;
  padding: clamp(26px, 5vw, 54px);
}

.premium-proof::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.premium-proof-head,
.premium-proof-grid,
.premium-proof-simple > * {
  position: relative;
  z-index: 1;
}

.premium-proof-simple {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.premium-proof-simple h2 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.88;
}

.premium-proof-simple p {
  max-width: 960px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.58;
}

.premium-proof-head {
  max-width: 780px;
}

.premium-proof-head h2 {
  margin-top: 18px;
  font-size: clamp(36px, 5.2vw, 70px);
  line-height: 0.98;
}

.premium-proof-head p {
  max-width: 720px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

.premium-proof-card {
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(5, 8, 12, 0.62);
  padding: clamp(22px, 3vw, 34px);
}

.proof-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 184, 255, 0.45);
  border-radius: 999px;
  padding: 6px 13px;
  color: #8bdcff;
  font-size: 13px;
  font-weight: 900;
}

.premium-proof-card h3 {
  margin-top: 28px;
  font-size: clamp(26px, 3vw, 38px);
}

.premium-proof-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.premium-proof-card-featured {
  grid-column: 1 / -1;
  min-height: 340px;
  padding: clamp(30px, 5vw, 58px);
}

.premium-proof-card-featured h3 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
}

.premium-proof-card-featured p {
  max-width: 980px;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.support-card,
.info-card {
  padding: 22px;
}

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

.support-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
}

.support-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.support-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(35, 184, 255, 0.18);
  border-radius: 10px;
  background: rgba(35, 184, 255, 0.12);
  color: var(--cyan);
}

.support-icon svg {
  width: 27px;
  height: 27px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 16px;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 22px;
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #031018;
  font-weight: 900;
}

.steps h3 {
  font-size: 20px;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-card h3,
.info-card h3 {
  font-size: 20px;
}

.support-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-card p,
.info-card p {
  color: var(--muted);
  line-height: 1.55;
}

.support-model-label {
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 18px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 12px;
}

.disk-btn {
  width: 100%;
  min-height: 42px;
  border-color: transparent;
  background: var(--cyan);
  color: #031018;
}

.disk-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.disk-btn b {
  font-weight: 900;
}

.band {
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px 0;
}

.cta-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.cta-panel p {
  max-width: 660px;
  color: var(--muted);
}

.legal {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 24px;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.empty {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  text-align: center;
}

.empty.visible {
  display: block;
}

@media (max-width: 980px) {
  .site-nav,
  .header-actions .premium-btn {
    display: none;
  }

  .icon-btn {
    display: grid;
    place-items: center;
  }

  .category-grid,
  .product-grid,
  .support-grid,
  .steps,
  .split {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-row,
  .hero-grid,
  .cta-panel,
  .product-modal-layout,
  .review-slide,
  .premium-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .product-review-section .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-dots {
    justify-content: flex-start;
  }

}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero {
    background-position: 62% center;
  }

  .hero-grid {
    align-items: end;
    padding-bottom: 78px;
  }

  .category-grid,
  .product-grid,
  .support-grid,
  .steps,
  .split,
  .premium-proof-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .review-dots {
    width: 100%;
  }

  .review-dots button {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .product-modal {
    padding: 10px;
  }

  .product-modal-content {
    padding: 16px;
  }

  .product-modal-main {
    min-height: 280px;
  }

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

  .product-modal-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-spec-grid {
    grid-template-columns: 1fr;
  }

  .review-slide {
    padding: 14px;
  }

  .review-copy,
  .review-photo-carousel,
  .review-photo-carousel .showcase-frame {
    min-height: 0;
  }

  .review-photo-carousel .showcase-frame {
    aspect-ratio: 1 / 1;
  }

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

  .spec-card-wide {
    grid-column: auto;
  }

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