:root {
  color-scheme: only light;
  --bg: #050719;
  --bg-alt: #0b0f2b;
  --accent: #35e0ff;
  --accent-2: #ff5ec4;
  --accent-3: #7fe9ff;
  --text: #f5f7ff;
  --muted: #c5d0ff;
  --card: rgba(11, 15, 43, 0.85);
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: "Segoe UI", "Inter", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #19225f 0%, #050719 60%);
  min-height: 100vh;
  overflow-x: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  padding: 120px 6vw 80px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.6;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -160px;
  left: -120px;
  animation: float 12s ease-in-out infinite;
}

.hero::after {
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  bottom: -160px;
  right: -120px;
  animation: float 16s ease-in-out infinite reverse;
}

.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 6vw;
  background: #ffffff;
  color: #0b0f2b;
  box-shadow: 0 12px 30px rgba(5, 7, 25, 0.15);
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: inherit;
  text-decoration: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-solid {
  color: #03051f;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 70%);
  box-shadow: 0 16px 35px rgba(53, 224, 255, 0.35);
}

.btn-ghost {
  color: #0b0f2b;
  border: 1px solid rgba(11, 15, 43, 0.15);
  background: rgba(11, 15, 43, 0.04);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text {
  display: grid;
  gap: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent-3);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(20px);
  animation: lift 8s ease-in-out infinite;
}

.image-stack img:last-child {
  transform: translateY(0);
  animation-delay: 2s;
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
  display: grid;
  gap: 12px;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, rgba(53, 224, 255, 0.12), rgba(255, 94, 196, 0.14));
}

.highlight-media img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 28px;
  color: var(--muted);
  padding-left: 18px;
}

.contact {
  background: var(--bg-alt);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-card {
  padding: 22px;
  border-radius: 18px;
  background: rgba(7, 11, 43, 0.5);
  border: 1px solid var(--stroke);
}

.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer {
  padding: 30px 6vw 50px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
