@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #F4F6FA;
  background: linear-gradient(180deg, #05050B 0%, #0B0B10 50%, #05050B 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: #F4F6FA;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1280px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1280px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1280px) {
  h3 {
    font-size: 2rem;
  }
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background-color: rgba(0, 240, 255, 0.3);
  color: #F4F6FA;
}

.vignette-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: radial-gradient(ellipse at center, transparent 0%, transparent 40%, rgba(5, 5, 11, 0.65) 100%);
}

.scanlines-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
}

.noise-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200%;
  background: transparent url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
  z-index: 98;
  opacity: 0.06;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -2%);
  }
  20% {
    transform: translate(2%, 2%);
  }
  30% {
    transform: translate(-1%, 1%);
  }
  40% {
    transform: translate(1%, -1%);
  }
  50% {
    transform: translate(-2%, 2%);
  }
  60% {
    transform: translate(2%, -2%);
  }
  70% {
    transform: translate(-1%, -1%);
  }
  80% {
    transform: translate(1%, 1%);
  }
  90% {
    transform: translate(-2%, -1%);
  }
}
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navigation.scrolled {
  background-color: rgba(5, 5, 11, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navigation.hidden {
  transform: translateY(-100%);
}
.navigation .nav-container {
  width: 100%;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .navigation .nav-container {
    padding: 0 48px;
  }
}
.navigation .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .navigation .nav-inner {
    height: 80px;
  }
}
.navigation .nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #F4F6FA;
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .navigation .nav-logo {
    font-size: 1.5rem;
  }
}
.navigation .nav-logo:hover {
  opacity: 0.8;
}
.navigation .nav-logo .accent {
  color: #00F0FF;
}
.navigation .nav-logo .subtitle {
  display: none;
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  color: #C1C5CF;
}
@media (min-width: 640px) {
  .navigation .nav-logo .subtitle {
    display: inline;
  }
}
.navigation .nav-links {
  display: none;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .navigation .nav-links {
    display: flex;
  }
}
.navigation .nav-link {
  position: relative;
  color: #C1C5CF;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
  cursor: pointer;
  border: none;
  background: none;
}
.navigation .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #00F0FF;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navigation .nav-link:hover {
  color: #F4F6FA;
}
.navigation .nav-link:hover::after {
  width: 100%;
}
.navigation .nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navigation .mobile-menu-button {
  display: block;
  padding: 8px;
  color: #F4F6FA;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navigation .mobile-menu-button {
    display: none;
  }
}
.navigation .mobile-menu-button svg {
  width: 24px;
  height: 24px;
}

.btn {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-accent {
  background: linear-gradient(135deg, #00F0FF 0%, #00C8D5 100%);
  color: #05050B;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.25);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: #F4F6FA;
  border: 1px solid rgba(244, 246, 250, 0.08);
}
.btn-outline:hover {
  border-color: rgba(0, 240, 255, 0.35);
  color: #00F0FF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.glass-card {
  background: rgba(11, 11, 16, 0.72);
  border: 1px solid rgba(244, 246, 250, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.glass-card.glass-card-hover:hover {
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-6px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: rgba(0, 240, 255, 0.1);
}
.glass-card-icon svg, .glass-card-icon i {
  width: 20px;
  height: 20px;
  color: #00F0FF;
}

.section-pinned {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 80px;
}
.section-pinned#hero {
  height: 120vh;
  min-height: 800px;
}
@media (min-width: 1024px) {
  .section-pinned {
    margin-bottom: 120px;
  }
}

.section-flowing {
  position: relative;
  z-index: 80;
  background-color: #0B0B10;
}

.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 5, 11, 0.6);
}

.section-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.micro-text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C1C5CF;
}

.text-accent {
  color: #00F0FF;
}

.text-gradient {
  background: linear-gradient(135deg, #F4F6FA 0%, #C1C5CF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: #C1C5CF !important;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  color: #C1C5CF;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: rgba(11, 11, 16, 0.8);
  border: 1px solid rgba(244, 246, 250, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: #F4F6FA;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  transition: all 0.2s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #bec9de;
}

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 12px;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mb-5 {
  margin-bottom: 32px;
}

.mb-6 {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 12px;
}

.mt-3 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-5 {
  margin-top: 32px;
}

.mt-6 {
  margin-top: 40px;
}

.py-12 {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1024px) {
  .py-12 {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.py-16 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) {
  .py-16 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

@media (min-width: 640px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
}
.card-lifted {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-lifted:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.footer {
  position: relative;
  background-color: #05050B;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
}
@media (min-width: 1024px) {
  .footer {
    padding: 48px 48px;
  }
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-links a {
  color: #C1C5CF;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #00F0FF;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(244, 246, 250, 0.08);
  color: #C1C5CF;
  transition: all 0.2s ease;
}
.footer-social a:hover {
  border-color: #00F0FF;
  color: #00F0FF;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 14px;
  color: #bec9de;
}

.scroll-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 11, 16, 0.72);
  border: 1px solid rgba(244, 246, 250, 0.08);
  border-radius: 9999px;
  color: #00F0FF;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 900;
}
.scroll-to-top:hover {
  transform: translateY(-4px);
  border-color: #00F0FF;
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 5, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: rgba(11, 11, 16, 0.72);
  border: 1px solid rgba(244, 246, 250, 0.08);
  border-radius: 18px;
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 8px;
  color: #F4F6FA;
  cursor: pointer;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #00F0FF;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-up {
  animation: slideUp 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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