:root {
  color-scheme: light;
  --bg: #070713;
  --card: #141529;
  --accent: #ff5fd2;
  --accent-2: #33d7ff;
  --accent-3: #ff9ee7;
  --text: #eef1ff;
  --muted: #c5c7d9;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 7, 19, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, 90vw);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1230, #05050e 60%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(51, 215, 255, 0.35), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(255, 95, 210, 0.3), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 158, 231, 0.2), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(6, 7, 18, 0.75);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-weight: 700;
}

.brand-title {
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #060712;
  box-shadow: 0 10px 30px rgba(255, 95, 210, 0.35);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(51, 215, 255, 0.3);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-highlights {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.hero-highlights h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.hero-card-content {
  padding: 16px 8px 0;
}

.hero-card:hover {
  transform: translateY(-8px);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #3d1b1b;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section.alt {
  background: rgba(255, 255, 255, 0.04);
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border 0.3s ease;
  display: grid;
  gap: 14px;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 215, 255, 0.55);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.process-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 16px;
}

.process-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(51, 215, 255, 0.25);
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-weight: 700;
}

.stats-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 28px;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255, 95, 210, 0.22), rgba(51, 215, 255, 0.22));
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  gap: 18px;
}

.map-wrap {
  background: var(--card);
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius-sm);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
