:root {
  --background: oklch(0.11 0.019 274);
  --background-deep: oklch(0.08 0.017 274);
  --foreground: oklch(0.97 0.014 96);
  --muted: oklch(0.78 0.039 274);
  --panel: oklch(0.16 0.025 274);
  --panel-strong: oklch(0.2 0.029 274);
  --line: oklch(0.34 0.037 274);
  --green: oklch(0.78 0.23 142);
  --yellow: oklch(0.84 0.13 82);
  --ice: oklch(0.84 0.055 274);
  --font-heading: var(--font-display), ui-rounded, "Arial Rounded MT Bold", sans-serif;
  --font-copy: var(--font-body), ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-copy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site,
.legal-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, var(--background-deep) 0%, var(--background) 42%, var(--background-deep) 100%);
}

.site--dk,
.site--dk + .site-footer {
  --muted: oklch(0.8 0.047 260);
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
}

.site-header--layered {
  position: relative;
  z-index: 2;
}

.site-header__brand {
  display: inline-flex;
  width: 190px;
}

.site-header__links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.site-header__links a,
.site-footer a {
  transition: color 160ms ease;
}

.site-header__links a:hover,
.site-footer a:hover {
  color: var(--green);
}

.site-header__login,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header__login,
.button--primary {
  background: var(--green);
  color: oklch(0.12 0.018 142);
}

.button--plain {
  border-color: var(--line);
  background: oklch(0.15 0.023 274 / 0.84);
  color: var(--foreground);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 0 clamp(18px, 5vw, 82px) 54px;
  isolation: isolate;
}

.hero__image,
.game-card__image,
.service-card__image,
.hardware__image,
.hardware-showcase__image,
.service-hero__image,
.split-hero__image {
  object-fit: cover;
}

.hero__image {
  z-index: -3;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, oklch(0.08 0.017 274 / 0.98) 0%, oklch(0.1 0.018 274 / 0.7) 48%, oklch(0.08 0.017 274 / 0.96) 100%),
    linear-gradient(180deg, oklch(0.08 0.017 274 / 0.3) 0%, var(--background) 96%);
}

.hero__content,
.page-hero,
.service-hero__content,
.split-hero,
.section,
.seo-copy,
.legal-document {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin-top: clamp(96px, 15vh, 164px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 980px;
  font-size: clamp(4rem, 10vw, 8.1rem);
  line-height: 0.9;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero__copy,
.page-hero p,
.service-hero__content p,
.split-hero__content p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero__copy {
  margin: 24px 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section {
  padding: clamp(54px, 8vw, 104px) 0;
}

.section--tight {
  padding-top: 28px;
}

.section--flat {
  padding-top: 24px;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.section__heading--plain {
  align-items: center;
}

.section__heading a {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.carousel {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: carousel-scroll 38s linear infinite;
}

.carousel:hover .carousel__track,
.carousel:focus-within .carousel__track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  to {
    transform: translate3d(calc(-50% - 8px), 0, 0);
  }
}

.game-card,
.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.game-card {
  flex: 0 0 min(340px, 76vw);
  min-height: 218px;
}

.game-card__shade,
.service-card__shade,
.service-hero__shade,
.split-hero__shade,
.hardware__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, oklch(0.08 0.017 274 / 0.88) 78%),
    linear-gradient(90deg, oklch(0.08 0.017 274 / 0.58), transparent 60%);
}

.game-card__content,
.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: end;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

.game-card strong,
.service-card strong {
  font-family: var(--font-heading);
  font-size: 1.78rem;
  line-height: 1;
}

.game-card small,
.service-card small,
.price-line {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.game-card span span,
.service-card span span {
  color: var(--muted);
  font-weight: 750;
}

.hardware,
.split-hero,
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.hardware__media,
.split-hero__media {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.hardware__media div,
.hardware-showcase__content,
.split-hero__content,
.service-hero__content {
  position: relative;
  z-index: 1;
}

.hardware__details,
.split-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hardware__details > p,
.hardware-showcase__content > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hardware-list,
.simple-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hardware-list li,
.simple-list li {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
  line-height: 1.55;
}

.hardware-list li::before,
.simple-list li::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--green);
  content: "";
}

.hardware-list--compact,
.hardware-list--large {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-strip h2 {
  max-width: 720px;
}

.sketch-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 10px 0 0;
  list-style: none;
}

.sketch-list li {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--foreground);
  font-weight: 850;
  line-height: 1.45;
}

.sketch-list li::before {
  display: inline-flex;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 46% 54% 48% 52%;
  color: var(--green);
  content: "✓";
  font-weight: 950;
  transform: rotate(-5deg);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.trust-strip p {
  margin: 0;
  color: var(--ice);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
}

.trust-strip a {
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 950;
  text-transform: uppercase;
}

.statement {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 0;
  text-align: center;
}

.statement p {
  margin: 0;
  color: oklch(0.84 0.045 274);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.page-hero {
  padding: clamp(72px, 10vw, 126px) 0 clamp(34px, 6vw, 64px);
}

.page-hero--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero--center h1 {
  margin-inline: auto;
}

.page-hero--center p {
  margin-inline: auto;
}

.page-hero h1,
.service-hero h1,
.split-hero h1 {
  max-width: 900px;
  font-size: clamp(3.3rem, 7.4vw, 6.8rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 210px;
}

.hardware-showcase {
  position: relative;
  display: flex;
  min-height: 680px;
  width: min(1240px, calc(100% - 36px));
  margin: clamp(42px, 7vw, 86px) auto 0;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(38px, 7vw, 88px);
}

.hardware-showcase__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.08 0.017 274 / 0.98) 0%, oklch(0.09 0.017 274 / 0.88) 42%, oklch(0.08 0.017 274 / 0.58) 100%),
    linear-gradient(180deg, oklch(0.08 0.017 274 / 0.08), var(--background));
}

.hardware-showcase__content {
  width: min(720px, 100%);
}

.hardware-showcase h1 {
  max-width: 760px;
  font-size: clamp(4rem, 8vw, 7.2rem);
}

.hardware-points {
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
  padding: 0;
  color: var(--foreground);
  font-weight: 850;
  list-style: none;
}

.hardware-points li {
  display: flex;
  gap: 14px;
  align-items: center;
}

.hardware-points li::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--green);
  content: "";
}

.service-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: end;
  padding: clamp(40px, 7vw, 78px) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-hero__shade {
  background:
    linear-gradient(90deg, oklch(0.08 0.017 274 / 0.96) 0%, oklch(0.09 0.017 274 / 0.76) 56%, oklch(0.08 0.017 274 / 0.9) 100%),
    linear-gradient(180deg, transparent, var(--background));
}

.service-detail {
  align-items: start;
}

.status-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-card,
.info-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
}

.status-card {
  display: grid;
  gap: 10px;
}

.status-card span,
.info-grid span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-card strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.info-grid h2 {
  margin-top: 14px;
  font-size: 2rem;
}

.info-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.info-grid a {
  color: var(--green);
  font-weight: 850;
}

.service-card small {
  margin-top: 2px;
}

.seo-copy {
  border-top: 1px solid var(--line);
  padding: clamp(46px, 7vw, 78px) 0;
}

.seo-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.seo-copy div {
  display: grid;
  max-width: 920px;
  gap: 14px;
  margin-top: 22px;
}

.seo-copy p,
.legal-document p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.site-footer p {
  margin: 6px 0 0;
}

.legal-shell {
  padding-top: 0;
}

.legal-document {
  width: min(880px, calc(100% - 36px));
  padding: 72px 0;
}

.legal-document h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.legal-document__intro {
  margin: 22px 0 0;
  font-size: 1.16rem;
}

.legal-document__updated {
  margin: 18px 0 44px;
  color: var(--green);
  font-weight: 850;
}

.legal-document__sections {
  display: grid;
  gap: 34px;
}

.legal-document section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.legal-document h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.08;
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .site-header__links {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hardware,
  .split-hero,
  .service-detail,
  .feature-strip,
  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .hardware__media,
  .split-hero__media {
    width: 100%;
    min-height: 360px;
  }

  .service-grid,
  .status-grid,
  .info-grid,
  .info-grid--wide,
  .hardware-list--compact,
  .hardware-list--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hardware-showcase {
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .site-header__brand {
    width: 150px;
  }

  .site-header__login,
  .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 600px;
    padding-inline: 18px;
  }

  .hero__content {
    margin-top: 86px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .section__heading,
  .trust-strip,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .status-grid,
  .info-grid,
  .info-grid--wide,
  .hardware-list--compact,
  .hardware-list--large {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: 500px;
  }

  .hardware-showcase {
    min-height: 540px;
    padding: 28px;
  }
}
