/* Shared styling for the Your360 setup guides (public static pages). */
:root {
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #f8fafc;
  --card: #ffffff;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --okta: #007dc1;
  --warn-bg: #fffbeb;
  --warn-line: #fde68a;
  --radius: 12px;
  --maxw: 820px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 32px 20px 80px; }
header.site { display: flex; align-items: center; gap: 14px; padding-bottom: 24px; }
header.site img { height: 34px; width: auto; }
header.site .kicker { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
h1 { color: var(--ink); font-size: 30px; line-height: 1.2; margin: 8px 0 6px; }
.lede { font-size: 17px; color: var(--muted); margin: 0 0 8px; }
h2 { color: var(--ink); font-size: 21px; margin: 40px 0 12px; padding-top: 8px; }
h3 { color: var(--ink); font-size: 16px; margin: 24px 0 6px; }
p { margin: 10px 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: #eef2f7; padding: 1px 6px; border-radius: 5px; font-size: 90%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-word; }
strong { color: var(--ink); }

.callout {
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 18px 0;
}
.callout.warn { background: var(--warn-bg); border-color: var(--warn-line); }
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps > li {
  position: relative;
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 22px 64px;
  margin: 16px 0;
}
.steps > li::before {
  content: counter(step);
  position: absolute; left: 20px; top: 22px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.steps > li h3 { margin-top: 0; }

figure { margin: 16px 0 6px; }
figure img {
  display: block; max-width: 100%; height: auto;
  border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 4px 18px rgba(15,23,42,.06);
}
figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }

.shot-okta {
  border: 2px dashed #bcd; border-radius: 10px;
  background: repeating-linear-gradient(45deg, #f1f7fb, #f1f7fb 12px, #e9f3f9 12px, #e9f3f9 24px);
  padding: 20px; margin: 16px 0 6px; text-align: center;
}
.shot-okta .tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--okta); background: #fff; border: 1px solid #cfe6f2; border-radius: 999px; padding: 3px 12px; margin-bottom: 8px; }
.shot-okta p { margin: 4px 0 0; color: #55707e; font-size: 14px; }

table.map { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14.5px; }
table.map th, table.map td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.map th { color: var(--muted); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; }
table.map td:first-child { color: var(--okta); font-weight: 600; white-space: nowrap; }
.arrow { color: var(--muted); }

details.manual { margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
details.manual > summary { cursor: pointer; padding: 16px 18px; font-weight: 600; color: var(--ink); list-style: none; }
details.manual > summary::-webkit-details-marker { display: none; }
details.manual > summary::before { content: "▸ "; color: var(--muted); }
details.manual[open] > summary::before { content: "▾ "; }
details.manual .inner { padding: 0 18px 18px; }

.pill { display:inline-block; font-size:12px; font-weight:600; padding:2px 10px; border-radius:999px; background:#f1f5f9; color:var(--muted); }
.tablink { display:inline-block; margin-top:6px; }
footer.site { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
nav.guides { display:flex; flex-wrap:wrap; gap:10px; margin: 8px 0 0; }
nav.guides a { background: var(--card); border:1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 13.5px; }
