@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,500&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  --rls-primary: #3730A3;
  --rls-primary-dark: #1E1B4B;
  --rls-accent: #0891B2;
  --rls-accent-dark: #0E7490;
  --rls-bg: #FAFAFA;
  --rls-surface: #FFFFFF;
  --rls-text: #0F172A;
  --rls-muted: #475569;
  --rls-border: #E2E8F0;
  --rls-hero-overlay: linear-gradient(115deg, rgba(30,27,75,.84), rgba(55,48,163,.66));
  --rls-shadow: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --rls-shadow-md: 0 4px 12px rgba(15,23,42,.07);
  --rls-radius: 10px;
  --rls-radius-chip: 6px;
  --rls-maxw: 1180px;
  --rls-s1: 8px;
  --rls-s2: 16px;
  --rls-s3: 24px;
  --rls-s4: 32px;
  --rls-s5: 48px;
  --rls-s6: 64px;
  --rls-s7: 96px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--rls-text);
  background: var(--rls-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  line-height: 1.25;
  color: var(--rls-primary-dark);
  font-weight: 600;
  margin: 0 0 var(--rls-s2);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--rls-s2); }

a { color: var(--rls-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { margin: 0 0 var(--rls-s2); padding-left: 1.4em; }
li { margin-bottom: var(--rls-s1); }

.container {
  width: 100%;
  max-width: var(--rls-maxw);
  margin: 0 auto;
  padding: 0 var(--rls-s3);
}

.section { padding: var(--rls-s7) 0; }
.section--tight { padding: var(--rls-s6) 0; }

.eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rls-accent-dark);
  margin-bottom: var(--rls-s2);
}

.section__head { max-width: 720px; margin-bottom: var(--rls-s5); }
.section__head p { color: var(--rls-muted); font-size: 1.08rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.lead { font-size: 1.18rem; color: var(--rls-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--rls-s1);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 26px;
  border-radius: var(--rls-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out, transform .15s ease-out;
  min-height: 44px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--rls-accent); color: #fff; }
.btn--primary:hover { background: var(--rls-accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn--secondary {
  background: transparent;
  color: var(--rls-primary);
  border-color: var(--rls-border);
}
.btn--secondary:hover { background: #fff; border-color: var(--rls-primary); text-decoration: none; }
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover { background: rgba(255,255,255,.22); text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--rls-primary-dark);
  color: #fff;
  padding: 12px 18px;
  z-index: 1200;
  border-radius: 0 0 var(--rls-radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--rls-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(150%) blur(6px);
  border-bottom: 1px solid var(--rls-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--rls-s3);
  padding: 12px var(--rls-s3);
  max-width: var(--rls-maxw);
  margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand__mark {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: 9px;
  background: linear-gradient(140deg, var(--rls-primary), var(--rls-primary-dark));
  display: grid; place-items: center;
  color: #fff;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { line-height: 1.15; }
.brand__name {
  font-family: "Newsreader", serif;
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--rls-primary-dark);
  display: block;
}
.brand__sub {
  font-size: .72rem;
  color: var(--rls-muted);
  letter-spacing: .02em;
}

.index-nav { display: flex; align-items: center; gap: var(--rls-s3); }
.index-rail {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-rail > li { margin: 0; position: relative; }
.index-rail > li:not(:last-child)::after {
  content: "·";
  color: var(--rls-border);
  margin: 0 2px;
}
.index-rail a {
  display: inline-block;
  padding: 8px 12px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--rls-text);
  border-radius: var(--rls-radius-chip);
}
.index-rail a:hover, .index-rail a[aria-current="page"] { color: var(--rls-primary); text-decoration: none; }
.index-rail a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }

.has-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: "Source Sans 3", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--rls-text);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--rls-radius-chip);
}
.has-dropdown > button:hover { color: var(--rls-primary); }
.has-dropdown > button svg { width: 14px; height: 14px; transition: transform .2s ease-out; }
.has-dropdown[data-open="true"] > button svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 290px;
  background: #fff;
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  box-shadow: var(--rls-shadow-md);
  padding: var(--rls-s1);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease-out, transform .18s ease-out, visibility .18s;
  z-index: 1100;
}
.has-dropdown[data-open="true"] .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--rls-radius-chip);
  font-size: .92rem;
  font-weight: 600;
  color: var(--rls-text);
}
.dropdown a:hover { background: var(--rls-bg); color: var(--rls-primary); text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--rls-radius);
  background: var(--rls-accent);
  color: #fff;
  font-weight: 600;
  font-size: .94rem;
  min-height: 44px;
}
.nav-cta:hover { background: var(--rls-accent-dark); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius-chip);
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--rls-primary-dark);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.hero {
  position: relative;
  background-image: var(--rls-hero-overlay), url('../img/hero-ruang-literasi.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero__inner { max-width: 760px; padding-top: var(--rls-s6); padding-bottom: var(--rls-s6); }
.hero h1 { color: #fff; margin-bottom: var(--rls-s3); }
.hero__eyebrow { color: #C7D2FE; }
.hero__sub {
  font-size: 1.22rem;
  color: #E0E7FF;
  max-width: 600px;
  margin-bottom: var(--rls-s4);
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rls-s1);
  margin-bottom: var(--rls-s4);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--rls-radius-chip);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .86rem;
  font-weight: 600;
}
.chip svg { width: 14px; height: 14px; }
.chip__label { color: #C7D2FE; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 10px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--rls-s2); }

.page-hero {
  background: linear-gradient(160deg, var(--rls-primary-dark), var(--rls-primary));
  color: #fff;
  padding: var(--rls-s7) 0 var(--rls-s6);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #E0E7FF; font-size: 1.15rem; max-width: 680px; margin-bottom: 0; }
.page-hero .eyebrow { color: #C7D2FE; }

.breadcrumb { font-size: .88rem; margin-bottom: var(--rls-s2); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; color: #C7D2FE; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; color: rgba(199,210,254,.6); }
.breadcrumb a { color: #fff; }

.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--rls-s3);
}
.gloss-card {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s3);
  box-shadow: var(--rls-shadow);
}
.gloss-card__term {
  font-family: "Newsreader", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--rls-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gloss-card__term svg { width: 18px; height: 18px; color: var(--rls-accent-dark); flex: 0 0 18px; }
.gloss-card p { font-size: .96rem; color: var(--rls-muted); margin: 0; }

.featured-list { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--rls-s4); align-items: start; }
.featured-card {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  overflow: hidden;
  box-shadow: var(--rls-shadow);
  transition: box-shadow .2s ease-out, transform .15s ease-out;
}
.featured-card:hover { box-shadow: var(--rls-shadow-md); transform: translateY(-2px); }
.featured-card a { color: inherit; }
.featured-card a:hover { text-decoration: none; }
.featured-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.featured-card__media img { width: 100%; height: 100%; object-fit: cover; }
.featured-card__body { padding: var(--rls-s4); }
.featured-card__body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.featured-card__body p { color: var(--rls-muted); }
.card-meta { font-size: .82rem; color: var(--rls-muted); display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rls-accent-dark);
  background: #ECFEFF;
  padding: 3px 9px;
  border-radius: var(--rls-radius-chip);
}

.ranked-list { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.ranked-list li {
  counter-increment: rank;
  margin: 0;
  border-bottom: 1px solid var(--rls-border);
}
.ranked-list li:last-child { border-bottom: none; }
.ranked-item {
  display: grid;
  grid-template-columns: 28px 84px 1fr;
  gap: var(--rls-s2);
  align-items: center;
  padding: var(--rls-s2) 0;
}
.ranked-item:hover { text-decoration: none; }
.ranked-item__num {
  font-family: "Newsreader", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--rls-border);
}
.ranked-item:hover .ranked-item__num { color: var(--rls-accent); }
.ranked-item__thumb { aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden; }
.ranked-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ranked-item__body h4 { margin: 0 0 3px; font-size: 1.04rem; color: var(--rls-text); }
.ranked-item__body span { font-size: .8rem; color: var(--rls-muted); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--rls-s5); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--rls-radius); border: 1px solid var(--rls-border); width: 100%; }
.split__body p { color: var(--rls-muted); }

.surface-band { background: var(--rls-surface); border-top: 1px solid var(--rls-border); border-bottom: 1px solid var(--rls-border); }
.indigo-band { background: linear-gradient(150deg, var(--rls-primary-dark), var(--rls-primary)); color: #fff; }
.indigo-band h2, .indigo-band h3 { color: #fff; }
.indigo-band p { color: #E0E7FF; }
.indigo-band .eyebrow { color: #C7D2FE; }

.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  background: var(--rls-surface);
  margin-bottom: var(--rls-s2);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--rls-s3);
  font-family: "Newsreader", serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--rls-primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--rls-s2);
}
.faq-q svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--rls-accent-dark); transition: transform .2s ease-out; }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease-out; }
.faq-a__inner { padding: 0 var(--rls-s3) var(--rls-s3); color: var(--rls-muted); }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--rls-s3);
}
.adv-card {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s4);
  box-shadow: var(--rls-shadow);
}
.adv-card__icon {
  width: 46px; height: 46px;
  border-radius: 9px;
  background: #EEF2FF;
  color: var(--rls-primary);
  display: grid; place-items: center;
  margin-bottom: var(--rls-s2);
}
.adv-card__icon svg { width: 24px; height: 24px; }
.adv-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.adv-card p { color: var(--rls-muted); margin: 0; font-size: .98rem; }

.cta-band { text-align: center; }
.cta-band .cta-inner { max-width: 660px; margin: 0 auto; }
.cta-band .hero__actions { justify-content: center; }
.cta-band__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--rls-s3);
  margin-top: var(--rls-s4);
  font-size: .95rem;
}
.cta-band__contacts a { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.cta-band__contacts svg { width: 17px; height: 17px; }

.contact-stack { max-width: 860px; margin: 0 auto; }
.info-stack { display: grid; gap: var(--rls-s2); margin-bottom: var(--rls-s5); }
.info-item {
  display: flex;
  gap: var(--rls-s2);
  align-items: flex-start;
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s3);
  box-shadow: var(--rls-shadow);
}
.info-item__icon {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  border-radius: 9px;
  background: #EEF2FF;
  color: var(--rls-primary);
  display: grid; place-items: center;
}
.info-item__icon svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1.05rem; margin: 0 0 3px; }
.info-item p, .info-item a { margin: 0; color: var(--rls-muted); font-size: .98rem; }
.info-item a:hover { color: var(--rls-accent-dark); }

.form-card {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s5);
  box-shadow: var(--rls-shadow);
}
.field { margin-bottom: var(--rls-s3); }
.field label {
  display: block;
  font-weight: 600;
  font-size: .94rem;
  margin-bottom: 7px;
  color: var(--rls-text);
}
.field .req { color: var(--rls-accent-dark); }
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius-chip);
  background: var(--rls-bg);
  color: var(--rls-text);
  min-height: 44px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rls-accent);
  box-shadow: 0 0 0 3px rgba(8,145,178,.18);
  background: #fff;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--rls-muted);
  margin-bottom: var(--rls-s3);
}
.consent input { width: 18px; height: 18px; min-height: auto; margin-top: 3px; flex: 0 0 18px; }
.consent a { color: var(--rls-accent-dark); }
.form-note { font-size: .85rem; color: var(--rls-muted); margin-top: var(--rls-s2); margin-bottom: 0; }

.map-band { margin-top: var(--rls-s5); }
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: var(--rls-radius);
  overflow: hidden;
  border: 1px solid var(--rls-border);
  box-shadow: var(--rls-shadow);
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-link { margin-top: var(--rls-s2); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.map-link svg { width: 16px; height: 16px; }

.article-wrap { max-width: 760px; margin: 0 auto; }
.article-body { font-size: 1.06rem; }
.article-body h2 { margin-top: var(--rls-s5); }
.article-body h3 { margin-top: var(--rls-s4); }
.article-body p { color: #1E293B; }
.article-body ul li, .article-body ol li { color: #1E293B; }
.article-hero-img { border-radius: var(--rls-radius); border: 1px solid var(--rls-border); margin-bottom: var(--rls-s4); width: 100%; }
.article-meta { font-size: .9rem; color: var(--rls-muted); margin-bottom: var(--rls-s3); display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.definition-box {
  background: #EEF2FF;
  border-left: 4px solid var(--rls-primary);
  border-radius: 0 var(--rls-radius) var(--rls-radius) 0;
  padding: var(--rls-s3);
  margin: var(--rls-s3) 0 var(--rls-s4);
}
.definition-box p { margin: 0; color: var(--rls-primary-dark); }
.callout {
  background: #ECFEFF;
  border: 1px solid #A5F3FC;
  border-radius: var(--rls-radius);
  padding: var(--rls-s3);
  margin: var(--rls-s3) 0;
}
.callout h3 { margin-top: 0; display: flex; align-items: center; gap: 8px; }
.callout h3 svg { width: 20px; height: 20px; color: var(--rls-accent-dark); }
.callout p:last-child { margin-bottom: 0; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.checklist svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--rls-accent-dark); margin-top: 3px; }

.article-cta {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s4);
  margin: var(--rls-s5) 0 var(--rls-s4);
  text-align: center;
}
.article-cta h3 { margin-top: 0; }
.article-cta p { color: var(--rls-muted); }
.article-cta .hero__actions { justify-content: center; }

.prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rls-s3);
  border-top: 1px solid var(--rls-border);
  padding-top: var(--rls-s4);
  margin-top: var(--rls-s5);
}
.prevnext a {
  display: block;
  padding: var(--rls-s3);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  color: var(--rls-text);
  background: var(--rls-surface);
}
.prevnext a:hover { border-color: var(--rls-primary); text-decoration: none; }
.prevnext span { display: block; font-size: .78rem; color: var(--rls-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 5px; }
.prevnext strong { font-family: "Newsreader", serif; font-weight: 600; color: var(--rls-primary-dark); }
.prevnext .pn-next { text-align: right; }

.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-toc {
  background: var(--rls-surface);
  border: 1px solid var(--rls-border);
  border-radius: var(--rls-radius);
  padding: var(--rls-s3) var(--rls-s4);
  margin-bottom: var(--rls-s5);
}
.legal-toc h2 { font-size: 1.1rem; margin-bottom: var(--rls-s1); }
.legal-toc ol { margin: 0; color: var(--rls-muted); }
.legal-section { margin-bottom: var(--rls-s4); }
.legal-section h2 { scroll-margin-top: 90px; }
.legal-table { width: 100%; border-collapse: collapse; margin: var(--rls-s2) 0; font-size: .95rem; }
.legal-table th, .legal-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--rls-border); vertical-align: top; }
.legal-table th { background: #EEF2FF; color: var(--rls-primary-dark); font-weight: 600; }
.legal-table caption { text-align: left; font-size: .85rem; color: var(--rls-muted); margin-bottom: 8px; }

.site-footer { background: var(--rls-primary-dark); color: #CBD5E1; padding: var(--rls-s6) 0 var(--rls-s4); margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--rls-s4); }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: #94A3B8; }
.footer-brand p { color: #94A3B8; font-size: .94rem; margin-top: var(--rls-s2); max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: var(--rls-s2); font-family: "Source Sans 3", sans-serif; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col button.linklike { color: #CBD5E1; font-size: .94rem; }
.footer-col a:hover, .footer-col button.linklike:hover { color: #fff; text-decoration: none; }
button.linklike { background: none; border: none; padding: 0; font: inherit; cursor: pointer; text-align: left; }
.footer-contact li { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: 0 0 16px; color: #818CF8; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: var(--rls-s5);
  padding-top: var(--rls-s3);
  display: flex;
  justify-content: space-between;
  gap: var(--rls-s2);
  flex-wrap: wrap;
  font-size: .86rem;
  color: #94A3B8;
}
.footer-bottom a { color: #CBD5E1; }

.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: #fff;
  border-top: 1px solid var(--rls-border);
  box-shadow: 0 -4px 20px rgba(15,23,42,.12);
  padding: var(--rls-s3);
  transform: translateY(100%);
  transition: transform .3s ease-out;
}
.cookie-bar[data-show="true"] { transform: translateY(0); }
.cookie-bar__inner { max-width: var(--rls-maxw); margin: 0 auto; }
.cookie-collapsed { display: flex; align-items: center; justify-content: space-between; gap: var(--rls-s3); flex-wrap: wrap; }
.cookie-collapsed p { margin: 0; font-size: .94rem; color: var(--rls-muted); max-width: 640px; }
.cookie-collapsed a { color: var(--rls-accent-dark); }
.cookie-actions { display: flex; gap: var(--rls-s1); flex-wrap: wrap; }
.cookie-btn {
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: var(--rls-radius-chip);
  cursor: pointer;
  border: 1px solid var(--rls-border);
  background: #fff;
  color: var(--rls-text);
  min-height: 44px;
}
.cookie-btn:hover { border-color: var(--rls-primary); }
.cookie-btn--primary { background: var(--rls-accent); color: #fff; border-color: var(--rls-accent); }
.cookie-btn--primary:hover { background: var(--rls-accent-dark); border-color: var(--rls-accent-dark); }
.cookie-expanded { display: none; margin-top: var(--rls-s3); border-top: 1px solid var(--rls-border); padding-top: var(--rls-s3); }
.cookie-bar[data-expanded="true"] .cookie-expanded { display: block; }
.cookie-cat {
  display: flex;
  justify-content: space-between;
  gap: var(--rls-s2);
  padding: var(--rls-s2) 0;
  border-bottom: 1px solid var(--rls-border);
}
.cookie-cat:last-of-type { border-bottom: none; }
.cookie-cat h4 { margin: 0 0 3px; font-size: 1rem; }
.cookie-cat p { margin: 0; font-size: .88rem; color: var(--rls-muted); max-width: 540px; }
.cookie-cat__locked { font-size: .82rem; color: var(--rls-accent-dark); font-weight: 600; align-self: center; white-space: nowrap; }

.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: 0 0 46px; align-self: center; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute; inset: 0; cursor: pointer;
  background: #CBD5E1; border-radius: 999px;
  transition: background-color .2s ease-out;
}
.switch .slider::before {
  content: ""; position: absolute;
  height: 20px; width: 20px; left: 3px; bottom: 3px;
  background: #fff; border-radius: 50%;
  transition: transform .2s ease-out;
}
.switch input:checked + .slider { background: var(--rls-accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:focus-visible + .slider { outline: 3px solid var(--rls-accent); outline-offset: 2px; }
.cookie-expanded__actions { display: flex; gap: var(--rls-s1); flex-wrap: wrap; margin-top: var(--rls-s3); }

.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--rls-s3);
}
.modal-overlay[data-show="true"] { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--rls-radius);
  max-width: 440px;
  width: 100%;
  padding: var(--rls-s5);
  text-align: center;
  box-shadow: 0 20px 60px rgba(15,23,42,.3);
}
.modal__icon {
  width: 60px; height: 60px;
  margin: 0 auto var(--rls-s2);
  border-radius: 50%;
  background: #ECFEFF;
  color: var(--rls-accent-dark);
  display: grid; place-items: center;
}
.modal__icon svg { width: 32px; height: 32px; }
.modal h3 { margin-bottom: 8px; }
.modal p { color: var(--rls-muted); margin-bottom: var(--rls-s3); }

.mobile-only { display: none; }

@media (max-width: 980px) {
  .featured-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .index-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 340px);
    background: #fff;
    border-left: 1px solid var(--rls-border);
    box-shadow: -8px 0 30px rgba(15,23,42,.15);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 84px var(--rls-s3) var(--rls-s3);
    transform: translateX(100%);
    transition: transform .25s ease-out;
    overflow-y: auto;
    z-index: 1050;
  }
  .index-nav[data-open="true"] { transform: translateX(0); }
  .index-rail { flex-direction: column; align-items: stretch; gap: 0; }
  .index-rail > li:not(:last-child)::after { display: none; }
  .index-rail a { padding: 12px 8px; border-bottom: 1px solid var(--rls-border); border-radius: 0; }
  .has-dropdown { width: 100%; }
  .has-dropdown > button { width: 100%; justify-content: space-between; padding: 12px 8px; border-bottom: 1px solid var(--rls-border); }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--rls-border);
    border-radius: 0;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transition: max-height .2s ease-out;
  }
  .has-dropdown[data-open="true"] .dropdown { transform: none; max-height: 600px; padding: 0 0 8px; }
  .dropdown a { padding-left: 22px; }
  .nav-cta { margin-top: var(--rls-s2); justify-content: center; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.45);
    z-index: 1040;
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease-out, visibility .25s;
  }
  .nav-backdrop[data-show="true"] { opacity: 1; visibility: visible; }
  .mobile-only { display: block; }
}

@media (max-width: 640px) {
  .container { padding: 0 var(--rls-s2); }
  .section { padding: var(--rls-s6) 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--rls-s4); }
  .prevnext { grid-template-columns: 1fr; }
  .prevnext .pn-next { text-align: left; }
  .form-card { padding: var(--rls-s3); }
  .ranked-item { grid-template-columns: 22px 64px 1fr; gap: var(--rls-s1); }
  .cookie-collapsed { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1 1 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
