/* Karexi storefront theme — dark default (:root), light via html.light */
:root {
  color-scheme: dark;
  --bg: 8 8 16;
  --fg: 245 245 250;
  --card: 18 18 32;
  --card-fg: 245 245 250;
  --muted: 30 30 45;
  --muted-fg: 168 168 188;
  --border: 38 38 58;
}

html.light {
  color-scheme: light;
  --bg: 250 250 252;
  --fg: 14 14 22;
  --card: 255 255 255;
  --card-fg: 14 14 22;
  --muted: 240 240 245;
  --muted-fg: 90 90 110;
  --border: 225 225 235;
}

html.light body {
  background-image:
    radial-gradient(at 15% 8%, rgba(124, 58, 237, 0.1) 0px, transparent 40%),
    radial-gradient(at 85% 0%, rgba(34, 211, 238, 0.08) 0px, transparent 45%),
    radial-gradient(at 60% 95%, rgba(217, 70, 239, 0.06) 0px, transparent 50%);
}

html.light .grid-pattern {
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

html.light .glass,
html.light .glass-strong {
  border-color: rgb(var(--border) / 0.85) !important;
  background-color: rgb(var(--card) / 0.88) !important;
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.08);
}

html.light .bg-white\/5 {
  background-color: rgb(0 0 0 / 0.04) !important;
}

html.light .bg-white\/10 {
  background-color: rgb(0 0 0 / 0.06) !important;
}

html.light .bg-white\/\[0\.02\] {
  background-color: rgb(0 0 0 / 0.02) !important;
}

html.light .bg-white\/\[0\.03\] {
  background-color: rgb(0 0 0 / 0.03) !important;
}

html.light .bg-white\/\[0\.04\] {
  background-color: rgb(0 0 0 / 0.04) !important;
}

html.light .border-white\/5 {
  border-color: rgb(0 0 0 / 0.06) !important;
}

html.light .border-white\/10 {
  border-color: rgb(0 0 0 / 0.1) !important;
}

html.light .border-white\/15 {
  border-color: rgb(0 0 0 / 0.12) !important;
}

html.light .border-white\/20 {
  border-color: rgb(0 0 0 / 0.14) !important;
}

html.light .hover\:bg-white\/5:hover {
  background-color: rgb(0 0 0 / 0.05) !important;
}

html.light .hover\:bg-white\/10:hover {
  background-color: rgb(0 0 0 / 0.07) !important;
}

html.light .hover\:border-white\/20:hover {
  border-color: rgb(0 0 0 / 0.16) !important;
}

html.light #mobile-menu .bg-black\/70 {
  background-color: rgb(0 0 0 / 0.35) !important;
}

html.light .text-foreground\/80 {
  color: rgb(var(--fg) / 0.85);
}

html.light .shadow-xl {
  box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.12);
}

html.light .bg-gradient-mesh {
  opacity: 0.55;
}

html.light ::selection {
  background-color: rgba(99, 102, 241, 0.25);
  color: rgb(var(--fg));
}

/* Native <select> — closed control matches theme; options readable in OS dropdown */
html:not(.light) {
  color-scheme: dark;
}

html:not(.light) select {
  color-scheme: dark;
  background-color: rgb(18 18 32 / 0.95) !important;
  color: rgb(245 245 250) !important;
}

/* Windows/Chrome: popup list often stays light — force dark text on options */
html:not(.light) select option,
html:not(.light) select optgroup {
  background-color: #ffffff !important;
  color: #14141c !important;
}

html.light select {
  color-scheme: light;
  background-color: rgb(255 255 255) !important;
  color: rgb(14 14 22) !important;
}

html.light select option,
html.light select optgroup {
  background-color: #ffffff !important;
  color: #14141c !important;
}

/* Custom picker — reliable dark-theme dropdown on Windows */
.kx-picker {
  position: relative;
}

.kx-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kx-picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  text-align: start;
  cursor: pointer;
  color: rgb(245 245 250);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%23a8a8bc' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem !important;
}

.kx-picker-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(99 102 241 / 0.4);
}

.kx-picker-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 16rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.25rem 0;
  list-style: none;
  border-radius: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  background-color: rgb(18 18 32);
  box-shadow: 0 16px 48px -16px rgba(0, 0, 0, 0.65);
}

.kx-picker-menu[hidden] {
  display: none;
}

.kx-picker-option {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: rgb(245 245 250);
  cursor: pointer;
}

.kx-picker-option:hover,
.kx-picker-option--active {
  background-color: rgb(99 102 241 / 0.22);
  color: #fff;
}

html.light .kx-picker-btn {
  color: rgb(14 14 22);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24' stroke='%235a5a6e' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

html.light .kx-picker-menu {
  background-color: #fff;
  border-color: rgb(0 0 0 / 0.1);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.15);
}

html.light .kx-picker-option {
  color: rgb(14 14 22);
}

html.light .kx-picker-option:hover,
html.light .kx-picker-option--active {
  background-color: rgb(99 102 241 / 0.12);
  color: rgb(14 14 22);
}

/* Missing Tailwind utilities + denser desktop layout */
.max-w-7xl {
  max-width: 72rem;
}

.max-w-6xl {
  max-width: 64rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

@media (min-width: 1024px) {
  html:not(.kx-builder-frame) {
    font-size: 93.75%;
  }
}

/* Product grids — columns set in product-cards.css via CSS variables */
.kx-product-grid {
  display: grid;
  grid-template-columns: repeat(var(--kx-grid-cols-mobile, 2), minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .kx-product-grid {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .kx-product-grid {
    grid-template-columns: repeat(var(--kx-grid-cols-desktop, 4), minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* Catalog browse / brand cards — compact */
.kx-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .kx-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .kx-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.kx-catalog-card {
  border-radius: 1rem;
}

.kx-catalog-card__media {
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.kx-catalog-card__body {
  padding: 0.75rem;
}

@media (min-width: 640px) {
  .kx-catalog-card__body {
    padding: 1rem;
  }
}

.kx-browse-card__media {
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.kx-browse-card__body {
  padding: 0.65rem 0.75rem;
}

@media (min-width: 640px) {
  .kx-browse-card__body {
    padding: 0.75rem 1rem;
  }
}

.kx-product-grid .glass.rounded-2xl {
  border-radius: 1rem;
}

@media (max-width: 639px) {
  .kx-product-grid a.relative.aspect-\[16\/10\] {
    aspect-ratio: 4 / 3;
  }

  .kx-product-grid .absolute.top-4 {
    top: 0.5rem;
  }

  .kx-product-grid .absolute.top-4.start-4 {
    padding: 0.25rem 0.5rem;
  }
}

.kx-browse-card__media.kx-browse-card__media--fallback .kx-browse-card__flag-fallback {
  display: flex;
}

.kx-product-slider {
  overflow: hidden;
}

.kx-product-slider__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.kx-product-slider__track::-webkit-scrollbar {
  display: none;
}

.kx-product-slider__slide {
  flex: 0 0 72%;
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 640px) {
  .kx-product-slider__slide {
    flex-basis: 42%;
  }
}

@media (min-width: 1024px) {
  .kx-product-slider__slide {
    flex-basis: 24%;
  }
}

/* —— Section divider (category types → products) —— */
.kx-section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 0.25rem;
}

.kx-section-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.kx-section-divider__label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(var(--muted-fg));
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

html.light .kx-section-divider__line {
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

/* —— Cinematic hero (no scroll parallax — CSS animations only) —— */
.kx-hero-scene {
  position: relative;
  height: auto;
  margin-top: 0;
  overflow: visible;
}

.kx-hero-scene__sticky {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  display: block;
}

.kx-hero-scene__inner {
  display: flex;
  align-items: flex-start;
}

.kx-hero-scene__mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(at 20% 20%, rgba(124, 58, 237, 0.22) 0, transparent 45%),
    radial-gradient(at 80% 10%, rgba(34, 211, 238, 0.14) 0, transparent 40%),
    radial-gradient(at 50% 80%, rgba(217, 70, 239, 0.12) 0, transparent 50%);
  opacity: 1;
  pointer-events: none;
}

.kx-hero-scene__orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(90px);
  pointer-events: none;
}

.kx-hero-scene__orb--violet {
  width: 28rem;
  height: 28rem;
  top: 10%;
  right: 8%;
  background: rgba(124, 58, 237, 0.35);
}

.kx-hero-scene__orb--cyan {
  width: 22rem;
  height: 22rem;
  bottom: 8%;
  left: 5%;
  background: rgba(34, 211, 238, 0.28);
}

.kx-hero-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
  text-align: center;
  width: min(100%, 20rem);
  isolation: isolate;
}

.kx-hero-monogram__tagline {
  position: relative;
  z-index: 2;
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.kx-hero-visual-stage {
  position: relative;
  min-height: 24rem;
  width: 100%;
  max-width: 34rem;
  min-width: 0;
  margin-inline: auto;
  padding: 1.5rem 2.5rem;
  overflow: visible;
}

.kx-hero-visual-col {
  overflow: visible;
  width: 100%;
}

@media (min-width: 1280px) {
  .kx-hero-visual-stage {
    min-height: 26rem;
    max-width: 38rem;
    padding: 1.75rem 3rem;
  }
}

.kx-hero-scene__content>.kx-hero-copy-col,
.kx-hero-scene__content>.kx-hero-visual-col {
  min-width: 0;
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .kx-hero-scene__content>.kx-hero-copy-col {
    grid-column: 1 / span 6;
    grid-row: 1;
  }

  .kx-hero-scene__content>.kx-hero-visual-col {
    grid-column: 7 / span 6;
    grid-row: 1;
  }
}

@media (max-width: 1023px) {
  .kx-hero-visual-stage {
    min-height: 17.5rem;
    max-width: 21rem;
    padding: 1.1rem 1.75rem;
    margin-bottom: 0.25rem;
  }

  .kx-hero-monogram__mark {
    padding: 0.2rem 0.35rem;
  }

  .kx-hero-monogram__ring {
    width: calc(100% + 1.9rem);
    height: calc(100% + 1.3rem);
  }

  .kx-hero-monogram__ring-inner {
    border-radius: 1.15rem;
  }

  .kx-hero-monogram__logo {
    width: clamp(4.75rem, 26vw, 6.5rem);
    max-width: 100%;
  }

  .kx-hero-monogram__tagline {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    margin-top: 0.45rem;
  }

  .kx-hero-float {
    width: min(138px, 44%);
  }

  .kx-mock-card--gift {
    padding: 0.75rem 0.85rem 0.85rem;
    min-height: 7rem;
  }

  .kx-mock-card__amount {
    font-size: 1.35rem;
  }

  .kx-mock-card--apple,
  .kx-mock-card--code {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .kx-mock-card__brand {
    font-size: 0.72rem;
  }

  .kx-mock-card__meta {
    font-size: 0.58rem;
  }
}

.kx-hero-scene--builder,
.kx-builder-frame .kx-hero-scene {
  height: auto !important;
  margin-top: 0 !important;
}

.kx-hero-scene--builder .kx-hero-scene__sticky,
.kx-builder-frame .kx-hero-scene__sticky {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.kx-hero-scene--builder .kx-hero-scene__content,
.kx-builder-frame .kx-hero-scene__content {
  transform: none !important;
  opacity: 1 !important;
}

.kx-hero-scene--builder .kx-hero-visual-stage,
.kx-builder-frame .kx-hero-visual-stage {
  display: block !important;
}

.kx-hero-scene--builder .kx-hero-monogram,
.kx-builder-frame .kx-hero-monogram {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  opacity: 1;
  margin: 0 auto 1rem;
  pointer-events: none;
}

.kx-hero-scene--builder .kx-hero-monogram__mark[data-kx-block],
.kx-builder-frame .kx-hero-monogram__mark[data-kx-block] {
  pointer-events: auto;
  z-index: 17;
}

.kx-hero-scene--builder .kx-hero-monogram__ring[data-kx-block],
.kx-builder-frame .kx-hero-monogram__ring[data-kx-block] {
  pointer-events: auto;
  z-index: 16;
}

.kx-hero-scene--builder .kx-hero-float[data-kx-block],
.kx-builder-frame .kx-hero-float[data-kx-block] {
  pointer-events: auto;
}

.kx-hero-monogram__frame {
  position: relative;
  display: inline-block;
  margin-inline: auto;
}

.kx-hero-monogram__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 0.35rem 0.5rem;
  z-index: 2;
}

.kx-hero-monogram__logo {
  display: block;
  position: relative;
  z-index: 2;
  width: clamp(6.5rem, 16vw, 10rem);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 48px rgba(124, 58, 237, 0.5));
  animation: kx-hero-logo-float 5.5s ease-in-out infinite;
}

@keyframes kx-hero-logo-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.kx-hero-monogram__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 2.7rem);
  height: calc(100% + 1.7rem);
  margin: 0;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.kx-hero-monogram__ring-inner {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.65rem;
  border: 2px solid rgba(167, 139, 250, 0.5);
  box-shadow:
    0 0 32px rgba(124, 58, 237, 0.32),
    inset 0 0 20px rgba(124, 58, 237, 0.12);
  animation: kx-hero-ring 10s linear infinite;
  transform-origin: center center;
  pointer-events: none;
}

.kx-hero-monogram__ring-inner--paused {
  animation: none !important;
}

@keyframes kx-hero-ring-centered {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes kx-hero-gradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes kx-hero-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.kx-hero-title-accent {
  background: linear-gradient(90deg, #22d3ee, #a78bfa, #f472b6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kx-hero-gradient 5s linear infinite;
}

/* ── Hero copy typography redesign (title + subtitle, both locales) ── */
.kx-hero-copy-col h1 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  font-size: clamp(2rem, 6vw, 4.25rem);
  text-wrap: balance;
}
.kx-hero-copy-col h1 span:not(.kx-hero-title-accent) {
  background: linear-gradient(118deg, #ffffff 0%, #ece3ff 42%, #b9c2ff 72%, #9fe9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.kx-hero-copy-col .kx-hero-title-accent {
  display: block;
  margin-top: 0.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 6px 24px rgba(124, 58, 237, 0.35));
}
.kx-hero-copy-col > p {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: #b9bccb;
  max-width: 36rem;
}
@media (min-width: 1024px) {
  .kx-hero-copy-col > p { margin-inline: 0; }
}
.kx-hero-copy-col .glass {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.kx-hero-scene__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .kx-hero-scene__content {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.kx-hero-float {
  position: absolute;
  z-index: 8;
  width: min(178px, 40%);
  transition: filter 0.2s;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.kx-hero-float--gift {
  top: -4%;
  right: -6%;
  transform: rotate(-8deg);
  animation: kx-hero-drift-a 7s ease-in-out infinite;
}

.kx-hero-float--apple {
  top: 34%;
  left: -10%;
  transform: rotate(6deg);
  animation: kx-hero-drift-b 8s ease-in-out infinite;
}

.kx-hero-float--code {
  bottom: -4%;
  right: -6%;
  transform: rotate(-4deg);
  animation: kx-hero-drift-c 9s ease-in-out infinite;
}

@keyframes kx-hero-drift-a {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -14px;
  }
}

@keyframes kx-hero-drift-b {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: 12px;
  }
}

@keyframes kx-hero-drift-c {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

.kx-mock-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.kx-mock-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: kx-card-shine 4.5s ease-in-out infinite;
}

@keyframes kx-card-shine {

  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }

  85% {
    transform: translateX(120%);
  }
}

.kx-mock-card--gift {
  background: linear-gradient(145deg, #1f2937 0%, #111827 55%, #0f172a 100%);
  padding: 1rem 1.1rem 1.15rem;
  min-height: 8.5rem;
}

.kx-mock-card--gift .kx-mock-card__stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa, #f472b6);
}

.kx-mock-card--apple {
  background: linear-gradient(145deg, #312e81 0%, #1e1b4b 100%);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.kx-mock-card--code {
  background: linear-gradient(145deg, #0e7490 0%, #164e63 100%);
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.kx-mock-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
}

.kx-mock-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.kx-mock-card__brand {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.kx-mock-card__amount {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-top: 0.35rem;
}

.kx-mock-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #a5f3fc;
  margin-top: 0.25rem;
}

.kx-mock-card__meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.65);
}

.kx-mock-card__pulse {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: kx-pulse-dot 2s ease infinite;
}

@keyframes kx-pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

.kx-hero-fade-in {
  animation: kx-hero-fade-in 0.9s ease both;
}

.kx-hero-fade-in--2 {
  animation-delay: 0.1s;
}

.kx-hero-fade-in--3 {
  animation-delay: 0.2s;
}

.kx-hero-fade-in--4 {
  animation-delay: 0.3s;
}

.kx-hero-fade-in--5 {
  animation-delay: 0.4s;
}

@keyframes kx-hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shadow-glow-sm {
  box-shadow: 0 0 40px -8px rgba(124, 58, 237, 0.45);
}

.text-brand-cyan {
  color: #22d3ee;
}

@media (max-width: 1023px) {
  .kx-hero-scene__sticky {
    padding-bottom: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .kx-hero-monogram__logo,
  .kx-hero-title-accent,
  .kx-mock-card__shine,
  .kx-hero-float,
  .kx-hero-fade-in {
    animation: none !important;
  }

  .kx-hero-monogram__ring-inner {
    animation-duration: 18s;
  }
}