* {
  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);
}
.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: 2rem;
}
.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-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;
  gap: 1.5rem;
  margin-left: auto;
}
.nav__link {
  font-size: 0.9rem;
  color: #a4a9c0;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #e8ebf4;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  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: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__cta {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}
.footer {
  padding: 3rem 2rem 1.5rem;
  border-top: 1px solid #2a2d3e;
}
.footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}
.footer__logo {
  font-size: 1rem;
  font-weight: 700;
  color: #e8ebf4;
}
.footer__byline {
  font-size: 0.8rem;
  color: #686e8a;
  margin-top: 0.25rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  color: #a4a9c0;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #e8ebf4;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #686e8a;
}
.footer__disclaimer {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2d3e;
  text-align: center;
}
.footer__disclaimer p {
  font-size: 0.75rem;
  color: #686e8a;
}
@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
  .footer__meta {
    align-items: center;
  }
}
.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;
  }
}
.privacy {
  padding: 6rem 1rem 4rem;
  min-height: 100vh;
  background: linear-gradient(135deg, #12131c 0%, #161722 100%);
}
@media (max-width: 768px) {
  .privacy {
    padding: 4rem 1rem 3rem;
  }
}
.privacy__container {
  max-width: 48rem;
  margin: 0 auto;
}
.privacy__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #2a2d3e;
}
.privacy__title {
  font-size: 3rem;
  font-weight: 700;
  color: #e8ebf4;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .privacy__title {
    font-size: 2rem;
  }
}
.privacy__subtitle {
  font-size: 1.125rem;
  color: #a4a9c0;
  margin: 0;
}
.privacy__content {
  color: #e8ebf4;
  line-height: 1.7;
}
.privacy__section {
  margin-bottom: 3rem;
}
.privacy__section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e8ebf4;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.privacy__section p {
  font-size: 1.0625rem;
  color: #a4a9c0;
  margin-bottom: 1rem;
}
.privacy__section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.privacy__section ul li {
  font-size: 1.0625rem;
  color: #a4a9c0;
  margin-bottom: 0.75rem;
  list-style: disc;
}
.privacy__section ul li code {
  background: #1a1c28;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 0.9em;
  color: #7b6cf0;
}
.privacy__section strong {
  color: #e8ebf4;
  font-weight: 600;
}
.privacy__section a {
  color: #7b6cf0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.privacy__section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.privacy__section code {
  background: #1a1c28;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 0.9em;
  color: #7b6cf0;
}
.nav {
  background: #12131c;
  border-bottom: 1px solid #2a2d3e;
}
.nav__link:hover {
  color: #7b6cf0;
}
