/*rh*/
h1 {
    color: white;
}

:root {
  --sm-bg: #f6f8fb;
  --sm-ink: #0f1b2d;
  --sm-mute: #5b6b82;
  --sm-line: #e5ebf3;
  --sm-card: #ffffff;
  --sm-brand: #1f4ed8;
  --sm-brand-2: #4f46e5;
  --sm-teal: #0f8a8a;
  --sm-violet: #7c3aed;
  --sm-amber: #b45309;
  --sm-rose: #be185d;
  --sm-slate: #475569;
  --sm-radius: 14px;
  --sm-shadow: 0 1px 2px rgba(15,27,45,.04), 0 8px 24px rgba(15,27,45,.06);
}

.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ===== HERO ===== */
.sm-hero {
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(900px 400px at -10% 10%, rgba(31,78,216,.22), transparent 60%),
    linear-gradient(180deg, #0b1426 0%, #0f1b2d 100%);
  color: #eaf0fb;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sm-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 48px;
  align-items: end;
}
.sm-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9fb3d8;
  background: rgba(255,255,255,.06);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sm-hero-copy h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.sm-brand {
  background: linear-gradient(90deg, #93c5fd, #c4b5fd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sm-lede {
  color: #c4d2ea;
  font-size: 17px;
  max-width: 56ch;
  line-height: 1.55;
  margin: 0 0 26px;
}
.sm-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 6px 6px 6px 44px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  max-width: 560px;
}
.sm-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; fill: #5b6b82;
}
.sm-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15px; padding: 12px 8px; color: var(--sm-ink);
}
.sm-clear {
  border: 0; background: #eef2f8; color: #475569;
  width: 32px; height: 32px; border-radius: 8px; cursor: pointer;
  font-size: 18px; line-height: 1; visibility: hidden;
}
.sm-clear:hover { background: #e2e8f0; }
.sm-meta {
  margin: 14px 0 0; color: #9fb3d8; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 560px; gap: 16px; flex-wrap: wrap;
}
.sm-xml {
  color: #c4d2ea; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px dashed rgba(196,210,234,.4);
}
.sm-xml svg { width: 14px; height: 14px; fill: currentColor; }
.sm-xml:hover { color: #fff; }

.sm-jump {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--sm-radius);
  padding: 22px;
  backdrop-filter: blur(6px);
}
.sm-jump h2 {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: #9fb3d8; margin: 0 0 12px;
}
.sm-jump ul { list-style: none; margin: 0; padding: 0; }
.sm-jump li + li { margin-top: 4px; }
.sm-jump a {
  display: flex; align-items: center; gap: 10px;
  color: #eaf0fb; text-decoration: none;
  padding: 8px 10px; border-radius: 8px;
  transition: background .15s ease;
}
.sm-jump a:hover { background: rgba(255,255,255,.07); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-blue   { background: #60a5fa; }
.dot-teal   { background: #2dd4bf; }
.dot-violet { background: #a78bfa; }
.dot-amber  { background: #fbbf24; }
.dot-rose   { background: #f472b6; }
.dot-slate  { background: #94a3b8; }

/* ===== BODY ===== */
.sm-body {
  padding: 56px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sm-section {
  background: var(--sm-card);
  border: 1px solid var(--sm-line);
  border-radius: var(--sm-radius);
  padding: 26px 26px 18px;
  box-shadow: var(--sm-shadow);
  scroll-margin-top: 24px;
}
.sm-sec-head { margin-bottom: 14px; }
.sm-sec-head h2 {
  margin: 8px 0 4px; font-size: 22px; color: var(--sm-ink);
  letter-spacing: -0.01em;
}
.sm-sec-head p { margin: 0; color: var(--sm-mute); font-size: 14px; }

.sm-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.tag-blue   { background: #eaf1ff; color: var(--sm-brand); }
.tag-teal   { background: #e6f7f5; color: var(--sm-teal); }
.tag-violet { background: #f1ebff; color: var(--sm-violet); }
.tag-amber  { background: #fdf3e1; color: var(--sm-amber); }
.tag-rose   { background: #fde7f0; color: var(--sm-rose); }
.tag-slate  { background: #eef2f7; color: var(--sm-slate); }

.sm-links { list-style: none; padding: 0; margin: 14px 0 0; }
.sm-links li { border-top: 1px solid var(--sm-line); }
.sm-links li:first-child { border-top: 0; }
.sm-links a {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 12px 4px;
  text-decoration: none; color: var(--sm-ink);
  border-radius: 6px;
  transition: background .15s ease, transform .15s ease;
}
.sm-links a:hover {
  background: #f3f6fc;
  transform: translateX(2px);
}
.sm-links strong {
  font-weight: 600;
  position: relative;
  padding-right: 14px;
}
.sm-links strong::after {
  content: "\2192"; position: absolute; right: 0; top: 0;
  opacity: 0; transition: opacity .15s ease, transform .15s ease;
  color: var(--sm-brand);
}
.sm-links a:hover strong::after { opacity: 1; transform: translateX(2px); }
.sm-links span { color: var(--sm-mute); font-size: 13.5px; text-align: right; }

.sm-empty {
  grid-column: 1 / -1;
  background: #fff; border: 1px dashed var(--sm-line);
  border-radius: var(--sm-radius); padding: 36px;
  text-align: center;
}
.sm-empty h3 { margin: 0 0 8px; color: var(--sm-ink); }
.sm-empty p { margin: 0; color: var(--sm-mute); }
.sm-empty a { color: var(--sm-brand); }

/* ===== CTA ===== */
.sm-cta {
  background: linear-gradient(135deg, #0f1b2d, #1e3a8a);
  color: #fff; padding: 48px 0; margin-top: 16px;
}
.sm-cta-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.sm-cta h2 { margin: 0 0 6px; font-size: 24px; letter-spacing: -0.01em; }
.sm-cta p { margin: 0; color: #c4d2ea; }
.sm-cta-btn {
  background: #fff; color: #0f1b2d; padding: 14px 22px;
  border-radius: 10px; text-decoration: none; font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sm-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(0,0,0,.25); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sm-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .sm-body { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sm-hero { padding: 56px 0 40px; }
  .sm-section { padding: 22px; }
  .sm-links a { flex-direction: column; align-items: flex-start; gap: 2px; }
  .sm-links span { text-align: left; }
  .sm-cta-inner { flex-direction: column; align-items: flex-start; }
}
