﻿:root {
  --bg: #0b1220;
  --surface: #111a2b;
  --surface-2: #162238;
  --text: #e8eefc;
  --muted: #9fb0d1;
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --border: #24324a;
  --max: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Segoe UI, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header,
.site-footer {
  background: #09101c;
  border-bottom: 1px solid var(--border);
}

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

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

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

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

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

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 14ch;
}

.lead {
  max-width: 60ch;
  color: var(--muted);
}

.section {
  padding: 3rem 0;
}

.alt {
  background: var(--surface);
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: .85rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
  color: #08110a;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: var(--surface);
}

.muted {
  color: var(--muted);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  flex-shrink: 0;
}

.brand-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .01em;
  line-height: 1;
}

@media (max-width: 800px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .brand-logo {
    width: 56px;
    height: 56px;
  }

  .brand-text {
    font-size: 1.1rem;
  }
}