@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@500;600;700&display=swap');

:root {
  --canvas: #f5f7f8;
  --paper: #ffffff;
  --ink: #17212b;
  --navy: #294a63;
  --red: #a33c3c;
  --muted: #5f6b75;
  --faint: #83909a;
  --rule: #d8dee2;
  --rule-strong: #aeb9c0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--canvas);
}

.aeo-shell {
  min-height: 100vh;
  border-top: 8px solid var(--red);
  background: var(--canvas);
  color: var(--ink);
  font-family: 'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
}

.aeo-nav,
.aeo-main,
.aeo-footer {
  width: min(1248px, calc(100% - 32px));
  margin: 0 auto;
}

.aeo-nav {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rule-strong);
  background: var(--paper);
}

.aeo-brand {
  border-left: 4px solid var(--red);
  padding-left: 12px;
  color: var(--ink);
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.aeo-brand small {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
}

.aeo-links {
  display: flex;
  flex-wrap: wrap;
  align-self: stretch;
  align-items: center;
}

.aeo-links a,
.aeo-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.aeo-links a {
  display: flex;
  height: 100%;
  align-items: center;
  border-bottom: 2px solid transparent;
  padding: 0 11px;
}

.aeo-links a:hover,
.aeo-footer a:hover {
  color: var(--ink);
}

.aeo-links a:hover {
  border-bottom-color: var(--red);
}

.aeo-hero {
  position: relative;
  min-height: 560px;
  padding: 66px 0 48px;
  background-color: #edf0f1;
  background-image: url('/images/evidence-review-desk.webp');
  background-position: center;
  background-size: cover;
}

.aeo-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 248, 0.28);
  content: '';
}

.aeo-hero > * {
  position: relative;
  max-width: 760px;
}

.aeo-eyebrow {
  margin: 0 0 17px;
  color: var(--navy);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.aeo-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.03;
}

.aeo-lede {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.5;
}

.aeo-scope {
  max-width: 690px;
  margin: 0;
  border-left: 2px solid var(--red);
  padding-left: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.aeo-section {
  border-top: 1px solid var(--rule-strong);
  padding: 44px 0;
}

.aeo-section h2 {
  margin: 0 0 10px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
}

.aeo-section > p {
  max-width: 790px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.aeo-practical {
  border-block: 1px solid var(--rule-strong);
  background: var(--ink);
  color: #fff;
}

.aeo-practical > p {
  color: #c9d1d6;
}

.aeo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 25px;
  border-top: 1px solid var(--rule-strong);
}

.aeo-card {
  min-height: 150px;
  border-bottom: 1px solid var(--rule);
  padding: 22px 20px 22px 0;
}

.aeo-card + .aeo-card {
  border-left: 1px solid var(--rule);
  padding-left: 20px;
}

.aeo-card h3,
.aeo-card h2 {
  margin: 0 0 9px;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 19px;
  line-height: 1.3;
}

.aeo-card p,
.aeo-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.aeo-card p {
  margin: 0;
}

.aeo-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 23px;
  border-top: 1px solid var(--rule-strong);
}

.aeo-link-grid a {
  display: block;
  min-height: 58px;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 17px 16px 17px 0;
  text-decoration: none;
}

.aeo-link-grid a:hover {
  color: var(--red);
}

.aeo-practical .aeo-link-grid {
  border-top-color: #60717d;
}

.aeo-practical .aeo-link-grid a {
  border-bottom-color: #465965;
  color: #fff;
}

.aeo-faq {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--rule-strong);
}

.aeo-faq .aeo-card {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(220px, 310px) 1fr;
  gap: 34px;
  border-left: 0;
  padding: 20px 0;
}

.aeo-footer {
  border-top: 1px solid var(--rule-strong);
  color: var(--faint);
  font-size: 13px;
  line-height: 1.6;
  padding: 26px 0 38px;
}

@media (max-width: 780px) {
  .aeo-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 0;
  }

  .aeo-links {
    width: 100%;
    gap: 12px 18px;
  }

  .aeo-links a {
    height: auto;
    padding: 4px 0;
  }

  .aeo-hero {
    min-height: 560px;
    padding-top: 52px;
    background-position: 57% center;
  }

  .aeo-hero::before {
    background: rgba(245, 247, 248, 0.78);
  }

  .aeo-card + .aeo-card {
    border-left: 0;
    padding-left: 0;
  }

  .aeo-faq .aeo-card {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
