:root {
  --bg-1: #070816;
  --bg-2: #12082a;
  --text: #ecf1ff;
  --muted: #b8c2e7;
  --line: rgba(235, 245, 255, 0.26);
  --glass: rgba(140, 183, 255, 0.12);
  --glass-strong: rgba(157, 122, 255, 0.19);
  --accent: #54d6ff;
  --accent-2: #8b6dff;
  --shadow: 0 16px 44px rgba(6, 10, 28, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 12% 12%, #1f2668 0%, transparent 35%),
    radial-gradient(circle at 88% 20%, #3d1b6a 0%, transparent 35%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.78;
}

.orb-a {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 110px;
  background: radial-gradient(circle, rgba(84, 214, 255, 0.82), rgba(84, 214, 255, 0));
  animation: float-orb 10s ease-in-out infinite;
}

.orb-b {
  width: 360px;
  height: 360px;
  right: -100px;
  top: 180px;
  background: radial-gradient(circle, rgba(139, 109, 255, 0.76), rgba(139, 109, 255, 0));
  animation: float-orb 13s ease-in-out infinite reverse;
}

.orb-c {
  width: 280px;
  height: 280px;
  right: 30%;
  bottom: 40px;
  background: radial-gradient(circle, rgba(92, 255, 217, 0.58), rgba(92, 255, 217, 0));
  animation: float-orb 11s ease-in-out infinite;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.glass {
  background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(199, 225, 255, 0.18);
}

.nav-wrap {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Syne", "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

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

.section {
  padding: clamp(3.3rem, 6vw, 5.8rem) 0;
}

.hero {
  padding-top: clamp(4.2rem, 8vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.7rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(175, 236, 255, 0.52);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #d4f5ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.16;
}

h1 {
  font-family: "Syne", "Trebuchet MS", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}

h1 span {
  color: #8ae9ff;
}

h2 {
  font-family: "Syne", "Trebuchet MS", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 0.5rem;
}

.lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(188, 236, 255, 0.52);
  color: #ecfbff;
  background: linear-gradient(130deg, rgba(84, 214, 255, 0.32), rgba(139, 109, 255, 0.36));
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(63, 95, 164, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(83, 121, 207, 0.48);
  filter: brightness(1.06);
}

.btn-sm {
  padding: 0.5rem 0.88rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -110% 30% auto -40%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 5.5s linear infinite;
  pointer-events: none;
}

.panel-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #caedff;
}

.hero-panel ul {
  margin: 0.85rem 0 1rem;
  padding-left: 1rem;
}

.hero-panel li + li {
  margin-top: 0.42rem;
}

.panel-badge {
  margin: 0;
  display: inline-flex;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: rgba(84, 214, 255, 0.2);
  border: 1px solid rgba(84, 214, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-head {
  margin-bottom: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.card,
.product,
.metric,
.info-box,
.contact {
  border-radius: var(--radius);
}

.card {
  padding: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card:hover,
.product:hover,
.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(179, 226, 255, 0.7);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.product {
  padding: 1.05rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product p {
  margin: 0;
  color: var(--muted);
}

.chip {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #d4f5ff;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0.9rem;
  align-items: stretch;
}

.info-box {
  padding: 1.2rem;
}

.info-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.info-box li + li {
  margin-top: 0.38rem;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.metric {
  padding: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.metric p {
  margin: 0;
  color: var(--muted);
}

.number {
  font-family: "Syne", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  color: #d9f6ff;
  margin-bottom: 0.2rem !important;
}

.contact {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  text-align: center;
}

.contact p {
  margin: 0 auto 1.2rem;
  color: var(--muted);
  max-width: 58ch;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-wrap {
  border-top: 1px solid rgba(188, 218, 255, 0.24);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.footer-wrap p {
  margin: 0;
  color: #c9d8ff;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.95s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
}

.reveal-delay {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.95s cubic-bezier(0.2, 0.65, 0.2, 1) 0.2s forwards;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(8px);
  animation: reveal 0.85s cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
}

.reveal-stagger > :nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-stagger > :nth-child(2) {
  animation-delay: 0.2s;
}

.reveal-stagger > :nth-child(3) {
  animation-delay: 0.3s;
}

.reveal-stagger > :nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(12px, -18px) scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    transform: rotate(0deg) translateX(-10%);
  }

  100% {
    transform: rotate(0deg) translateX(120%);
  }
}

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

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

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.7rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
