/* RIEC shared tokens — LOCKED brand DNA (navy + signal red) */
/* Source: V1.1 final live package */
:root {
  /* Locked palette */
  --bg: #F8F9FB;
  --bg-2: #F1F3F7;
  --surface: #FFFFFF;
  --surface-soft: #FBFCFD;
  --navy: #071D3C;
  --navy-2: #0B2A4A;
  --navy-3: #102B4A;
  --ink: #071D3C;
  --text: #0b1f3a;
  --muted: #5E6A72;
  --muted-2: #8A93A0;
  --steel: #8c93a1;
  --line: #E4E7EB;
  --border: #E4E7EB;
  --line-2: #D7DCE3;
  --red: #D71920;
  --red-dark: #A90F16;
  --red-soft: rgba(215, 25, 32, 0.08);
  --amber: #D71920; /* alias to red — locked DNA has no amber */
  --green: #D71920; /* alias to red — locked DNA has NO green */

  --shadow-sm: 0 1px 2px rgba(7, 29, 60, 0.05);
  --shadow-md: 0 16px 42px rgba(7, 29, 60, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 29, 60, 0.12);

  /* Type — locked to Inter + Space Grotesk per live package */
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --serif: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy);
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red);
  background: rgba(215, 25, 32, 0.06);
  border: 1px solid rgba(215, 25, 32, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  font-family: var(--body); font-weight: 700; font-size: 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 32px rgba(215, 25, 32, 0.2);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary {
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: rgba(215, 25, 32, 0.3); color: var(--red); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-2); }
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.btn-light:hover { color: var(--red); border-color: rgba(215, 25, 32, 0.3); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 188px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(7, 26, 51, 0.08));
}
@media (max-width: 640px) {
  .logo img { width: 148px; max-height: 60px; }
}
