/* Base */
:root {
  --bg: #0b0b0c;          /* very dark gray */
  --bg-elev: #141416;
  --text: #f2f3f5;        /* near-white */
  --muted: #b6b9c0;
  --accent: #ffffff;      /* white for high contrast */
  --accent-weak: #9ae6b4; /* soft green highlight (optional) */
  --maxw: 900px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 8px;
}

.logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px 48px;
}

.hero { text-align: center; margin: 12px 0 24px; }
.hero h1 { font-size: 48px; letter-spacing: 0.02em; margin: 0 0 6px; }
.tagline { color: var(--muted); margin: 0; }

section { background: transparent; padding: 12px 0; }
section h2 { font-size: 18px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 18px 0 8px; }

ul { margin: 8px 0 0; padding-left: 18px; }
li { margin: 6px 0; }

.cta { text-align: center; margin-top: 22px; }
.button {
  display: inline-block;
  background: var(--accent);
  color: #111;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.button:hover { opacity: 0.92; }

.button.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #2a2b2e;
}
.button.outline:hover { border-color: #3a3b3e; }

.socials { text-align: center; margin-top: 12px; }
.socials .button { margin: 6px 8px 0; }

.site-footer {
  border-top: 1px solid #1f2022;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

/* Responsive */
@media (min-width: 880px) {
  .hero h1 { font-size: 56px; }
}


