@font-face {
  font-family: Jetbrains Mono;
  src: url('../fonts/JetBrainsMono-VariableFont_wght.ttf') format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Neopixel;
  src: url('../fonts/NEOPIXEL-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

body {
  color: #fff;
  letter-spacing: -.05em;
  background-color: #000;
  font-family: Jetbrains Mono, sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M4 4 L4 28 L10 22 L14 30 L18 28 L14 20 L22 20 Z" fill="white"/></svg>') 4 4, auto;
}

/* White star cursor for clickable elements */
a, button, [data-open-waitlist], .cta-button, input, textarea, select,
a:hover, button:hover, [data-open-waitlist]:hover, .cta-button:hover,
.w-inline-block, .w-inline-block:hover, [role="button"], [role="button"]:hover,
.modal-submit-btn, .modal-submit-btn:hover, .submit-buttton, .submit-buttton:hover,
.social_icon, .social_icon:hover, .footer-social-item, .footer-social-item:hover,
.logo, .logo:hover {
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 0C12 6.627 6.627 12 0 12C6.627 12 12 17.373 12 24C12 17.373 17.373 12 24 12C17.373 12 12 6.627 12 0Z" fill="white"/></svg>') 12 12, pointer !important;
}

p {
  margin-bottom: 0;
}

.spline-scene-wrapper {
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100lvh;
  display: block;
  position: fixed;
  inset: 0%;
}

.section {
  z-index: 2;
  position: relative;
}

.section.hero {
  min-height: 100svh;
  padding-top: 5rem;
}

.section.footer {
  z-index: 0;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  min-height: 100svh;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: grid;
}

.header {
  z-index: 10;
  width: 100%;
  padding-top: 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
}

.page-padding {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.grid-8cols {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.logo {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100%;
  display: block;
}

.header-paragraph {
  max-width: 40ch;
  line-height: 1;
}

.hero-container {
  z-index: 10;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 100svh;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: grid;
  position: relative;
  top: 100px;
  right: 60px;
}

.hero-title {
  text-transform: uppercase;
  font-family: Neopixel, sans-serif;
  font-size: 7.75rem;
  font-weight: 400;
  line-height: .9;
}

#typewriter-text {
    font-family: Jetbrains Mono, sans-serif !important;
}

.hero-title-top {
  max-width: 10ch;
  display: block;
}

.hero-title-word {
  margin-left: auto;
  display: inline-block;
}

.hero-title-bottom {
  align-items: center;
  display: flex;
}

.hero-title-line-wrapper {
  flex: 1;
  align-items: center;
  margin-top: 1rem;
  margin-right: 1.5rem;
  display: flex;
}

.hero-title-line-logo {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.5rem;
  display: block;
}

.hero-title-line {
  transform-origin: 0%;
  border-top: 1px solid #fff;
  width: 100%;
}

.hero-subtitle-wrapper {
  overflow: hidden;
}

.cta-button {
  color: #fff;
  text-transform: uppercase;
  height: 3rem;
  font-family: Neopixel, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
}

.cta-button-label-wrapper {
  white-space: nowrap;
  border: 1px solid #fff;
  border-radius: .25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 1;
  overflow: hidden;
}

.cta-button-icon-wrapper {
  border: 1px solid #fff;
  border-radius: .25rem;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
  overflow: hidden;
}

.cta-button-icon {
  flex: none;
  width: 10rem;
  height: 10rem;
  display: block;
  transform: scale(.5) rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CTA Button Icon Hover Animation - Star spins 360° and zooms in */
.cta-button:hover .cta-button-icon {
  transform: scale(1) rotate(360deg);
}

.marquee-wrapper {
  text-transform: uppercase;
  white-space: nowrap;
  font-family: Neopixel, sans-serif;
  font-size: 14rem;
  line-height: 1;
  display: flex;
  overflow: hidden;
}

.marquee-el {
  z-index: 10;
  padding-right: 3rem;
  font-size: 80px;
  position: relative;
  bottom: 10px;
}

.footer-shipping-title {
  text-align: right;
  text-transform: uppercase;
  height: 110px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Neopixel, sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: .9;
  position: relative;
  bottom: 0;
}

.shipping-title-small {
  font-size: 3rem;
  display: block;
}

.marquee-reveal-wrapper {
  overflow: hidden;
}

.spline-scene {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.spline-scene-overlay {
  z-index: 1;
  opacity: .2;
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.section-spacer {
  height: 100svh;
}

.hero-title-word-wrapper {
  display: inline-block;
  overflow: hidden;
}

.load-trigger {
  width: 0;
  height: 0;
  position: absolute;
  left: -100%;
}

.cta-button-label {
  text-shadow: 0 3rem 0 var(--white);
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* CTA Button Hover Animation - Text slides up */
.cta-button:hover .cta-button-label {
  transform: translateY(-3rem);
}

.cta-button-label-mask {
  height: 3rem;
}

.loading {
  z-index: 20;
  background-color: #000;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.loading-icon {
  width: 5rem;
  height: 5rem;
  display: block;
}

.shipping-title-big {
  display: inline-block;
}

.text-block {
  color: #fff;
  letter-spacing: -.001em;
  font-family: Neopixel, sans-serif;
  font-size: 25px;
  font-style: normal;
  text-decoration: none;
}

.image {
  width: 24px;
  height: auto;
  display: block;
}

.description-icons {
  justify-content: center;
  align-items: center;
  width: 45px;
  min-width: 45px;
  height: 51px;
  margin-left: -10px;
  margin-right: 0;
  display: flex;
  position: absolute;
}

.container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container.container-description {
  padding-left: 0;
  padding-right: 0;
}

.container.container-description.combo1 {
  position: relative;
  bottom: 90px;
  left: 60px;
}

.description-img1 {
  z-index: 1;
  transform-origin: 40% 60%;
  position: absolute;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 50px;
  font-size: 16px;
}

.description-list-wrapper {
  padding-left: 15px;
  padding-right: 15px;
  overflow: auto;
}

.description-title {
  margin-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 40px;
  position: relative;
  left: 34px;
}

.description__item {
  z-index: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-image: none;
  background-size: auto;
  border-radius: 10px;
  width: 100%;
  min-width: 320px;
  max-width: 386px;
  padding: 30px;
  position: relative;
}

.description__item.add {
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
}

.description__item.add.add2 {
  background-image: url('../images/transparent-card.png');
  background-position: 50%;
  background-size: cover;
  border: 1px solid #ffffff80;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.description-item-string {
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.description-list {
  grid-column-gap: 15px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  min-width: 100%;
  padding-top: 2px;
  padding-bottom: 30px;
  display: flex;
}

.dedscription-text {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.56;
  position: relative;
}

.description-img2 {
  z-index: 2;
  transform-origin: 60% 40%;
  background-color: #0000;
  position: absolute;
}

.zpu-paragraph-1 {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.6em;
}

.zpu-grid-1 {
  grid-column-gap: 1.8em;
  grid-row-gap: 1.8em;
  filter: invert();
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.zpu-heading-1 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.3em;
}

.zpu-text-1 {
  color: #a6a6a7;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.3em;
}

.zpu-button-1 {
  color: #fff;
  background-color: #031e41;
  border-radius: .5em;
  margin-top: .8em;
  margin-bottom: .8em;
  padding: .8em 1.5em;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.3em;
}

.zpu-pic-2 {
  width: 6em;
}

.zpu-container-1 {
  width: 100%;
  max-width: 100em;
  margin-left: auto;
  margin-right: auto;
}

.zpu-wrzp-3 {
  flex: 1;
}

.zpu-wrap-3 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  align-items: flex-start;
  width: 37.5em;
  padding-right: 5em;
  display: flex;
}

.zpu-wrap-1 {
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  display: flex;
}

.zpu-pic-1 {
  border-radius: 5px;
}

.zpu-wrap-2 {
  flex: 0 50%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.text-block-2 {
  z-index: 20;
  clear: right;
  color: #fff;
  text-align: center;
  object-fit: fill;
  flex-flow: row;
  flex: none;
  order: 0;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: auto;
  max-width: none;
  margin-left: 0%;
  font-family: Neopixel, sans-serif;
  font-size: 70px;
  display: flex;
  position: static;
  bottom: 70%;
  left: 50%;
  right: 50%;
}

.flex-block {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: auto;
  font-size: 2rem;
}

._12 {
  z-index: 2;
  width: 550px;
  font-size: 1.4rem;
  position: absolute;
  top: 38%;
  bottom: 0%;
  left: 50%;
}

.question_grid-card {
  aspect-ratio: 1;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  justify-content: center;
  align-items: stretch;
  padding: 10px;
  font-size: 1.25vw;
  display: flex;
  position: relative;
}

.logo-2 {
  color: #ccc;
  width: 100%;
}

.gradition-header-wrap {
  background-image: linear-gradient(113deg, #3087f545, #a974c3 51%, #df617d29);
  padding: .5rem 4vw;
  display: flex;
  position: relative;
}

.footer-background {
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding-top: 3vw;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
  overflow: hidden;
}

.form-wrap {
  border: 0 solid #000;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-bottom: 0;
}

.text-color-grey {
  color: #8d8d8d;
}

.outline-wrap {
  opacity: .15;
  border: 1px solid #fff;
  border-radius: 12px;
  width: 100%;
  padding: 8px;
}

.menu-arrow {
  width: 1.25rem;
  padding-top: 2rem;
}

.social_box {
  color: #868686;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2vw;
  padding-right: 2vw;
  font-size: 1.25em;
  display: flex;
}

.text-style-link {
  color: #8d8d8d;
}

.text-style-link:hover {
  color: #000;
}

.menu-inner {
  color: #000;
  border: 1px solid #e6e6e6;
  padding: 1rem 1.5rem;
  font-size: 1.15em;
  font-weight: 400;
  text-decoration: none;
}

.menu-inner:hover {
  color: #fff;
  background-color: #000;
  border-color: #df617d;
}

.button_menu-open {
  color: #fff;
  letter-spacing: 2px;
  justify-content: center;
  align-items: flex-end;
  height: 2.5rem;
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 2.5rem -3.55rem 0% auto;
  transform: rotate(90deg);
}

.menu_inner-wrap {
  flex-flow: column;
  margin-top: 1.75rem;
  margin-bottom: .5rem;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bottom_question-frame {
  opacity: .5;
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(180deg);
}

.gradient-cover {
  z-index: 5;
  background-image: linear-gradient(19deg, #3087f5, #a974c3 41%, #df617d);
  width: 0;
  position: absolute;
  inset: 0%;
}

.card-bg {
  background-color: #fff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2.5rem 1rem;
  display: flex;
}

.menu-bg {
  z-index: 0;
  padding-top: 8px;
  position: absolute;
  inset: 0%;
}

.question_grid-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.modal2_component {
  z-index: 1000;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.button_menu-close {
  color: #000;
  letter-spacing: 2px;
  justify-content: center;
  align-items: flex-end;
  height: 2.5rem;
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 2.5rem;
  bottom: 0%;
  left: -4.2rem;
  transform: rotate(-90deg);
}

.text-success {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.menu_link-wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  cursor: pointer;
  border-bottom: 1px solid #e6e6e6;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1rem 3vw 2rem 1.25rem;
  display: flex;
}

.section-footer {
  border-bottom: 1px solid #363636;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  margin-top: 20vh;
  display: flex;
  position: relative;
}

.gradient-text {
  opacity: .3;
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(84deg, #3087f5, #a974c3 32%, #df617d);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 10.2vw;
  line-height: .9;
}

.heading-h2 {
  font-size: 5rem;
  line-height: 1;
}

.social-wrap {
  z-index: 20;
  background-color: #000;
  border-top: 1px solid #363636;
  flex: none;
  justify-content: space-between;
  width: 100%;
  height: 5.5rem;
  display: flex;
  position: relative;
}

.menu-extra-link {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.menu_logp-wrap {
  flex-flow: column;
  flex: 1;
  justify-content: flex-end;
  padding: 2.5rem;
  display: flex;
}

.modal2_content-wrapper {
  color: #000;
  background-color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 51vw;
  height: 100vh;
  display: flex;
  position: absolute;
}

.code-embed {
  color: #9b9b9b;
}

.margin-bottom, .margin-bottom.margin-large {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.footer-right {
  flex-flow: column;
  justify-content: flex-end;
  width: 50%;
  height: 100%;
  display: flex;
}

.text {
  z-index: 3;
  position: relative;
}

.box-text {
  opacity: .8;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.chat_box {
  z-index: 20;
  background-color: #00000040;
  border: 1px solid #363636;
  height: 5.5rem;
  position: relative;
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
  border-radius: 12px;
}

.submit-buttton {
  color: transparent;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.25em;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff80;
  border-radius: .25rem;
  cursor: pointer;
}

.chat_answer-wrap {
  border-bottom: 1px solid #363636;
  flex-flow: column;
  flex: 1;
  padding-top: 4vw;
  padding-left: 4vw;
  padding-right: 4vw;
}

.thank-you {
  background-color: #ddd0;
  width: 100%;
  height: 100%;
  font-size: 1.15em;
}

.modal2_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bottom_form-frame {
  width: 100%;
  position: absolute;
  inset: auto 0% 0%;
  transform: rotate(180deg);
}

.menu_extra-wrap {
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: space-between;
  margin-top: 1rem;
  display: flex;
}

.question-text {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.input-field {
  color: #fff;
  background-color: #fff0;
  border: 0 solid #000;
  margin-bottom: 0;
  font-size: 1.25em;
  flex: 1;
  outline: none;
}

.input-field::placeholder {
  color: #ffffff80;
}

.top_form-frame {
  opacity: .9;
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

.menu-heading {
  font-size: 5rem;
  line-height: .8;
}

.text-align-center {
  text-align: center;
}

.footer-left {
  border-right: 1px solid #363636;
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.error-message {
  color: #df617d;
  text-align: center;
  background-color: #ffdede00;
  font-size: 1.5em;
  position: absolute;
  inset: -4rem 0% auto;
}

.social_icon {
  color: #fff;
  border-left: 1px solid #363636;
  justify-content: center;
  align-items: center;
  padding-left: 3vw;
  padding-right: 3vw;
  font-size: 1.25em;
  text-decoration: none;
  transition: all .5s;
  display: flex;
}

.social_icon:hover {
  background-image: linear-gradient(67deg, #3087f5, #a974c3 36%, #df617d);
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.chat_input-wrap {
  border: 1px solid #ffffff33;
  border-radius: 12px;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  display: flex;
  position: relative;
  background-image: linear-gradient(19deg, #3087f51a, #a974c31a 41%, #df617d1a);
}

.top_question-frame {
  width: 100%;
  position: absolute;
  inset: 0% 0% auto;
}

@media screen and (min-width: 1280px) {
  .description-icons {
    width: 51px;
    min-width: 51px;
    margin-left: 0;
  }

  .heading {
    margin-left: 65px;
    font-size: 18px;
  }

  .description-title {
    font-size: 45px;
  }

  .description__item {
    max-width: 392px;
    padding: 40px;
  }

  .description-list {
    padding-right: 2px;
  }

  .zpu-heading-1 {
    color: #fff;
    border: 1px solid #fff;
  }

  .zpu-text-1 {
    border: 1px solid #000;
  }

  .text-block-2 {
    width: 1050px;
    left: 300px;
  }
}

@media screen and (min-width: 1440px) {
  .logo {
    position: relative;
    top: 5px;
  }

  .image {
    bottom: 28px;
  }

  .container.container-description {
    position: relative;
    bottom: 450px;
    right: 0;
  }

  .description__item.add.add2 {
    background-image: url('../images/transparent-card.png');
    background-size: cover;
  }

  .zpu-paragraph-1 {
    color: #fff;
    -webkit-text-stroke-color: #fff;
    width: 700px;
  }

  .zpu-heading-1 {
    text-transform: none;
    border-width: 0;
    width: 700px;
    font-family: Jetbrains Mono, sans-serif;
  }

  .zpu-text-1 {
    color: #fff;
    border-width: 0;
  }

  .zpu-button-1 {
    background-color: #182580;
  }

  .zpu-pic-2 {
    filter: grayscale(0%) invert();
  }

  .zpu-container-1 {
    width: 80%;
    position: relative;
    top: 30px;
    left: 35px;
  }

  .zpu-wrap-1 {
    position: relative;
  }

  .zpu-pic-1 {
    max-width: 460px;
    position: absolute;
    top: 10px;
    left: 800px;
  }

  .text-block-2 {
    flex-flow: row;
    width: auto;
    max-width: none;
    font-size: 90px;
    display: flex;
    position: static;
    bottom: 40%;
    left: 40%;
    right: 50%;
  }

  .flex-block {
    min-width: 0;
  }

  ._12 {
    left: 35%;
  }

  .gradition-header-wrap {
    background-image: linear-gradient(113deg, #0d58b23d, #a974c3 51%, #9a4bca30);
  }

  .gradient-cover {
    background-image: linear-gradient(19deg, #1e1a5a, #a974c3 41%, #9e4bcc);
  }

  .heading-h2 {
    font-family: Neopixel, sans-serif;
  }

  .social-wrap {
    background-color: #ffffff94;
  }

  .social-wrap._2 {
    justify-content: space-between;
    align-items: flex-end;
    display: flex;
  }

  .text {
    font-family: Neopixel, sans-serif;
  }

  .chat_box {
    background-color: #ffffff29;
  }

  .submit-buttton {
    color: transparent;
    background-color: transparent;
  }

  .input-field {
    background-color: #00000054;
  }

  .code-embed-2 {
    -webkit-text-stroke-color: #fff;
  }

  .text-block-3 {
    color: #fff;
    -webkit-text-stroke-color: #fff;
  }
}

/* Animated send icon inside the submit button */
.send-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  animation: sendDrift 2.2s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 6px #a974c3);
}

@keyframes sendDrift {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-2px) rotate(8deg); }
}

@media screen and (max-width: 991px) {
  .hero-title {
    font-size: 5rem;
  }

  .marquee-el {
    font-size: 8rem;
  }

  .container {
    flex-direction: column;
    display: flex;
  }

  .description-list-wrapper {
    width: 100%;
  }

  .description-title {
    font-size: 28px;
  }

  .description-list {
    grid-template-columns: 1fr;
  }

  .dedscription-text {
    font-size: 14px;
  }

  .zpu-wrap-1 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    align-items: center;
  }

  .text-block-2 {
    left: 30px;
  }

  .modal2_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .box-text {
    text-transform: uppercase;
    padding: 4rem;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding-top: 1.5rem;
  }

  .page-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid-8cols {
    grid-template-columns: 1fr;
  }

  .header-paragraph {
    display: none;
  }

  .marquee-wrapper {
    margin-bottom: 10vh;
  }

  .footer-shipping-title {
    font-size: 3rem;
  }

  .shipping-title-small {
    font-size: 2rem;
  }

  .marquee-reveal-wrapper {
    margin-bottom: 0;
  }

  .description-title {
    font-size: 32px;
  }

  .description__item {
    max-width: 320px;
    padding: 25px;
  }

  .description__item.add.add2 {
    margin-right: 10px;
  }

  .zpu-grid-1 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .zpu-pic-2 {
    width: 8em;
  }

  .zpu-wrap-3 {
    width: auto;
    padding-right: 0;
  }

  .zpu-wrap-1 {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    flex-direction: column;
  }

  .text-block-2 {
    width: 510px;
    font-size: 35px;
    left: 35px;
  }

  .modal2_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  p {
    font-size: 1rem;
  }

  .grid-8cols {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .logo {
    width: 10rem;
  }

  .hero-container {
    right: 0;
  }

  .hero-container.combo1 {
    top: 320px;
    right: 60px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-title-line-wrapper {
    display: none;
  }

  .cta-button-label-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .marquee-wrapper {
    margin-top: 0;
    margin-bottom: 16vh;
  }

  .marquee-el {
    font-size: 4rem;
  }

  .footer-shipping-title {
    top: 15px;
  }

  .hero-title-word-wrapper {
    text-align: left;
    display: block;
  }

  .cta-button-label {
    font-size: 15px;
  }

  .text-block {
    font-size: 25px;
    position: relative;
    top: 2px;
    right: 10px;
  }

  .image {
    left: 500px;
  }

  .heading {
    font-size: 16px;
  }

  .description-title {
    font-size: 25px;
    left: 0;
  }

  .description__item {
    min-width: auto;
    padding: 20px;
  }

  .description-list {
    grid-row-gap: 20px;
    flex-direction: column;
    padding-top: 0;
  }

  .dedscription-text {
    font-size: 14px;
  }

  .zpu-paragraph-1 {
    color: #fff;
    text-align: center;
    font-size: 15px;
  }

  .zpu-grid-1 {
    grid-template-columns: 1fr 1fr;
  }

  .zpu-heading-1 {
    color: #fff;
    text-align: center;
    width: 260px;
    font-size: 30px;
  }

  .zpu-pic-2 {
    filter: invert();
    width: 10em;
  }

  .zpu-wrap-3 {
    align-items: center;
  }

  .zpu-pic-1 {
    position: relative;
    left: 500px;
  }

  .text-block-2 {
    clear: none;
    width: auto;
    font-size: 25px;
    position: static;
    bottom: 70%;
    left: 22%;
    right: 50%;
  }

  .flex-block {
    min-width: 0;
  }

  ._12 {
    width: 200px;
    left: 25%;
  }

  .modal2_component {
    display: none;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .box-text {
    padding: 2.5rem;
    font-size: 1.5rem;
  }
}

#w-node-_7a332376-f4e8-d93e-ac01-2388d2d6b33b-fcb46a6d {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: start;
}

#w-node-cb4dac6e-6d34-5ecb-8117-7b5f30a701ca-fcb46a6d {
  grid-area: 1 / 5 / 2 / 7;
}

#w-node-_4eedd25b-6c23-3c91-6384-652bf152c915-fcb46a6d {
  grid-area: 1 / 7 / 2 / 9;
  justify-self: end;
}

#w-node-_802d549b-042c-1c88-9e9e-496411681167-fcb46a6d {
  grid-area: 2 / 1 / 3 / 2;
  align-self: center;
}

#w-node-ce1d033d-9a54-d98d-6bf0-f789425570e6-fcb46a6d {
  grid-area: 3 / 1 / 4 / 2;
  align-self: end;
}

#w-node-bf5a1609-6628-f902-3f17-bf4ad28cb4fc-fcb46a6d {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-bed51bda-7bad-6586-2b2e-11a99f58d89e-fcb46a6d {
  grid-area: 1 / 7 / 2 / 9;
  place-self: end;
}

@media screen and (min-width: 1440px) {
  #w-node-ce1d033d-9a54-d98d-6bf0-f789425570e6-fcb46a6d {
    grid-area: 3 / 1 / 4 / 2;
    align-self: end;
  }

  #w-node-bed51bda-7bad-6586-2b2e-11a99f58d89e-fcb46a6d {
    grid-area: 1 / 7 / 2 / 9;
    place-self: end;
  }
}

/* OS Chatbot Styles */
.os-chatbot-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Ensure parent body fills window */
.os-body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.os-chatbot-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  overflow-y: auto;
  /* Custom Scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.os-chatbot-content::-webkit-scrollbar {
  width: 6px;
}

.os-chatbot-content::-webkit-scrollbar-track {
  background: transparent;
}

.os-chatbot-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.os-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 0.5rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  transition: all 0.5s ease;
}

.os-logo-section.minimized {
  margin-top: 1vh;
  margin-bottom: 1rem;
  transform: scale(0.8);
}

.os-logo-wrapper {
  position: relative;
  width: clamp(40px, 8vw, 60px);
  height: clamp(40px, 8vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.os-logo-anim {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  animation: logoBreath 4s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.os-logo-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  filter: blur(10px); /* Reduced blur for cleaner look */
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes logoBreath {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes glowPulse {
  0% { opacity: 0.2; transform: scale(0.9); }
  50% { opacity: 0.4; transform: scale(1.1); }
  100% { opacity: 0.2; transform: scale(0.9); }
}

.os-status-text {
  display: none; /* Hidden */
}

.os-messages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.os-chat-row {
  display: flex;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  animation: msgFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.os-chat-row.row-user {
  justify-content: flex-end;
}

.os-chat-row.row-ai {
  justify-content: flex-start;
}

.os-chat-msg {
  max-width: 80%;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-family: 'JetBrains Mono', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  position: relative;
  backdrop-filter: blur(10px);
}

.msg-user {
  background: rgba(255, 255, 255, 0.08); /* More transparent */
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.msg-ai {
  background: rgba(255, 255, 255, 0.04); /* More transparent */
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 2px;
}

.msg-system {
  background: rgba(223, 97, 125, 0.1); /* Pink/Red tint matching brand */
  border: 1px solid rgba(223, 97, 125, 0.3);
  color: #df617d;
  text-align: center;
  font-size: 0.85rem;
  width: 100%;
  justify-content: center;
}

.os-chat-row.row-system {
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.os-input-container {
  padding: clamp(0.8rem, 2vw, 1.2rem) 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  background: transparent;
}

.os-input-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.os-chat-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: clamp(0.7rem, 1.5vw, 1rem) 3.5rem clamp(0.7rem, 1.5vw, 1rem) 1.5rem;
  color: #fff;
  font-family: 'JetBrains Mono', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.os-chat-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.02);
}

.os-submit-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: clamp(32px, 5vw, 38px);
  height: clamp(32px, 5vw, 38px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.os-submit-btn.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  pointer-events: auto;
}

.os-submit-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.os-submit-btn svg {
  width: clamp(14px, 2.5vw, 18px);
  height: clamp(14px, 2.5vw, 18px);
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.os-chat-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

/* Rich Text Styles for AI Messages */
.os-chat-msg p {
  margin: 0 0 0.6rem 0;
  line-height: 1.6;
}
.os-chat-msg p:last-child { margin-bottom: 0; }
.os-chat-msg p:first-child { margin-top: 0; }

.os-chat-msg strong {
  color: #fff;
  font-weight: 600;
}

.os-chat-msg em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.os-chat-msg ol,
.os-chat-msg ul {
  margin: 0.6rem 0;
  padding-left: 1.4rem;
}

.os-chat-msg ol { list-style-type: decimal; }
.os-chat-msg ul { list-style-type: disc; }

.os-chat-msg li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
  padding-left: 0.3rem;
}

.os-chat-msg li:last-child { margin-bottom: 0; }

.os-chat-msg code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.95);
}

.os-chat-msg pre {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin: 0.6rem 0;
  overflow-x: auto;
}

.os-chat-msg pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Suggestion Cards */
.os-suggestions-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.5vw, 0.8rem);
  width: 100%;
  max-width: 700px;
  margin: 0.8rem auto 0;
  padding: 0 0.5rem;
}

.os-suggestion-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: clamp(0.6rem, 1.5vw, 1rem) clamp(0.5rem, 1vw, 0.8rem);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(15px);
  animation: cardFadeIn 0.5s ease forwards;
}

.os-suggestion-card:nth-child(1) { animation-delay: 0.1s; }
.os-suggestion-card:nth-child(2) { animation-delay: 0.2s; }
.os-suggestion-card:nth-child(3) { animation-delay: 0.3s; }
.os-suggestion-card:nth-child(4) { animation-delay: 0.4s; }

.os-suggestion-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.os-suggestion-icon {
  width: clamp(16px, 3vw, 20px);
  height: clamp(16px, 3vw, 20px);
  opacity: 0.7;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.os-suggestion-text {
  font-family: 'JetBrains Mono', sans-serif;
  font-size: clamp(0.55rem, 1.2vw, 0.7rem);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
}

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

/* Hide suggestions when minimized */
.os-logo-section.minimized ~ .os-suggestions-container {
  display: none;
}

/* Responsive: Stack on smaller screens */
@media screen and (max-width: 768px) {
  .os-suggestions-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .os-suggestions-container {
    grid-template-columns: 1fr;
  }
}

/* Hero Enhancements */
.hero-social-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-stats-col {
  grid-column: span 2;
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 2.5rem;
}
.hero-stat-item {
  margin-bottom: 2rem;
}
.hero-stat-label {
  font-family: 'Jetbrains Mono', sans-serif;
  font-size: 0.75rem;
  color: #df617d;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.hero-stat-value {
  font-family: Neopixel, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .hero-stats-col {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-left: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-stat-item {
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #w-node-hero-content {
    padding-top: 5vh !important;
    grid-column: span 1 !important;
  }
  .hero-stats-col {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .hero-stat-item {
    text-align: left;
  }
}

@media screen and (max-width: 991px) {
  #w-node-cb4dac6e-6d34-5ecb-8117-7b5f30a701ca-fcb46a6d {
    grid-column: 3 / 6;
  }

  #w-node-_4eedd25b-6c23-3c91-6384-652bf152c915-fcb46a6d {
    grid-column-start: 6;
  }

  #w-node-bf5a1609-6628-f902-3f17-bf4ad28cb4fc-fcb46a6d {
    grid-column: span 4 / span 4;
  }

  #w-node-bed51bda-7bad-6586-2b2e-11a99f58d89e-fcb46a6d {
    grid-column-start: 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_7a332376-f4e8-d93e-ac01-2388d2d6b33b-fcb46a6d {
    grid-column: span 1 / span 1;
    align-self: center;
  }

  #w-node-_4eedd25b-6c23-3c91-6384-652bf152c915-fcb46a6d {
    grid-column: 2 / 3;
  }

  #w-node-_802d549b-042c-1c88-9e9e-496411681167-fcb46a6d {
    grid-area: 2 / 1 / 3 / 2;
    align-self: center;
  }

  #w-node-bf5a1609-6628-f902-3f17-bf4ad28cb4fc-fcb46a6d {
    grid-column: span 1 / span 1;
  }

  #w-node-bed51bda-7bad-6586-2b2e-11a99f58d89e-fcb46a6d {
    grid-column: 2 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_802d549b-042c-1c88-9e9e-496411681167-fcb46a6d {
    grid-area: 2 / 1 / 3 / 2;
    align-self: center;
  }

  #w-node-ce1d033d-9a54-d98d-6bf0-f789425570e6-fcb46a6d {
    grid-area: 3 / 1 / 4 / 2;
    align-self: end;
  }

  #w-node-bed51bda-7bad-6586-2b2e-11a99f58d89e-fcb46a6d {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
  }
}


@font-face {
  font-family: 'Jetbrains Mono';
  src: url('../fonts/JetBrainsMono-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   REBUILT OS EMULATOR & MONITOR SYSTEM
   ========================================= */

:root {
  /* -- CORE THEME VARIABLES (Transparent Glass OS) -- */
  --os-bg: transparent;
  --os-glass: none;
  --os-border: rgba(255, 255, 255, 0.15);
  --os-text-primary: #ffffff;
  --os-text-secondary: #86868b;
  --os-accent: #0071e3; /* System Blue */
  --os-sidebar-bg: rgba(245, 245, 247, 0.8);
  --os-header-bg: rgba(255, 255, 255, 0.95);
  --os-surface: #ffffff;
  --os-item-hover: rgba(0, 0, 0, 0.04);
  --os-item-active: rgba(0, 0, 0, 0.08);
  
  --os-shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --os-shadow-md: 0 12px 32px rgba(0,0,0,0.08);
  
  /* Monitor Materials - Ultra Clean White */
  --monitor-frame: #ffffff;
  --monitor-bezel: #000000;
  --monitor-stand-gradient: linear-gradient(180deg, #f0f0f0 0%, #d1d1d6 100%);
  --monitor-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] {
  --os-bg: transparent;
  --os-glass: none;
  --os-border: rgba(255, 255, 255, 0.15);
  --os-text-primary: #ffffff;
  --os-text-secondary: rgba(255, 255, 255, 0.7);
  --os-accent: #0071e3;
  --os-sidebar-bg: transparent;
  --os-header-bg: transparent;
  --os-surface: rgba(255, 255, 255, 0.03);
  --os-item-hover: rgba(255, 255, 255, 0.08);
  --os-item-active: rgba(255, 255, 255, 0.15);
}

/* --- WRAPPER LAYOUT --- */
.os-emulator-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 860px;
  height: auto;
  perspective: 2000px;
  margin-top: -2.5rem; /* Moved up more */
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 5;
  /* Entrance Animation */
  animation: monitorEnter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

/* --- MONITOR HARDWARE (FULL GLASS) --- */
.monitor-frame {
  width: 100%;
  aspect-ratio: 16/10;
  /* Frosted Glass Chassis */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 16px; 
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 25px 60px -15px rgba(0,0,0,0.5),
    0 10px 20px -5px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  animation: monitorFloat 6s ease-in-out infinite;
}

/* Power LED Indicator */
.monitor-frame::after {
  content: '';
  position: absolute;
  bottom: 6px; /* Positioned on the bottom bezel */
  right: 32px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.6);
  opacity: 0.8;
  z-index: 20;
}

/* Bottom Bezel "Chin" styling via inner shadow adjustment */
.monitor-frame::before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  /* Branding placeholder or vent hint */
  background: rgba(0,0,0,0.05);
  border-radius: 2px;
}

@keyframes monitorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.monitor-screen {
  flex: 1;
  background: rgba(128, 128, 128, 0.15); /* 15% grey tint - more transparent */
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  /* Subtle border only */
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  z-index: 15;
}

/* Screen Gloss Reflection - Disabled for full transparency */
.monitor-screen::after {
  display: none;
}

/* Stand System */
.monitor-stand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -14px;
  position: relative;
  z-index: 5;
  transform-style: preserve-3d;
  animation: standFloat 6s ease-in-out infinite;
}

@keyframes standFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.monitor-stand {
  width: 140px;
  height: 100px;
  /* Glass Stand */
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  box-shadow: 
    inset 0 5px 10px rgba(0,0,0,0.2),
    0 10px 20px rgba(0,0,0,0.1);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: relative;
  z-index: 4;
}

/* Stand Neck Shadow/Highlight */
.monitor-stand::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 30%; right: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  opacity: 0.4;
}

.monitor-base {
  width: 200px;
  height: 8px;
  /* Glass Base */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  margin-top: -4px;
  box-shadow: 
    0 2px 5px rgba(0,0,0,0.1),
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
  z-index: 3;
  position: relative;
}
/* Base Highlight */
.monitor-base::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
  opacity: 0.3;
}

/* --- SOCIAL ICONS (UPDATED) --- */
.footer-social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
}

.footer-social-item img {
  width: 28px;
  height: 28px;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.footer-social-item:hover {
  background: rgba(255, 255, 255, 1);
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.footer-social-item:hover img {
  filter: brightness(0) invert(0);
}

/* --- CUSTOM ANIMATIONS --- */

/* Logo Hover - Icon Spin */
.logo .text-block {
  /* Removed text transition */
  font-size: 1.6rem; /* Increased for better prominence */
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo .image {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 30px; /* Proportionally increased */
  height: 30px;
}
.logo:hover .image {
  transform: rotate(360deg);
}
/* Removed previous text hover effects */

/* CTA Buttons - Shine Sweep (Applied to both) */
.cta-primary .cta-button-label-wrapper,
.cta-secondary .cta-button-label-wrapper {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta-primary:hover .cta-button-label-wrapper,
.cta-secondary:hover .cta-button-label-wrapper {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15) !important; /* Ensure visible on secondary */
  border-color: rgba(255,255,255,0.5) !important;
}

/* Shine Pseudo-element shared */
.cta-primary .cta-button-label-wrapper::after,
.cta-secondary .cta-button-label-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  transition: 0s;
}

.cta-primary:hover .cta-button-label-wrapper::after,
.cta-secondary:hover .cta-button-label-wrapper::after {
  left: 150%;
  transition: 0.6s ease-in-out;
}

/* Social Icons (Smaller) */
.footer-social-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px; /* ~35% smaller than 80px */
  height: 52px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
}

.footer-social-item svg {
  width: 24px; /* Scaled down from 32px */
  height: 24px;
}

/* --- WAITLIST MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: 
    0 8px 32px 0 rgba(0, 0, 0, 0.37),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Modal */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 2rem 0;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3087f5;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(48, 135, 245, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.modal-submit-btn {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.submit-loading {
  display: none;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
}


/* --- OS INTERFACE --- */
.os-window {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--os-bg);
  backdrop-filter: var(--os-glass);
  -webkit-backdrop-filter: var(--os-glass);
  color: var(--os-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  z-index: 20;
}

/* Header / Titlebar */
.os-header {
  height: 48px;
  background: var(--os-header-bg);
  border-bottom: 1px solid var(--os-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  z-index: 20;
}

.os-traffic-lights {
  display: flex;
  gap: 8px;
}
.os-light { 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  position: relative;
  transition: transform 0.2s;
}
.os-light:hover { transform: scale(1.1); }
.os-red { background: #ff5f57; border: 1px solid rgba(0,0,0,0.06); }
.os-yellow { background: #febc2e; border: 1px solid rgba(0,0,0,0.06); }
.os-green { background: #28c840; border: 1px solid rgba(0,0,0,0.06); }

.os-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--os-text-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.9;
}

.theme-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--os-text-primary);
  opacity: 0.6;
  transition: all 0.2s;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle:hover { opacity: 1; background: var(--os-item-hover); }

/* Body Layout */
.os-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* Sidebar */
.os-sidebar {
  width: 200px;
  background: var(--os-sidebar-bg);
  border-right: 1px solid var(--os-border);
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  flex-shrink: 0;
  backdrop-filter: blur(20px);
}

.os-sidebar-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--os-text-secondary);
  text-transform: uppercase;
  margin: 24px 16px 10px 16px;
  letter-spacing: 0.5px;
}
.os-sidebar-label:first-child { margin-top: 0; }

.os-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--os-text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s ease-out;
  margin-bottom: 2px;
}
.os-sidebar-item:hover { background: var(--os-item-hover); }
.os-sidebar-item.active { background: #fff; color: var(--os-accent); box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.os-sidebar-item.active .os-icon { color: var(--os-accent); opacity: 1; }

.os-sidebar-item .os-icon { 
  opacity: 0.5; 
  display: flex; 
  align-items: center;
  width: 18px; 
  height: 18px; 
  transition: opacity 0.2s;
}

/* Main Content Area */
.os-main-content {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
}

/* --- VIEWS --- */

/* Terminal */
.os-view-terminal {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent; 
}
.os-terminal-output {
  flex: 1;
  padding: 32px;
  font-family: 'Jetbrains Mono', monospace; 
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--os-text-primary);
  overflow-y: auto;
  scrollbar-width: thin;
}
.os-line { margin-bottom: 8px; display: flex; gap: 10px; word-break: break-word;}
.os-prompt { color: var(--os-accent); font-weight: 700; }
.os-system { color: var(--os-text-secondary); }
.text-success { color: #34c759; }

/* Chatbot */
.os-view-chatbot {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.os-chat-history {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.os-chat-row {
  display: flex;
  width: 100%;
  gap: 12px;
  margin-bottom: 4px;
}
.row-ai {
  justify-content: flex-start;
  align-items: flex-start;
}
.row-user {
  justify-content: flex-end;
}

.os-chat-avatar {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  animation: aiFloat 3s ease-in-out infinite;
  opacity: 0.9;
}

@keyframes aiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.os-chat-msg {
  max-width: 75%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: var(--os-shadow-sm);
}
.msg-ai {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 4px;
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.msg-user {
  background: var(--os-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.os-chat-input-area {
  padding: 16px 24px;
  background: var(--os-header-bg);
  border-top: 1px solid var(--os-border);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--os-text-primary);
  font-family: 'Jetbrains Mono', monospace;
  font-size: 0.9rem;
}

/* Grid Views */
.os-view-nodes, .os-view-files, .os-view-surveillance {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.os-nodes-container, .os-file-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.os-node-item, .os-file-item {
  background: var(--os-surface);
  border: 1px solid var(--os-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  box-shadow: var(--os-shadow-sm);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.os-node-item:hover, .os-file-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--os-shadow-md);
  background: #fff;
}
.os-node-name, .os-file-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--os-text-primary);
}
.os-node-load {
  font-size: 0.75rem;
  color: var(--os-text-secondary);
  background: var(--os-item-hover);
  padding: 4px 10px;
  border-radius: 6px;
}
.os-file-icon { font-size: 2rem; color: var(--os-accent); margin-bottom: 4px; }

/* Status Bar */
.os-status-bar {
  height: 32px;
  background: var(--os-header-bg);
  border-top: 1px solid var(--os-border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--os-text-secondary);
  gap: 20px;
}
.status-active { color: #34c759; margin-left: auto; display: flex; align-items: center; gap: 6px; }

/* Utilities */
.os-cursor {
  display: inline-block;
  width: 9px;
  height: 18px;
  background: var(--os-text-primary);
  animation: blink 1s infinite;
  vertical-align: middle;
}
.os-chat-cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* Waitlist Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: transparent;
  backdrop-filter: blur(80px) saturate(120%);
  -webkit-backdrop-filter: blur(80px) saturate(120%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.2s;
  padding: 5px;
}

.modal-close:hover {
  color: #fff;
}

.modal-title {
  font-family: 'Neopixel', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.modal-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-family: 'Jetbrains Mono', sans-serif;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: transparent;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 14px;
  color: #ffffff;
  font-family: 'Jetbrains Mono', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group:focus-within label {
  color: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: rgba(40, 40, 50, 0.95);
  color: #ffffff;
}

.form-group select option:hover,
.form-group select option:checked {
  background: rgba(60, 60, 70, 0.95);
}


/* Fix SyntrofAI text weight */
.text-block {
  font-weight: 400 !important;
  letter-spacing: normal !important; /* Reset letter spacing to match button inheritance or default */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES
   ========================================= */

/* Hero Stats Row - Desktop Default */
.hero-stats-row {
  display: flex;
  gap: 4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  justify-content: center;
  width: 100%;
}

/* Footer Socials - Desktop Default */
.footer-socials-wrapper {
  grid-column: 5 / -1;
  display: flex;
  gap: 1rem;
  justify-self: end;
  align-self: end;
  align-items: center;
}

/* Hero Content Wrapper - Desktop Default */
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  z-index: 10;
  margin-top: 1.5rem;
}

@media screen and (max-width: 991px) {
  .footer-socials-wrapper {
    grid-column: span 4;
  }
}

@media screen and (max-width: 767px) {
  /* ===== HEADER FIXES ===== */
  .header {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
  }
  
  .header .grid-8cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }
  
  .header .logo {
    width: auto;
    flex-shrink: 0;
  }
  
  .header .logo .text-block {
    font-size: 1.2rem;
  }
  
  .header .logo .image {
    width: 20px;
    height: 20px;
  }
  
  .header .cta-button {
    height: 2.5rem;
    font-size: 1rem;
  }
  
  .header .cta-button-label-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .header .cta-button-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  /* ===== HERO SECTION FIXES ===== */
  .section.hero {
    padding-top: 5rem; /* Space for fixed header */
  }
  
  .section.hero .grid-8cols {
    min-height: auto !important;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  
  #w-node-hero-header {
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-size: 3.5rem;
    line-height: 1;
  }
  
  .hero-title-top {
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.5rem !important;
    white-space: normal !important;
  }
  
  .hero-title-word {
    margin-left: 0 !important;
  }
  
  .hero-title-word + .hero-title-word {
    margin-left: 0.5rem !important;
  }

  /* Hero Stats - Horizontal on mobile */
  .hero-stats-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .hero-stat-item {
    text-align: center;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Footer Socials */
  #w-node-socials.footer-socials-wrapper {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  /* Monitor Adjustments */
  .monitor-frame {
    aspect-ratio: auto;
    min-height: 420px;
    height: auto;
    padding: 10px;
    border-radius: 16px;
  }

  .os-emulator-wrapper {
    margin-top: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Hero Content */
  .hero-content-wrapper {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
    width: 100%;
  }
  
  .hero-content-wrapper .zpu-paragraph-1 {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  
  /* Chat Input Optimization */
  .os-chat-input {
    padding: 0.8rem 3rem 0.8rem 1rem;
    font-size: 16px; /* Prevent iOS zoom */
  }
  
  /* Reduce 3D scene opacity on mobile */
  .spline-scene-wrapper {
    opacity: 0.6;
  }

  /* Adjust padding for main sections */
  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .grid-8cols {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 479px) {
  /* Header - even smaller */
  .header .logo .text-block {
    font-size: 1rem;
  }
  
  .header .cta-button {
    height: 2.2rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 100;
  }
  
  .header .cta-button-label-wrapper {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    position: relative;
    z-index: 100;
  }
  
  .header .cta-button-icon-wrapper {
    width: 2.2rem;
    height: 2.2rem;
    position: relative;
    z-index: 100;
  }
  
  .header .cta-button-icon {
    position: relative;
    z-index: 100;
  }
  
  /* Hero Title */
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-title-top {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
  }

  /* Monitor */
  .monitor-frame {
    min-height: 380px;
    border-radius: 12px;
    padding: 8px;
  }
  
  /* Description text */
  .hero-content-wrapper .zpu-paragraph-1 {
    font-size: 0.85rem !important;
  }

  /* Modal */
  .modal-container {
    padding: 1.5rem;
    width: 95%;
    max-height: 85vh;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
  
  /* Social icons */
  .footer-social-item {
    width: 44px;
    height: 44px;
  }
  
  .footer-social-item img {
    width: 20px;
    height: 20px;
  }
  
  /* Stats */
  .hero-stats-row {
    gap: 1rem;
  }
  
  .hero-stat-label {
    font-size: 0.65rem;
    white-space: nowrap !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
  }
  
  .hero-stat-value {
    font-size: 0.9rem !important;
    white-space: nowrap !important;
  }
  
  /* OS Suggestion Cards - Show all 4 without scroll */
  .os-suggestions-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.4rem !important;
    padding: 0 0.3rem !important;
  }
  
  .os-suggestion-card {
    padding: 0.4rem 0.3rem !important;
    gap: 0.3rem !important;
  }
  
  .os-suggestion-icon {
    width: 14px !important;
    height: 14px !important;
  }
  
  .os-suggestion-text {
    font-size: 0.5rem !important;
    line-height: 1.2 !important;
  }
  
  .os-logo-wrapper {
    width: 35px !important;
    height: 35px !important;
  }
  
  .os-logo-section {
    padding-top: 0.3rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  /* 3D Star / Spline scene z-index fix for footer */
  .spline-scene-wrapper {
    z-index: 5 !important;
  }
  
  .section.footer {
    z-index: 2 !important;
  }
  
  .marquee-wrapper {
    z-index: 1 !important;
  }
  
  .marquee-el {
    z-index: 1 !important;
  }
  
  /* Ensure header is clickable */
  .header {
    position: relative;
    z-index: 100 !important;
  }
  
  .header .cta-button {
    position: relative;
    z-index: 101 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
  }
  
  /* Fix header logo - text aligned with icon */
  .header .logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }
  
  .header .logo .text-block {
    display: none !important;
  }
  
  .header .logo .image {
    width: 32px !important;
    height: 32px !important;
  }
  
  /* Stats row - horizontal on mobile */
  .hero-stats-row {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
  }
  
  .hero-stat-item {
    flex: 0 0 auto !important;
    min-width: 80px !important;
  }
  
  /* Hero section z-index fixes */
  .section.hero {
    position: relative;
    z-index: 10 !important;
  }
  
  .os-emulator-wrapper {
    position: relative;
    z-index: 10 !important;
  }
  
  .monitor-frame {
    position: relative;
    z-index: 10 !important;
  }
  
  #w-node-hero-header {
    position: relative;
    z-index: 15 !important;
  }
  
  .hero-content-wrapper {
    position: relative;
    z-index: 15 !important;
  }
}

/* Desktop hero centering */
@media screen and (min-width: 992px) {
  .section.hero .grid-8cols {
    min-height: 100vh;
    justify-content: center;
    padding-top: 0;
  }
  
  .os-emulator-wrapper {
    margin-top: 0;
  }
  
  #w-node-hero-header {
    margin-bottom: 0.5rem !important;
  }
}

