:root {
  color-scheme: light;
  --bg: #f7f6ff;
  --surface: #ffffff;
  --primary: #12cbe4;
  --primary-dark: #0a91a3;
  --accent: #ff4fb1;
  --ink: #0d1c24;
  --muted: #4f5f6b;
  --shadow: 0 20px 40px rgba(10, 23, 40, 0.15);
  --radius: 20px;
}

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

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  padding-top: 72px;
}

img {
  width: 100%;
  display: block;
}

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

.hero {
  position: relative;
  background: radial-gradient(circle at top left, #d7fbff 0%, #f7f6ff 55%, #ffe6f6 100%);
  overflow: hidden;
  padding-bottom: 80px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8%;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(10, 23, 40, 0.08);
}

.logo {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

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

.nav-link {
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

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

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #7ee6f3);
  color: white;
}

.btn-ghost {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-light {
  background: white;
  color: var(--primary);
  border: 1px solid #e5ecff;
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.hero-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7b8da1;
}

.meta-value {
  font-weight: 600;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.image-card {
  width: min(100%, 420px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
  animation: pulse 3s ease-in-out infinite;
}

.section {
  padding: 80px 8%;
}

.section-header {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 10px;
}

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

.image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.image-strip img {
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(10, 23, 40, 0.12);
  height: 180px;
  object-fit: cover;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 38, 80, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card img {
  border-radius: 14px;
  margin-bottom: 16px;
  height: 160px;
  object-fit: cover;
}

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

.highlight {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  background: linear-gradient(120deg, #ffe6f6, #ffffff);
  border-radius: 30px;
  margin: 0 8%;
  padding: 50px 60px;
}

.highlight-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-content {
  display: grid;
  gap: 30px;
}

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

.stat-number {
  font-weight: 800;
  font-size: 1.4rem;
}

.stat-label {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.contact {
  background: linear-gradient(120deg, #dbf9ff, #ffffff);
}

.contact-card {
  background: var(--surface);
  padding: 40px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 30px;
}

.contact-details {
  display: grid;
  gap: 16px;
  font-weight: 600;
}

.contact-details a {
  color: var(--primary-dark);
  font-size: 1.1rem;
}

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

.footer {
  text-align: center;
  padding: 30px 8%;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f6f8ff);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight {
    margin: 0 4%;
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 20px 6%;
  }

  .section {
    padding: 60px 6%;
  }

  .hero-content {
    padding: 30px 6% 0;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .highlight {
    margin: 0 6%;
  }
}
