:root {
  --bg: #06010b;
  --bg-soft: #0d0616;
  --surface: rgba(17, 9, 28, 0.74);
  --surface-strong: rgba(20, 10, 35, 0.92);
  --line: rgba(201, 124, 255, 0.18);
  --line-strong: rgba(211, 140, 255, 0.34);
  --text: #f7f3ff;
  --muted: #c8bdd9;
  --accent: #a94dff;
  --accent-strong: #d874ff;
  --accent-soft: rgba(169, 77, 255, 0.18);
  --success: #25d366;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI Variable Text", "Segoe UI", "Inter", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(167, 80, 255, 0.18), transparent 28%),
    linear-gradient(160deg, #040108 0%, #0b0511 48%, #05010a 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 85%);
  pointer-events: none;
}

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

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

.page-shell {
  min-height: 100vh;
}

.section {
  position: relative;
  padding: 88px 24px;
}

.section-dark {
  background: linear-gradient(180deg, rgba(12, 6, 20, 0.86), rgba(8, 3, 14, 0.88));
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.section-label,
.eyebrow,
.hero-card__label {
  margin: 0 0 14px;
  color: #ddb6ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.section h2,
.hero-copy h1,
.hero-card h2 {
  margin: 0;
  font-family: "Arial Black", "Bahnschrift", "Segoe UI", sans-serif;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.section h2,
.hero-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-text,
.hero-text,
.value-card p,
.service-card p,
.feature-card p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.primary-link,
.secondary-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-link {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 30px rgba(169, 77, 255, 0.24);
}

.primary-link--large {
  min-height: 64px;
  padding: 0 28px;
}

.secondary-link,
.whatsapp-link {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.whatsapp-link:hover,
.whatsapp-link:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 24px 72px;
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 3, 13, 0.88) 12%, rgba(7, 3, 13, 0.42) 50%, rgba(7, 3, 13, 0.86) 100%),
    linear-gradient(to top, rgba(5, 1, 9, 0.88), rgba(5, 1, 9, 0.16)),
    url("assets/gaming-setup.png") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(105deg, transparent 35%, rgba(216, 116, 255, 0.14) 50%, transparent 65%);
  transform: translateX(-40%);
  animation: lightSweep 9s ease-in-out infinite;
}

.hero-glow {
  pointer-events: none;
  filter: blur(74px);
  opacity: 0.34;
}

.hero-glow-left {
  inset: auto auto 8% -10%;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 77, 255, 0.72) 0%, rgba(169, 77, 255, 0) 70%);
}

.hero-glow-right {
  inset: 5% -8% auto auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 49, 255, 0.32) 0%, rgba(119, 49, 255, 0) 70%);
}

.topbar,
.hero-content {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: 1240px;
  margin: 0 auto 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.36);
}

.brand-name,
.brand-tag {
  margin: 0;
}

.brand-name {
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 11ch;
  text-transform: uppercase;
}

.hero-text {
  max-width: 60ch;
  margin-top: 18px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin-top: 28px;
}

.mini-highlight {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 7, 24, 0.7);
  backdrop-filter: blur(14px);
}

.mini-highlight span {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 1rem;
}

.mini-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.value-card,
.service-card,
.feature-card,
.contact-box,
.product-visual {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.intro-grid,
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.value-grid,
.services-grid,
.feature-list {
  display: grid;
  gap: 18px;
}

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

.value-card,
.service-card,
.feature-card {
  border-radius: 24px;
  padding: 24px;
}

.value-card h3,
.service-card h3,
.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

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

.service-step,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(216, 116, 255, 0.24), rgba(121, 35, 255, 0.1));
  color: var(--accent-strong);
  font-weight: 800;
}

.service-card__image {
  width: 100%;
  height: 180px;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.service-card__image--headset {
  object-position: center top;
}

.service-card__image--peripherals {
  object-position: center 42%;
}

.service-card__image--accessories {
  object-position: right center;
}

.product-visual {
  overflow: hidden;
  border-radius: 28px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: start;
  gap: 28px;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(20, 10, 35, 0.96), rgba(8, 3, 14, 0.92)),
    url("assets/logo-mark.png") right 24px bottom 18px / 180px no-repeat;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(8, 3, 16, 0.74);
}

.contact-form label,
.form-status {
  margin: 0;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(211, 140, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a99bbf;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
  resize: vertical;
  min-height: 138px;
}

.submit-button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(169, 77, 255, 0.24);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.form-status {
  min-height: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.form-status.is-success {
  color: #8af0b9;
}

.form-status.is-error {
  color: #ffb0d5;
}

.footer {
  padding: 0 24px 40px;
}

.footer-wrap {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  width: min(220px, 54vw);
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #111b21;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(24, 179, 81, 0.32);
}

.floating-whatsapp__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
}

.floating-whatsapp__icon svg {
  width: 22px;
  height: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lightSweep {
  0%,
  100% {
    transform: translateX(-46%);
  }
  50% {
    transform: translateX(46%);
  }
}

@media (max-width: 1100px) {
  .hero-content,
  .intro-grid,
  .product-grid,
  .section-head,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .section-head,
  .contact-box {
    display: grid;
    align-items: start;
  }

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

@media (max-width: 760px) {
  .section,
  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    margin-bottom: 36px;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-tag {
    font-size: 0.86rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-actions,
  .feature-list,
  .services-grid,
  .value-grid,
  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .primary-link,
  .secondary-link,
  .whatsapp-link,
  .primary-link--large {
    width: 100%;
  }

  .contact-box {
    padding: 24px;
    background:
      linear-gradient(135deg, rgba(20, 10, 35, 0.96), rgba(8, 3, 14, 0.92)),
      url("assets/logo-mark.png") right 16px bottom 16px / 124px no-repeat;
  }

  .floating-whatsapp__text {
    display: none;
  }

  .floating-whatsapp {
    width: 56px;
    padding: 0;
    justify-content: center;
  }
}

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

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

  .primary-link,
  .secondary-link,
  .whatsapp-link,
  .floating-whatsapp {
    transition: none;
  }

  .hero-overlay::after {
    animation: none;
  }
}
