:root {
  --lime-100: #ecffd1;
  --lime-300: #b8ff5a;
  --lime-500: #83e318;
  --lime-700: #4ea200;
  --ink-900: #070b07;
  --ink-800: #101610;
  --ink-700: #1a211a;
  --text: #f5fff0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(131, 227, 24, 0.22), transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(131, 227, 24, 0.2), transparent 40%),
    linear-gradient(150deg, var(--ink-900), #050805 40%, #0d160d);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20% -10% auto -10%;
  height: 58vh;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(184, 255, 90, 0.12), transparent 60%);
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(#ffffff 0.45px, transparent 0.45px);
  background-size: 5px 5px;
}

.bg-flight-wrapper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.bg-float {
  position: absolute;
  width: clamp(180px, 28vw, 340px);
  opacity: 0.18;
  filter: blur(2px);
  transform-origin: center;
}

.logo-a {
  top: 10vh;
  left: 6vw;
  animation: rubber-bounce-a 17s linear infinite;
}

.logo-b {
  bottom: 8vh;
  right: 8vw;
  animation: rubber-bounce-b 18.5s linear infinite;
}

.site-header,
main,
.site-footer {
  width: min(1080px, 92vw);
  margin-inline: auto;
}

.site-header {
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.cta {
  color: var(--ink-900);
  background: linear-gradient(120deg, var(--lime-300), var(--lime-500));
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  text-decoration: none;
}

main {
  padding-top: 2.5rem;
  perspective: 900px;
}

.hero {
  padding: 4rem 0 3.5rem;
  animation: fade-up 0.7s ease-out;
}

.eyebrow {
  margin: 0;
  color: var(--lime-300);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 1.05;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 6vw, 4.7rem);
  max-width: 13ch;
}

.intro {
  margin-top: 1.2rem;
  max-width: 60ch;
  font-size: 1.06rem;
  color: var(--lime-100);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
}

.btn-primary {
  color: var(--ink-900);
  background: linear-gradient(120deg, var(--lime-300), var(--lime-500));
}

.btn-ghost {
  color: var(--lime-300);
  border: 1px solid var(--lime-500);
  background: rgba(131, 227, 24, 0.08);
}

.panel {
  background: linear-gradient(160deg, rgba(16, 22, 16, 0.88), rgba(7, 11, 7, 0.9));
  border: 1px solid rgba(131, 227, 24, 0.25);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.4rem;
  animation: fade-up 0.8s ease-out;
}

.parallax-layer {
  transition: transform 180ms linear;
  will-change: transform;
}

.panel p,
.panel li {
  color: var(--lime-100);
}

.panel ul {
  margin: 0.8rem 0 0;
  padding-left: 1.25rem;
}

.service-link {
  margin-top: 0.95rem;
  display: inline-block;
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  background: linear-gradient(120deg, var(--lime-300), var(--lime-500));
}

.request-spotlight {
  position: relative;
  overflow: hidden;
  border-color: rgba(184, 255, 90, 0.6);
}

.request-spotlight::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle at center, rgba(184, 255, 90, 0.3), transparent 70%);
  animation: pulse-glow 3.2s ease-in-out infinite;
}

.request-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.request-form label {
  font-weight: 600;
  color: var(--lime-100);
}

.request-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(131, 227, 24, 0.35);
  background: rgba(10, 16, 10, 0.85);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.input-prefix {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.input-prefix span {
  color: var(--lime-300);
  font-weight: 700;
}

.turnstile-box {
  min-height: 72px;
  display: grid;
  align-items: center;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.2rem 0 0;
  color: var(--lime-300);
}

.service-link:hover {
  filter: brightness(1.05);
}

.site-footer {
  padding: 2rem 0 2.4rem;
  color: #b6c6b4;
  font-size: 0.92rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rubber-bounce-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.96, 1.04);
  }
  16% {
    transform: translate3d(34vw, 18vh, 0) rotate(10deg) scale(1.03, 0.97);
  }
  28% {
    transform: translate3d(64vw, 8vh, 0) rotate(16deg) scale(1.1, 0.9);
  }
  30% {
    transform: translate3d(60vw, 13vh, 0) rotate(12deg) scale(0.92, 1.08);
  }
  46% {
    transform: translate3d(46vw, 60vh, 0) rotate(24deg) scale(1.05, 0.95);
  }
  58% {
    transform: translate3d(8vw, 66vh, 0) rotate(33deg) scale(1.1, 0.9);
  }
  60% {
    transform: translate3d(12vw, 61vh, 0) rotate(29deg) scale(0.92, 1.08);
  }
  77% {
    transform: translate3d(54vw, 44vh, 0) rotate(41deg) scale(1.04, 0.96);
  }
  88% {
    transform: translate3d(70vw, 14vh, 0) rotate(47deg) scale(1.08, 0.92);
  }
  90% {
    transform: translate3d(66vw, 18vh, 0) rotate(43deg) scale(0.93, 1.07);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(58deg) scale(1, 1);
  }
}

@keyframes rubber-bounce-b {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1.04, 0.96);
  }
  14% {
    transform: translate3d(-30vw, -17vh, 0) rotate(-8deg) scale(0.98, 1.02);
  }
  24% {
    transform: translate3d(-63vw, -9vh, 0) rotate(-14deg) scale(0.9, 1.1);
  }
  26% {
    transform: translate3d(-58vw, -14vh, 0) rotate(-10deg) scale(1.08, 0.92);
  }
  44% {
    transform: translate3d(-42vw, -61vh, 0) rotate(-23deg) scale(0.94, 1.06);
  }
  57% {
    transform: translate3d(-5vw, -67vh, 0) rotate(-31deg) scale(0.9, 1.1);
  }
  59% {
    transform: translate3d(-10vw, -62vh, 0) rotate(-27deg) scale(1.07, 0.93);
  }
  75% {
    transform: translate3d(-52vw, -40vh, 0) rotate(-39deg) scale(0.95, 1.05);
  }
  86% {
    transform: translate3d(-69vw, -13vh, 0) rotate(-46deg) scale(0.9, 1.1);
  }
  88% {
    transform: translate3d(-64vw, -18vh, 0) rotate(-41deg) scale(1.07, 0.93);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-56deg) scale(1, 1);
  }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@media (max-width: 740px) {
  .site-header {
    position: static;
    padding-top: 1rem;
  }

  .brand span {
    font-size: 0.94rem;
  }

  h1 {
    max-width: none;
  }

  .bg-float {
    opacity: 0.14;
    filter: blur(3px);
  }
}
