:root {
  --bg: #02110c;
  --bg-light: #041911;
  --accent: #04b486;
  --accent-soft: #038c65;
  --text-main: #e5f2ec;
  --text-muted: #9fb3aa;
  --card-bg: #010806;
  --border-subtle: #123326;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #063420 0, #02110c 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header / nav */
header {
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(4, 17, 12, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #e5f2ec;
}
.logo span {
  color: var(--accent);
}
nav a {
  margin-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
nav a:hover { color: var(--text-main); }

/* Main layout */
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 3.5rem;
}

/* Hero (home) */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}
.hero-copy h1 span {
  color: var(--accent);
}
.hero-copy p {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  color: var(--text-muted);
  background: rgba(3, 24, 17, 0.9);
}
.primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  box-shadow: 0 10px 30px rgba(4, 180, 134, 0.35);
}
.btn-outline {
  border-color: var(--border-subtle);
  color: var(--text-muted);
  background: rgba(4, 17, 12, 0.96);
}
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hero-card {
  background: radial-gradient(circle at top, #083423 0, #010806 60%);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 15px 45px rgba(1, 8, 6, 0.9);
  font-size: 0.85rem;
}
.hero-card h2 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.hero-metric {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.metric {
  padding: 0.6rem 0.7rem;
  border-radius: 0.6rem;
  background: rgba(4, 17, 12, 0.96);
  border: 1px solid var(--border-subtle);
}
.metric strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.metric span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Sections & cards */
section {
  margin-bottom: 2.75rem;
}
.section-heading {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.section-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--bg-light);
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  padding: 1rem;
  font-size: 0.88rem;
}
.card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pill {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.4rem;
  align-items: flex-start;
}

/* FAQ blocks (used on home and FAQ page if you want) */
details {
  background: var(--bg-light);
  border-radius: 0.8rem;
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}
summary {
  cursor: pointer;
  font-size: 0.9rem;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact strip */
.contact-strip {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  background: linear-gradient(
    135deg,
    rgba(4, 180, 134, 0.14),
    rgba(34, 197, 154, 0.06)
  );
  border: 1px solid rgba(4, 180, 134, 0.4);
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}
.contact-strip strong {
  font-size: 0.9rem;
}
.contact-email {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  font-size: 0.86rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(4, 17, 12, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

/* Generic page layout (About, FAQ, Contact, Privacy, Terms) */
.page {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 0 1.2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.page h1 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.page h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.page h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
.page ul {
  margin-left: 1.1rem;
  margin-bottom: 0.8rem;
}
.page li {
  margin-bottom: 0.25rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 1.2rem 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(4, 17, 12, 0.96);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}
.footer-links a {
  margin-left: 1rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text-main); }

/* Simple footer for subpages if you reuse .page-footer */
.page-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1rem 1.2rem 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.page-footer a {
  color: var(--text-muted);
}
.page-footer a:hover {
  color: var(--text-main);
}

/* Responsive */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  nav a { margin-left: 0.9rem; }
}
