* {
  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;
}
.os-icon {
  display: inline-block;
  vertical-align: -0.1em;
  opacity: 0.75;
}
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);
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(12, 13, 20, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 45, 62, 0.5);
  transition: padding 0.3s ease;
}
.nav--scrolled {
  padding: 0.5rem 0;
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #e8ebf4;
  white-space: nowrap;
}
.nav__logo > a {
  display: inline-flex;
  align-items: center;
  color: inherit;
}
.nav__logo > a:last-child {
  font-size: 0;
}
.nav__logo > a:last-child::after {
  content: "Çĺåųdè Ğŗïmøįřę";
  font-size: 1.125rem;
  font-weight: 700;
  font-style: italic;
}
.nav__logo-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.8;
  transition: opacity 0.2s, box-shadow 0.3s;
}
.nav__logo:hover .nav__logo-icon {
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35), 0 0 20px rgba(123, 108, 240, 0.25);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: #a4a9c0;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover {
  color: #e8ebf4;
}
.nav__link--gold {
  font-weight: 600;
  background: linear-gradient(135deg, #d4af37, #f5ce50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(254, 188, 46, 0.3);
  border-radius: 20px;
  background-clip: padding-box, text;
  -webkit-background-clip: padding-box, text;
  background: rgba(254, 188, 46, 0.08);
  color: #f5ce50 !important;
  -webkit-text-fill-color: #f5ce50;
}
.nav__link--gold:hover {
  background: rgba(254, 188, 46, 0.15);
  border-color: rgba(254, 188, 46, 0.5);
  box-shadow: 0 0 12px rgba(254, 188, 46, 0.2);
}
.nav__store-group {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  padding: 0.2rem 0.35rem;
  border: 1px solid rgba(42, 45, 62, 0.6);
  border-radius: 8px;
  background: rgba(26, 28, 40, 0.5);
}
.nav__store-sep {
  width: 1px;
  height: 16px;
  background: rgba(42, 45, 62, 0.8);
  margin: 0 0.1rem;
}
.nav__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.65rem;
  color: #686e8a;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav__store-btn:hover {
  color: #e8ebf4;
  background: rgba(123, 108, 240, 0.1);
}
.nav__store-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav__store-btn:hover svg {
  opacity: 1;
}
.nav__store-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: default;
}
.nav__store-btn[aria-disabled="true"]:hover {
  color: #686e8a;
  background: none;
}
.nav__store-btn--primary {
  background: #7b6cf0;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}
.nav__store-btn--primary svg {
  opacity: 1;
}
.nav__store-btn--primary:hover {
  background: #6a5bdf;
  color: #fff;
  box-shadow: 0 0 12px rgba(123, 108, 240, 0.4);
}
.nav__mobile-stores {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding: 0.25rem;
  border: 1px solid rgba(42, 45, 62, 0.6);
  border-radius: 8px;
  background: rgba(26, 28, 40, 0.5);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: #7b6cf0;
  color: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav__cta svg {
  flex-shrink: 0;
}
.nav__cta:hover {
  background: #6a5bdf;
  box-shadow: 0 0 16px rgba(123, 108, 240, 0.35);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8ebf4;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.nav__mobile.open {
  display: flex;
}
@media (max-width: 768px) {
  .nav__links,
  .nav__inner > .nav__store-group {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}
.carousel {
  padding: 4rem 2rem 2rem;
}
.carousel__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.carousel__header {
  text-align: center;
  margin-bottom: 2rem;
}
.carousel__header .section-sub {
  margin: 0 auto;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: 12px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
}
.carousel__viewport:active {
  cursor: grabbing;
}
.carousel__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.carousel__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 75svh;
  height: auto;
  border-radius: 10px;
  border: 1px solid #2a2d3e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04);
  object-fit: contain;
}
.carousel__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2d3e;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.carousel__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.carousel__caption {
  text-align: center;
  font-size: 0.85rem;
  color: #686e8a;
  margin-top: 0.75rem;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #1a1c28;
  border: 1px solid #2a2d3e;
  border-radius: 50%;
  color: #a4a9c0;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.carousel__btn:hover {
  background: #232636;
  color: #e8ebf4;
  border-color: #7b6cf0;
}
.carousel__dots {
  display: flex;
  gap: 0.4rem;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(104, 110, 138, 0.3);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.carousel__dot:hover {
  background: rgba(104, 110, 138, 0.6);
}
.carousel__dot--active {
  background: #7b6cf0;
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .carousel {
    padding: 3rem 1rem 1rem;
  }
  .carousel__btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
.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;
  }
}
.related-pages {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2a2d3e;
}
.related-pages__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8ebf4;
  margin: 0 0 1.25rem;
}
.related-pages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.related-pages__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: #1a1c28;
  border: 1px solid #2a2d3e;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.related-pages__card:hover {
  border-color: #7b6cf0;
  background: #232636;
}
.related-pages__card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b0a4ff;
  line-height: 1.3;
}
.related-pages__card-desc {
  font-size: 0.8rem;
  color: #686e8a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) {
  .related-pages__grid {
    grid-template-columns: 1fr;
  }
}
.news {
  padding: 6rem 2rem 4rem;
}
.news__container {
  max-width: 780px;
  margin: 0 auto;
}
.news__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2d3e;
}
.news__date {
  display: block;
  font-size: 0.85rem;
  color: #b0a4ff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}
.news__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #e8ebf4;
  margin: 0 0 1rem;
}
.news__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #a4a9c0;
  margin: 0;
}
.news__media {
  margin-bottom: 2.5rem;
}
.news__media .carousel {
  padding: 0;
}
.news__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #a4a9c0;
}
.news__body h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e8ebf4;
  margin: 2.5rem 0 1rem;
}
.news__body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e8ebf4;
  margin: 2rem 0 0.75rem;
}
.news__body p {
  margin: 0 0 1.25rem;
}
.news__body a {
  color: #b0a4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.news__body a:hover {
  color: #7b6cf0;
}
.news__body ul,
.news__body ol {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
}
.news__body li {
  margin-bottom: 0.4rem;
}
.news__body blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #7b6cf0;
  background: #1a1c28;
  border-radius: 0 8px 8px 0;
  color: #e8ebf4;
  font-style: italic;
}
.news__body code {
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 0.9em;
  background: #1a1c28;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  border: 1px solid #2a2d3e;
}
.news__body pre {
  margin: 1.5rem 0;
  padding: 1.25rem;
  background: #1a1c28;
  border: 1px solid #2a2d3e;
  border-radius: 8px;
  overflow-x: auto;
}
.news__body pre code {
  background: none;
  border: none;
  padding: 0;
}
.news__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #2a2d3e;
  margin: 1.5rem 0;
}
.news__body hr {
  border: none;
  border-top: 1px solid #2a2d3e;
  margin: 2.5rem 0;
}
.news__body strong {
  color: #e8ebf4;
  font-weight: 600;
}
.news__cta {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2a2d3e;
  display: flex;
  justify-content: center;
}
.news__cta-embed {
  max-width: 100%;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .news {
    padding: 5rem 1rem 3rem;
  }
  .news__body {
    font-size: 1rem;
  }
}
