/* CAD Maps site — the app's own palette: deep navy field, signal blue, cyan.
   Structure matches the other interactivewebs app sites so a fix to one is a
   fix anyone can carry across. */
:root { --navy:#07182D; --navy-mid:#102F55; --blue:#1F6FD0; --cyan:#35B6E8; --grey:#6b6b70; }
* { box-sizing:border-box; margin:0; padding:0; }
body { font:16px/1.65 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; color:#222; background:#fafafa; }
header { background:linear-gradient(135deg,var(--navy-mid),var(--navy)); color:#fff; padding:2.2rem 1.5rem; border-bottom:4px solid var(--blue); }
header .wrap, main { max-width:820px; margin:0 auto; }
.brand { display:flex; align-items:center; gap:.9rem; }
.brand img { width:54px; height:54px; border-radius:12px; flex:0 0 auto; }
header h1 { font-size:1.7rem; font-weight:700; letter-spacing:.02em; }
header h1 span { color:var(--cyan); }
header p { color:#b9c6d6; margin-top:.3rem; font-size:.95rem; }
nav { margin-top:1rem; }
nav a { color:#fff; text-decoration:none; margin-right:1.4rem; font-size:.92rem; border-bottom:2px solid transparent; padding-bottom:2px; }
nav a:hover, nav a.on { border-color:var(--cyan); }
main { padding:2.5rem 1.5rem 4rem; }
h2 { font-size:1.35rem; margin:2.2rem 0 .7rem; color:var(--navy); }
h2:first-child { margin-top:0; }
h3 { font-size:1.05rem; margin:1.4rem 0 .4rem; color:var(--navy-mid); }
p, li { margin-bottom:.6rem; color:#333; }
ul { padding-left:1.3rem; margin-bottom:1rem; }
a { color:var(--blue); }
.meta { color:var(--grey); font-size:.88rem; margin-bottom:2rem; }
.card { background:#fff; border:1px solid #e5e5e8; border-radius:12px; padding:1.4rem 1.6rem; margin:1rem 0; }
footer { border-top:1px solid #e5e5e8; color:var(--grey); font-size:.85rem; padding:1.6rem; text-align:center; }
.btn { display:inline-block; background:var(--blue); color:#fff !important; text-decoration:none; padding:.65rem 1.3rem; border-radius:8px; font-weight:600; margin-top:.6rem; }
form { margin-top:1rem; }
label { display:block; font-weight:600; font-size:.9rem; margin:.9rem 0 .3rem; }
label .opt { font-weight:400; color:var(--grey); }
input[type=text], input[type=email], select, textarea {
  width:100%; padding:.6rem .7rem; font:inherit; color:#222;
  border:1px solid #ccc; border-radius:8px; background:#fff;
}
textarea { resize:vertical; }
input:focus, select:focus, textarea:focus { outline:2px solid var(--blue); outline-offset:1px; border-color:var(--blue); }
button { margin-top:1.1rem; background:var(--blue); color:#fff; border:0; border-radius:8px;
  padding:.7rem 1.5rem; font:inherit; font-weight:600; cursor:pointer; }
button:hover { filter:brightness(.93); }
.hp { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.fineprint { font-size:.8rem; color:var(--grey); margin-top:.8rem; }
.note { padding:.8rem 1rem; border-radius:8px; margin:1rem 0; font-weight:600; }
.note.ok { background:#e7f6ec; border:1px solid #b7e0c4; color:#14612e; }
.note.bad { background:#fdecea; border:1px solid #f5c2bd; color:#8d1d12; }
