/* ============================================================
   HawkOS Lite — Brand token system + shared component classes
   Shared across all pages (landing, login, dashboard).
   Page-specific layout (nav, hero, skill-grid, footer, etc.)
   lives in the individual page stylesheets.
   ============================================================ */

/* ── Google Fonts (preconnect tags belong in <head>; this
      @import is a convenient fallback for non-HTML consumers) */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300;400;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Primary */
  --picton-blue: #3DB7E9;
  --bright-aqua: #01FFFF;
  --deep-black:  #000000;
  --white:       #FFFFFF;
  /* Secondary */
  --sunny-yellow: #FECF40;
  --pale-violet:  #ADBAFF;
  --warm-grey:    #F5F4F2;
  /* Gradients */
  --blue-gradient:   linear-gradient(135deg, #3DB7E9, #01FFFF);
  --violet-gradient: linear-gradient(135deg, #ADBAFF, #01FFFF);
  /* Semantic */
  --bg-dark:  var(--deep-black);
  --bg-light: var(--warm-grey);
  --ink:      var(--deep-black);
  --link:     var(--picton-blue);
  /* Type */
  --font-head: 'Archivo', system-ui, sans-serif; /* swap to 'Degular' if licensed font added */
  --font-body: 'Archivo', system-ui, sans-serif;
  /* Layout */
  --maxw: 1120px;
  --radius: 14px;
}

/* ── Base reset / typography ────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); font-weight: 300; color: var(--ink); background: var(--white); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; }
.eyebrow { font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; }
a { color: var(--link); }
img { max-width: 100%; height: auto; }

/* ── Layout helpers ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn { display: inline-block; font-family: var(--font-body); font-weight: 700;
       padding: 14px 26px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 0; }
.btn-primary { background: var(--blue-gradient); color: var(--deep-black); }
.btn-ghost   { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-sm      { padding: 9px 18px; font-size: .9rem; }

/* ── Sections ───────────────────────────────────────────── */
.section       { padding: 88px 0; }
.section-dark  { background: var(--bg-dark);  color: var(--white); }
.section-light { background: var(--bg-light); color: var(--ink); }

/* Dot-grid: ONLY on dark sections (brand rule) */
.dotgrid { background-image: radial-gradient(rgba(255,255,255,.14) 1.4px, transparent 1.4px); background-size: 22px 22px; }

/* ── Command / code blocks ──────────────────────────────── */
.cmd      { display: flex; align-items: center; gap: 10px; background: var(--deep-black); color: var(--bright-aqua); border-radius: 10px; padding: 12px 14px; font-family: ui-monospace, monospace; overflow-x: auto; margin-top: 8px; }
.cmd code { background: transparent; color: var(--bright-aqua); padding: 0; white-space: nowrap; }
.copy     { margin-left: auto; flex: 0 0 auto; background: rgba(255,255,255,.12); color: var(--white); border: 0; border-radius: 6px; padding: 6px 12px; cursor: pointer; font-weight: 700; }
.copy.is-copied { background: var(--bright-aqua); color: var(--deep-black); }
.verify-note    { font-size: .8rem; opacity: .6; }

/* ── Responsive section padding ────────────────────────── */
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}
