:root {
  --bg: #060a1f;
  --surface: #121833;
  --accent: #22d3ee;
  --accent-2: #ff4fb6;
  --accent-3: #7c9cff;
  --text: #f7f8ff;
  --muted: #b7c0e0;
  --shadow: rgba(8, 12, 32, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  background: radial-gradient(circle at top, #1a2c55, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.hero {
  padding: 110px 6vw 80px;
  min-height: 100vh;
  background: linear-gradient(120deg, #0c1230, #1c2a5e, #060a1f);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent);
  filter: blur(0);
  border-radius: 50%;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.hero::before {
  top: -80px;
  left: -40px;
}

.hero::after {
  bottom: 20px;
  right: 40px;
  background: radial-gradient(circle, rgba(255, 79, 182, 0.5), transparent);
  animation-delay: 4s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  position: fixed;
  top: 18px;
  left: 6vw;
  right: 6vw;
  padding: 14px 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(5, 8, 20, 0.35);
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0b0f1f;
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  color: #2b2f42;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0b0f1f;
}

.cta {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 36px rgba(255, 79, 182, 0.45);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.3s ease;
}

.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.2), rgba(255, 79, 182, 0.15));
  padding: 18px;
  border-radius: 22px;
  position: relative;
  box-shadow: 0 25px 60px var(--shadow);
}

.hero-card img {
  border-radius: 16px;
}

.hero-card-info {
  margin-top: 18px;
}

.hero-card-info h3 {
  margin-bottom: 6px;
}

.glow {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent);
  border-radius: 50%;
  filter: blur(1px);
  animation: pulse 4s ease-in-out infinite;
}

.section {
  padding: 80px 6vw;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.card {
  background: var(--surface);
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(8, 10, 20, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(8, 10, 20, 0.5);
}

.card h3 {
  margin: 16px 0 8px;
}

.accent {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.16), rgba(255, 79, 182, 0.16));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step {
  background: rgba(20, 26, 51, 0.7);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step span {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.highlight {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  box-shadow: 0 20px 60px rgba(8, 10, 20, 0.45);
}

.highlight ul {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--muted);
}

.badge-card {
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.4), rgba(255, 79, 182, 0.4));
  padding: 28px;
  border-radius: 18px;
  text-align: center;
}

.badge-card span {
  display: inline-block;
  margin-top: 12px;
  color: #fef4ef;
}

.contact {
  background: radial-gradient(circle at top, rgba(34, 211, 238, 0.2), transparent 60%);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.gallery img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(8, 12, 32, 0.5);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: translateY(-4px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(8, 10, 20, 0.4);
}

.contact-info {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  color: var(--muted);
}

.form {
  background: rgba(20, 26, 51, 0.7);
  padding: 28px;
  border-radius: 20px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer {
  padding: 28px 6vw 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 6vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    top: 10px;
    left: 4vw;
    right: 4vw;
    padding: 12px 16px;
    border-radius: 22px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
