@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@400;500;600&display=swap');

:root {
  --lpx-primary: #0F172A;
  --lpx-secondary: #1E3A8A;
  --lpx-accent: #B45309;
  --lpx-accent-dark: #92400E;
  --lpx-bg: #F8FAFC;
  --lpx-surface: #FFFFFF;
  --lpx-text: #020617;
  --lpx-muted: #475569;
  --lpx-border: #E2E8F0;
  --lpx-hero-overlay: linear-gradient(125deg, rgba(2,6,23,.86), rgba(30,58,138,.62));
  --lpx-sans: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --lpx-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --lpx-shadow-sm: 0 1px 2px rgba(2,6,23,.06);
  --lpx-shadow: 0 4px 14px rgba(2,6,23,.08);
  --lpx-radius-card: 8px;
  --lpx-radius-btn: 6px;
  --lpx-maxw: 1120px;
}

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

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

body {
  margin: 0;
  font-family: var(--lpx-serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--lpx-text);
  background: var(--lpx-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lpx-sans);
  line-height: 1.25;
  color: var(--lpx-primary);
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1.1rem; }

a { color: var(--lpx-secondary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

ul, ol { margin: 0 0 1.1rem; padding-left: 1.3rem; }
li { margin-bottom: .4rem; }

.lpx-container {
  width: 100%;
  max-width: var(--lpx-maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.lpx-eyebrow {
  font-family: var(--lpx-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpx-accent-dark);
  margin: 0 0 .6rem;
}

.lpx-section { padding: 64px 0; }
.lpx-section--tight { padding: 44px 0; }
.lpx-section--alt { background: var(--lpx-surface); border-top: 1px solid var(--lpx-border); border-bottom: 1px solid var(--lpx-border); }

.lpx-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lpx-primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 0 0 6px 0;
}
.lpx-skip:focus { left: 0; }

.lpx-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--lpx-sans);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1;
  padding: 13px 20px;
  min-height: 44px;
  border-radius: var(--lpx-radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
  text-decoration: none;
}
.lpx-btn:hover { text-decoration: none; }
.lpx-btn--primary { background: var(--lpx-accent); color: #fff; }
.lpx-btn--primary:hover { background: var(--lpx-accent-dark); }
.lpx-btn--ghost { background: transparent; color: var(--lpx-primary); border-color: var(--lpx-border); }
.lpx-btn--ghost:hover { border-color: var(--lpx-secondary); color: var(--lpx-secondary); }
.lpx-btn--light { background: #fff; color: var(--lpx-primary); }
.lpx-btn--light:hover { background: #f1f5f9; }
.lpx-btn--onnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.lpx-btn--onnavy:hover { background: rgba(255,255,255,.1); }

.lpx-icon { width: 1.25em; height: 1.25em; flex: none; }

.lpx-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--lpx-surface);
  border-bottom: 1px solid var(--lpx-border);
}
.lpx-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.lpx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lpx-sans);
  text-decoration: none;
  color: var(--lpx-primary);
}
.lpx-brand:hover { text-decoration: none; }
.lpx-brand__mark {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 7px;
  background: var(--lpx-primary);
  display: grid;
  place-items: center;
}
.lpx-brand__mark svg { width: 22px; height: 22px; }
.lpx-brand__name { font-weight: 700; font-size: 1.05rem; line-height: 1.1; }
.lpx-brand__sub { display: block; font-family: var(--lpx-serif); font-weight: 400; font-size: .72rem; color: var(--lpx-muted); line-height: 1.2; margin-top: 2px; }

.lpx-nav { display: flex; align-items: center; gap: 4px; }
.lpx-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.lpx-nav__link {
  font-family: var(--lpx-sans);
  font-weight: 500;
  font-size: .94rem;
  color: var(--lpx-primary);
  padding: 10px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lpx-nav__link:hover { background: #f1f5f9; text-decoration: none; }
.lpx-nav__link[aria-current="page"] { color: var(--lpx-secondary); }

.lpx-dropdown { position: relative; }
.lpx-dropdown__toggle { background: none; border: none; cursor: pointer; font: inherit; }
.lpx-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  box-shadow: var(--lpx-shadow);
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 50;
}
.lpx-dropdown__menu li { margin: 0; }
.lpx-dropdown[data-open="true"] .lpx-dropdown__menu { display: block; }
.lpx-dropdown__menu a {
  display: block;
  font-family: var(--lpx-sans);
  font-size: .9rem;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--lpx-primary);
}
.lpx-dropdown__menu a:hover { background: #f1f5f9; text-decoration: none; }
.lpx-dropdown__num { color: var(--lpx-accent-dark); font-weight: 600; margin-right: 8px; }

.lpx-nav__cta { margin-left: 6px; }

.lpx-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lpx-border);
  border-radius: 6px;
  background: var(--lpx-surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.lpx-hamburger svg { width: 22px; height: 22px; }

.lpx-breadcrumbstrip { background: var(--lpx-bg); border-bottom: 1px solid var(--lpx-border); }
.lpx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  font-family: var(--lpx-sans);
  font-size: .85rem;
  color: var(--lpx-muted);
}
.lpx-breadcrumb li { margin: 0; display: flex; align-items: center; gap: 6px; }
.lpx-breadcrumb li::after { content: "/"; color: var(--lpx-border); }
.lpx-breadcrumb li:last-child::after { content: ""; }
.lpx-breadcrumb a { color: var(--lpx-secondary); }
.lpx-breadcrumb span[aria-current] { color: var(--lpx-primary); font-weight: 500; }

.lpx-hero {
  position: relative;
  background-image: var(--lpx-hero-overlay), url('../img/hero-bursa-idx.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}
.lpx-hero__inner { max-width: 720px; }
.lpx-hero h1 { color: #fff; }
.lpx-hero__sub { font-size: 1.12rem; color: #e2e8f0; margin-bottom: 1.6rem; max-width: 600px; }
.lpx-hero__toc {
  background: rgba(2,6,23,.42);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 0 0 1.8rem;
  max-width: 480px;
}
.lpx-hero__toc h2 {
  font-size: .8rem;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.lpx-hero__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
  font-family: var(--lpx-sans);
  font-size: .92rem;
}
.lpx-hero__toc li {
  counter-increment: toc;
  padding: 4px 0;
  color: #e2e8f0;
  display: flex;
  gap: 10px;
}
.lpx-hero__toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: #fbbf24;
  font-weight: 600;
  flex: none;
}
.lpx-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.lpx-pagehead {
  background: var(--lpx-primary);
  color: #fff;
  padding: 52px 0;
}
.lpx-pagehead h1 { color: #fff; }
.lpx-pagehead p { color: #cbd5e1; max-width: 680px; margin-bottom: 0; }

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

.lpx-section__head { max-width: 760px; margin-bottom: 36px; }
.lpx-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.lpx-modulenum {
  font-family: var(--lpx-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--lpx-accent-dark);
  display: inline-block;
  margin-bottom: .5rem;
}

.lpx-divider { height: 1px; background: var(--lpx-border); border: 0; margin: 0; }

.lpx-about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.lpx-about__media img { border-radius: 8px; border: 1px solid var(--lpx-border); width: 100%; }
.lpx-about__deskcard {
  margin-top: 20px;
  background: var(--lpx-bg);
  border: 1px solid var(--lpx-border);
  border-left: 3px solid var(--lpx-secondary);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: .95rem;
}

.lpx-ranked { list-style: none; margin: 0; padding: 0; counter-reset: rank; }
.lpx-ranked__item {
  display: grid;
  grid-template-columns: 56px 1fr 168px;
  gap: 22px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--lpx-border);
}
.lpx-ranked__item:first-child { border-top: 0; }
.lpx-ranked__num {
  font-family: var(--lpx-sans);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--lpx-border);
  line-height: 1;
}
.lpx-ranked__body h3 { margin-bottom: .35rem; }
.lpx-ranked__body h3 a { color: var(--lpx-primary); }
.lpx-ranked__body h3 a:hover { color: var(--lpx-secondary); }
.lpx-ranked__summary { color: var(--lpx-muted); font-size: .96rem; margin-bottom: .6rem; }
.lpx-ranked__meta { font-family: var(--lpx-sans); font-size: .8rem; color: var(--lpx-muted); }
.lpx-ranked__link {
  font-family: var(--lpx-sans);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: .55rem;
}
.lpx-ranked__thumb img { border-radius: 8px; border: 1px solid var(--lpx-border); aspect-ratio: 16/10; object-fit: cover; width: 100%; }

.lpx-grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lpx-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lpx-grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.lpx-principle {
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 28px 26px;
  counter-increment: principle;
}
.lpx-principle__num {
  font-family: var(--lpx-sans);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lpx-accent-dark);
  margin-bottom: .8rem;
}
.lpx-principle h3 { font-size: 1.18rem; }
.lpx-principle p { margin-bottom: 0; color: var(--lpx-muted); font-size: .97rem; }

.lpx-pillar {
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 26px 24px;
}
.lpx-pillar__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #eef2ff;
  color: var(--lpx-secondary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.lpx-pillar__icon svg { width: 24px; height: 24px; }
.lpx-pillar h3 { font-size: 1.12rem; }
.lpx-pillar p { margin-bottom: 0; color: var(--lpx-muted); font-size: .94rem; }

.lpx-policy {
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 26px 26px;
  position: relative;
}
.lpx-policy__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.lpx-policy__head svg { width: 26px; height: 26px; color: var(--lpx-secondary); flex: none; }
.lpx-policy__head h3 { margin: 0; font-size: 1.1rem; }
.lpx-policy p { font-size: .95rem; color: var(--lpx-muted); margin-bottom: 0; }
.lpx-policy__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lpx-sans);
  font-size: .76rem;
  font-weight: 600;
  color: var(--lpx-accent-dark);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 4px 11px;
  margin-top: 14px;
}
.lpx-policy__tag svg { width: 15px; height: 15px; }

.lpx-callout {
  background: var(--lpx-bg);
  border: 1px solid var(--lpx-border);
  border-left: 4px solid var(--lpx-accent);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 26px 0;
}
.lpx-callout__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.lpx-callout__head svg { width: 22px; height: 22px; color: var(--lpx-accent); flex: none; }
.lpx-callout__head strong { font-family: var(--lpx-sans); color: var(--lpx-primary); }
.lpx-callout p { margin-bottom: 0; font-size: .96rem; }

.lpx-mission {
  background: var(--lpx-secondary);
  color: #fff;
  border-radius: 12px;
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.lpx-mission h2 { color: #fff; }
.lpx-mission p { color: #dbeafe; margin-bottom: 0; }
.lpx-mission__media img { border-radius: 8px; width: 100%; }

.lpx-cta-band {
  background: var(--lpx-primary);
  color: #fff;
  border-radius: 12px;
  padding: 52px 44px;
  text-align: center;
}
.lpx-cta-band h2 { color: #fff; }
.lpx-cta-band p { color: #cbd5e1; max-width: 560px; margin: 0 auto 1.6rem; }
.lpx-cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.lpx-article { max-width: 760px; margin: 0 auto; padding: 52px 0; }
.lpx-article__byline {
  font-family: var(--lpx-sans);
  font-size: .88rem;
  color: var(--lpx-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--lpx-border);
}
.lpx-article__hero { margin: 0 0 30px; }
.lpx-article__hero img { border-radius: 8px; border: 1px solid var(--lpx-border); width: 100%; }
.lpx-article h2 { margin-top: 2rem; padding-top: .5rem; }
.lpx-article h3 { margin-top: 1.5rem; }
.lpx-article__stage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lpx-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lpx-accent-dark);
}
.lpx-article ul li::marker { color: var(--lpx-secondary); }

.lpx-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--lpx-border);
}
.lpx-prevnext a {
  display: block;
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 16px 18px;
  font-family: var(--lpx-sans);
}
.lpx-prevnext a:hover { border-color: var(--lpx-secondary); text-decoration: none; }
.lpx-prevnext__label { font-size: .76rem; color: var(--lpx-muted); text-transform: uppercase; letter-spacing: .08em; }
.lpx-prevnext__title { color: var(--lpx-primary); font-weight: 600; font-size: .96rem; margin-top: 4px; }
.lpx-prevnext__next { text-align: right; }

.lpx-articlecta {
  background: var(--lpx-bg);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 26px;
  margin-top: 36px;
  text-align: center;
}
.lpx-articlecta p { margin-bottom: 1rem; }

.lpx-infocards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lpx-infocard {
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 26px 24px;
}
.lpx-infocard__icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--lpx-primary);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.lpx-infocard__icon svg { width: 24px; height: 24px; }
.lpx-infocard h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.lpx-infocard p, .lpx-infocard a { font-size: .96rem; margin-bottom: 0; }
.lpx-infocard address { font-style: normal; color: var(--lpx-muted); font-size: .96rem; }

.lpx-formpanel {
  background: var(--lpx-surface);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 34px;
}
.lpx-field { margin-bottom: 18px; }
.lpx-field label {
  display: block;
  font-family: var(--lpx-sans);
  font-weight: 500;
  font-size: .92rem;
  margin-bottom: 6px;
  color: var(--lpx-primary);
}
.lpx-field input, .lpx-field textarea {
  width: 100%;
  font-family: var(--lpx-serif);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--lpx-border);
  border-radius: 6px;
  background: var(--lpx-bg);
  color: var(--lpx-text);
}
.lpx-field input:focus, .lpx-field textarea:focus {
  outline: 2px solid var(--lpx-secondary);
  outline-offset: 1px;
  border-color: var(--lpx-secondary);
}
.lpx-field textarea { min-height: 140px; resize: vertical; }
.lpx-field__req { color: var(--lpx-accent-dark); }

.lpx-mapband { margin-top: 0; }
.lpx-map {
  position: relative;
  width: 100%;
  padding-top: 42%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--lpx-border);
}
.lpx-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lpx-maplink { margin-top: 14px; font-family: var(--lpx-sans); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }

.lpx-legal { max-width: 800px; margin: 0 auto; }
.lpx-legal h2 { margin-top: 2.2rem; }
.lpx-legal__meta { font-family: var(--lpx-sans); font-size: .85rem; color: var(--lpx-muted); margin-bottom: 28px; }
.lpx-table-wrap { overflow-x: auto; margin: 1.2rem 0; }
.lpx-table { width: 100%; border-collapse: collapse; font-family: var(--lpx-sans); font-size: .9rem; min-width: 520px; }
.lpx-table th, .lpx-table td { text-align: left; padding: 11px 14px; border: 1px solid var(--lpx-border); vertical-align: top; }
.lpx-table th { background: var(--lpx-bg); color: var(--lpx-primary); font-weight: 600; }

.lpx-toclist {
  background: var(--lpx-bg);
  border: 1px solid var(--lpx-border);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 30px;
}
.lpx-toclist h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .6rem; }
.lpx-toclist ol { margin: 0; font-family: var(--lpx-sans); font-size: .94rem; }

.lpx-footer { background: var(--lpx-primary); color: #cbd5e1; padding: 56px 0 0; font-family: var(--lpx-sans); }
.lpx-footer__cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; padding-bottom: 40px; }
.lpx-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lpx-footer__brand .lpx-brand__name { color: #fff; }
.lpx-footer h3 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.lpx-footer p { font-size: .92rem; color: #94a3b8; margin-bottom: .8rem; line-height: 1.6; }
.lpx-footer__contact { list-style: none; margin: 0; padding: 0; }
.lpx-footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .92rem; }
.lpx-footer__contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: #fbbf24; }
.lpx-footer__contact a { color: #cbd5e1; }
.lpx-footer__links { list-style: none; margin: 0; padding: 0; }
.lpx-footer__links li { margin-bottom: 10px; }
.lpx-footer__links a { color: #cbd5e1; font-size: .92rem; }
.lpx-footer__links button {
  background: none; border: 0; color: #cbd5e1; font: inherit; cursor: pointer; padding: 0; font-size: .92rem; text-align: left;
}
.lpx-footer__links a:hover, .lpx-footer__links button:hover { color: #fff; text-decoration: underline; }
.lpx-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; font-size: .85rem; color: #94a3b8; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

.lpx-cookiebar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: var(--lpx-surface);
  border-top: 2px solid var(--lpx-secondary);
  box-shadow: 0 -4px 18px rgba(2,6,23,.12);
  font-family: var(--lpx-sans);
}
.lpx-cookiebar[hidden] { display: none; }
.lpx-cookiebar__inner { padding: 18px 0; }
.lpx-cookiebar__row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; }
.lpx-cookiebar__text { font-size: .9rem; color: var(--lpx-muted); flex: 1 1 340px; margin: 0; }
.lpx-cookiebar__text a { color: var(--lpx-secondary); }
.lpx-cookiebar__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.lpx-cookiebar__actions .lpx-btn { font-size: .88rem; padding: 11px 16px; min-height: 44px; }

.lpx-cookieprefs { margin-top: 18px; border-top: 1px solid var(--lpx-border); padding-top: 18px; }
.lpx-cookieprefs[hidden] { display: none; }
.lpx-cookieopt {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--lpx-border);
}
.lpx-cookieopt:last-of-type { border-bottom: 0; }
.lpx-cookieopt h4 { font-family: var(--lpx-sans); font-size: .95rem; margin: 0 0 4px; color: var(--lpx-primary); }
.lpx-cookieopt p { font-size: .85rem; color: var(--lpx-muted); margin: 0; }
.lpx-switch { position: relative; width: 46px; height: 26px; flex: none; }
.lpx-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.lpx-switch__track { position: absolute; inset: 0; background: #cbd5e1; border-radius: 999px; transition: background 180ms ease-out; }
.lpx-switch__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 180ms ease-out; }
.lpx-switch input:checked + .lpx-switch__track { background: var(--lpx-secondary); }
.lpx-switch input:checked + .lpx-switch__track::after { transform: translateX(20px); }
.lpx-switch input:disabled + .lpx-switch__track { background: var(--lpx-secondary); opacity: .55; }
.lpx-switch input:focus-visible + .lpx-switch__track { outline: 2px solid var(--lpx-primary); outline-offset: 2px; }
.lpx-cookieprefs__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.lpx-cookielock { font-size: .76rem; color: var(--lpx-muted); font-style: normal; }

.lpx-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: rgba(2,6,23,.55);
  padding: 20px;
}
.lpx-modal[hidden] { display: none; }
.lpx-modal__box {
  background: var(--lpx-surface);
  border-radius: 12px;
  max-width: 440px;
  width: 100%;
  padding: 34px 32px;
  text-align: center;
  box-shadow: var(--lpx-shadow);
}
.lpx-modal__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #ecfdf5; color: #047857;
  display: grid; place-items: center; margin: 0 auto 16px;
}
.lpx-modal__icon svg { width: 30px; height: 30px; }
.lpx-modal h2 { font-size: 1.3rem; }
.lpx-modal p { color: var(--lpx-muted); }

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

@media (max-width: 1024px) {
  .lpx-mission, .lpx-cta-band { padding: 40px 32px; }
}

@media (max-width: 900px) {
  .lpx-nav { display: none; }
  .lpx-nav[data-open="true"] {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--lpx-surface);
    border-bottom: 1px solid var(--lpx-border);
    box-shadow: var(--lpx-shadow);
    padding: 14px 20px 20px;
  }
  .lpx-nav[data-open="true"] .lpx-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .lpx-nav[data-open="true"] .lpx-nav__link { padding: 12px 10px; }
  .lpx-nav[data-open="true"] .lpx-dropdown__menu { position: static; box-shadow: none; border: 0; padding: 0 0 0 12px; min-width: 0; }
  .lpx-nav[data-open="true"] .lpx-dropdown { width: 100%; }
  .lpx-nav[data-open="true"] .lpx-nav__cta { margin: 10px 0 0; }
  .lpx-nav[data-open="true"] .lpx-btn { width: 100%; justify-content: center; }
  .lpx-hamburger { display: flex; }
  .lpx-topbar__inner { position: relative; }
  .lpx-about { grid-template-columns: 1fr; gap: 28px; }
  .lpx-mission { grid-template-columns: 1fr; gap: 24px; }
  .lpx-mission__media { order: -1; }
}

@media (max-width: 768px) {
  .lpx-section { padding: 48px 0; }
  .lpx-grid3, .lpx-grid4, .lpx-grid2 { grid-template-columns: 1fr; }
  .lpx-infocards { grid-template-columns: 1fr; }
  .lpx-footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .lpx-ranked__item { grid-template-columns: 40px 1fr; }
  .lpx-ranked__thumb { display: none; }
  .lpx-prevnext { grid-template-columns: 1fr; }
  .lpx-prevnext__next { text-align: left; }
  .lpx-hero { min-height: 0; padding: 56px 0; }
  .lpx-cookiebar__row { flex-direction: column; align-items: stretch; }
  .lpx-cookiebar__actions .lpx-btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 480px) {
  .lpx-brand__sub { display: none; }
  .lpx-mission, .lpx-cta-band { padding: 32px 22px; }
}

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