/* Policy Bridge EOOD — corporate one-pager. Framework-free static site. */
:root {
  --navy: #0a2540;
  --navy-700: #103a5c;
  --teal: #00b4a0;
  --ink: #1b2733;
  --muted: #5b6b7b;
  --line: #e3e8ee;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --max: 960px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px); z-index: 10;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 700; font-size: 1.1rem; color: var(--navy); letter-spacing: -0.01em; }
.brand span { color: var(--teal); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-size: 0.95rem; }
.nav a:hover { color: var(--navy); text-decoration: none; }
.lang { font-size: 0.85rem; color: var(--muted); }
.lang a { color: var(--muted); padding: 0 4px; }
.lang a[aria-current="true"] { color: var(--navy); font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%); color: #fff; }
.hero .wrap { padding: 84px 20px 72px; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero p { font-size: 1.15rem; color: #c8d6e5; max-width: 640px; margin: 0 0 28px; }
.btn {
  display: inline-block; background: var(--teal); color: #04201d; font-weight: 600;
  padding: 12px 22px; border-radius: 8px;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }

/* Sections */
section { padding: 64px 0; border-bottom: 1px solid var(--line); }
section h2 { font-size: 1.5rem; color: var(--navy); margin: 0 0 18px; letter-spacing: -0.01em; }
.lead { color: var(--muted); max-width: 700px; }
.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 8px; }
.card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--navy); }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Section eyebrow */
.eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); margin: 0 0 10px; }

/* Featured customer */
.featured { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 32px; text-align: center; }
.featured p { color: var(--muted); max-width: 640px; margin: 0 auto; }
.featured-brand { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-weight: 700; color: var(--navy); font-size: 1.2rem; letter-spacing: -0.01em; }
.featured-brand:hover { text-decoration: none; }
.featured-brand svg { width: 28px; height: 28px; }

/* Details table */
.details { display: grid; grid-template-columns: max-content 1fr; gap: 10px 28px; margin-top: 8px; }
.details dt { color: var(--navy); font-weight: 600; }
.details dd { margin: 0; color: var(--ink); }
.todo { color: #b06a00; font-style: italic; }

/* Footer */
.site-footer { padding: 40px 0; color: var(--muted); font-size: 0.9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

@media (max-width: 560px) {
  .nav { gap: 14px; }
  .nav a.hide-sm { display: none; }
  .details { grid-template-columns: 1fr; gap: 4px 0; }
  .details dt { margin-top: 12px; }
}
