:root {
  color-scheme: light;
  --blue: #00c2ff;
  --aqua: #59f0ff;
  --orange: #ff4fd8;
  --yellow: #ff9fe8;
  --navy: #1a1b3d;
  --ink: #0b1324;
  --white: #ffffff;
  --muted: #8a96a8;
  --surface: #f4f7ff;
  --surface-strong: #e3e9ff;
  --shadow: 0 20px 50px rgba(10, 29, 58, 0.15);
  --radius: 20px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #e7fbff, #ffffff 45%, #ffe9fb);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  inset: -20vh -20vw auto auto;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.3), transparent 70%);
  filter: blur(0px);
  z-index: -2;
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, 40px);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 25, 45, 0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-mark {
  font-size: 28px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  padding: 10px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  display: block;
}

.brand-tag {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(0, 194, 255, 0.25);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--blue);
  color: var(--blue);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: #334155;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-meta {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.meta-title {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-card-content {
  padding-top: 18px;
}

.hero-card-content a {
  color: var(--blue);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 35px rgba(10, 29, 58, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.stat-stack {
  display: grid;
  gap: 18px;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff, #f7f9ff);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  display: block;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: var(--white);
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.gallery-card figcaption {
  margin-top: 12px;
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: var(--white);
  padding: 60px 0;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.contact-form {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7def0;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: center;
}

.footer-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero {
    padding-top: 60px;
  }
  .cta-grid {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
}
