body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 45%, #000 100%);
  color: #e5e7eb;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6)
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.logo {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  color: #cbd5f5;
  text-decoration: none;
  padding-bottom: 0.1rem;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  border-color: rgba(248, 250, 252, 0.4);
}

.main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.75rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  min-height: 60vh;
  margin-bottom: 4rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.03em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #a5b4fc;
}

.lead {
  font-size: 1.02rem;
  max-width: 34rem;
  color: #cbd5f5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

.hero-image-content {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.hero-image-content:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(to right, #4f46e5, #7c3aed);
  color: #f9fafb;
  box-shadow: 0 18px 60px rgba(79, 70, 229, 0.38);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(79, 70, 229, 0.55);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
}

.btn-ghost:hover {
  background: rgba(30, 64, 175, 0.4);
  border-color: rgba(191, 219, 254, 0.6);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.78rem;
}

.hero-tags span {
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.hero-panel {
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: radial-gradient(
    circle at top left,
    rgba(59, 130, 246, 0.35),
    rgba(15, 23, 42, 0.95)
  );
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.95);
}

.hero-panel h2 {
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.hero-panel li p {
  margin: 0.25rem 0 0;
  color: #e5e7eb;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.7rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.7);
  color: #eff6ff;
}

.section {
  margin-bottom: 3.5rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.section-lead {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 32rem;
}

.section p {
  line-height: 1.6;
}

.services {
  position: relative;
  padding: 2.25rem 1.75rem 2.5rem;
  margin-inline: -1.75rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(192, 132, 252, 0.3),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(147, 51, 234, 0.42),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.95);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    rgba(192, 132, 252, 0.13),
    transparent 20%,
    rgba(217, 70, 239, 0.2),
    transparent 52%,
    rgba(168, 85, 247, 0.18),
    transparent 80%,
    rgba(251, 191, 36, 0.1)
  );
  opacity: 0.45;
  filter: blur(32px);
  pointer-events: none;
}

.services > * {
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.75rem;
}

.card {
  border-radius: 1.1rem;
  padding: 1.35rem;
  background: radial-gradient(
    circle at top,
    rgba(147, 51, 234, 0.22),
    rgba(15, 23, 42, 0.97)
  );
  border: 1px solid rgba(168, 85, 247, 0.55);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.8);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.2s ease-out;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  top: -40%;
  height: 65%;
  background: radial-gradient(
    circle at top,
    rgba(217, 70, 239, 0.4),
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease-out,
    transform 0.25s ease-out;
}

.card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(233, 213, 255, 0.9);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.9);
  background: radial-gradient(
    circle at top,
    rgba(147, 51, 234, 0.7),
    rgba(15, 23, 42, 0.98)
  );
}

.card:hover::before {
  opacity: 1;
  transform: translateY(4px);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

#about {
  scroll-margin-top: 100px;
}

#contact {
  scroll-margin-top: 100px;
}

.about p + p {
  margin-top: 0.9rem;
}

.contact-box {
  margin-top: 1.75rem;
  border-radius: 1.1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  background: radial-gradient(
    circle at top left,
    rgba(96, 165, 250, 0.4),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(191, 219, 254, 0.7);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.85);
  font-size: 0.95rem;
}

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: #e0f2fe;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer {
  padding: 1.75rem 1.75rem 3rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #9ca3af;
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-column {
  min-width: 18rem;
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

.footer-text {
  margin: 0;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

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

.footer-contact a {
  color: #e0f2fe;
  text-decoration: none;
  font-size: 0.82rem;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image {
    min-height: 300px;
    margin-top: 2rem;
  }

  .hero-image-content {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    max-width: 80%;
  }

  .hero-panel {
    order: -1;
  }

  .main {
    padding-top: 2.25rem;
  }

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

  .services {
    margin-inline: -1.1rem;
    padding-inline: 1.25rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1.1rem;
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.78rem;
  }

  .main {
    padding-inline: 1.1rem;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    padding-inline: 1.1rem;
  }

  .footer-top {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.marquee-content {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll var(--marquee-speed, 20s) linear infinite;
  will-change: transform;
}

.marquee-item {
  flex-shrink: 0;
  display: block;
  transition: opacity 0.2s ease;
}

.marquee-item:hover {
  opacity: 0.8;
}

.marquee-item img {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.2s ease;
}

.marquee-item:hover img {
  filter: brightness(1.1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.contact-section {
  position: relative;
  background: #f5f0e6;
  padding: 4rem 1.75rem;
  border-radius: 0;
  color: #000;
}

.contact-intro {
  max-width: 1080px;
  margin: 0 auto 4rem;
  padding: 0 1.75rem;
}

.contact-intro-text {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #000;
  letter-spacing: -0.02em;
}

.contact-intro-text:last-of-type {
  margin-bottom: 0;
}

.contact-info {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.contact-image-wrapper {
  flex-shrink: 0;
}

.contact-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #e5e7eb;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: #000;
  letter-spacing: -0.02em;
}

.contact-title {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #6b7280;
}

.contact-action {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #000;
}

.contact-action a {
  color: #000;
  text-decoration: none;
}

.contact-action a:hover {
  text-decoration: underline;
}

.references-section {
  position: relative;
  background: #f5f0e6;
  padding: 3rem 0;
  overflow: hidden;
  color: #000;
}

.references-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.references-marquee-content {
  display: flex;
  gap: 4rem;
  flex-wrap: nowrap;
  min-width: max-content;
  will-change: transform;
}

.references-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background-color: #ffffff;
  width: 300px;
  height: 160px;
  border-radius: 10px;
}

.references-item img {
  display: block;
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.7);
  transition: filter 0.3s ease;
}

.references-item:hover img {
  filter: opacity(1);
}

.references-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .contact-section {
    padding: 3rem 1.1rem;
  }

  .contact-intro {
    margin-bottom: 3rem;
    padding: 0 1.1rem;
  }

  .contact-info {
    padding: 0 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .contact-image {
    width: 100px;
    height: 100px;
  }

  .references-marquee-content {
    animation: references-scroll 20s linear infinite;
  }
}
