/* styles.css - light, single file. Defines the verity CSS token and the
   #vfy-probe size that metrics.js reads back to confirm CSS was applied. */
:root {
  --vfy: "v1"; /* presence proves the external stylesheet parsed + applied */
  --bg: #0f1a14;
  --card: #16241c;
  --accent: #2e9e6b;
  --accent-2: #d4af37;
  --text: #e7efe9;
  --muted: #9db3a6;
  font-family: "Segoe UI", Tahoma, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); line-height: 1.7; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 18px; }
a { color: inherit; text-decoration: none; }

/* proof element: only the stylesheet gives it a measurable width */
#vfy-probe { display: block; width: 42px; height: 1px; opacity: 0; }

.site-header { position: sticky; top: 0; background: rgba(15,26,20,.92); border-bottom: 1px solid #22362a; }
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 58px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.15rem; }
.nav-links { margin-inline-start: auto; display: flex; gap: 18px; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; margin-inline-start: auto; background: none; border: 0; color: var(--text); font-size: 1.4rem; cursor: pointer; }

.hero { background: linear-gradient(160deg, #16241c, #0f1a14); padding: 72px 0; text-align: center; }
.hero h1 { font-size: 2.1rem; margin-bottom: 14px; }
.hero .lead { color: var(--muted); max-width: 640px; margin: 0 auto 24px; }
.cta { display: inline-block; background: var(--accent); color: #fff; padding: 11px 26px; border-radius: 8px; font-weight: 600; }
.cta:hover { background: #37b57d; }

.section { padding: 54px 0; }
.section.alt { background: #12201a; }
.section h2 { font-size: 1.6rem; margin-bottom: 18px; color: var(--accent-2); }
.section p { color: #cdddd3; margin-bottom: 12px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.card { background: var(--card); border: 1px solid #22362a; border-radius: 10px; padding: 16px; }
.card h3 { color: var(--accent); margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }

.values { list-style: none; display: grid; gap: 10px; }
.values li { background: var(--card); border-radius: 8px; padding: 12px 16px; }
.values strong { color: var(--accent-2); }
.muted { color: var(--muted); font-size: .9rem; }

.site-footer { border-top: 1px solid #22362a; padding: 22px 0; }
.site-footer .wrap { display: flex; justify-content: space-between; color: var(--muted); font-size: .9rem; }

@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 58px; inset-inline: 0; flex-direction: column; background: var(--bg); padding: 12px 18px; border-bottom: 1px solid #22362a; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 1.6rem; }
}
