/* Shared styling for the static guide pages.
   These live outside the Angular app so crawlers can read them without executing
   JavaScript, which means they cannot use the app's Tailwind build — hence plain
   CSS here, with the brand tokens restated. Keep in step with styles.css. */

:root{--bg:#ffffff;--fg:#101614;--muted:#5a6b63;--subtle:#8a978f;--brand:#1a6b4a;--line:#e4e8e6;--sunken:#f4f6f5}
@media (prefers-color-scheme: dark){
  :root{--bg:#0b120e;--fg:#e8f0ec;--muted:#a8c2b7;--subtle:#7d9389;--brand:#35a877;--line:#1d2c25;--sunken:#111b16}
}

*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--fg);
     font-family:Inter,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
     font-size:16px;line-height:1.65;-webkit-font-smoothing:antialiased}

.wrap{max-width:760px;margin:0 auto;padding:0 20px}

header{border-bottom:1px solid var(--line);padding:18px 0}
header .wrap{display:flex;align-items:center;justify-content:space-between;gap:16px}
header img{height:26px;width:auto;display:block}
.cta{display:inline-block;background:var(--brand);color:#fff;text-decoration:none;
     font-size:14px;font-weight:600;padding:9px 16px;border-radius:8px;white-space:nowrap}

h1{font-family:'Bricolage Grotesque',Inter,sans-serif;font-size:34px;line-height:1.2;
   font-weight:700;letter-spacing:-.5px;margin:38px 0 10px}
h2{font-family:'Bricolage Grotesque',Inter,sans-serif;font-size:23px;line-height:1.3;
   font-weight:700;margin:42px 0 12px}
h3{font-size:17px;font-weight:700;margin:28px 0 8px}
p{margin:0 0 16px;color:var(--muted)}
.lede{font-size:18px;color:var(--muted)}
ul,ol{color:var(--muted);padding-left:22px;margin:0 0 16px}
li{margin-bottom:9px}
strong{color:var(--fg);font-weight:600}
a{color:var(--brand)}
.meta{font-size:13px;color:var(--subtle);margin-bottom:6px}

table{width:100%;border-collapse:collapse;margin:0 0 24px;font-size:14.5px}
th,td{text-align:left;padding:11px 12px;border-bottom:1px solid var(--line);
      vertical-align:top;color:var(--muted)}
th{color:var(--fg);font-weight:600;font-size:12.5px;text-transform:uppercase;letter-spacing:.4px}
td:first-child{color:var(--fg);font-weight:600}
/* Tables are the one thing allowed to exceed the text column; they scroll in place
   rather than forcing the whole page to scroll sideways on a phone. */
.scroll{overflow-x:auto;-webkit-overflow-scrolling:touch}

.panel{background:var(--sunken);border:1px solid var(--line);border-left:3px solid var(--brand);
       border-radius:8px;padding:16px 18px;margin:0 0 20px}
.panel p:last-child{margin-bottom:0}

.more{border-top:1px solid var(--line);margin-top:48px;padding-top:24px}
.more h2{margin-top:0;font-size:18px}
.more ul{list-style:none;padding:0}
.more li{margin-bottom:10px}

footer{border-top:1px solid var(--line);margin-top:56px;padding:28px 0 48px;
       font-size:14px;color:var(--subtle)}
footer a{font-weight:600}

@media(max-width:600px){
  h1{font-size:27px}
  h2{font-size:20px}
  body{font-size:15.5px}
}
