:root {
  --black: #0a0a0f;
  --black-deep: #050508;
  --purple: #2a0b3d;
  --magenta: #ff00ff;
  --blue: #00e5ff;
  --white: #ffffff;
  --text: #f8f7ff;
  --muted: #c9c3d8;
  --muted-strong: #ebe7f5;
  --panel: rgba(15, 14, 24, .82);
  --panel-strong: rgba(19, 14, 30, .94);
  --border: rgba(255, 255, 255, .14);
  --blue-border: rgba(0, 229, 255, .36);
  --magenta-border: rgba(255, 0, 255, .34);
  --shadow: 0 24px 80px rgba(0, 0, 0, .44);
  --font-display: "Orbitron", system-ui, sans-serif;
  --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 229, 255, .14), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(255, 0, 255, .16), transparent 30rem),
    linear-gradient(145deg, var(--black-deep), var(--black) 52%, #11051a);
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(#000, transparent 92%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 48%, rgba(0, 229, 255, .06) 49%, transparent 51%),
    linear-gradient(65deg, transparent 47%, rgba(255, 0, 255, .045) 49%, transparent 51%);
  background-size: 190px 190px;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(10, 10, 15, .84);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow:
    0 0 26px rgba(0, 229, 255, .28),
    0 0 30px rgba(255, 0, 255, .22);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .38);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(100deg, #0078ff, var(--blue) 28%, #7435ff 62%, var(--magenta));
  box-shadow:
    0 16px 44px rgba(0, 229, 255, .18),
    0 12px 48px rgba(255, 0, 255, .22);
}

.button-secondary {
  border-color: var(--blue-border);
  background: rgba(0, 229, 255, .06);
}

.hero {
  position: relative;
  min-height: clamp(650px, calc(100svh - 112px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, .96), rgba(10, 10, 15, .74) 48%, rgba(10, 10, 15, .92)),
    radial-gradient(circle at 74% 45%, rgba(42, 11, 61, .62), transparent 28rem);
}

.hero-grid {
  position: absolute;
  inset: -10% -6%;
  z-index: -3;
  opacity: .32;
  background:
    linear-gradient(rgba(0, 229, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 0, 255, .1) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(720px) rotateX(58deg) translateY(12%);
  transform-origin: 50% 70%;
}

.hero-beam {
  position: absolute;
  inset: auto auto 9% 52%;
  z-index: -2;
  width: 58vw;
  height: 10rem;
  filter: blur(40px);
  transform: rotate(-18deg);
  opacity: .42;
}

.hero-beam-blue {
  background: rgba(0, 229, 255, .38);
}

.hero-beam-magenta {
  inset: 18% -12% auto auto;
  background: rgba(255, 0, 255, .32);
  transform: rotate(22deg);
}

.hero-stage {
  position: absolute;
  right: max(2vw, calc((100vw - 1180px) / 2));
  bottom: 8%;
  width: min(510px, 48vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: .96;
}

.hero-stage img {
  width: min(390px, 82%);
  border-radius: 24px;
  filter:
    drop-shadow(0 26px 70px rgba(0, 0, 0, .62))
    drop-shadow(0 0 34px rgba(0, 229, 255, .2))
    drop-shadow(0 0 34px rgba(255, 0, 255, .18));
}

.orbit {
  position: absolute;
  inset: 5%;
  border: 1px solid rgba(0, 229, 255, .34);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(0, 229, 255, .1);
}

.orbit-two {
  inset: 14%;
  border-color: rgba(255, 0, 255, .36);
  transform: rotate(22deg) scaleX(1.16);
}

.layer-stack {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 120px;
  height: 90px;
  transform: skewY(-8deg);
}

.layer-stack span {
  display: block;
  height: 12px;
  margin-top: 8px;
  border: 1px solid rgba(0, 229, 255, .4);
  background: linear-gradient(90deg, rgba(0, 229, 255, .16), rgba(255, 0, 255, .13));
  box-shadow: 0 0 18px rgba(0, 229, 255, .18);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 74px 0 96px;
}

.eyebrow,
.kicker {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid var(--blue-border);
  border-radius: 999px;
  background: rgba(0, 229, 255, .06);
  color: var(--muted-strong);
  font-size: .75rem;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0, 229, 255, .92);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 760px;
  margin: 0;
  color: transparent;
  background: linear-gradient(92deg, var(--white), var(--blue) 42%, #9b6cff 66%, var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 22px rgba(0, 229, 255, .16));
  font-size: clamp(3.4rem, 10vw, 7.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.slogan {
  margin: 18px 0 0;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading.compact {
  max-width: 680px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .75rem;
}

h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p:not(.kicker),
.advantage-copy p,
.quote-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.services-grid,
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.step-card,
.catalog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    var(--panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}

.service-card {
  min-height: 252px;
  padding: 26px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-card::before,
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, .44), transparent 28%),
    linear-gradient(315deg, rgba(255, 0, 255, .35), transparent 26%);
  opacity: .22;
}

.service-card:hover,
.service-card:focus-within,
.catalog-card:hover,
.catalog-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, .36);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, .28),
    0 0 34px rgba(0, 229, 255, .08);
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 229, 255, .16), rgba(255, 0, 255, .12));
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 900;
  box-shadow:
    inset 0 0 22px rgba(0, 229, 255, .08),
    0 0 24px rgba(255, 0, 255, .1);
}

.service-card h3,
.step-card h3,
.catalog-card h3 {
  position: relative;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-card p,
.step-card p,
.catalog-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(42, 11, 61, .18), rgba(10, 10, 15, .08)),
    rgba(255, 255, 255, .015);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  min-height: 230px;
  padding: 22px;
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border: 1px solid var(--magenta-border);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 0, 255, .12);
}

.advantage-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.founder-line {
  width: max-content;
  max-width: 100%;
  margin-top: 24px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted-strong);
  font-weight: 700;
}

.founder-line strong {
  color: var(--white);
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.advantage-list span {
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: var(--muted-strong);
  font-weight: 700;
}

.advantage-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 12px;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(255, 0, 255, .62);
}

.catalog-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 229, 255, .08), transparent 26rem),
    radial-gradient(circle at 88% 46%, rgba(255, 0, 255, .1), transparent 28rem);
}

.catalog-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.category-visual {
  position: relative;
  min-height: 142px;
  margin-bottom: 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 28%, rgba(0, 229, 255, .28), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(255, 0, 255, .24), transparent 30%),
    linear-gradient(145deg, rgba(42, 11, 61, .92), rgba(6, 6, 12, .96));
}

.category-visual::before,
.category-visual::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(0, 229, 255, .32);
  transform: rotate(45deg);
}

.category-visual::after {
  inset: 42px 50px;
  border-color: rgba(255, 0, 255, .32);
  transform: rotate(-15deg);
}

.category-visual.gamer {
  background:
    linear-gradient(90deg, rgba(0, 229, 255, .18) 1px, transparent 1px),
    linear-gradient(rgba(255, 0, 255, .16) 1px, transparent 1px),
    linear-gradient(145deg, rgba(14, 17, 34, .96), rgba(42, 11, 61, .9));
  background-size: 28px 28px, 28px 28px, auto;
}

.category-visual.keychains::before {
  border-radius: 50%;
}

.category-visual.supports::before,
.category-visual.organizers::before,
.category-visual.functional::before {
  inset: 32px 36px 48px;
  transform: skewX(-12deg);
}

.category-visual.collectibles::after,
.category-visual.gifts::after {
  border-radius: 50%;
}

.catalog-card h3,
.catalog-card p,
.catalog-card a {
  margin-left: 8px;
  margin-right: 8px;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 16px);
  margin-top: auto;
  padding-top: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--blue);
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(0, 229, 255, .13), transparent 46%),
    linear-gradient(290deg, rgba(255, 0, 255, .13), transparent 46%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.quote-button {
  min-width: 220px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(5, 5, 8, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0 42px;
}

.footer-brand {
  display: inline-flex;
  color: var(--white);
  text-decoration: none;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer address {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

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

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-stage {
    right: -8%;
    width: min(470px, 52vw);
    opacity: .72;
  }

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

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

  .advantage-layout,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .quote-button {
    width: max-content;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

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

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 12px;
    font-size: .68rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    top: 88px;
    right: -28%;
    bottom: auto;
    width: 360px;
    opacity: .3;
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 8px;
    font-size: .68rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.2rem);
  }

  .hero-subtitle {
    font-size: 1.24rem;
  }

  .section {
    padding: 68px 0;
  }

  .services-grid,
  .catalog-grid,
  .steps,
  .advantage-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card {
    min-height: auto;
  }

  .quote-panel {
    padding: 26px;
  }

  .quote-button {
    width: 100%;
  }

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

  .site-footer address {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
