/* ═══════════════════════════════════════════════════════
   LARK.CX — Brand Base Stylesheet
   Single source of truth for palette, typography, reset.
   Every page @imports or <link>s this file, then layers
   its own page-specific styles on top.
   ═══════════════════════════════════════════════════════ */

/* ── FONTS ─────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Fira+Mono:wght@400;700&family=Fira+Sans+Condensed:ital,wght@0,300;0,400;0,700;1,300&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

/* ── PALETTE & TYPOGRAPHY TOKENS ───────────────────── */
:root {
  /* core brand */
  --bg:      #070600;
  --panel:   #111111;
  --code:    #0d0d0d;

  /* text */
  --white:   #ffffff;
  --text:    #d9d9d9;
  --muted:   #6d6875;
  --dim:     #444444;
  --gray:    #888888;

  /* accent */
  --coral:   #ff1053;
  --mauve:   #d972ff;
  --blue:    #1098f7;
  --pumpkin: #fc7a1e;
  --green:   #34d399;
  --gold:    #ddb44b;
  --red:     #e8593c;

  /* structural */
  --border:  #6d6875;
  --rule:    #1a1a18;

  /* font stacks */
  --hd:   "Bebas Neue", Impact, "Arial Black", sans-serif;
  --body: "Fira Sans Condensed", Calibri, sans-serif;
  --mono: "Fira Mono", Consolas, monospace;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;           /* brutalist: no rounding */
}

/* ── BASE ELEMENTS ─────────────────────────────────── */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
  cursor: crosshair;          /* lark.cx signature */
}

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

/* headings: Bebas Neue by default */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hd);
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

/* form controls: brutalist defaults */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="number"],
select,
textarea {
  border: 1px solid var(--border);
  background: var(--code);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.88rem;
  padding: 6px 8px;
  outline: none;
}

button {
  border: 1px solid var(--border);
  background: var(--coral);
  color: var(--bg);
  font-family: var(--hd);
  font-size: 1rem;
  letter-spacing: 0.7px;
  padding: 6px 8px;
  cursor: pointer;
  outline: none;
}
button:hover {
  filter: brightness(0.9);
}

/* ── SHARED COMPONENTS ─────────────────────────────── */

/* accent bar (left-edge brand stripe) */
.accent-bar {
  width: 8px;
  min-width: 8px;
  background: var(--coral);
  height: 10rem;
  flex-shrink: 0;
}

/* LARK.CX wordmark */
.mark {
  font-family: var(--hd);
  font-size:  8rem;
  line-height: 0.85;
  letter-spacing: -1px;
  color: var(--white);
}
.dot {
  color: var(--coral);
}

/* mono section labels (// LABEL) */
.section-label {
  font-family: var(--mono);
  color: var(--coral);
  font-size: 1rem;
  font-weight: 300;
  display: block;
  padding-bottom: 5px;
  width: max-content;
}

/* panel card */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
}

/* ghost / outline button */
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--code);
}

/* loading blink cursor */
.blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 700px) {
  .accent-bar { height: 56px; }
  h1 { font-size: 2.2rem; }
  .mark { font-size: 2.8rem; }
}

