:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark light;
  --background: #050708;
  --surface: #0f1114;
  --text: #f4f7f2;
  --text-muted: #a2a9b5;
  --accent: #2ee88a;
  --accent-dark: #19b664;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(145deg, #020403, #0c120d);
  color: var(--text);
  min-height: 100vh;
}

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 8, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), #7affb9);
  color: #041104;
  letter-spacing: 0.05em;
}

.logo-title {
  margin: 0;
  font-weight: 600;
}

.logo-tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.hero-card ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: var(--accent);
  color: #041104;
  box-shadow: 0 20px 40px rgba(46, 232, 138, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn.ghost.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 0 1px rgba(46, 232, 138, 0.2);
}

.gallery-toggle {
  display: inline-flex;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
}

.metric {
  font-size: 2rem;
  font-weight: 600;
}

.metric-label {
  margin: 0;
  color: var(--text-muted);
}

.section {
  padding: 4rem 0;
}

.section.muted {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.split-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(46, 232, 138, 0.1);
  margin-bottom: 1rem;
}

.card ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

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

.feature-grid article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
}

.gallery {
  display: grid;
  gap: 2rem;
}

.gallery-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x proximity;
}

.gallery-scroll::-webkit-scrollbar {
  height: 6px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.gallery-scroll figure {
  margin: 0;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.gallery-scroll figure img {
  height: 100%;
  width: auto;
  display: block;
}

.highlight {
  background: linear-gradient(120deg, rgba(46, 232, 138, 0.1), rgba(15, 17, 20, 0.95));
  border-top: 1px solid rgba(46, 232, 138, 0.3);
  border-bottom: 1px solid rgba(46, 232, 138, 0.3);
}

.highlight-grid {
  display: grid;
  gap: 2rem;
}

.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.stats-list li {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-list strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
}

.contact-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  background: #050708;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .hero-metrics {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
