/* Theorem Network - Custom Styles (SCSS Source) */
/* Root variables for consistent theming */
:root {
  --primary-bg: #0a080d;
  --secondary-bg: #1a181d;
  --accent-purple: #722bff;
  --accent-glow: #ae88ef;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --border-light: rgba(255, 255, 255, 0.2);
  --border-purple: rgba(114, 43, 255, 0.4);
  --gradient-primary: linear-gradient(to bottom, #1a0936, #371a6a);
}

/* Base styles */
* {
  box-sizing: border-box;
}

/* Ticker Styles */
.ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.8) 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  will-change: transform;
}

.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ticker-item:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ticker-item img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease;
}

.ticker-item:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Marquee Styles */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
  mask: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}

.marquee > * {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  will-change: transform;
  flex-shrink: 0;
}

.marquee img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.marquee:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

body {
  font-family: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header styles */
.header-container {
  backdrop-filter: blur(2.5px);
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container svg {
  transition: transform 0.2s ease;
}

.logo-container:hover svg {
  transform: scale(1.05);
}

/* Navigation styles */
.nav-link {
  position: relative;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.2s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Mobile menu styles */
.mobile-menu {
  backdrop-filter: blur(2.5px);
  background: rgba(20, 9, 43, 0.51);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.mobile-menu a {
  transition: background-color 0.2s ease;
}

.mobile-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Hero section styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-tag {
  backdrop-filter: blur(2.5px);
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid var(--border-purple);
  border-radius: 555px;
  position: relative;
  overflow: hidden;
}

.hero-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0px -0.707px 0.707px -0.542px inset rgba(85, 0, 255, 0.16), 0px -1.807px 1.807px -1.083px inset rgba(85, 0, 255, 0.16), 0px -3.622px 3.622px -1.625px inset rgba(85, 0, 255, 0.15), 0px -6.866px 6.866px -2.167px inset rgba(85, 0, 255, 0.14), 0px -13.647px 13.647px -2.708px inset rgba(85, 0, 255, 0.13), 0px -30px 30px -3.25px inset rgba(85, 0, 255, 0.09);
}

.hero-heading {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-description {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

/* Email signup form styles */
.email-form {
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.email-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  width: 100%;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
  color: var(--text-primary);
  opacity: 1;
}

.join-button {
  background: var(--gradient-primary);
  border: 1px solid rgba(174, 136, 239, 0.5);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.join-button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0px 0px 12px 0px inset #ae88ef;
}

.join-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px rgba(174, 136, 239, 0.35);
}

.join-button:active {
  transform: translateY(0);
}

/* sheen effect */
.join-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 1000ms ease;
  pointer-events: none;
}

.join-button:hover::after {
  left: 140%;
}

.join-button:focus-visible {
  outline: 2px solid var(--accent-glow);
  outline-offset: 3px;
}

/* Hero video/image styles */
.hero-media {
  margin-top: 0rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .email-form {
    flex-direction: column;
    gap: 1rem;
  }

  .join-button {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}
/* Animation utilities */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
.email-input:focus {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
}

.join-button:focus {
  outline: 2px solid var(--accent-purple);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

h2 {
  font-size: 48px !important;
  font-family: Manrope;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px !important;
  }
}

.stars-bg {
  background-image: url("./assets/stars.webp");
  background-repeat: repeat;
  background-size: 900px auto;
}

.container {
  margin: 0 auto;
  padding: 0 32px;
}

.page-section {
  width: 100%;
  position: relative;
  padding: 140px 0;
}
@media (max-width: 768px) {
  .page-section {
    padding: 80px 0;
  }
}
.page-section__content {
  padding-top: 72px;
}

.features-section__card {
  border-radius: 16px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #160E26 0%, #060508 100%);
  box-shadow: 0 0 68px 0 #39235F inset;
  display: flex;
  height: 450px;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 32px;
  font-size: 14px;
  flex: 1 0 0;
  background-size: cover;
  background-position: center;
}
.features-section__card h3 {
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31.2px;
  /* 130% */
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Vertical gradient mask utility: visible in center, fades at top/bottom */
.mask-fade-y {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 15%, black 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 15%, black 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.performance-card {
  background-position: bottom center !important;
  background-repeat: no-repeat !important;
  display: flex;
  height: 450px;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1 0 0;
  border-radius: 16px;
  background: #0A080D;
  position: relative;
}
.performance-card p {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31.2px;
  /* 130% */
  letter-spacing: -0.96px;
  margin-bottom: 24px;
}
.performance-card .value {
  color: #FFF;
  font-family: Inter;
  font-size: clamp(40px, 7vw, 80px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 112px */
  letter-spacing: -2.4px;
}
.performance-card:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  height: 80%;
  top: 10%;
  left: 0;
  width: 2px;
  background: linear-gradient(360deg, rgba(196, 182, 254, 0) 0%, #C4B6FE 50%, rgba(196, 182, 254, 0) 100%);
}
.performance-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  height: 80%;
  top: 10%;
  right: 0;
  width: 2px;
  background: linear-gradient(360deg, rgba(196, 182, 254, 0) 0%, #C4B6FE 50%, rgba(196, 182, 254, 0) 100%);
}

.waitlist-card {
  height: 344px;
  padding: 32px;
  gap: 32px;
  flex: 1 0 0;
  border-radius: 16px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #160E26 0%, #060508 100%);
  box-shadow: 0 0 68px 0 #39235F inset;
  position: relative;
}
.waitlist-card__tag {
  margin-bottom: 12px;
  border-radius: 99px;
  border: 1px solid #AE88EF;
  background: rgba(174, 136, 239, 0.2);
  box-shadow: 0 0 4px 0 #AE88EF inset;
  display: inline-flex;
  padding: 8px 16px;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.waitlist-card__icon {
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #160E26 0%, #060508 100%);
  box-shadow: 0 0 68px 0 #865AD2 inset;
  display: flex;
  width: 72px;
  height: 72px;
  justify-content: center;
  align-items: center;
  gap: 32px;
  aspect-ratio: 1/1;
}

.cta-section {
  margin: 0 auto;
  text-align: center;
  display: flex;
  width: 832px;
  max-width: 100%;
  padding: 80px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  border-radius: 24px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #030205 0%, #1C122C 100%);
  box-shadow: 0 0 36px 0 #AE88EF inset, 0 0 140px 0 rgba(170, 136, 239, 0.4) inset;
}
@media (max-width: 768px) {
  .cta-section {
    width: 100%;
    padding: 40px 20px;
  }
}

.email-box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  overflow: clip;
  padding: 0.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .email-box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 16px;
  }
}

.email-input {
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  justify-content: center;
  line-height: 0;
  font-style: normal;
  opacity: 0.5;
  flex-shrink: 0;
  font-size: 1rem;
  /* 16px, adjust as needed for 'text-base' */
  white-space: nowrap;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  /* placeholder styles should be handled separately in ::placeholder */
  height: 100%;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 2rem;
  /* pl-8 = 2rem */
  max-width: 300px;
  /* for lg: use media query below */
  /* focus:outline-none is handled by &:focus below */
}
@media (max-width: 768px) {
  .email-input {
    max-width: 100%;
    position: relative;
  }
}
.email-input:focus {
  outline: none;
}

email-signup {
  width: 100%;
}

.protocols-section {
  border-radius: 16px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #160E26 0%, #060508 100%);
  box-shadow: 0 0 68px 0 #39235F inset;
  margin-top: 120px;
  padding: 32px;
}
@media (max-width: 768px) {
  .protocols-section {
    margin-top: 48px;
    padding: 16px;
  }
}
.protocols-section .protocol-card {
  padding: 32px;
}
.protocols-section .protocol-card h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 31.2px;
  letter-spacing: -0.96px;
  margin: 24px 0 12px;
}
@media (max-width: 768px) {
  .protocols-section .protocol-card h3 {
    font-size: 20px;
    line-height: 31.2px;
    letter-spacing: -0.96px;
    margin: 24px 0 12px;
  }
}

.protocol-card__icon {
  border-radius: 16px;
  border: 1px solid #AE88EF;
  background: linear-gradient(180deg, #160E26 0%, #060508 100%);
  box-shadow: 0 0 68px 0 #865AD2 inset;
  display: flex;
  width: 80px;
  height: 80px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .protocol-card__icon {
    width: 64px;
    height: 64px;
    padding: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
