@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&display=swap");

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

:root {
  color-scheme: light;
  --navy: #0c1130;
  --blue: #20c8ff;
  --cyan: #23d7ff;
  --magenta: #ff4fd8;
  --orange: #ff86c9;
  --light: #f6f8ff;
  --dark: #071024;
  --shadow: 0 20px 40px rgba(7, 16, 36, 0.15);
}

body {
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header {
  background: radial-gradient(circle at top left, #ffffff 20%, #e8fbff 60%, #ffd8f1 100%);
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 6vw;
  background: white;
  box-shadow: 0 8px 24px rgba(7, 16, 36, 0.08);
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(32, 200, 255, 0.15);
  color: var(--blue);
}

.nav .cta {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow);
}

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

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--navy);
  margin: 18px 0 20px;
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 20px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--cyan), var(--magenta));
  color: white;
  box-shadow: var(--shadow);
}

.button.ghost {
  border: 2px solid var(--magenta);
  color: var(--magenta);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 79, 216, 0.25);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-art {
  position: relative;
  display: grid;
  gap: 16px;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card.main-image {
  height: 320px;
}

.image-card.accent {
  position: absolute;
  width: 58%;
  right: -8%;
  bottom: -20%;
  height: 180px;
  border: 4px solid white;
}

.glow-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(35, 215, 255, 0.45), transparent 70%);
  top: -20%;
  left: -12%;
  filter: blur(2px);
  animation: float 6s ease-in-out infinite;
}

.section {
  padding: 90px 6vw;
}

.section-header {
  max-width: 620px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  color: var(--navy);
  margin-bottom: 12px;
}

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

.card {
  padding: 28px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: var(--blue);
  margin-bottom: 12px;
}

.vibrant {
  background: linear-gradient(120deg, #0a3c4f, #0c6a8e, #ff5fbf);
  color: white;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.split-text h2 {
  color: white;
  margin-bottom: 16px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.pill-row span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.split-media img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.image-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f6feff 50%, #fff2fb 100%);
}

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

.image-grid .image-card {
  height: 220px;
}

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

.about-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.about-card.highlight {
  background: linear-gradient(140deg, #ffffff, #e0f7ff, #ffd9f2);
}

.about-card ul {
  list-style: none;
  margin-top: 16px;
}

.about-card li {
  padding: 8px 0;
  font-weight: 600;
}

.stats {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--magenta);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: #445b8a;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #6d7aa8;
}

.contact-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pulse-ring {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: pulse 3.2s ease-in-out infinite;
}

.site-footer {
  background: #0b1232;
  color: white;
  padding: 40px 6vw;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer a {
  color: white;
}

.footer-note {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  color: #b7c7ff;
}

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

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

.delay {
  transition-delay: 0.2s;
}

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

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

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

  .nav-links {
    flex-wrap: wrap;
  }

  .image-card.accent {
    position: static;
    width: 100%;
    height: 180px;
  }

  .hero-art {
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
}
