@charset "UTF-8";

/* =========================
   Base / Tokens
   ========================= */
* { -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

:root{
  --bg: #0f0f10;
  --surface: #161616;
  --surface-2: #1d1f22;
  --text: #f7f7f9;
  --muted: #bdbfc4;

  --accent: #ff6b3d;      /* ember */
  --accent-2: #f2994a;    /* warm amber */

  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.5);

  --radius: 16px;
  --radius-sm: 10px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  font-size: 16px;
}

/* Media defaults */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 700; }
p { margin: 0 0 12px 0; }

/* Utilities */
.wrap { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.eyebrow { text-transform: uppercase; font-size: 12px; letter-spacing: 2px; color: var(--muted); }
.lede { font-size: 18px; color: #e7e8ec; }

/* A11y */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 12px; top: 12px;
  padding: 10px 12px; background: #111; border-radius: 8px;
  z-index: 2000;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
}
.btn-primary { background: var(--accent); color: #111; border-color: rgba(255,107,61,0.35); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid rgba(255,255,255,0.12); box-shadow: none; }

/* Cards (shared) */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 18px rgba(0,0,0,0.25);
          box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.card-body { padding: 16px 16px 18px 16px; }

/* Panel system (prevents endless scrolling) */
.app { padding-top: 72px; } /* space for fixed header */
.panel { display: none; padding: 26px 0; }
.panel.is-active { display: block; }

.panel-head { margin: 0 0 14px 0; }
.panel-head h2 { margin-bottom: 6px; }

/* Responsive (px breakpoints) */
@media (max-width: 1200px) {
  .wrap { padding: 0 18px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 16px; }
  .lede { font-size: 16px; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
}
@media (max-width: 300px) {
  body { font-size: 14px; }
}
