/* neocor.net — one stylesheet, no JavaScript.
   Orange and yellow are accents only: neither reaches 4.5:1 on white, so no
   running text is set in them (yellow is used as text only on navy). */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext-var.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --navy: #0b2545;
  --navy-2: #13315c;
  --blue: #2f7fc1;
  --blue-text: #1d5f9a;
  --blue-light: #d6e7f7;
  --sky: #eaf3fc;
  --orange: #f28c28;
  --yellow: #ffc53d;
  --text: #1b2a41;
  --muted: #52627a;
  --line: #dfe7f1;
  --radius: 14px;
  --wrap: 1120px;
  --shadow: 0 1px 2px rgba(11, 37, 69, .05), 0 8px 24px rgba(11, 37, 69, .06);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1.0625rem/1.65 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--blue-text); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
@media (max-width: 520px) { .wrap { padding: 0 16px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 16px; top: -48px; z-index: 10;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; color: #fff; }

/* ---------------------------------------------------------------- header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 5;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: block; padding: 6px 0; }
.brand img { width: 190px; height: auto; }
@media (max-width: 420px) { .brand img { width: 150px; } }

.lang { display: flex; gap: 4px; padding: 4px; background: var(--sky); border-radius: 999px; }
.lang a {
  display: block; min-width: 44px; padding: 6px 12px; border-radius: 999px;
  font-size: .875rem; font-weight: 600; letter-spacing: .04em; text-align: center;
  color: var(--navy-2); text-decoration: none;
}
.lang a:hover { background: #fff; }
.lang a[aria-current] { background: var(--navy); color: #fff; }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--sky), transparent 70%),
    linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center; gap: 48px; padding-top: 88px; padding-bottom: 96px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin: 0 0 20px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-text);
}
.eyebrow::before {
  content: ""; width: 40px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
h1, h2 { color: var(--navy); letter-spacing: -.02em; }
.hero h1 {
  margin: 0; font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4rem); line-height: 1.05; font-weight: 800;
}
.hero h1 span {
  display: block; margin-top: .35em;
  font-size: .42em; font-weight: 500; letter-spacing: 0; color: var(--muted);
}
.lead { max-width: 34em; margin: 28px 0 36px; font-size: 1.1875rem; color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: var(--navy); color: #fff; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 18px rgba(11, 37, 69, .18);
  transition: background-color .15s ease, transform .15s ease;
}
.btn::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
}
.btn:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); }

.hero-art { width: 100%; max-width: 440px; justify-self: end; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; padding-top: 56px; padding-bottom: 64px; }
  .hero-art { order: -1; max-width: 220px; justify-self: start; margin-left: -12px; }
}

/* ---------------------------------------------------------------- sections */
.facts { padding: 88px 0; }
.facts h2, .contact h2 { margin: 0 0 32px; font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.375rem); font-weight: 750; }
.facts h2::after {
  content: ""; display: block; width: 56px; height: 4px; margin-top: 14px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}

.fact-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 0;
}
@media (max-width: 900px) { .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .fact-grid { grid-template-columns: 1fr; } }

.fact {
  position: relative; padding: 24px 24px 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.fact::before {
  content: ""; position: absolute; left: 24px; top: 0; width: 32px; height: 3px;
  border-radius: 0 0 3px 3px; background: var(--blue);
}
.fact dt {
  margin-bottom: 8px; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
}
.fact dd { margin: 0; font-size: 1.0625rem; font-weight: 600; color: var(--navy); line-height: 1.5; }

/* contact: the one dark band, where yellow may carry text */
.contact {
  position: relative; overflow: hidden; padding: 88px 0;
  background: var(--navy); color: #d7e4f4;
}
.contact::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  border-radius: 50%; border: 2px solid rgba(169, 205, 238, .25);
}
.contact::after {
  content: ""; position: absolute; right: 64px; bottom: 56px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--orange);
}
.contact h2 { color: #fff; }
.contact-inner {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px; align-items: start;
}
.contact-inner p { margin: 0; max-width: 28em; font-size: 1.125rem; }
.contact-list { margin: 0; display: grid; gap: 28px; }
.contact-list dt {
  margin-bottom: 6px; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #a9cdee;
}
.contact-list dd { margin: 0; color: #fff; }
.contact-glyph { font-size: clamp(1.375rem, 1.1rem + 1.2vw, 1.875rem); color: var(--yellow) !important; }
@media (max-width: 760px) { .contact-inner { grid-template-columns: 1fr; gap: 32px; } }

/* email/phone as glyph outlines (see src/build.py) */
.glyph-img { white-space: nowrap; }
.glyph-text { display: inline-block; height: 1.21em; width: auto; vertical-align: -0.2412em; }

/* ---------------------------------------------------------------- legal pages */
.legal { padding: 64px 0 96px; }
.prose { max-width: 760px; }
.prose h1 { margin: 0 0 12px; font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem); font-weight: 800; }
.prose h1::after {
  content: ""; display: block; width: 56px; height: 4px; margin-top: 16px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
}
.prose h2 { margin: 40px 0 8px; font-size: 1.25rem; font-weight: 700; }
.prose p, .prose ul { margin: 0 0 14px; }
.prose ul { padding-left: 1.25em; }
.prose li { margin-bottom: 4px; }
.prose li::marker { color: var(--orange); }
.note { color: var(--muted); font-size: .9375rem; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); font-size: .9375rem; color: var(--muted); }
.footer-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px 32px; padding-top: 28px; padding-bottom: 28px;
}
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; gap: 24px; }
.footer-inner a { color: var(--navy-2); text-decoration: none; font-weight: 500; }
.footer-inner a:hover { text-decoration: underline; }
