/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0b1a12;
  --bg-soft: #12241a;
  --accent: #22c55e;
  --accent-soft: #14532d;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border: #1f2933;
  --danger: #ef4444;
  --highlight: #facc15;
  --max-width: 1080px;
}

/* ========== BODY & LAYOUT ========== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #14532d 0, #020617 55%);
  color: var(--text);
  line-height: 1.6;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== HEADER & NAV ========== */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

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

/* USE YOUR REAL LOGO IMAGE */
.logo-img {
  height: 48px;   /* adjust if you want bigger/smaller */
  width: auto;
  border-radius: 6px;
}

.logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.logo-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  font-size: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--muted);
  transition: all 0.18s ease;
}

nav a:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.08);
}

nav a.btn-primary {
  background: var(--accent);
  color: #022c22;
  border-color: transparent;
  font-weight: 600;
}

nav a.btn-primary:hover {
  background: #16a34a;
}

/* ========== HERO ========== */
.hero {
  padding: 2.5rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 34rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ========== BADGES & BUTTONS ========== */
.badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.75);
  color: var(--muted);
}

.badge.highlight {
  border-color: var(--accent);
  background: rgba(34, 197, 94, 0.06);
  color: var(--highlight);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.18s ease;
}

.btn:hover {
  background: #15803d;
  border-color: #22c55e;
}

.btn.outline {
  background: transparent;
  border-color: var(--border);
  color: var(--muted);
}

.btn.outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* ========== HERO SIDE CARD ========== */
.hero-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, #111827, #020617 55%);
  padding: 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.hero-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-card-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

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

.stat {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.65rem;
  background: rgba(12, 19, 38, 0.9);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}

/* ========== SECTIONS ========== */
section {
  padding: 1.8rem 0;
}

.section-header {
  margin-bottom: 1.1rem;
}

.section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ========== GRIDS & CARDS ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

@media (max-width: 900px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.9);
  padding: 1rem;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.card-list {
  list-style: none;
  font-size: 0.8rem;
  color: var(--muted);
}

.card-list li::before {
  content: "• ";
  color: var(--accent);
}

/* ========== HIGHLIGHT STRIP ========== */
.highlight-strip {
  border-radius: 1rem;
  border: 1px dashed var(--accent);
  background: rgba(22, 163, 74, 0.07);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

/* ========== FOOTER ========== */
footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: #020617;
  padding: 1.2rem 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

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

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

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ========== TYPOGRAPHY ========== */
p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

ul {
  padding-left: 1.1rem;
  margin-bottom: 0.7rem;
}

h1,
h2,
h3 {
  margin-bottom: 0.4rem;
}