:root {
  color-scheme: dark;
  --bg: #06070a;
  --bg-2: #0b0e14;
  --panel: #10151d;
  --panel-2: #151a23;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f8fafc;
  --muted: #a9b4c4;
  --soft: #d8dee8;
  --cyan: #38e8ff;
  --green: #24d66d;
  --red: #ff3f54;
  --amber: #f7b733;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(56, 232, 255, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: #05070a;
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 7, 10, 0.82);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-emblem {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(56, 232, 255, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(56, 232, 255, 0.16), rgba(255, 63, 84, 0.16));
  color: var(--cyan);
  box-shadow: 0 0 26px rgba(56, 232, 255, 0.18);
}

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

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(36, 214, 109, 0.36);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #16a75a);
  color: #03120a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(36, 214, 109, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 44px rgba(36, 214, 109, 0.3);
}

.button-small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.mobile-gaming-hero {
  display: none;
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(145deg, #3C0F00, #130300);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  isolation: isolate;
  padding: 34px 18px;
}

.mobile-gaming-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 44px 44px;
}

.mobile-gaming-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
}

.mobile-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.mobile-hero-art {
  width: min(88vw, 430px);
  max-height: 70vh;
  object-fit: contain;
  margin-top: -7vh;
  border-radius: 8px;
  filter:
    drop-shadow(0 0 18px rgba(255, 189, 73, 0.52))
    drop-shadow(0 0 52px rgba(255, 58, 40, 0.22));
  animation: mobileBreath 3.8s ease-in-out infinite;
}

.mobile-get-button {
  margin-top: 22px;
  min-width: min(72vw, 280px);
  min-height: 56px;
  font-size: 1.05rem;
  animation: attractPulse 1.8s ease-in-out infinite;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  background:
    linear-gradient(135deg, rgba(255, 63, 84, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(12, 16, 24, 0.5), rgba(6, 7, 10, 0.96));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 54%, rgba(56, 232, 255, 0.08) 54% 55%, transparent 55%),
    linear-gradient(120deg, transparent 0 64%, rgba(255, 63, 84, 0.08) 64% 65%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.65rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.text-link {
  color: var(--soft);
  font-weight: 800;
  text-decoration-color: rgba(56, 232, 255, 0.6);
  text-underline-offset: 5px;
}

.trust-strip {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.96rem;
}

.trust-strip span {
  position: relative;
  padding-left: 22px;
}

.trust-strip span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 63, 84, 0.58);
}

.hero-visual {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0a0d12;
  box-shadow: var(--shadow), 0 0 46px rgba(56, 232, 255, 0.12);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.hero-spec-panel {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 2px;
  width: min(230px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(56, 232, 255, 0.28);
  border-radius: 8px;
  background: rgba(8, 12, 17, 0.78);
  backdrop-filter: blur(12px);
}

.hero-spec-panel span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-spec-panel strong {
  color: var(--cyan);
  font-size: 1.22rem;
  line-height: 1.1;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  text-align: center;
}

.section-heading p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1rem;
}

.build-section {
  background: linear-gradient(180deg, #080a0f, #0d1017);
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.build-card,
.feature-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.build-card {
  overflow: hidden;
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.build-card:hover,
.build-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(56, 232, 255, 0.3);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.38), 0 0 38px rgba(56, 232, 255, 0.09);
}

.build-card-featured {
  border-color: rgba(255, 63, 84, 0.24);
}

.build-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #0a0d12;
}

.build-card-body {
  padding: 24px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--soft);
  font-weight: 800;
  font-size: 0.92rem;
}

.why-section {
  background:
    linear-gradient(180deg, #0d1017, #07090d),
    var(--bg);
}

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

.feature-card {
  min-height: 154px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: 24px 18px;
  text-align: center;
}

.feature-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(56, 232, 255, 0.24));
}

.feature-card h3 {
  font-size: 1rem;
}

.support-line {
  margin-top: 24px;
  color: var(--soft);
  text-align: center;
}

.policy-section {
  background: linear-gradient(180deg, #07090d, #0a0b0f);
}

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

.policy-card {
  padding: 26px;
}

.policy-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050609;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 38px;
  padding: 58px 0 42px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.2;
}

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

.footer-about p {
  max-width: 520px;
}

.footer-button {
  margin-top: 16px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  text-decoration-color: rgba(56, 232, 255, 0.48);
  text-underline-offset: 4px;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-bottom {
  margin: 0;
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line);
  color: #7f8a9b;
  text-align: center;
}

@keyframes mobileBreath {
  0%,
  100% {
    transform: scale(1) translateY(0);
    filter:
      drop-shadow(0 0 18px rgba(255, 189, 73, 0.52))
      drop-shadow(0 0 52px rgba(255, 58, 40, 0.22));
  }
  50% {
    transform: scale(1.035) translateY(-8px);
    filter:
      drop-shadow(0 0 25px rgba(255, 205, 99, 0.72))
      drop-shadow(0 0 72px rgba(255, 58, 40, 0.34));
  }
}

@keyframes attractPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 34px rgba(36, 214, 109, 0.28);
  }
  50% {
    transform: translateY(-4px) scale(1.035);
    box-shadow: 0 18px 52px rgba(36, 214, 109, 0.46);
  }
}

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

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

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

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

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

  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 0;
  }

  body {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 42px 42px,
      var(--bg);
  }

  .site-header {
    display: none;
  }

  .mobile-gaming-hero {
    display: flex;
  }

  .container {
    width: min(100% - 28px, 620px);
  }

  .hero-section {
    padding: 58px 0 56px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .build-grid,
  .policy-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .build-card-body {
    padding: 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .feature-card {
    min-height: 136px;
    padding: 20px 12px;
  }

  .footer-grid {
    gap: 24px;
    padding-top: 48px;
  }
}

@media (max-width: 460px) {
  .spec-list {
    grid-template-columns: 1fr;
  }

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

  .mobile-hero-art {
    width: min(94vw, 390px);
    max-height: 66vh;
    margin-top: -10vh;
  }

  .mobile-get-button {
    width: min(84vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

  Phones matching these CSS-pixel + DPR combinations will keep the
  mobile gradient hero visible, but hide the actual content.
*/
@media screen and (max-width: 430px) and (max-height: 932px) and (min-resolution: 2dppx),
       screen and (max-width: 414px) and (max-height: 896px) and (-webkit-min-device-pixel-ratio: 2),
       screen and (max-width: 393px) and (max-height: 873px) and (-webkit-min-device-pixel-ratio: 3),
       screen and (max-width: 390px) and (max-height: 844px) and (-webkit-min-device-pixel-ratio: 3),
       screen and (max-width: 375px) and (max-height: 812px) and (-webkit-min-device-pixel-ratio: 3),
       screen and (max-width: 360px) and (max-height: 800px) and (min-resolution: 2dppx) {
  html,
  body {
    width: 100%;
    min-height: 100vh;
    overflow: hidden !important;
    background: linear-gradient(145deg, #3C0F00, #130300) !important;
  }

  body {
    position: fixed;
    inset: 0;
  }

  .site-header,
  main,
  .site-footer,
  .skip-link {
    display: none !important;
  }

  .mobile-gaming-hero {
    display: flex !important;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(145deg, #3C0F00, #130300) !important;
    overflow: hidden !important;
  }

  .mobile-gaming-hero > * {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-gaming-hero::before,
  .mobile-gaming-hero::after {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

