/* MIDIOS.ONE — design tokens
   Direction: industrial × ethereal. Monumental grayscale ground,
   a single division accent, restrained motion. */

:root {
  --ink: #eae7e0;
  --ink-dim: #a6a29a;
  --ink-faint: #6f6b64;
  --ground-0: #08080a;
  --ground-1: #0f0f12;
  --ground-2: #17171b;
  --line: #2a2a30;
  --line-soft: #1c1c21;
  --accent: #c9c2b3;
  --accent-ink: #08080a;
  --radius: 2px;
  --maxw: 1180px;
  --gutter: 24px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

/* division accents — assigned per subdirectory by overriding --accent */
.accent-capital      { --accent: #b8935a; }
.accent-logistics    { --accent: #6a93b0; }
.accent-ventures     { --accent: #8b7bd8; }
.accent-media        { --accent: #d86b9e; }
.accent-technologies { --accent: #5ecbd8; }
.accent-energy       { --accent: #e0954a; }

* { box-sizing: border-box; }
html { background: var(--ground-0); }

body {
  margin: 0;
  background: var(--ground-0);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hairline {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--accent); color: var(--accent-ink); }

.btn-solid {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-solid:hover { opacity: 0.85; background: var(--accent); color: var(--accent-ink); }

.placeholder-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  border-left: 2px solid var(--line);
  padding-left: 12px;
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
}
