:root {
  --black: #111113;
  --gray-900: #1d1d1f;
  --gray-700: #515154;
  --gray-500: #86868b;
  --gray-200: #d2d2d7;
  --gray-100: #f5f5f7;
  --white: #fff;
  --blue: #0071e3;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

.notice {
  padding: 10px 20px;
  color: #fff;
  background: var(--black);
  font-size: 12px;
  text-align: center;
  letter-spacing: .02em;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand img {
  display: block;
  width: 152px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  gap: 38px;
  font-size: 13px;
}

.main-nav a {
  transition: opacity .2s;
}

.main-nav a:hover {
  opacity: .55;
}

.cart-button {
  position: relative;
  justify-self: end;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 700px;
  overflow: hidden;
  background: var(--gray-100);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  width: min(590px, 100%);
  padding: 80px 30px 80px max(30px, calc((100vw - 1240px) / 2));
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: .98;
  letter-spacing: -.065em;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--gray-700);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, opacity .2s;
}

.button:hover {
  transform: translateY(-1px);
  opacity: .82;
}

.button-dark {
  color: #fff;
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: #fff;
}

.text-link {
  color: var(--blue);
  font-size: 16px;
}

.text-link span {
  font-size: 24px;
  vertical-align: -1px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 600px;
  place-items: center;
  perspective: 1200px;
}

.chip {
  z-index: 2;
  display: flex;
  width: clamp(270px, 31vw, 470px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18%;
  color: #f5f5f7;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), transparent 35%),
    linear-gradient(145deg, #27272b, #050506);
  box-shadow:
    0 45px 80px rgba(0, 0, 0, .22),
    inset 0 0 0 10px rgba(255, 255, 255, .025);
  transform: rotateX(58deg) rotateZ(-35deg);
}

.chip::before {
  position: absolute;
  width: 77%;
  height: 77%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14%;
  content: "";
}

.chip span {
  font-size: clamp(68px, 8vw, 120px);
  font-weight: 650;
  letter-spacing: -.08em;
}

.chip small {
  margin-top: 5px;
  color: #8c8c91;
  font-size: 9px;
  letter-spacing: .25em;
}

.halo {
  position: absolute;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .95), rgba(210, 210, 215, .55) 35%, transparent 68%);
  filter: blur(25px);
}

.category-section,
.products-section,
.benefits {
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 30px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.service-copy h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

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

.category-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  transition: transform .3s, box-shadow .3s;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-icon {
  display: grid;
  width: 120px;
  height: 120px;
  margin: 15px auto 45px;
  place-items: center;
  border: 1px solid #ccc;
  border-radius: 25px;
  color: #fff;
  background: linear-gradient(145deg, #3b3b3e, #101011);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.04em;
  transform: rotate(-7deg);
}

.category-gpu .category-icon {
  width: 160px;
  height: 92px;
  border-radius: 14px;
  transform: rotate(5deg);
}

.category-memory .category-icon {
  width: 150px;
  height: 58px;
  margin-top: 45px;
  margin-bottom: 77px;
  border-radius: 8px;
  transform: rotate(-5deg);
}

.category-storage .category-icon {
  width: 75px;
  height: 150px;
  margin-top: 0;
  margin-bottom: 45px;
  border-radius: 10px;
  transform: rotate(8deg);
}

.category-card h3 {
  margin-bottom: 7px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.category-card p {
  color: var(--gray-500);
  font-size: 14px;
}

.round-arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gray-900);
  font-size: 23px;
  line-height: 1;
}

.products-section {
  max-width: none;
  background: var(--gray-100);
}

.products-section > * {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.heading-row {
  display: flex;
  max-width: 1240px;
  align-items: flex-end;
  justify-content: space-between;
}

.filter {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: #e8e8ed;
}

.filter-button {
  padding: 8px 15px;
  border: 0;
  border-radius: 999px;
  color: var(--gray-700);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.filter-button.active {
  color: #fff;
  background: var(--gray-900);
}

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

.product-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  transition: transform .3s, box-shadow .3s, opacity .3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.hidden {
  display: none;
}

.product-art {
  display: grid;
  height: 330px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(145deg, #fafafa, #e9e9ed);
}

.product-art span {
  display: grid;
  width: 155px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 24px;
  color: #ececef;
  background: linear-gradient(145deg, #343438, #080809);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
  font-size: 42px;
  font-weight: 650;
  letter-spacing: -.05em;
  transform: rotate(-5deg);
}

.art-gpu span {
  width: 270px;
  aspect-ratio: 2.2;
  border-radius: 16px;
  transform: rotate(4deg);
}

.art-ssd span {
  width: 100px;
  aspect-ratio: .45;
  border-radius: 9px;
  font-size: 19px;
  transform: rotate(8deg);
}

.art-board span {
  width: 190px;
  border-radius: 13px;
  transform: rotate(-3deg);
}

.product-label {
  margin-bottom: 7px;
  color: #bf4800;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 5px;
  font-size: 27px;
  letter-spacing: -.03em;
}

.product-spec {
  margin-bottom: 25px;
  color: var(--gray-500);
  font-size: 14px;
}

.product-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e7e7e9;
}

.product-buy strong {
  font-size: 18px;
}

.add-button {
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  cursor: pointer;
  transition: opacity .2s;
}

.add-button:hover {
  opacity: .8;
}

.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 630px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.service-copy {
  z-index: 2;
  align-self: center;
  max-width: 620px;
  padding: 100px 40px 100px max(30px, calc((100vw - 1240px) / 2));
}

.service-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 34px;
  color: #a1a1a6;
  font-size: 19px;
  line-height: 1.5;
}

.service-orbit {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.orbit-one {
  width: 460px;
  height: 460px;
  transform: rotateX(65deg) rotateZ(15deg);
}

.orbit-two {
  width: 600px;
  height: 300px;
  transform: rotate(35deg);
}

.orbit-core {
  z-index: 2;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid #3b3b3d;
  border-radius: 42px;
  background: linear-gradient(145deg, #27272a, #070708);
  box-shadow: 0 0 100px rgba(255, 255, 255, .12);
  font-size: 64px;
  font-weight: 650;
  letter-spacing: -.07em;
  transform: rotate(-8deg);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  text-align: center;
}

.benefit-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gray-900);
  font-size: 22px;
}

.benefits h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.benefits p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.5;
}

footer {
  padding: 75px 30px 40px;
  text-align: center;
  background: var(--gray-100);
}

footer img {
  width: 190px;
  height: 48px;
  object-fit: contain;
}

footer p {
  margin: 15px 0 30px;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 45px;
  font-size: 13px;
}

footer small {
  color: var(--gray-500);
  font-size: 11px;
}

.back-link {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
}

.header-contact-link {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
}

.header-contact-link span {
  font-size: 20px;
  vertical-align: -1px;
}

.home-hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 760px;
  overflow: hidden;
  background: var(--gray-100);
}

.home-hero-copy {
  z-index: 2;
  align-self: center;
  padding: 90px 30px 90px max(30px, calc((100vw - 1240px) / 2));
}

.home-hero-copy h1 {
  margin-bottom: 28px;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 36px;
  color: var(--gray-700);
  font-size: 21px;
  line-height: 1.48;
}

.home-hero-stage {
  position: relative;
  display: grid;
  min-height: 650px;
  overflow: hidden;
  place-items: center;
  background: #f2f2f4;
}

.home-gaming-pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-statement {
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 30px;
}

.home-statement h2 {
  max-width: 1000px;
  margin-bottom: 35px;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -.055em;
}

.statement-copy {
  max-width: 730px;
  margin-left: auto;
  color: var(--gray-500);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.4;
  letter-spacing: -.025em;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 130px;
  gap: 20px;
}

.home-feature {
  display: flex;
  min-height: 680px;
  padding: 55px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.home-feature h2 {
  margin-bottom: 22px;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.home-feature p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
}

.feature-dark {
  color: #fff;
  background: #000;
}

.feature-dark p:not(.eyebrow) {
  color: #a1a1a6;
}

.feature-light {
  background: var(--gray-100);
}

.feature-white-pc {
  display: block;
  width: min(78%, 390px);
  max-height: 365px;
  align-self: center;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 45px rgba(255, 255, 255, .08));
}

.compatibility-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 45px 0 5px;
}

.component-preview {
  margin: 0;
}

.component-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .09);
}

.component-preview figcaption {
  margin-top: 10px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.infrastructure-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  max-width: 1240px;
  min-height: 680px;
  margin: 0 auto 130px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
}

.infrastructure-copy {
  padding: 70px 30px 70px 65px;
}

.infrastructure-copy > h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.infrastructure-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 42px;
  color: var(--gray-500);
  font-size: 18px;
  line-height: 1.55;
}

.infrastructure-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.infrastructure-services article {
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.infrastructure-services span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.infrastructure-services h3 {
  margin: 14px 0 9px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.infrastructure-services p {
  margin-bottom: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.55;
}

.infrastructure-visual {
  display: grid;
  min-height: 560px;
  padding: 35px;
  place-items: center;
  background: linear-gradient(145deg, #1c1c1f, #050506);
}

.nas-system-image {
  display: block;
  width: min(100%, 540px);
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, .35));
}

.home-process {
  padding: 130px max(30px, calc((100vw - 1240px) / 2));
  background: var(--gray-100);
}

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

.process-grid article {
  padding-top: 25px;
  border-top: 1px solid var(--gray-200);
}

.process-grid span {
  color: var(--gray-500);
  font-size: 13px;
}

.process-grid h3 {
  margin: 40px 0 12px;
  font-size: 23px;
  letter-spacing: -.025em;
}

.process-grid p {
  color: var(--gray-500);
  line-height: 1.55;
}

.home-shop-banner {
  display: flex;
  max-width: 1240px;
  min-height: 410px;
  margin: 130px auto;
  padding: 65px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #000;
}

.home-shop-banner h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.home-shop-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: #a1a1a6;
  font-size: 18px;
}

.home-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 30px 140px;
  gap: 80px;
}

.home-contact h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.home-contact > div:last-child {
  align-self: end;
}

.home-contact > div:last-child p {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--gray-500);
  font-size: 18px;
  line-height: 1.55;
}

.contact-page {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 110px 30px 140px;
  gap: 90px;
}

.contact-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.contact-intro h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 470px;
  color: var(--gray-500);
  font-size: 19px;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  margin-top: 55px;
  gap: 22px;
}

.contact-details div {
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-500);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 17px;
}

.contact-form-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
}

.form-heading {
  margin-bottom: 38px;
}

.form-heading h2 {
  margin-bottom: 10px;
  font-size: 40px;
  letter-spacing: -.04em;
}

.form-heading > p:last-child {
  color: var(--gray-500);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d8d8dc;
  border-radius: 13px;
  outline: 0;
  color: var(--gray-900);
  background: #fff;
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 180px;
  padding: 15px;
  resize: vertical;
  line-height: 1.5;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 113, 227, .13);
}

.form-field small,
.security-error,
.form-status {
  margin: 0;
  color: var(--gray-500);
  font-size: 12px;
}

.security-field {
  max-width: 330px;
}

.security-error,
.form-status {
  color: #b42318;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--gray-700);
  font-size: 13px;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gray-900);
}

.consent-field a {
  color: var(--blue);
}

.contact-submit {
  justify-self: start;
}

.form-result {
  display: grid;
  min-height: 70vh;
  padding: 80px 25px;
  place-items: center;
}

.result-card {
  max-width: 680px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  text-align: center;
}

.result-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gray-900);
  font-size: 24px;
}

.result-card h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 65px);
}

.result-card > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--gray-500);
  font-size: 18px;
  line-height: 1.5;
}

.legal-main {
  min-height: 70vh;
  padding: 100px max(30px, calc((100vw - 1120px) / 2)) 130px;
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 70px;
}

.legal-intro h1 {
  margin-bottom: 22px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-intro > p:last-child {
  color: var(--gray-500);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 80px;
  align-items: start;
}

.legal-content {
  max-width: 690px;
}

.legal-content section {
  padding: 0 0 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2,
.legal-note h2 {
  margin-bottom: 14px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.legal-content p,
.legal-content address {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
}

.legal-terms section p + p {
  margin-top: 18px;
}

.legal-terms strong {
  color: var(--gray-900);
}

.legal-content mark {
  padding: 2px 5px;
  color: #6b4e00;
  background: #fff0b3;
  border-radius: 4px;
}

.legal-note {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--gray-100);
}

.legal-note-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--gray-900);
  font-weight: 700;
}

.legal-note p {
  margin-bottom: 14px;
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.55;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

.cart-overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(5px);
}

.cart-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  display: flex;
  width: min(440px, 100%);
  height: 100%;
  padding: 28px;
  flex-direction: column;
  background: #fff;
  box-shadow: -20px 0 70px rgba(0, 0, 0, .12);
  transform: translateX(100%);
  transition: transform .35s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e5e7;
}

.cart-header h2 {
  margin: 0;
  font-size: 28px;
}

.cart-close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 25px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  padding: 22px 0;
  overflow-y: auto;
}

.empty-cart {
  color: var(--gray-500);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  padding: 18px 0;
  border-bottom: 1px solid #ececef;
}

.cart-item span {
  color: var(--gray-500);
  font-size: 13px;
}

.cart-remove {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.cart-footer {
  padding-top: 20px;
  border-top: 1px solid #e5e5e7;
}

.cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 19px;
}

.checkout-button {
  width: 100%;
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--gray-500);
  text-align: center;
}

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

  .site-header {
    grid-template-columns: 1fr auto;
  }

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

  .home-hero-copy {
    padding-bottom: 20px;
  }

  .home-hero-stage {
    min-height: 540px;
  }

  .home-gaming-pc {
    object-fit: contain;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .infrastructure-section {
    grid-template-columns: 1fr;
    margin-right: 30px;
    margin-left: 30px;
  }

  .infrastructure-visual {
    min-height: 500px;
  }

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

  .hero-copy {
    padding-bottom: 30px;
  }

  .hero-visual {
    min-height: 470px;
  }

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

  .service-section {
    grid-template-columns: 1fr;
  }

  .service-copy {
    padding-bottom: 20px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-intro {
    position: static;
  }

  .legal-note {
    position: static;
    max-width: 690px;
  }
}

@media (max-width: 650px) {
  .brand img {
    width: 130px;
  }

  .header-contact-link {
    font-size: 12px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-copy {
    padding: 70px 20px 15px;
  }

  .home-hero-copy h1 {
    font-size: 50px;
  }

  .home-hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .home-hero-stage {
    min-height: 420px;
  }

  .home-statement {
    padding: 90px 20px;
  }

  .home-statement h2 {
    font-size: 46px;
  }

  .home-feature-grid {
    padding: 0 20px 90px;
  }

  .infrastructure-section {
    margin: 0 20px 90px;
  }

  .infrastructure-copy {
    padding: 50px 28px;
  }

  .infrastructure-copy > h2 {
    font-size: 42px;
  }

  .infrastructure-services {
    grid-template-columns: 1fr;
  }

  .infrastructure-visual {
    min-height: 400px;
    padding: 35px 25px;
  }

  .home-feature {
    min-height: 590px;
    padding: 35px 28px;
  }

  .feature-white-pc {
    width: min(86%, 330px);
    max-height: 330px;
  }

  .compatibility-visual {
    gap: 8px;
  }

  .component-preview img {
    border-radius: 13px;
  }

  .component-preview figcaption {
    font-size: 10px;
  }

  .home-process {
    padding: 90px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .process-grid h3 {
    margin-top: 25px;
  }

  .home-shop-banner {
    display: block;
    min-height: 0;
    margin: 80px 20px;
    padding: 45px 28px;
  }

  .home-shop-banner .button {
    margin-top: 30px;
  }

  .home-contact {
    grid-template-columns: 1fr;
    padding: 20px 20px 90px;
    gap: 30px;
  }

  .contact-page {
    padding: 70px 20px 90px;
  }

  .contact-intro h1 {
    font-size: 50px;
  }

  .contact-form-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

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

  .form-heading h2 {
    font-size: 34px;
  }

  .result-card {
    padding: 45px 24px;
  }

  .legal-header .back-link {
    font-size: 0;
  }

  .legal-header .back-link::after {
    font-size: 22px;
    content: "←";
  }

  .legal-main {
    padding: 70px 20px 90px;
  }

  .legal-intro {
    margin-bottom: 50px;
  }

  .legal-intro h1 {
    font-size: 43px;
    line-height: 1.02;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 65px;
  }

  h1 {
    font-size: 51px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 19px;
    font-size: 14px;
  }

  .hero-actions .text-link {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .category-section,
  .products-section,
  .benefits {
    padding: 80px 20px;
  }

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

  .heading-row {
    display: block;
  }

  .filter {
    width: max-content;
    margin-top: 25px;
  }

  .product-art {
    height: 280px;
  }

  .service-copy {
    padding: 80px 25px 15px;
  }

  .service-orbit {
    min-height: 420px;
    transform: scale(.78);
  }

  .benefits {
    gap: 50px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px 25px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
