* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0c0d14;
  color: #e8ebf4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
code {
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  background: #1a1c28;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  color: #b0a4ff;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: #7b6cf0;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
}
.skip-link:focus {
  top: 0.5rem;
}
*:focus-visible {
  outline: 2px solid #7b6cf0;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.app-title {
  font-weight: 700;
  font-style: italic;
}
video {
  pointer-events: none;
}
.section-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #7b6cf0;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #e8ebf4;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1.1rem;
  color: #a4a9c0;
  max-width: 540px;
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes glow-pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(123, 108, 240, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(123, 108, 240, 0.3);
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn--primary {
  background: #7b6cf0;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(123, 108, 240, 0.5);
}
.btn--primary:hover {
  background: #6a5bdf;
  box-shadow: 0 0 24px rgba(123, 108, 240, 0.4);
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #a4a9c0;
  border: 1px solid #2a2d3e;
}
.btn--secondary:hover {
  border-color: #7b6cf0;
  color: #e8ebf4;
}
.btn--green {
  background: linear-gradient(135deg, #2ea87a, #4fd1a3);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(79, 209, 163, 0.25);
  border: 1px solid rgba(79, 209, 163, 0.4);
}
.btn--green:hover {
  background: linear-gradient(135deg, #3cc08e, #6de0ba);
  box-shadow: 0 0 36px rgba(79, 209, 163, 0.5);
  transform: translateY(-2px);
  color: #fff;
}
.btn--golden {
  background: linear-gradient(135deg, #d4af37, #f5ce50);
  color: #1a1200;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(254, 188, 46, 0.25);
  border: 1px solid rgba(254, 188, 46, 0.4);
}
.btn--golden:hover {
  background: linear-gradient(135deg, #e5c158, #ffd666);
  box-shadow: 0 0 36px rgba(254, 188, 46, 0.5);
  transform: translateY(-2px);
  color: #1a1200;
}
.btn--large {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}
.media-dim {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: fit-content;
  justify-self: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 0 40px rgba(0, 0, 0, 0.2);
}
.media-dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 13, 20, 0.3) 0%, rgba(12, 13, 20, 0.6) 50%, #0c0d14 100%);
  pointer-events: none;
  border-radius: inherit;
}
.media-dim > video,
.media-dim > img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.35);
}
.product-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
  justify-content: flex-end;
}
.product-label {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  border: 1px solid;
}
.product-label:nth-child(3n+1) {
  background: rgba(255, 95, 87, 0.12);
  color: #ff5f57;
  border-color: rgba(255, 95, 87, 0.3);
}
.product-label:nth-child(3n+2) {
  background: rgba(254, 188, 46, 0.12);
  color: #febc2e;
  border-color: rgba(254, 188, 46, 0.3);
}
.product-label:nth-child(3n+3) {
  background: rgba(40, 200, 64, 0.12);
  color: #28c840;
  border-color: rgba(40, 200, 64, 0.3);
}
.section-header {
  text-align: center;
  padding: 3rem 2rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-header {
    padding: 2.5rem 1.25rem 0.75rem;
  }
}
@media (max-width: 480px) {
  .section-header {
    padding: 2rem 1rem 0.5rem;
  }
}
.split-block {
  padding: 2.5rem 2rem;
}
.split-block__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-block--reverse .split-block__inner {
  direction: rtl;
}
.split-block--reverse .split-block__inner > * {
  direction: ltr;
}
.split-block__media {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
}
.split-block__img,
.split-block__video {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  border-radius: 16px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.split-block__img:hover,
.split-block__video:hover {
  opacity: 1;
}
.split-block__content {
  display: flex;
  flex-direction: column;
}
.split-block__text {
  font-size: 1.05rem;
  color: #a4a9c0;
  line-height: 1.7;
  margin-top: 0.75rem;
}
@media (max-width: 1024px) {
  .split-block__inner {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .split-block {
    padding: 2rem 1.25rem;
  }
  .split-block__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .split-block--reverse .split-block__inner {
    direction: ltr;
  }
  .split-block__img,
  .split-block__video {
    max-height: 260px;
  }
  .split-block__content {
    align-items: center;
  }
  .split-block__text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .split-block {
    padding: 1.5rem 1rem;
  }
  .split-block__img,
  .split-block__video {
    max-height: 200px;
  }
  .split-block__text {
    font-size: 0.95rem;
  }
}
.site-footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid #2a2d3e;
  background: #0c0d14;
}
.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hexstack-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  text-decoration: none;
  color: #a4a9c0;
  transition: color 0.2s;
}
.hexstack-logo:hover {
  color: #e8ebf4;
}
.hexstack-logo:hover .hexstack-logo__icon {
  opacity: 1;
}
.hexstack-logo__prefix {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hexstack-logo__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.2s, box-shadow 0.3s;
  filter: invert(1);
  mix-blend-mode: screen;
  box-shadow: 0 0 0 transparent;
}
.hexstack-logo:hover .hexstack-logo__icon {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 0 0 24px rgba(123, 108, 240, 0.3);
}
.hexstack-logo__suffix {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #686e8a;
  transition: color 0.2s;
}
.site-footer__link:hover {
  color: #b0a4ff;
}
.site-footer__link svg {
  flex-shrink: 0;
}
.site-footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #686e8a;
  transition: color 0.2s, background 0.2s;
}
.site-footer__social-link:hover {
  color: #e8ebf4;
  background: #232636;
}
.site-footer__disclaimer {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #2a2d3e;
  text-align: center;
}
.site-footer__disclaimer p {
  font-size: 0.75rem;
  color: #686e8a;
}
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .site-footer__links {
    justify-content: center;
  }
  .site-footer__social {
    justify-content: center;
  }
}
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0c0d14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: #a4a9c0;
  pointer-events: none;
}
.loader__brand-prefix,
.loader__brand-suffix {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.loader__brand-prefix {
  font-weight: 400;
}
.loader__brand-suffix {
  font-weight: 700;
}
.loader__brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 32px rgba(123, 108, 240, 0.4);
}
.loader__video {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: screen;
}
.hero {
  position: relative;
  min-height: 60vh;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0d14;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 13, 20, 0.4) 0%, rgba(12, 13, 20, 0.7) 50%, #0c0d14 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 720px;
}
.hero__brand {
  margin-bottom: 2rem;
}
.hero__brand .hexstack-logo {
  font-size: 1rem;
  color: #a4a9c0;
  justify-content: center;
}
.hero__brand .hexstack-logo__icon {
  opacity: 0.9;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 32px rgba(123, 108, 240, 0.4);
}
.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #e8ebf4;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a4a9c0;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}
.products {
  padding: 0 2rem 2rem;
}
.products__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #1a1c28;
  border: 1px solid #2a2d3e;
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  border-color: rgba(123, 108, 240, 0.4);
  box-shadow: 0 0 40px rgba(123, 108, 240, 0.1);
}
.product-card__media {
  flex-shrink: 0;
}
.product-card__img {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.product-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8ebf4;
}
.product-card__title a {
  color: inherit;
  transition: color 0.2s;
}
.product-card__title a:hover {
  color: #b0a4ff;
}
.product-card__subtitle {
  font-size: 0.85rem;
  color: #7b6cf0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card__desc {
  font-size: 1rem;
  color: #a4a9c0;
  line-height: 1.6;
  max-width: 540px;
}
.product-card__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    max-width: none;
  }
  .hero__video {
    object-fit: cover;
  }
  .hero__headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero__sub {
    font-size: 1rem;
  }
  .products {
    padding: 0 1.25rem 1.5rem;
  }
  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .product-card__media {
    display: flex;
    justify-content: center;
  }
  .product-card__img {
    width: 110px;
    height: 110px;
  }
  .product-card__body {
    align-items: center;
  }
  .product-card__desc {
    text-align: center;
  }
  .product-card__actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
  .hero__video {
    object-fit: cover;
  }
  .hero__headline {
    font-size: 1.75rem;
  }
  .hero__inner {
    padding: 1.5rem 1rem;
  }
  .products {
    padding: 0 1rem 1rem;
  }
  .product-card {
    padding: 1.25rem 1rem;
  }
  .product-card__img {
    width: 90px;
    height: 90px;
  }
  .product-card__title {
    font-size: 1.25rem;
  }
  .product-card__desc {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }
  .section-headline {
    font-size: 1.5rem;
  }
}
