:root {
  --accent: #00e3f5;
  --text-light: #f8fafc;
  --text-dark: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: Heebo, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #0d0d21;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(#fff 1px, transparent 1px) 0 0/3px 3px;
  opacity: 0.1;
  animation: stars 60s linear infinite;
  z-index: -2;
}

body::after {
  background: radial-gradient(circle at 50% 50%, #6a00f4, #ff005e, #0d0d21);
  background-size: 200% 200%;
  animation: drift 20s linear infinite;
  z-index: -3;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100dvh;
  padding: 4rem 2rem;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgb(255 255 255 / 15%), transparent 40%);
  filter: blur(80px);
  animation: blob 30s ease-in-out infinite;
  z-index: -1;
}

h1 {
  font-weight: 900;
  font-size: clamp(4rem, 8vw, 9rem);
  text-shadow: 0 0 30px currentcolor;
  color: var(--text-light);
}

.hero h2.company-hebrew {
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  background: none;
  color: var(--text-light);
}

.subtitle {
  font-weight: 300;
  font-size: 1.25rem;
  max-width: 65ch;
  color: var(--text-light);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 2rem;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.panel {
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 30%);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  transition: transform 0.3s;
}

.panel:hover {
  transform: perspective(800px) rotateX(6deg);
}

h2 {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ff005e, #00e3f5);
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact h2 {
  background: none;
  color: var(--text-light);
}

p {
  max-width: 65ch;
  margin-inline: auto;
}

ul {
  list-style: none;
  max-width: 65ch;
  margin-inline: auto;
}

li {
  position: relative;
  padding-right: 1.5em;
  margin-bottom: 0.5em;
}

li::before {
  content: '';
  position: absolute;
  top: 0.6em;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--accent);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: var(--accent);
  color: #0d0d21;
  font-weight: 500;
  text-decoration: none;
  transition:
    transform 0.25s cubic-bezier(0.25, 0.75, 0.5, 1.25),
    box-shadow 0.25s cubic-bezier(0.25, 0.75, 0.5, 1.25);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--accent);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  background: #0d0d21;
  color: var(--text-dark);
}

.pair {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media (width >= 900px) {
  .pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .panel:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
    box-shadow: none;
  }
}

@keyframes drift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 100%;
  }
}

@keyframes stars {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1000px);
  }
}

@keyframes blob {
  0% {
    transform: translateY(0) scale(1);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  }

  50% {
    transform: translateY(-50px) scale(1.2);
    border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
  }

  100% {
    transform: translateY(0) scale(1);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  }
}
