html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #06101d;
}

button,
a {
  font: inherit;
}

.ls-onepage {
  --ink: #07111f;
  --muted: #6b7280;
  --cyan: #00d5ff;
  --blue: #315dff;
  --lime: #9dff2f;
  --pink: #ff3bbd;
  --orange: #ff9f1c;
  --paper: #f8fbff;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 213, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(255, 59, 189, 0.16), transparent 26%),
    #f7fbff;
  color: var(--ink);
  overflow-x: hidden;
}

.ls-nav-wrap {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.ls-nav {
  width: min(1160px, calc(100% - 28px));
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(7, 17, 31, 0.16);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.ls-brand,
.ls-nav-links,
.ls-nav-links a {
  display: flex;
  align-items: center;
}

.ls-brand {
  gap: 12px;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.ls-brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #06101d;
  font-weight: 950;
  background: conic-gradient(from 160deg, var(--lime), var(--cyan), var(--pink), var(--lime));
  box-shadow: 0 10px 30px rgba(0, 213, 255, 0.32);
}

.ls-brand strong,
.ls-brand small {
  display: block;
}

.ls-brand strong {
  font-size: 1.08rem;
  line-height: 1;
}

.ls-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.ls-nav-links {
  gap: 6px;
}

.ls-nav-links a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111827 !important;
  font-weight: 850;
  text-decoration: none !important;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.ls-nav-links a:hover {
  color: #06101d !important;
  background: rgba(0, 213, 255, 0.18);
  transform: translateY(-1px);
}

.ls-nav-login {
  color: #fff !important;
  background: #06101d;
}

.ls-nav-links .ls-nav-login:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--pink));
}

.ls-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #06101d;
}

.ls-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.ls-cinema {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 22px 90px;
  background: #06101d;
  isolation: isolate;
}

.ls-noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 84%);
}

.ls-cinema::before,
.ls-cinema::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}

.ls-cinema::before {
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  left: -12vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(0, 213, 255, 0.44), transparent 68%);
}

.ls-cinema::after {
  width: 36vw;
  height: 36vw;
  min-width: 300px;
  min-height: 300px;
  right: -11vw;
  bottom: 8vh;
  background: radial-gradient(circle, rgba(255, 59, 189, 0.34), transparent 68%);
}

.ls-cinema-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 0.78fr 0.66fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  padding: 20px;
  opacity: 0.48;
  transform: rotate(-2deg) scale(1.06);
  z-index: -1;
}

.ls-cinema-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  filter: saturate(1.15) contrast(1.08);
}

.ls-cinema-grid img:first-child {
  grid-row: span 2;
}

.ls-cinema-grid img:nth-child(2) {
  grid-column: span 2;
}

.ls-cinema-grid::after {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.98), rgba(6, 16, 29, 0.78), rgba(6, 16, 29, 0.45)),
    radial-gradient(circle at 44% 38%, transparent, rgba(6, 16, 29, 0.82) 64%);
}

.ls-cinema-content {
  width: min(1060px, 100%);
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.ls-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #e0faff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ls-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px var(--lime);
}

.ls-pill.dark {
  color: #06101d;
  border-color: rgba(7, 17, 31, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.08);
}

.ls-cinema h1 {
  max-width: 1100px;
  margin: 24px auto 20px;
  color: #fff;
  font-size: clamp(3.5rem, 10vw, 9.4rem);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.ls-cinema p {
  max-width: 780px;
  margin: 0 auto;
  color: #d9e8ff;
  font-size: clamp(1.03rem, 2vw, 1.35rem);
  font-weight: 600;
}

.ls-hero-actions,
.ls-contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ls-mega-btn,
.ls-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 950;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ls-mega-btn {
  color: #06101d !important;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  box-shadow: 0 20px 50px rgba(0, 213, 255, 0.28);
}

.ls-outline-btn {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ls-mega-btn:hover,
.ls-outline-btn:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.ls-floating-card {
  position: absolute;
  z-index: 3;
  width: 170px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
  animation: lsFloat 5s ease-in-out infinite;
}

.ls-floating-card i,
.ls-floating-card strong,
.ls-floating-card span {
  display: block;
}

.ls-floating-card i {
  color: var(--lime);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.ls-floating-card strong {
  font-size: 1.05rem;
}

.ls-floating-card span {
  color: #cbd5e1;
  font-size: 0.83rem;
}

.ls-card-a {
  left: 5vw;
  bottom: 18vh;
}

.ls-card-b {
  right: 6vw;
  top: 22vh;
  animation-delay: -1.8s;
}

.ls-card-c {
  right: 14vw;
  bottom: 11vh;
  animation-delay: -3s;
}

@keyframes lsFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

.ls-section {
  padding: 110px 24px;
}

.ls-section-intro {
  width: min(1060px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.ls-section-intro h2,
.ls-project-copy h2,
.ls-contact-panel h2 {
  margin: 20px auto 0;
  max-width: 940px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.ls-services-wild {
  position: relative;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef8ff 100%);
}

.ls-services-wild::before {
  content: "";
  position: absolute;
  inset: 42px auto auto -70px;
  width: 210px;
  height: 210px;
  border-radius: 54px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  transform: rotate(18deg);
  opacity: 0.35;
}

.ls-service-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.ls-service-orbit {
  display: grid;
  gap: 16px;
}

.ls-orbit-item {
  position: relative;
  border: 0;
  min-height: 128px;
  padding: 22px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #06101d;
  background: #fff;
  box-shadow: 0 24px 55px rgba(7, 17, 31, 0.09);
  text-align: left;
  font-weight: 950;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ls-orbit-item::after {
  content: "";
  position: absolute;
  inset: auto -35px -55px auto;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(0, 213, 255, 0.24);
}

.ls-orbit-item i {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 20px;
  color: #06101d;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  flex: 0 0 56px;
}

.ls-orbit-item.active,
.ls-orbit-item:hover {
  transform: translateX(12px) rotate(-1deg);
  box-shadow: 0 30px 70px rgba(0, 213, 255, 0.18);
}

.ls-orbit-item.active {
  background: #06101d;
  color: #fff;
}

.ls-service-spotlight {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.22);
}

.ls-service-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ls-service-spotlight:hover img {
  transform: scale(1.05);
}

.ls-service-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 16, 29, 0.08), rgba(6, 16, 29, 0.92));
}

.ls-service-spotlight div {
  position: absolute;
  inset: auto 32px 32px 32px;
  z-index: 2;
  color: #fff;
}

.ls-service-spotlight i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 24px;
  color: #06101d;
  background: var(--lime);
}

.ls-service-spotlight h3 {
  max-width: 720px;
  margin: 18px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ls-service-spotlight p {
  max-width: 690px;
  color: #dbeafe;
  font-size: 1.08rem;
  font-weight: 600;
}

.ls-process-ribbon {
  background: #06101d;
  color: #fff;
}

.ls-process-ribbon .ls-section-intro h2 {
  color: #fff;
}

.ls-ribbon {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  transform: rotate(-1.5deg);
}

.ls-ribbon article {
  min-height: 300px;
  padding: 28px;
  color: #06101d;
  background: var(--lime);
  border-right: 2px solid rgba(6, 16, 29, 0.18);
}

.ls-ribbon article:nth-child(2) {
  background: var(--cyan);
}

.ls-ribbon article:nth-child(3) {
  background: var(--orange);
}

.ls-ribbon article:nth-child(4) {
  background: var(--pink);
  color: #fff;
}

.ls-ribbon span {
  display: block;
  font-size: 4.6rem;
  line-height: 0.85;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.ls-ribbon h3 {
  margin: 28px 0 10px;
  color: inherit;
  font-size: 1.45rem;
  font-weight: 950;
}

.ls-ribbon p {
  margin: 0;
  font-weight: 800;
}

.ls-project-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 46px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ls-project-copy p {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.ls-project-viewer {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 12px solid #06101d;
  border-radius: 54px;
  background: #06101d;
  box-shadow: 0 34px 95px rgba(7, 17, 31, 0.26);
}

.ls-project-viewer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.ls-project-viewer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 16, 29, 0.9));
}

.ls-project-caption {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 2;
  padding: 28px;
  border-radius: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.ls-project-caption h3 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 0.94;
  font-weight: 950;
}

.ls-project-caption p {
  color: #e0f2fe;
  margin-bottom: 0;
  font-weight: 650;
}

.ls-project-dots {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
}

.ls-project-dots button {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.ls-project-dots button.active {
  width: 42px;
  border-radius: 999px;
  background: var(--lime);
}

.ls-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 0;
}

.ls-stack-card {
  min-height: 260px;
  padding: 34px;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.09);
  transition: transform 180ms ease;
}

.ls-stack-card:nth-child(2) {
  transform: translateY(42px);
}

.ls-stack-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.ls-stack-card:nth-child(2):hover {
  transform: translateY(32px) rotate(1deg);
}

.ls-stack-card i {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 20px;
  color: #06101d;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.ls-stack-card h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
}

.ls-stack-card p {
  color: var(--muted);
  margin: 0;
  font-weight: 650;
}

.ls-contact-wave {
  padding: 130px 24px;
  background:
    radial-gradient(circle at 12% 24%, rgba(157, 255, 47, 0.24), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(0, 213, 255, 0.28), transparent 30%),
    #06101d;
}

.ls-contact-panel {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 76px);
  border-radius: 54px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    url("../../public/img/Contact1.jpeg") center/cover;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  position: relative;
}

.ls-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 29, 0.66);
}

.ls-contact-panel > * {
  position: relative;
  z-index: 1;
}

.ls-contact-panel h2 {
  color: #fff;
}

.ls-contact-panel p {
  max-width: 640px;
  margin: 22px auto 0;
  color: #e0f2fe;
  font-size: 1.1rem;
  font-weight: 650;
}

.ls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px min(5vw, 70px);
  color: #dbeafe;
  background: #030712;
}

.ls-footer strong {
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 1040px) {
  .ls-nav {
    border-radius: 28px;
    align-items: flex-start;
  }

  .ls-menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .ls-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 14px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 65px rgba(7, 17, 31, 0.16);
    backdrop-filter: blur(18px);
  }

  .ls-nav-links.open {
    display: grid;
  }

  .ls-nav-links a {
    justify-content: center;
  }

  .ls-floating-card {
    display: none;
  }

  .ls-service-stage,
  .ls-project-lab {
    grid-template-columns: 1fr;
  }

  .ls-ribbon,
  .ls-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ls-stack-card:nth-child(2),
  .ls-stack-card:nth-child(2):hover {
    transform: none;
  }
}

@media (max-width: 720px) {
  .ls-cinema {
    padding: 118px 18px 72px;
  }

  .ls-cinema-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    opacity: 0.32;
    transform: none;
  }

  .ls-cinema-grid img,
  .ls-service-spotlight,
  .ls-project-viewer,
  .ls-contact-panel {
    border-radius: 28px;
  }

  .ls-cinema h1 {
    font-size: clamp(3rem, 18vw, 5rem);
    letter-spacing: -0.045em;
  }

  .ls-section {
    padding: 78px 18px;
  }

  .ls-section-intro h2,
  .ls-project-copy h2,
  .ls-contact-panel h2 {
    font-size: clamp(2.3rem, 14vw, 3.6rem);
  }

  .ls-orbit-item {
    min-height: 100px;
    border-radius: 24px;
  }

  .ls-orbit-item.active,
  .ls-orbit-item:hover {
    transform: translateY(-4px);
  }

  .ls-service-spotlight,
  .ls-project-viewer {
    min-height: 470px;
  }

  .ls-service-spotlight div,
  .ls-project-caption {
    inset: auto 16px 16px 16px;
    padding: 22px;
    border-radius: 24px;
  }

  .ls-ribbon,
  .ls-stack {
    grid-template-columns: 1fr;
    transform: none;
  }

  .ls-ribbon article {
    min-height: 220px;
  }

  .ls-stack {
    width: min(100%, calc(100% - 36px));
    padding-bottom: 78px;
  }

  .ls-contact-actions .ls-mega-btn,
  .ls-contact-actions .ls-outline-btn {
    width: 100%;
  }

  .ls-footer {
    justify-content: center;
    text-align: center;
  }
}
