* {
  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--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);
}
.mockup__titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #232636;
  border-bottom: 1px solid #2a2d3e;
}
.mockup__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.mockup__dot--red {
  background: #ff5f57;
}
.mockup__dot--yellow {
  background: #febc2e;
}
.mockup__dot--green {
  background: #28c840;
}
.mockup__title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: #686e8a;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
}
.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;
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(123, 108, 240, 0.12), transparent), radial-gradient(circle 1px at center, rgba(104, 110, 138, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
}
.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__text {
  animation: fadeInUp 0.8s ease both;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7b6cf0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(123, 108, 240, 0.3);
  border-radius: 20px;
  background: rgba(123, 108, 240, 0.06);
}
.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #e8ebf4 30%, #b0a4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 1.15rem;
  color: #a4a9c0;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero__badge {
  font-size: 0.8rem;
  color: #686e8a;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__mockup {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2d3e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 80px rgba(123, 108, 240, 0.15);
  animation: float 6s ease-in-out infinite;
}
.hero__mockup-body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c0d14;
  padding: 24px;
}
.hero__icon {
  width: 200px;
  height: 200px;
  border-radius: 32px;
  image-rendering: pixelated;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__visual {
    order: -1;
  }
}
.stats {
  padding: 2.5rem 2rem;
  background: #12131c;
  border-top: 1px solid #2a2d3e;
  border-bottom: 1px solid #2a2d3e;
}
.stats__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stats__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #b0a4ff;
}
.stats__label {
  font-size: 0.85rem;
  color: #686e8a;
}
@media (max-width: 640px) {
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.features {
  padding: 6rem 2rem;
}
.features__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.features__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.features__header .section-sub {
  margin: 0 auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #1a1c28;
  border: 1px solid #2a2d3e;
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 108, 240, 0.4);
  box-shadow: 0 8px 32px rgba(123, 108, 240, 0.08);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 108, 240, 0.12);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7b6cf0;
}
.feature-card__icon svg {
  width: 22px;
  height: 22px;
  color: #7b6cf0;
}
.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8ebf4;
  margin-bottom: 0.6rem;
}
.feature-card__desc {
  font-size: 0.9rem;
  color: #a4a9c0;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}
.how {
  padding: 6rem 2rem;
  background: #12131c;
}
.how__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.how__header {
  text-align: center;
  margin-bottom: 4rem;
}
.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.how__step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 1.5rem;
}
.how__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: #7b6cf0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  transition: box-shadow 0.3s;
}
.how__number:hover {
  box-shadow: 0 0 32px rgba(123, 108, 240, 0.4);
}
.how__step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8ebf4;
  margin-bottom: 0.5rem;
}
.how__step-desc {
  font-size: 0.9rem;
  color: #a4a9c0;
  line-height: 1.6;
}
.how__connector {
  width: 80px;
  min-width: 40px;
  height: 2px;
  border-top: 2px dashed #2a2d3e;
  margin-top: 32px;
  flex-shrink: 1;
}
@media (max-width: 768px) {
  .how__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .how__connector {
    width: 2px;
    height: 40px;
    border-top: none;
    border-left: 2px dashed #2a2d3e;
    margin-top: 0;
  }
  .how__step {
    max-width: 100%;
  }
}
.demo {
  padding: 6rem 2rem;
  background: #12131c;
}
.demo__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.demo__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.demo__header .section-sub {
  margin: 0 auto;
}
.demo__frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2d3e;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 80px rgba(123, 108, 240, 0.08);
}
.demo__frame iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
  background: #0c0d14;
}
@media (max-width: 768px) {
  .demo__frame iframe {
    height: 480px;
  }
}
@media (max-width: 480px) {
  .demo__frame iframe {
    height: 400px;
  }
}
.tech {
  padding: 6rem 2rem;
  background: #12131c;
}
.tech__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.tech__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.tech__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #a4a9c0;
  line-height: 1.6;
}
.tech__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b6cf0;
}
.tech__code {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2d3e;
}
.tech__code-header {
  padding: 10px 16px;
  background: #232636;
  font-size: 0.8rem;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  color: #686e8a;
  border-bottom: 1px solid #2a2d3e;
}
.tech__code-block {
  padding: 20px;
  background: #0c0d14;
  font-family: "SF Mono", Menlo, Monaco, "Courier New", monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  color: #686e8a;
  overflow-x: auto;
  border-left: 3px solid #7b6cf0;
}
.tech__code-block code {
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}
.yaml-val {
  color: #4fd1a3;
}
.md-text {
  color: #a4a9c0;
}
@media (max-width: 768px) {
  .tech__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.pricing {
  padding: 6rem 2rem;
}
.pricing__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.pricing__header {
  margin-bottom: 2.5rem;
}
.pricing__header .section-sub {
  margin: 0 auto;
}
.pricing__card {
  position: relative;
  background: #1a1c28;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  z-index: 1;
}
.pricing__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #7b6cf0, #4fd1a3, #7b6cf0);
  background-size: 300% 300%;
  border-radius: 14px;
  z-index: -1;
  animation: gradient-shift 6s ease infinite;
}
.pricing__checklist {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing__checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  color: #e8ebf4;
  filter: contrast(2);
}
.pricing__checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4fd1a3;
  font-weight: 700;
}
.pricing__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #686e8a;
}
.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;
  }
}
