:root {
  --bg: #0b0a10;
  --bg-soft: #12101a;
  --text: #f2eeff;
  --muted: #cbbfe6;
  --muted-2: #a99dbf;
  --line: rgba(255, 255, 255, .12);
  --accent: #9b68ab;
  --accent-dark: #754383;
  --accent-soft: rgba(155, 104, 171, .17);
  --accent-glow: rgba(155, 104, 171, .28);
  --card: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  --max-width: 1040px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1000px 600px at 10% 5%, var(--accent-glow), transparent 60%),
    radial-gradient(800px 500px at 95% 35%, rgba(210, 180, 255, .09), transparent 60%),
    var(--bg);
}
a { color: inherit; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin-inline: auto; }

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 10, 16, .82);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; }
.brandMark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--accent-soft);
  font-family: Georgia, serif;
  font-size: 20px;
}
.navLinks { display: flex; align-items: center; gap: 18px; }
.navLinks a { color: var(--muted); text-decoration: none; font-size: 14px; }
.navLinks a:hover { color: var(--text); }
.navCta {
  padding: 10px 14px;
  border-radius: 11px;
  color: #fff !important;
  background: var(--accent);
  font-weight: 700;
}

main { padding: 38px 0 72px; }
.breadcrumbs { margin: 0 0 22px; color: var(--muted-2); font-size: 13px; }
.breadcrumbs a { text-underline-offset: 3px; }
.hero {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(650px 300px at 10% 0%, rgba(155,104,171,.24), transparent 70%),
    var(--card);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 12px;
  color: #d9c6e2;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.02;
  letter-spacing: -2.4px;
}
.lead { max-width: 760px; margin: 22px 0 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.serviceMeta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.tag { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; background: var(--accent-soft); }

.contentGrid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; margin-top: 22px; align-items: start; }
.content, .sideCard, .related, .cta {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}
.content { padding: clamp(25px, 5vw, 46px); }
.content section + section { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--line); }
h2 { margin: 0 0 15px; font-size: clamp(27px, 4vw, 36px); line-height: 1.15; letter-spacing: -1px; }
h3 { margin: 24px 0 8px; font-size: 19px; }
.content p, .content li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.content p { margin: 0 0 16px; }
.content ul { margin: 15px 0 0; padding-left: 21px; }
.content li + li { margin-top: 9px; }
.note { padding: 17px 19px; border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; background: rgba(155,104,171,.11); }
.sideCard { position: sticky; top: 90px; padding: 24px; }
.sideCard img { width: 84px; height: 84px; object-fit: cover; border-radius: 50%; border: 1px solid var(--line); }
.sideCard h2 { margin: 16px 0 6px; font-size: 23px; }
.sideCard p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.sideCard .license { color: var(--muted-2); font-size: 12px; }
.btnRow { display: grid; gap: 9px; margin-top: 19px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 720;
}
.primary { color: #fff; background: var(--accent); }
.primary:hover { background: var(--accent-dark); }
.secondary { background: var(--accent-soft); }

.related { margin-top: 22px; padding: clamp(24px, 5vw, 38px); }
.relatedGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
.related a { padding: 18px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; background: rgba(255,255,255,.025); }
.related a:hover { border-color: rgba(255,255,255,.25); background: var(--accent-soft); }
.related strong { display: block; margin-bottom: 5px; }
.related span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.cta { margin-top: 22px; padding: clamp(28px, 6vw, 48px); text-align: center; }
.cta p { max-width: 670px; margin: 0 auto 20px; color: var(--muted); line-height: 1.7; }
.disclaimer { margin-top: 24px !important; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted-2) !important; font-size: 12px; }

footer { padding: 0 0 38px; color: var(--muted-2); font-size: 13px; }
.footerInner { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); }
.footerLinks { display: flex; flex-wrap: wrap; gap: 15px; }
.footerLinks a { text-decoration: none; }

@media (max-width: 820px) {
  .navLinks a:not(.navCta) { display: none; }
  .contentGrid { grid-template-columns: 1fr; }
  .sideCard { position: static; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, var(--max-width)); }
  main { padding-top: 24px; }
  .lead { font-size: 17px; }
  .relatedGrid { grid-template-columns: 1fr; }
  .footerInner { flex-direction: column; }
}

