:root {
  color-scheme: dark;
  --bg: #070809;
  --surface: #0d0f12;
  --surface-raised: #12151a;
  --text: #f3f5f4;
  --muted: #949aa3;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #91a7ff;
  --accent-soft: rgba(145, 167, 255, 0.18);
  --mint: #92e8ce;
  --container: min(1400px, calc(100vw - 64px));
  --sans: "Manrope", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(70, 89, 154, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 16px;
  padding: 10px 16px;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 18px;
  left: 50%;
  width: min(1000px, calc(100vw - 32px));
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px 0 14px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  transition: background 220ms ease, border-color 220ms ease, top 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 9, 11, 0.85);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.header-status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(146, 232, 206, 0.7);
}

.scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 31px;
  width: calc((100% - 62px) * var(--scroll-progress, 0));
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
}

.hero {
  position: relative;
  width: var(--container);
  min-height: 100svh;
  margin: 0 auto;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 120px);
  overflow: clip;
}

.hero__ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero__ambient--one {
  top: 8%;
  right: -22%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(99, 118, 206, 0.2), rgba(99, 118, 206, 0) 68%);
}

.hero__ambient--two {
  bottom: -25%;
  left: 16%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(77, 161, 145, 0.08), transparent 68%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span + span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.eyebrow span + span::before {
  width: 34px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.hero h1,
.section-heading h2,
.social-section h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(62px, 7.2vw, 116px);
}

.hero h1 em,
.social-section h2 em {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--serif);
  font-weight: 500;
}

.hero__lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  overflow: hidden;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.button--light {
  background: var(--text);
  color: var(--bg);
}

.button--light:hover {
  background: #fff;
}

.button--glass {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
}

.button--glass:hover {
  background: rgba(255, 255, 255, 0.09);
}

.hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  margin: 58px 0 0;
}

.hero__stats div {
  display: grid;
  gap: 2px;
}

.hero__stats dt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero__stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: min(680px, 70vh);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 35%),
    #0c0e12;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: 14%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(139, 160, 255, 0.27), rgba(93, 113, 191, 0.08) 42%, transparent 69%);
  content: "";
  filter: blur(2px);
}

.hero__frame-lines {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 29px;
}

.hero__frame-lines::before,
.hero__frame-lines::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  content: "";
}

.hero__frame-lines::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.hero__frame-lines::after {
  top: 61%;
  right: 0;
  left: 0;
  height: 1px;
}

.hero__index {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 40px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.55;
}

.hero__image {
  position: absolute;
  z-index: 1;
  top: 5%;
  right: 1%;
  width: 98%;
  height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.5));
}

.spec-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 500;
}

.spec-tag span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.spec-tag--gpu {
  top: 22%;
  right: 6%;
}

.spec-tag--cpu {
  top: 48%;
  left: 5%;
}

.spec-tag--ram {
  top: 62%;
  right: 8%;
}

.hero__caption {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 34px;
  left: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.hero__caption span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  line-height: 1;
}

.hero__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue__line {
  position: relative;
  width: 64px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue__line::after {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: rgba(255, 255, 255, 0.7);
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  55%,
  100% {
    transform: translateX(100%);
  }
}

.catalog-section {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 40px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(52px, 7vw, 100px);
}

.section-heading__aside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.section-heading__aside > p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.total-pill {
  flex: 0 0 auto;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.total-pill span,
.total-pill strong {
  display: block;
}

.total-pill span {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.total-pill strong {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  gap: 16px;
}

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: transform 260ms cubic-bezier(0.2, 0.65, 0.3, 1), border-color 260ms ease, background 260ms ease;
}

.product-card--feature {
  grid-column: span 2;
}

.product-card__media {
  position: relative;
  height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(115, 135, 215, 0.13), transparent 48%),
    linear-gradient(145deg, #13161b, #0c0e11);
}

.product-card--feature .product-card__media {
  height: 410px;
}

.product-card__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.7), transparent);
  content: "";
  pointer-events: none;
}

.product-card__media--paper {
  background: #f2f3f5;
}

.product-card__media--paper::after {
  background: linear-gradient(to top, rgba(225, 227, 231, 0.72), transparent);
}

.product-card__media--paper .product-card__number {
  color: rgba(7, 8, 9, 0.46);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  padding: 28px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.32));
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.product-card--feature .product-card__media img {
  padding: 38px;
}

.product-card__media img.is-missing {
  opacity: 0;
}

.product-card__media:has(img.is-missing)::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.17);
  content: "IMAGE / 2026";
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.product-card__number,
.product-card__badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__number {
  left: 20px;
  color: rgba(255, 255, 255, 0.4);
}

.product-card__badge {
  right: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(145, 167, 255, 0.22);
  border-radius: 999px;
  background: rgba(145, 167, 255, 0.08);
  color: #bdc9ff;
}

.product-card__body {
  min-height: 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 22px 25px;
}

.product-card__type {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  max-width: 350px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.38;
}

.product-card--feature h3 {
  font-size: clamp(17px, 1.5vw, 22px);
}

.product-card__code {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.product-card__price {
  flex: 0 0 auto;
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
    background: var(--surface-raised);
  }

  .product-card:hover .product-card__media img {
    transform: scale(1.035) translateY(-3px);
  }
}

.catalog-section--equipment {
  padding-top: 170px;
}

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

.equipment-card .product-card__media {
  height: 330px;
}

.equipment-card .product-card__body {
  min-height: 135px;
  padding-bottom: 18px;
}

.product-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 20px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-card__link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.social-section {
  position: relative;
  width: var(--container);
  min-height: 760px;
  margin: 150px auto 0;
  padding: 130px clamp(28px, 8vw, 130px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: #0b0d10;
  text-align: center;
  isolation: isolate;
}

.social-section::before,
.social-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.social-section::before {
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 72%);
}

.social-section::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, var(--bg), transparent 22%, transparent 72%, var(--bg));
}

.social-section__glow {
  position: absolute;
  z-index: -1;
  top: -13%;
  left: 50%;
  width: 780px;
  height: 620px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99, 119, 215, 0.2), rgba(75, 96, 178, 0.05) 45%, transparent 70%);
}

.social-section__content {
  width: min(820px, 100%);
}

.social-section .eyebrow {
  justify-content: center;
}

.social-section h2 {
  font-size: clamp(66px, 9.5vw, 136px);
}

.social-section h2 em {
  display: block;
}

.social-section__lead {
  max-width: 520px;
  margin: 30px auto 46px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

.social-links {
  width: min(630px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-links > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(16px);
}

.social-links > a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.065);
}

.social-links__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.social-links__icon svg {
  width: 20px;
  fill: currentColor;
}

.social-links a > span:nth-child(2) {
  font-size: 13px;
  font-weight: 600;
}

.social-links small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links__arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 16px;
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 44px, 1100px);
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
    gap: 46px;
  }

  .hero__visual {
    min-height: 590px;
  }

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

  .product-card--feature {
    grid-column: span 3;
  }

  .product-card--feature .product-card__media {
    height: 450px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.55fr);
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 145px;
    gap: 70px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(66px, 13vw, 105px);
  }

  .hero__visual {
    min-height: 700px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading__aside {
    align-items: center;
  }

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

  .social-section {
    min-height: 680px;
    margin-top: 110px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 92px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 56px;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }

  .brand__text {
    font-size: 14px;
  }

  .header-status {
    padding-right: 8px;
    font-size: 9px;
  }

  .hero {
    padding: 118px 0 48px;
    gap: 52px;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 21px;
  }

  .eyebrow span + span {
    gap: 8px;
  }

  .eyebrow span + span::before {
    width: 18px;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 76px);
    line-height: 0.92;
  }

  .hero__lead {
    margin-top: 26px;
    font-size: 14px;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .button {
    min-height: 47px;
    padding: 0 18px;
  }

  .hero__stats {
    gap: 26px;
    margin-top: 42px;
  }

  .hero__stats dt {
    font-size: 19px;
  }

  .hero__stats dd {
    font-size: 8px;
  }

  .hero__visual {
    min-height: 510px;
    border-radius: 28px;
  }

  .hero__frame-lines {
    inset: 12px;
    border-radius: 20px;
  }

  .hero__index {
    top: 28px;
    left: 27px;
  }

  .hero__image {
    top: 7%;
    right: 0;
    width: 100%;
    height: 72%;
  }

  .spec-tag {
    gap: 6px;
    padding: 8px 10px;
    font-size: 8px;
  }

  .spec-tag--gpu {
    top: 19%;
    right: 3%;
  }

  .spec-tag--cpu {
    top: 45%;
    left: 3%;
  }

  .spec-tag--ram {
    top: 61%;
    right: 4%;
  }

  .hero__caption {
    right: 25px;
    bottom: 25px;
    left: 25px;
  }

  .hero__caption p {
    font-size: 9px;
  }

  .catalog-section {
    padding-top: 105px;
  }

  .section-heading {
    margin-bottom: 28px;
    padding-bottom: 27px;
  }

  .section-heading h2 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .section-heading__aside {
    align-items: flex-start;
  }

  .section-heading__aside > p {
    font-size: 11px;
  }

  .total-pill {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .total-pill strong {
    font-size: 12px;
  }

  .product-grid--pc,
  .product-grid--equipment {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card--feature {
    grid-column: auto;
  }

  .product-card,
  .social-section {
    border-radius: 23px;
  }

  .product-card__media,
  .product-card--feature .product-card__media,
  .equipment-card .product-card__media {
    height: 300px;
  }

  .product-card__body {
    min-height: 136px;
    padding: 20px 18px 22px;
  }

  .product-card--feature h3 {
    font-size: 17px;
  }

  .catalog-section--equipment {
    padding-top: 115px;
  }

  .social-section {
    min-height: 610px;
    margin-top: 90px;
    padding: 90px 20px;
  }

  .social-section h2 {
    font-size: clamp(59px, 19vw, 88px);
  }

  .social-section__lead {
    margin: 25px auto 34px;
    font-size: 12px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 28px 0 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}
