:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #1a1a2e;
  --text-secondary: #6b7280;
  --accent-purple: #7c3aed;
  --accent-purple-light: #a855f7;
  --accent-cyan: #06b6d4;
  --gradient-primary: linear-gradient(135deg, #7c3aed, #06b6d4);
}

html {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-primary);
}

* {
  box-sizing: border-box;
}

/* Lenis recommended styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.loader {
  background: var(--text-primary);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 2;
}

.loader p {
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.progress {
  position: absolute;
  top: 52%;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  background: var(--gradient-primary);
  transition: all 1s ease;
}

.nav--bar {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 30px;
  padding: 0 40px;
}

.logo {
  height: 55px;
  width: auto;
}

.nav--links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav--links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav--links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav--links a:hover {
  color: var(--accent-purple);
}

.nav--links a:hover::after {
  width: 100%;
}

.section {
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: center;
}

.section--one--container {
  width: 500px;
  margin-left: 15%;
}

.first h1 {
  font-size: 7rem;
  line-height: 6rem;
  letter-spacing: -0.3rem;
  width: 100%;
  margin: 0 0 20px -10px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section--subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section--description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.button--hero {
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 16px 36px;
  margin-top: 28px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button--hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.button--customize {
  background: var(--gradient-primary);
  color: white;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 16px 36px;
  margin-top: 28px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button--customize:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.second {
  justify-content: flex-end;
  position: relative;
}

.section--two--container {
  width: 400px;
  margin-right: 10%;
  z-index: 1;
}

.section--third--container {
  width: 400px;
  margin-left: 10%;
  z-index: 1;
}

h2 {
  font-size: 3rem;
  letter-spacing: -2px;
  line-height: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section--two--container p,
.section--third--container p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.custom--bg {
  width: 100%;
  height: 800px;
  background: var(--gradient-primary);
  opacity: 0.15;
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -o-transform: skew(20deg);
  transform: skew(20deg) rotate(21deg);
  position: absolute;
  top: 0;
  left: 0;
}

footer {
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 100px 80px 50px;
  color: white;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
}

footer::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.footer--content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer--brand {
  display: flex;
  flex-direction: column;
}

.footer--logo {
  height: 100px;
  margin-bottom: 24px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(124, 58, 237, 0.3));
}

.footer--tagline {
  color: var(--accent-purple-light);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 28px;
}

.footer--divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin-bottom: 28px;
}

.footer--divider-full {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 40px 0;
  position: relative;
}

.footer--divider-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: var(--gradient-primary);
}

.footer--social-center {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 10px 0 30px;
}

.footer--social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer--social-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

.footer--contact {
  display: flex;
  flex-direction: column;
}

.footer--contact h3 {
  color: var(--accent-cyan);
  margin-bottom: 28px;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer--link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d1d5db;
  text-decoration: none;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 10px 0;
}

.footer--link:hover {
  color: var(--accent-purple-light);
  transform: translateX(8px);
}

.footer--link .footer--icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--accent-purple);
}

.footer--bottom {
  text-align: center;
  padding-top: 15px;

  position: relative;
}



.footer--credit {
  font-weight: 500;
  color: #e5e7eb;
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.footer--highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.footer--copyright {
  color: #6b7280;
  font-size: 0.85rem;
  margin: 0;
}

.footer--copyright a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer--copyright a:hover {
  color: var(--accent-purple-light);
}

#webgi-canvas {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
}

#webgi-canvas-container {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  transition: opacity 0.5s ease;
}

#webgi-canvas-container.hide-on-footer {
  opacity: 0;
  pointer-events: none !important;
}

.button--exit {
  width: 90px;
  margin-bottom: 5%;
  z-index: 5;
  position: fixed;
  bottom: 0;
  display: none;
}

.customizer--container {
  position: fixed;
  top: 50%;
  display: none;
  transform: translateY(-50%);
}

.strap--colors {
  list-style: none;
}

.button--colors {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 0;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button--colors:hover {
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.7));
  transform: scale(1.3);
}

.purple {
  background-color: var(--accent-purple);
}

.cyan {
  background-color: var(--accent-cyan);
}

.dark {
  background-color: #1a1a2e;
}

/* MOBILE ADJUSTMENTS */

@media (max-width: 768px) {

  body, .container, nav {
    overflow-x: hidden;
  }

  .first h1 {
    font-size: 4rem;
    line-height: 3.8rem;
    letter-spacing: -0.1rem;
    width: 70%;
    margin: 0 0 15px 0px;
  }

  .nav--bar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    padding: 12px 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    gap: 10px;
    pointer-events: none;
  }

  .nav--bar a,
  .nav--bar .logo {
    pointer-events: auto;
  }

  .nav--links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav--links a {
    font-size: 0.68rem;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .section--one--container {
    width: 360px;
    margin-left: 6%;
    margin-top: 40%;
  }

  .section--one--container > p {
    width: 80%;
  }

  .second {
    align-items: flex-end;
  }

  .section--two--container {
    width: 300px;
    margin-right: 6%;
  }

  .section--third--container {
    width: 280px;
    margin-left: 6%;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .logo {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
  }

  footer {
    padding: 60px 20px 40px;
  }

  footer::after {
    display: none;
  }

  .footer--content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer--brand {
    align-items: center;
  }

  .footer--divider {
    margin: 0 auto 28px;
  }

  .footer--link {
    justify-content: center;
  }

  .footer--credit {
    font-size: 0.9rem;
  }

  .footer--copyright {
    font-size: 0.8rem;
  }
}


/*# sourceMappingURL=src.e2129564.css.map */