/* AIM guides — lightweight editorial styling for the static content pages.
   Standalone from the React app so these are pure, crawlable HTML. */
:root {
  --green: #1F5C3A;
  --green-2: #2E8B57;
  --ink: #16211b;
  --muted: #5b6b62;
  --line: #e4e9e5;
  --bg: #ffffff;
  --soft: #f5f8f6;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 17px/1.7 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
a { color: var(--green); }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }

header.site {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.2) blur(8px); z-index: 5;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: var(--ink); text-decoration: none; }
.brand span { color: var(--green); }
.nav a { margin-left: 18px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 15px; }
.nav a.cta { background: var(--green); color: #fff; padding: 8px 14px; border-radius: 10px; }

main { padding: 40px 0 24px; }
.kicker { color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin: 0 0 10px; }
h1 { font-size: 2.1rem; line-height: 1.15; letter-spacing: -.02em; margin: 0 0 14px; }
h2 { font-size: 1.4rem; letter-spacing: -.01em; margin: 2.2em 0 .5em; }
h3 { font-size: 1.12rem; margin: 1.6em 0 .3em; }
p, ul, ol { margin: 0 0 1.1em; }
li { margin: .3em 0; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }

.answer {
  background: var(--soft); border: 1px solid var(--line); border-left: 4px solid var(--green);
  border-radius: 12px; padding: 16px 18px; margin: 0 0 28px; font-size: 1.05rem;
}
.answer strong { color: var(--green); }

table { width: 100%; border-collapse: collapse; margin: 1em 0 1.6em; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--soft); font-weight: 700; }
.tbl-scroll { overflow-x: auto; }

.faq h3 { margin-top: 1.4em; }
.cta-box {
  margin: 40px 0 8px; background: var(--green); color: #fff; border-radius: 16px; padding: 28px 24px; text-align: center;
}
.cta-box h2 { color: #fff; margin: 0 0 6px; }
.cta-box p { color: #dced e0; opacity: .92; margin: 0 0 16px; }
.cta-box a { display: inline-block; background: #fff; color: var(--green); font-weight: 700; text-decoration: none; padding: 12px 22px; border-radius: 10px; }

footer.site { border-top: 1px solid var(--line); margin-top: 40px; padding: 28px 0; color: var(--muted); font-size: 14px; }
footer.site a { color: var(--muted); text-decoration: none; margin-right: 14px; }
.related { background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px 8px; margin: 32px 0; }
.related h2 { font-size: 1.05rem; margin: 16px 0 6px; }
@media (max-width: 520px) { h1 { font-size: 1.7rem; } .nav a:not(.cta) { display: none; } }
