@import url('./design-system.css');

:root {
  --bg: #07101d;
  --panel: rgba(14, 24, 41, 0.92);
  --panel-strong: rgba(10, 18, 31, 0.98);
  --text: #eff5ff;
  --muted: #a9b7d1;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #d6b065;
  --accent-2: #f6db9c;
  --ok: #2dd4bf;
  --warn: #fbbf24;
  --bad: #fb7185;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --max: 1240px;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behaviour: smooth;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(214, 176, 101, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(96, 165, 250, 0.14), transparent 24%),
    linear-gradient(180deg, #060d18 0%, #091220 45%, #06101a 100%);
  line-height: 1.6;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.84), transparent 82%);
  opacity: 0.15;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 15, 27, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-badge {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #241701;
  box-shadow: 0 10px 24px rgba(214, 176, 101, 0.35);
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.nav-links a {
  color: var(--muted);
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  transition: 0.25s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.button,
button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #241701;
  font-weight: 700;
  padding: 0.92rem 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(214, 176, 101, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(214, 176, 101, 0.25);
}
.button.secondary,
button.secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.hero {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}
.hero-grid,
.grid-2,
.grid-3,
.trust-ribbon__grid,
.fact-grid {
  display: grid;
  gap: 1rem;
}
.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-ribbon__grid {
  grid-template-columns: 1fr 1fr;
}
.fact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card,
.metric,
.fact-card,
.experience-panel,
.list-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 30, 50, 0.98), rgba(10, 18, 31, 0.98));
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
}
.card,
.experience-panel {
  padding: 1.4rem;
}
.card::before,
.metric::before,
.fact-card::before,
.list-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.02;
  margin: 0.45rem 0 1rem;
  max-width: 12ch;
}
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 70ch;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 176, 101, 0.28);
  background: rgba(214, 176, 101, 0.1);
  color: #f4ddb0;
  font-size: 0.84rem;
}
.badge {
  background: rgba(255, 255, 255, 0.04);
  color: #ebf1fc;
  border-color: rgba(255, 255, 255, 0.12);
}
.badge.is-good {
  background: rgba(45, 212, 191, 0.1);
  border-color: rgba(45, 212, 191, 0.25);
  color: #dffcf4;
}
.badge.is-warn {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.28);
  color: #fff1cc;
}
.badge.is-bad {
  background: rgba(251, 113, 133, 0.1);
  border-color: rgba(251, 113, 133, 0.25);
  color: #ffe2e8;
}
.badge.is-neutral {
  background: rgba(96, 165, 250, 0.08);
  border-color: rgba(96, 165, 250, 0.22);
  color: #d9ebff;
}
.eyebrow-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9d6eb;
  display: inline-block;
  margin-bottom: 0.3rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.3rem;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.metric,
.fact-card {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.metric small,
.fact-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
}
.metric strong,
.fact-card strong {
  display: block;
  font-size: 1.14rem;
}
.fact-card small {
  color: #d4dded;
  display: block;
  margin-top: 0.35rem;
}
.notice {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(214, 176, 101, 0.18);
  background: rgba(214, 176, 101, 0.08);
  border-radius: 1rem;
}
.section {
  padding: 1rem 0 4rem;
  position: relative;
  z-index: 1;
}
.section h2,
.card h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
}
.callout {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  color: var(--muted);
}
.checklist {
  margin: 0;
  padding-left: 1rem;
}
.checklist li {
  margin-bottom: 0.55rem;
}
.small {
  color: var(--muted);
}
.experience-panel,
.experience-list {
  display: grid;
  gap: 0.85rem;
}
.list-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.035);
}
.list-card.compact {
  padding: 0.92rem;
}
.list-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.list-card p {
  margin: 0.5rem 0;
  color: var(--muted);
}
.list-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #d3ddef;
  font-size: 0.84rem;
}
.empty-state {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}
.empty-state strong {
  color: var(--text);
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 3rem;
  color: var(--muted);
}
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
}
.status-ok {
  color: var(--ok);
}
.status-bad {
  color: var(--bad);
}
.trust-ribbon {
  padding: 0 0 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .trust-ribbon__grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 1rem));
  }
  .nav {
    align-items: flex-start;
    padding: 0.75rem 0;
  }
  .nav-links {
    gap: 0.25rem;
  }
  .nav-links a {
    padding: 0.5rem 0.65rem;
    font-size: 0.92rem;
  }
  .metric-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    max-width: none;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
}
