:root {
  --eq-navy: #0f1c33;
  --eq-navy-deep: #0a1424;
  --eq-navy-soft: #16233d;
  --eq-graphite: #3a4453;
  --eq-graphite-soft: #5b6675;
  --eq-ink: #1c2634;
  --eq-line: #d7dbe2;
  --eq-line-soft: #e6e9ef;
  --eq-paper: #ffffff;
  --eq-paper-alt: #f6f7f9;
  --eq-paper-deep: #eef0f4;
  --eq-amber: #b45309;
  --eq-amber-deep: #92400e;
  --eq-amber-soft: #fef4e8;
  --eq-text: #23303f;
  --eq-text-muted: #5d6875;
  --eq-text-invert: #eef2f8;
  --eq-text-invert-muted: #aeb9c9;
  --eq-max: 1200px;
  --eq-read: 760px;
  --eq-header-offset: 72px;
  --eq-radius: 4px;
  --eq-shadow: 0 1px 2px rgba(15, 28, 51, 0.06);
  --eq-focus: 0 0 0 3px rgba(180, 83, 9, 0.35);
  --eq-serif: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  --eq-sans: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  --eq-aux: "Noto Sans KR", "Pretendard", system-ui, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--eq-sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--eq-text);
  background: var(--eq-paper);
  letter-spacing: -0.003em;
}

body.eq-menu-open,
body.eq-modal-open {
  overflow: hidden;
}

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

a {
  color: var(--eq-amber-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--eq-serif);
  color: var(--eq-navy);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

:focus-visible {
  outline: none;
  box-shadow: var(--eq-focus);
  border-radius: var(--eq-radius);
}

.eq-container {
  width: 100%;
  max-width: var(--eq-max);
  margin: 0 auto;
  padding: 0 24px;
}

.eq-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--eq-navy);
  color: var(--eq-text-invert);
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 var(--eq-radius) 0;
}

.eq-skip:focus {
  left: 0;
}

.eq-mono {
  font-family: var(--eq-aux);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.eq-eyebrow {
  font-family: var(--eq-aux);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  color: var(--eq-amber-deep);
  margin: 0 0 14px;
}

.eq-num {
  font-family: var(--eq-aux);
  font-variant-numeric: tabular-nums;
  color: var(--eq-amber-deep);
  font-weight: 600;
}

.eq-lead {
  font-size: 19px;
  color: var(--eq-text-muted);
  line-height: 1.7;
}

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

.eq-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.4) blur(6px);
  border-bottom: 1px solid var(--eq-line);
}

.eq-header.is-menu-open {
  z-index: 180;
}

.eq-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.eq-nav__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--eq-navy);
}

.eq-nav__brand:hover {
  text-decoration: none;
}

.eq-nav__brand-name {
  font-family: var(--eq-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.eq-nav__brand-sub {
  font-family: var(--eq-aux);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
}

.eq-nav__index {
  display: flex;
  align-items: center;
  gap: 30px;
}

.eq-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: navidx;
}

.eq-nav__links li {
  counter-increment: navidx;
}

.eq-nav__links a {
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 12px;
  color: var(--eq-graphite);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--eq-radius);
}

.eq-nav__links a::before {
  content: "0" counter(navidx);
  font-family: var(--eq-aux);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--eq-graphite-soft);
  font-weight: 600;
}

.eq-nav__links a:hover,
.eq-nav__links a[aria-current="page"] {
  color: var(--eq-navy);
  background: var(--eq-paper-alt);
  text-decoration: none;
}

.eq-nav__links a[aria-current="page"]::before {
  color: var(--eq-amber-deep);
}

.eq-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 16px;
  background: var(--eq-navy);
  color: var(--eq-text-invert);
  font-size: 14.5px;
  line-height: 1.2;
  font-weight: 600;
  border-radius: var(--eq-radius);
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}

.eq-nav__cta:hover {
  background: var(--eq-navy-deep);
  text-decoration: none;
}

.eq-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--eq-line);
  background: var(--eq-paper);
  border-radius: var(--eq-radius);
  cursor: pointer;
}

.eq-nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 0 auto;
  background: var(--eq-navy);
}

.eq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 18px;
  font-family: var(--eq-sans);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
  border-radius: var(--eq-radius);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.eq-btn svg {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.eq-btn:hover {
  text-decoration: none;
}

.eq-btn:active,
.eq-nav__cta:active {
  transform: translateY(1px);
}

.eq-btn--primary {
  background: var(--eq-amber);
  color: #fff;
}

.eq-btn--primary:hover {
  background: var(--eq-amber-deep);
}

.eq-btn--navy {
  background: var(--eq-navy);
  color: var(--eq-text-invert);
}

.eq-btn--navy:hover {
  background: var(--eq-navy-deep);
}

.eq-btn--outline {
  background: transparent;
  color: var(--eq-navy);
  border-color: var(--eq-line);
}

.eq-btn--outline:hover {
  border-color: var(--eq-navy);
  background: var(--eq-paper-alt);
}

.eq-btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--eq-text-invert);
  border-color: rgba(255, 255, 255, 0.35);
}

.eq-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.eq-btn--block {
  width: 100%;
}

.eq-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(10, 20, 36, 0.82), rgba(10, 20, 36, 0.9)), url("../img/equity-research-hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--eq-text-invert);
  border-bottom: 3px solid var(--eq-amber);
}

.eq-hero__inner {
  padding: 84px 0;
  max-width: 940px;
}

.eq-hero .eq-eyebrow {
  color: #f5b26b;
}

.eq-hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.16;
  margin: 0 0 22px;
}

.eq-hero__sub {
  font-size: 18px;
  color: var(--eq-text-invert-muted);
  line-height: 1.72;
  max-width: 720px;
  margin: 0 0 30px;
}

.eq-hero__toc {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.eq-hero__toc-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eq-hero__toc-code {
  font-family: var(--eq-aux);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #f5b26b;
  font-weight: 600;
}

.eq-hero__toc-label {
  font-size: 14px;
  color: var(--eq-text-invert);
  font-weight: 500;
}

.eq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.eq-section {
  padding: 84px 0;
}

.eq-section--tight {
  padding: 60px 0;
}

.eq-section--alt {
  background: var(--eq-paper-alt);
  border-top: 1px solid var(--eq-line);
  border-bottom: 1px solid var(--eq-line);
}

.eq-section--navy {
  background: var(--eq-navy);
  color: var(--eq-text-invert);
}

.eq-section--navy h2,
.eq-section--navy h3 {
  color: #fff;
}

.eq-modhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 2px solid var(--eq-navy);
  padding-top: 18px;
  margin-bottom: 40px;
}

.eq-modhead__code {
  font-family: var(--eq-aux);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--eq-amber-deep);
}

.eq-modhead__meta {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
}

.eq-section-intro {
  max-width: 780px;
  margin-bottom: 44px;
}

.eq-section-intro h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 18px;
}

.eq-mission {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eq-mission__body p {
  color: var(--eq-text-muted);
  margin: 0 0 18px;
}

.eq-mission__figure {
  border-top: 3px solid var(--eq-amber);
}

.eq-mission__figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.eq-mission__figure figcaption {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  color: var(--eq-graphite-soft);
  padding: 12px 2px 0;
}

.eq-ranklist {
  border-top: 1px solid var(--eq-navy);
}

.eq-rankitem {
  display: grid;
  grid-template-columns: 72px 200px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--eq-line);
}

.eq-rankitem__index {
  font-family: var(--eq-aux);
  font-size: 30px;
  font-weight: 700;
  color: var(--eq-navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.eq-rankitem__index span {
  display: block;
  height: 3px;
  width: 30px;
  background: var(--eq-amber);
  margin-top: 12px;
}

.eq-rankitem__media {
  border-top: 2px solid var(--eq-line);
}

.eq-rankitem__media img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.eq-rankitem__body h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.eq-rankitem__body h3 a {
  color: var(--eq-navy);
}

.eq-rankitem__body h3 a:hover {
  color: var(--eq-amber-deep);
  text-decoration: none;
}

.eq-rankitem__meta {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--eq-graphite-soft);
  margin: 0 0 8px;
}

.eq-rankitem__body p {
  color: var(--eq-text-muted);
  margin: 0 0 14px;
}

.eq-readmore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--eq-aux);
  font-size: 14px;
  font-weight: 600;
  color: var(--eq-amber-deep);
}

.eq-readmore svg {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.eq-principles {
  border-top: 1px solid var(--eq-navy);
  border-bottom: 1px solid var(--eq-line);
}

.eq-principle {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--eq-line);
}

.eq-principles .eq-principle:last-child {
  border-bottom: none;
}

.eq-principle__code {
  font-family: var(--eq-aux);
  font-size: 15px;
  font-weight: 700;
  color: var(--eq-amber-deep);
  letter-spacing: 0.06em;
}

.eq-principle__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: baseline;
}

.eq-principle__body h3 {
  font-size: 20px;
}

.eq-principle__body p {
  color: var(--eq-text-muted);
  margin: 0;
}

.eq-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.eq-about__figure {
  border-top: 3px solid var(--eq-amber);
}

.eq-about__figure img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.eq-about__figure figcaption {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  color: var(--eq-graphite-soft);
  padding: 12px 2px 0;
}

.eq-about__body p {
  color: var(--eq-text-muted);
  margin: 0 0 18px;
}

.eq-review {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.eq-review__col {
  padding: 30px 28px 6px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.eq-review__col:last-child {
  border-right: none;
  padding-right: 0;
}

.eq-review__col h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.eq-review__col p {
  color: var(--eq-text-invert-muted);
  margin: 0;
  font-size: 15.5px;
}

.eq-review__code {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #f5b26b;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}

.eq-metricrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--eq-line);
  margin: 26px 0 10px;
}

.eq-metric {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--eq-line);
}

.eq-metric:last-child {
  border-right: none;
}

.eq-metric__num {
  font-family: var(--eq-aux);
  font-size: 30px;
  font-weight: 700;
  color: var(--eq-navy);
  line-height: 1.1;
}

.eq-metric__label {
  font-size: 14px;
  color: var(--eq-text-muted);
  margin-top: 4px;
}

.eq-fine {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  color: var(--eq-graphite-soft);
  line-height: 1.6;
}

.eq-ctaband {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  background: var(--eq-navy);
  color: var(--eq-text-invert);
  padding: 48px;
  border-top: 3px solid var(--eq-amber);
}

.eq-ctaband h2 {
  color: #fff;
  font-size: clamp(23px, 3vw, 30px);
  margin-bottom: 14px;
}

.eq-ctaband p {
  color: var(--eq-text-invert-muted);
  margin: 0;
}

.eq-ctaband__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eq-page-hero {
  background: var(--eq-navy);
  color: var(--eq-text-invert);
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--eq-amber);
}

.eq-page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  margin: 12px 0 18px;
  max-width: 900px;
}

.eq-page-hero p {
  color: var(--eq-text-invert-muted);
  max-width: 760px;
  margin: 0;
  font-size: 17px;
}

.eq-crumbs {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--eq-text-invert-muted);
}

.eq-crumbs a {
  color: #f5b26b;
}

.eq-article {
  padding: 60px 0 80px;
}

.eq-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}

.eq-prose {
  max-width: var(--eq-read);
  font-size: 17.5px;
}

.eq-prose__hero {
  width: 100%;
  height: auto;
  border-top: 3px solid var(--eq-amber);
  margin-bottom: 24px;
}

.eq-byline {
  font-family: var(--eq-aux);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--eq-graphite-soft);
  display: flex;
  gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--eq-line);
  margin-bottom: 30px;
}

.eq-prose h2 {
  font-size: 25px;
  margin: 44px 0 16px;
  padding-top: 20px;
  border-top: 1px solid var(--eq-line);
}

.eq-prose h3 {
  font-size: 20px;
  margin: 30px 0 12px;
}

.eq-prose p {
  margin: 0 0 18px;
  color: var(--eq-text);
}

.eq-prose ul,
.eq-prose ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--eq-text);
}

.eq-prose li {
  margin-bottom: 9px;
}

.eq-prose__stance {
  border-left: 3px solid var(--eq-amber);
  background: var(--eq-amber-soft);
  padding: 18px 22px;
  margin: 0 0 28px;
  border-radius: 0 var(--eq-radius) var(--eq-radius) 0;
}

.eq-prose__stance-label {
  font-family: var(--eq-aux);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--eq-amber-deep);
  display: block;
  margin-bottom: 6px;
}

.eq-prose__stance p {
  margin: 0;
  color: var(--eq-ink);
}

.eq-callout {
  border: 1px solid var(--eq-line);
  border-left: 3px solid var(--eq-graphite);
  padding: 18px 22px;
  margin: 0 0 26px;
  background: var(--eq-paper-alt);
}

.eq-callout p {
  margin: 0;
  color: var(--eq-text-muted);
  font-size: 16px;
}

.eq-aside {
  position: sticky;
  top: 96px;
  border-top: 2px solid var(--eq-navy);
  padding-top: 20px;
}

.eq-aside h4 {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
  margin-bottom: 14px;
}

.eq-aside ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.eq-aside li {
  padding: 10px 0;
  border-bottom: 1px solid var(--eq-line-soft);
  font-size: 14.5px;
  color: var(--eq-text-muted);
  display: flex;
  gap: 10px;
}

.eq-aside li::before {
  content: "—";
  color: var(--eq-amber-deep);
}

.eq-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: var(--eq-read);
  margin: 48px 0 0;
  border-top: 1px solid var(--eq-line);
  padding-top: 28px;
}

.eq-prevnext a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--eq-line);
  border-radius: var(--eq-radius);
  color: var(--eq-navy);
}

.eq-prevnext a:hover {
  border-color: var(--eq-navy);
  text-decoration: none;
  background: var(--eq-paper-alt);
}

.eq-prevnext__dir {
  font-family: var(--eq-aux);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eq-amber-deep);
  font-weight: 600;
}

.eq-prevnext__t {
  font-weight: 600;
  font-size: 15.5px;
}

.eq-prevnext--next {
  text-align: right;
}

.eq-list {
  padding: 56px 0 80px;
}

.eq-list__filters {
  font-family: var(--eq-aux);
  font-size: 13px;
  color: var(--eq-graphite-soft);
  border-top: 1px solid var(--eq-line);
  border-bottom: 1px solid var(--eq-line);
  padding: 16px 0;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.eq-listrow {
  display: grid;
  grid-template-columns: 64px 240px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--eq-line);
}

.eq-listrow__index {
  font-family: var(--eq-aux);
  font-size: 26px;
  font-weight: 700;
  color: var(--eq-navy);
  font-variant-numeric: tabular-nums;
}

.eq-listrow__media {
  border-top: 2px solid var(--eq-line);
}

.eq-listrow__media img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.eq-listrow__body h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.eq-listrow__body h2 a {
  color: var(--eq-navy);
}

.eq-listrow__body h2 a:hover {
  color: var(--eq-amber-deep);
  text-decoration: none;
}

.eq-listrow__meta {
  font-family: var(--eq-aux);
  font-size: 12px;
  color: var(--eq-graphite-soft);
  letter-spacing: 0.05em;
  margin: 0 0 8px;
}

.eq-listrow__body p {
  color: var(--eq-text-muted);
  margin: 0;
  font-size: 15.5px;
}

.eq-listrow__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--eq-line);
  border-radius: var(--eq-radius);
  color: var(--eq-navy);
}

.eq-listrow__go svg {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.eq-listrow__go:hover {
  background: var(--eq-navy);
  color: #fff;
  border-color: var(--eq-navy);
}

.eq-doc {
  padding: 56px 0 80px;
}

.eq-doc__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.eq-doc__toc {
  position: sticky;
  top: 96px;
  border-top: 2px solid var(--eq-navy);
  padding-top: 18px;
}

.eq-doc__toc h2 {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
  margin-bottom: 14px;
}

.eq-doc__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: docidx;
}

.eq-doc__toc li {
  counter-increment: docidx;
  border-bottom: 1px solid var(--eq-line-soft);
}

.eq-doc__toc a {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  color: var(--eq-graphite);
  font-size: 14px;
}

.eq-doc__toc a::before {
  content: "0" counter(docidx);
  font-family: var(--eq-aux);
  color: var(--eq-amber-deep);
  font-weight: 600;
  font-size: 12px;
}

.eq-doc__toc a:hover {
  color: var(--eq-navy);
  text-decoration: none;
}

.eq-doc__body {
  max-width: var(--eq-read);
}

.eq-doc__section {
  padding: 30px 0;
  border-bottom: 1px solid var(--eq-line);
}

.eq-doc__section:first-child {
  padding-top: 0;
}

.eq-doc__section h2 {
  font-size: 23px;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.eq-doc__section h2 .eq-num {
  font-size: 15px;
}

.eq-doc__section h3 {
  font-size: 18px;
  margin: 22px 0 10px;
}

.eq-doc__section p {
  margin: 0 0 16px;
  color: var(--eq-text);
}

.eq-doc__section ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--eq-text);
}

.eq-doc__section li {
  margin-bottom: 8px;
}

.eq-deftable {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 18px;
  font-size: 15px;
}

.eq-deftable th,
.eq-deftable td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--eq-line);
  vertical-align: top;
}

.eq-deftable th {
  font-family: var(--eq-aux);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
  background: var(--eq-paper-alt);
  border-top: 1px solid var(--eq-line);
}

.eq-updated {
  font-family: var(--eq-aux);
  font-size: 13px;
  color: var(--eq-graphite-soft);
  border-top: 1px solid var(--eq-line);
  padding-top: 18px;
  margin-top: 6px;
}

.eq-contact {
  padding: 60px 0 80px;
}

.eq-contact__intro {
  max-width: 780px;
  margin-bottom: 44px;
}

.eq-contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--eq-navy);
  border-bottom: 1px solid var(--eq-line);
  margin-bottom: 48px;
}

.eq-contact__cell {
  padding: 30px 28px 30px 0;
  border-right: 1px solid var(--eq-line);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.eq-contact__cell:last-child {
  border-right: none;
}

.eq-contact__ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eq-line);
  border-radius: var(--eq-radius);
  color: var(--eq-amber-deep);
}

.eq-contact__ico svg {
  width: 20px;
  height: 20px;
}

.eq-contact__cell h3 {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
  margin-bottom: 6px;
}

.eq-contact__cell p {
  margin: 0;
  color: var(--eq-navy);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
}

.eq-contact__cell a {
  color: var(--eq-navy);
}

.eq-contact__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.eq-contact__reappear {
  border-top: 2px solid var(--eq-navy);
  padding-top: 20px;
  margin-bottom: 34px;
}

.eq-contact__reappear h2 {
  font-size: 21px;
  margin-bottom: 14px;
}

.eq-contact__reappear dl {
  margin: 0;
}

.eq-contact__reappear dt {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eq-graphite-soft);
  margin-top: 14px;
}

.eq-contact__reappear dd {
  margin: 4px 0 0;
  color: var(--eq-navy);
  font-weight: 500;
}

.eq-map {
  border-top: 3px solid var(--eq-amber);
}

.eq-map__frame {
  position: relative;
  width: 100%;
  height: 420px;
}

.eq-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.eq-map__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--eq-aux);
  font-size: 14px;
  font-weight: 600;
}

.eq-map__link svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.eq-form {
  border-top: 2px solid var(--eq-navy);
  padding-top: 24px;
}

.eq-form h2 {
  font-size: 21px;
  margin-bottom: 8px;
}

.eq-form__note {
  color: var(--eq-text-muted);
  font-size: 15px;
  margin: 0 0 22px;
}

.eq-field {
  margin-bottom: 20px;
}

.eq-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--eq-navy);
  margin-bottom: 7px;
}

.eq-field label .eq-req {
  color: var(--eq-amber-deep);
}

.eq-field input,
.eq-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--eq-sans);
  font-size: 15.5px;
  color: var(--eq-text);
  border: 1px solid var(--eq-line);
  border-radius: var(--eq-radius);
  background: var(--eq-paper);
}

.eq-field input:focus,
.eq-field textarea:focus {
  outline: none;
  border-color: var(--eq-amber);
  box-shadow: var(--eq-focus);
}

.eq-field textarea {
  min-height: 130px;
  resize: vertical;
}

.eq-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.eq-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--eq-amber);
}

.eq-consent label {
  font-size: 14px;
  color: var(--eq-text-muted);
  line-height: 1.6;
}

.eq-newsletter {
  border-top: 1px solid var(--eq-line);
  margin-top: 30px;
  padding-top: 26px;
}

.eq-newsletter h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.eq-newsletter p {
  color: var(--eq-text-muted);
  font-size: 14.5px;
  margin: 0 0 18px;
}

.eq-footer {
  background: var(--eq-navy-deep);
  color: var(--eq-text-invert-muted);
  padding: 64px 0 30px;
  border-top: 3px solid var(--eq-amber);
}

.eq-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 36px;
}

.eq-footer__top > * {
  min-width: 0;
}

.eq-footer__brand-name {
  font-family: var(--eq-serif);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.eq-footer__top p {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 420px;
}

.eq-footer__index {
  columns: 2;
  column-gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: footidx;
}

.eq-footer h4 {
  font-family: var(--eq-aux);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5b26b;
  margin-bottom: 16px;
}

.eq-footer__index li {
  counter-increment: footidx;
  break-inside: avoid;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eq-footer__index a,
.eq-footer__manage {
  display: flex;
  gap: 9px;
  align-items: baseline;
  padding: 9px 0;
  color: var(--eq-text-invert-muted);
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--eq-sans);
  text-align: left;
}

.eq-footer__index a::before {
  content: "0" counter(footidx);
  font-family: var(--eq-aux);
  font-size: 10.5px;
  color: #f5b26b;
}

.eq-footer__index a:hover,
.eq-footer__manage:hover {
  color: #fff;
  text-decoration: none;
}

.eq-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eq-footer__contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 14px;
}

.eq-footer__contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #f5b26b;
  margin-top: 3px;
}

.eq-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
}

.eq-footer__bottom a,
.eq-footer__bottom .eq-footer__manage {
  color: var(--eq-text-invert-muted);
  display: inline;
  padding: 0;
}

.eq-footer__bottom a:hover {
  color: #fff;
}

.eq-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  background: var(--eq-navy-deep);
  color: var(--eq-text-invert);
  border-top: 2px solid var(--eq-amber);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.eq-cookie.is-visible {
  transform: translateY(0);
}

body.eq-menu-open .eq-cookie {
  visibility: hidden;
  pointer-events: none;
}

.eq-cookie__inner {
  padding: 22px 0 26px;
}

.eq-cookie__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.eq-cookie__text {
  flex: 1;
  min-width: 260px;
}

.eq-cookie__text h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 6px;
}

.eq-cookie__text p {
  margin: 0;
  font-size: 13.5px;
  color: var(--eq-text-invert-muted);
  line-height: 1.6;
}

.eq-cookie__text a {
  color: #f5b26b;
}

.eq-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.eq-cookie__actions .eq-btn {
  padding: 10px 16px;
  min-height: 42px;
  font-size: 13.5px;
}

.eq-cookie__panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 20px;
  padding-top: 22px;
}

.eq-cookie__panel.is-open {
  display: block;
}

.eq-cookie__cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.eq-cookie__cat {
  padding: 20px 22px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.eq-cookie__cat:last-child {
  border-right: none;
  padding-right: 0;
}

.eq-cookie__cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.eq-cookie__cat-head strong {
  color: #fff;
  font-size: 15px;
}

.eq-cookie__cat p {
  margin: 0;
  font-size: 13px;
  color: var(--eq-text-invert-muted);
  line-height: 1.6;
}

.eq-cookie__always {
  font-family: var(--eq-aux);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: #f5b26b;
}

.eq-switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.eq-switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.eq-switch__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  transition: background 0.2s ease;
}

.eq-switch__slider::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.eq-switch input:checked + .eq-switch__slider {
  background: var(--eq-amber);
}

.eq-switch input:checked + .eq-switch__slider::before {
  transform: translateX(20px);
}

.eq-switch input:focus-visible + .eq-switch__slider {
  box-shadow: var(--eq-focus);
}

.eq-cookie__panel-actions {
  margin-top: 22px;
}

.eq-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 20, 36, 0.6);
}

.eq-modal.is-open {
  display: flex;
}

.eq-modal__box {
  background: var(--eq-paper);
  border-top: 4px solid var(--eq-amber);
  border-radius: var(--eq-radius);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(10, 20, 36, 0.3);
}

.eq-modal__ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--eq-amber-soft);
  color: var(--eq-amber-deep);
}

.eq-modal__ico svg {
  width: 28px;
  height: 28px;
}

.eq-modal__box h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.eq-modal__box p {
  color: var(--eq-text-muted);
  margin: 0 0 24px;
}

.eq-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.eq-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .eq-mission,
  .eq-about,
  .eq-contact__main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .eq-article__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eq-aside {
    position: static;
  }

  .eq-doc__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .eq-doc__toc {
    position: static;
  }

  .eq-principle__body {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 860px) {
  .eq-nav__toggle {
    display: flex;
  }

  .eq-nav__index {
    position: absolute;
    top: var(--eq-header-offset);
    left: 0;
    right: 0;
    height: calc(100dvh - var(--eq-header-offset));
    max-height: calc(100dvh - var(--eq-header-offset));
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--eq-paper);
    border-bottom: 1px solid var(--eq-line);
    padding: 8px 24px 20px;
    box-shadow: var(--eq-shadow);
    display: none;
  }

  .eq-nav__index.is-open {
    display: flex;
  }

  .eq-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .eq-nav__links a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--eq-line-soft);
  }

  .eq-nav__cta {
    margin-top: 14px;
    justify-content: center;
  }

  .eq-hero__toc {
    grid-template-columns: repeat(2, 1fr);
  }

  .eq-review,
  .eq-cookie__cats {
    grid-template-columns: 1fr;
  }

  .eq-review__col,
  .eq-cookie__cat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 0;
  }

  .eq-review__col:last-child,
  .eq-cookie__cat:last-child {
    border-bottom: none;
  }

  .eq-contact__grid {
    grid-template-columns: 1fr;
  }

  .eq-contact__cell {
    border-right: none;
    border-bottom: 1px solid var(--eq-line);
    padding: 22px 0;
  }

  .eq-contact__cell:last-child {
    border-bottom: none;
  }

  .eq-metricrow {
    grid-template-columns: 1fr;
  }

  .eq-metric {
    border-right: none;
    border-bottom: 1px solid var(--eq-line);
    padding: 18px 0;
  }

  .eq-metric:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .eq-container {
    padding: 0 16px;
  }

  .eq-footer__top {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .eq-footer__index {
    columns: 1;
  }

  body {
    font-size: 16px;
  }

  .eq-hero {
    min-height: 100dvh;
  }

  .eq-hero__inner {
    padding: 64px 0;
  }

  .eq-section {
    padding: 56px 0;
  }

  .eq-modhead {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .eq-rankitem,
  .eq-listrow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eq-rankitem__media,
  .eq-listrow__media {
    order: -1;
  }

  .eq-listrow__go {
    display: none;
  }

  .eq-principle {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .eq-ctaband {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .eq-prevnext {
    grid-template-columns: 1fr;
  }

  .eq-prevnext--next {
    text-align: left;
  }

  .eq-hero__toc {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eq-map__frame {
    height: 320px;
  }

  .eq-cookie__actions {
    width: 100%;
  }

  .eq-cookie__actions .eq-btn {
    flex: 1;
    min-width: 0;
    padding: 9px 8px;
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .eq-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
