@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap");

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

:root {
  --c-navy: #0f1923;
  --c-navy2: #1a2d42;
  --c-navy3: #243852;
  --c-gold: #c9922a;
  --c-gold2: #e8b84b;
  --c-gold-light: #f5e6c8;
  --c-white: #ffffff;
  --c-bg: #f7f6f2;
  --c-bg2: #efede8;
  --c-border: #dddad4;
  --c-border2: #ccc9c2;
  --c-text: #1a1a1a;
  --c-text2: #3d4a5c;
  --c-text3: #6b7580;
  --c-green: #1e6b45;
  --c-green-light: #e8f5ee;
  --c-red: #c0392b;
  --c-red-light: #fdecea;
  --c-amber: #d97706;
  --c-amber-light: #fef3c7;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

._k2x9m {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
._k2x9m--wide {
  max-width: 1280px;
}
._k2x9m--narrow {
  max-width: 760px;
}
._sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* TOP BAR */
._t8b3v {
  background: var(--c-navy);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  padding: 6px 0;
}
._t8b3v ._k2x9m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
._t8b3v-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
._t8b3v-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
._badge18 {
  background: var(--c-gold);
  color: var(--c-navy);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

/* HEADER */
._h7w4r {
  background: var(--c-white);
  border-bottom: 2px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}
._h7w4r ._k2x9m {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
._h7w4r-logo {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--c-navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
._h7w4r-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}
._ft1q3-brand-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: block;
}
._ft1q3-brand-logo {
  display: inline-flex;
  margin-bottom: 4px;
}

/* NAV */
._n4j6q {
  display: flex;
  align-items: center;
  gap: 2px;
}
._n4j6q a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text2);
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  transition:
    color 0.15s,
    background 0.15s;
  white-space: nowrap;
}
._n4j6q a:hover {
  color: var(--c-navy);
  background: var(--c-bg);
}
._n4j6q a._actv {
  color: var(--c-navy);
  font-weight: 600;
}
._n4j6q-rg {
  background: var(--c-green) !important;
  color: var(--c-white) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  margin-left: 6px;
  font-size: 13px !important;
}
._n4j6q-rg:hover {
  opacity: 0.9;
  background: var(--c-green) !important;
}

/* HAMBURGER */
._hbg5z {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
._hbg5z:hover {
  background: var(--c-bg);
}
._hbg5z span {
  display: block;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
  transform-origin: center;
}
._hbg5z._open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
._hbg5z._open span:nth-child(2) {
  opacity: 0;
}
._hbg5z._open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
._mob8n {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(15, 25, 35, 0.55);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
._mob8n._open {
  opacity: 1;
  pointer-events: all;
}
._mob8n-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: var(--c-white);
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
}
._mob8n._open ._mob8n-panel {
  transform: translateX(0);
}
._mob8n-panel a {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-text2);
  padding: 13px 0;
  border-bottom: 1px solid var(--c-border);
  display: block;
  transition: color 0.15s;
}
._mob8n-panel a:hover,
._mob8n-panel a._actv {
  color: var(--c-navy);
}
._mob8n-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-bg2);
  font-size: 20px;
  color: var(--c-text3);
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
._mob8n-close:hover {
  background: var(--c-border);
}

/* PAGE HERO */
._ph2k7 {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
._ph2k7::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--c-gold) 0%,
    var(--c-gold2) 50%,
    var(--c-gold) 100%
  );
}
._ph2k7-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
._ph2k7-eyebrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-gold);
}
._ph2k7 h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 620px;
}
._ph2k7 > ._k2x9m > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  line-height: 1.7;
}
._bc2m7 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
._bc2m7 a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.15s;
}
._bc2m7 a:hover {
  color: rgba(255, 255, 255, 0.8);
}
._bc2m7-sep {
  color: rgba(255, 255, 255, 0.2);
}

/* HOME HERO */
._hh3z1 {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
._hh3z1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--c-gold) 0%,
    var(--c-gold2) 50%,
    var(--c-gold) 100%
  );
}
._hh3z1-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}
._hh3z1-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold2);
  margin-bottom: 16px;
}
._hh3z1 h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 18px;
}
._hh3z1 h1 em {
  font-style: italic;
  color: var(--c-gold2);
}
._hh3z1-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 28px;
}
._hh3z1-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
._hh3z1-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-gold2);
  border: 1px solid rgba(201, 146, 42, 0.4);
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(201, 146, 42, 0.08);
}
._hh3z1-stats {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
._hh3z1-stat {
  text-align: center;
  padding: 4px;
}
._hh3z1-stat-n {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--c-gold2);
  line-height: 1;
  margin-bottom: 6px;
}
._hh3z1-stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* SECTIONS */
._s9p2w {
  padding: 64px 0;
}
._s9p2w--alt {
  background: var(--c-white);
}
._s9p2w--dark {
  background: var(--c-navy);
  color: var(--c-white);
}
._s9p2w--tint {
  background: var(--c-bg2);
}

._sh6m3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
._sh6m3-left {
  max-width: 540px;
}
._sh6m3-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
}
._sh6m3 h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.25;
}
._s9p2w--dark ._sh6m3 h2 {
  color: var(--c-white);
}
._sh6m3 p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--c-text3);
  line-height: 1.65;
}
._s9p2w--dark ._sh6m3 p {
  color: rgba(255, 255, 255, 0.55);
}

/* PLATFORM CARDS */
._pg4v1 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

._pc3r8 {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.22s,
    transform 0.22s;
}
._pc3r8:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
._pc3r8-inner {
  display: grid;
  grid-template-columns: 260px 1fr 160px;
}
._pc3r8-aside {
  background: var(--c-navy);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
._pc3r8-logo-wrap {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
}
._pc3r8-logo-wrap img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}
._pc3r8-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
._pc3r8-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
._pc3r8-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
._pc3r8-link {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.18s;
  margin-top: auto;
  letter-spacing: 0.01em;
}
._pc3r8-link:hover {
  background: var(--c-gold2);
}
._pc3r8-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--c-border);
}
._pc3r8-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 2px;
}
._pc3r8-desc {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.65;
}
._pc3r8-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 14px;
}
._pc3r8-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text2);
  line-height: 1.4;
}
._pc3r8-feat::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--c-green-light);
  border: 1.5px solid var(--c-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%231e6b45' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
._pc3r8-rg {
  background: var(--c-green-light);
  border: 1px solid rgba(30, 107, 69, 0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--c-green);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
._pc3r8-score-col {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
._pc3r8-score-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text3);
}
._pc3r8-score {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1;
}
._pc3r8-score span {
  font-size: 18px;
  color: var(--c-text3);
}
._pc3r8-stars {
  color: var(--c-gold);
  font-size: 15px;
  letter-spacing: 1px;
}
._pc3r8-score-note {
  font-size: 11px;
  color: var(--c-text3);
  line-height: 1.4;
}

/* WHY CARDS */
._wc7f2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
._wc7f2-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 0.2s;
}
._wc7f2-item:hover {
  box-shadow: var(--shadow-sm);
}
._wc7f2-icon {
  width: 42px;
  height: 42px;
  background: var(--c-navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 19px;
}
._wc7f2-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 7px;
}
._wc7f2-item p {
  font-size: 13px;
  color: var(--c-text3);
  line-height: 1.6;
}

/* RG BANNER */
._rb5d9 {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy2) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
._rb5d9-text h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 7px;
}
._rb5d9-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
  line-height: 1.6;
}
._rb5d9-orgs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
._rb5d9-org {
  background: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 7px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 88px;
  transition: opacity 0.15s;
}
._rb5d9-org:hover {
  opacity: 0.85;
}
._rb5d9-org img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
}

/* METHODOLOGY */
._mt6h4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
._mt6h4-item {
  background: var(--c-white);
  padding: 22px;
}
._mt6h4-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 8px;
}
._mt6h4-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 5px;
}
._mt6h4-item p {
  font-size: 12px;
  color: var(--c-text3);
  line-height: 1.55;
}

/* FAQ */
._fq8a2 {
  max-width: 700px;
  margin: 0 auto;
}
._fq8a2-item {
  border-bottom: 1px solid var(--c-border);
}
._fq8a2-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
}
._fq8a2-q:hover {
  color: var(--c-gold);
}
._fq8a2-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--c-text3);
  transition:
    transform 0.22s,
    background 0.18s;
}
._fq8a2-item._open ._fq8a2-icon {
  transform: rotate(45deg);
  background: var(--c-navy);
  color: var(--c-white);
}
._fq8a2-a {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.7;
  padding-bottom: 17px;
  display: none;
}
._fq8a2-item._open ._fq8a2-a {
  display: block;
}

/* SUPPORT CARDS */
._sp9c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 16px;
}
._sp9c6-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
._sp9c6-item:hover {
  box-shadow: var(--shadow-sm);
}
._sp9c6-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
._sp9c6-logo img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
}
._sp9c6-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 5px;
}
._sp9c6-item p {
  font-size: 12px;
  color: var(--c-text3);
  line-height: 1.55;
  margin-bottom: 12px;
}
._sp9c6-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  border: 1.5px solid var(--c-navy);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  transition:
    background 0.18s,
    color 0.18s;
}
._sp9c6-link:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

/* RG PAGE */
._rg4p7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
._rg4p7-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
}
._rg4p7-icon {
  font-size: 26px;
  margin-bottom: 12px;
}
._rg4p7-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 7px;
}
._rg4p7-item p {
  font-size: 13px;
  color: var(--c-text3);
  line-height: 1.6;
}
._rg4p7-item ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
._rg4p7-item li {
  font-size: 13px;
  color: var(--c-text2);
  padding-left: 16px;
  position: relative;
}
._rg4p7-item li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-size: 11px;
  top: 1px;
}

/* ABOUT */
._ab3m5 {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
._ab3m5-main h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 24px 0 8px;
}
._ab3m5-main h3:first-child {
  margin-top: 0;
}
._ab3m5-main p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.75;
}
._ab3m5-side {
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 88px;
}
._ab3m5-side h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}
._ab3m5-dolist {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
._ab3m5-do,
._ab3m5-dont {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-text2);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  line-height: 1.45;
}
._ab3m5-do {
  background: var(--c-green-light);
}
._ab3m5-dont {
  background: var(--c-red-light);
}
._ab3m5-do::before {
  content: "✓";
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
}
._ab3m5-dont::before {
  content: "✗";
  color: var(--c-red);
  font-weight: 700;
  flex-shrink: 0;
}

/* LEGAL */
._lg6n9 {
  max-width: 760px;
  margin: 0 auto;
}
._lg6n9 h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-navy);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border);
}
._lg6n9 h2:first-child {
  margin-top: 0;
}
._lg6n9 h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 20px 0 7px;
}
._lg6n9 p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.75;
  margin-bottom: 12px;
}
._lg6n9 ul {
  margin: 8px 0 16px 20px;
}
._lg6n9 ul li {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.7;
  list-style: disc;
  padding: 2px 0;
}
._lg6n9 a {
  color: var(--c-navy);
  text-decoration: underline;
}
._lg6n9 a:hover {
  color: var(--c-gold);
}
._lg6n9 table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px;
}
._lg6n9 th {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
._lg6n9 td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text2);
}
._lg6n9 tr:nth-child(even) td {
  background: var(--c-bg2);
}

/* COOKIE TOGGLE */
._ct2p8 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
._ct2p8:last-child {
  border-bottom: none;
}
._ct2p8-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 3px;
}
._ct2p8-desc {
  font-size: 12px;
  color: var(--c-text3);
  line-height: 1.5;
}
._ct2p8-sw {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
._ct2p8-sw input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
._ct2p8-sw-track {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: var(--c-border2);
  cursor: pointer;
  transition: background 0.2s;
}
._ct2p8-sw-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
._ct2p8-sw input:checked + ._ct2p8-sw-track {
  background: var(--c-navy);
}
._ct2p8-sw input:checked + ._ct2p8-sw-track::after {
  transform: translateX(20px);
}
._ct2p8-sw input:disabled + ._ct2p8-sw-track {
  opacity: 0.5;
  cursor: not-allowed;
}

/* FOOTER */
._ft1q3 {
  background: var(--c-navy);
  color: var(--c-white);
}
._ft1q3-top {
  padding: 48px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
._ft1q3-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
._ft1q3-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 270px;
}
._ft1q3-brand-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
._ft1q3-brand-icon {
  width: 30px;
  height: 30px;
  background: var(--c-white);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._ft1q3-brand-icon span {
  color: var(--c-navy);
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-sans);
}
._ft1q3-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}
._ft1q3-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  padding: 3px 0;
  transition: color 0.15s;
}
._ft1q3-col a:hover {
  color: var(--c-white);
}
._ft1q3-rg {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
._ft1q3-rg-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
._ft1q3-rg-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
._ft1q3-rg-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
._ft1q3-rg-logo {
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 95px;
  transition: opacity 0.15s;
}
._ft1q3-rg-logo:hover {
  opacity: 0.85;
}
._ft1q3-rg-logo img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}
._ft1q3-bottom {
  padding: 18px 0;
}
._ft1q3-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
._ft1q3-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 660px;
}
._ft1q3-badge18 {
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 4px;
  flex-shrink: 0;
}
._ft1q3-email {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
}
._ft1q3-email a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

/* AGE GATE */
._ag7v0 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 18, 28, 0.93);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity 0.3s;
}
._ag7v0._hidden {
  opacity: 0;
  pointer-events: none;
}
._ag7v0-box {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
._ag7v0._hidden ._ag7v0-box {
  transform: translateY(-16px);
}
._ag7v0-head {
  background: var(--c-navy);
  padding: 28px 28px 22px;
  text-align: center;
}
._ag7v0-head-badge {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 28px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
._ag7v0-head h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--c-white);
  font-weight: 600;
}
._ag7v0-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 5px;
}
._ag7v0-body {
  padding: 24px 28px;
  text-align: center;
}
._ag7v0-body p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.65;
  margin-bottom: 18px;
}
._ag7v0-btns {
  display: flex;
  gap: 10px;
}
._ag7v0-yes {
  flex: 1;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  font-family: inherit;
}
._ag7v0-yes:hover {
  background: var(--c-navy2);
}
._ag7v0-no {
  flex: 1;
  background: transparent;
  color: var(--c-text3);
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-border);
  cursor: pointer;
  transition:
    border-color 0.18s,
    color 0.18s;
  font-family: inherit;
}
._ag7v0-no:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
._ag7v0-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--c-text3);
}

/* COOKIE BANNER */
._cb5x2 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--c-navy);
  border-top: 3px solid var(--c-gold);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
._cb5x2._visible {
  transform: translateY(0);
}
._cb5x2-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
._cb5x2 p {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  min-width: 240px;
}
._cb5x2 p a {
  color: var(--c-gold2);
  text-decoration: underline;
}
._cb5x2-btns {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
._cb5x2-accept {
  background: var(--c-gold);
  color: var(--c-navy);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
}
._cb5x2-accept:hover {
  background: var(--c-gold2);
}
._cb5x2-pref {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.18s,
    color 0.18s;
}
._cb5x2-pref:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--c-white);
}

/* PREF MODAL */
._pm3y6 {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(10, 18, 28, 0.8);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
._pm3y6._open {
  display: flex;
}
._pm3y6-box {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
._pm3y6-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  background: var(--c-white);
}
._pm3y6-head h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
}
._pm3y6-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--c-text3);
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.15s;
}
._pm3y6-close:hover {
  background: var(--c-border);
}
._pm3y6-body {
  padding: 16px 22px;
}
._pm3y6-body > p {
  font-size: 13px;
  color: var(--c-text3);
  margin-bottom: 14px;
}
._pm3y6-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--c-border);
  display: flex;
  gap: 9px;
  justify-content: flex-end;
  position: sticky;
  bottom: 0;
  background: var(--c-white);
}
._pm3y6-save {
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
._pm3y6-all {
  background: transparent;
  color: var(--c-text3);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s;
}
._pm3y6-all:hover {
  border-color: var(--c-navy);
  color: var(--c-navy);
}

/* INFO BOX */
._ib9x4 {
  background: var(--c-amber-light);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--c-text2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
._ib9x4-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* DISCLAIMER BAR */
._db1r5 {
  background: var(--c-bg2);
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
}
._db1r5 p {
  font-size: 11px;
  color: var(--c-text3);
  text-align: center;
  line-height: 1.6;
}

/* DIVIDER */
._dv4h9 {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 36px 0;
}

/* TWO / THREE COLS */
._tc6q3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
._th3c8 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* BUTTONS */
._btn-p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--c-navy);
  color: var(--c-white);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.18s;
  text-decoration: none;
}
._btn-p:hover {
  background: var(--c-navy2);
  color: var(--c-white);
}
._btn-o {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--c-navy);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-navy);
  cursor: pointer;
  font-family: inherit;
  transition:
    background 0.18s,
    color 0.18s;
  text-decoration: none;
}
._btn-o:hover {
  background: var(--c-navy);
  color: var(--c-white);
}

/* NOTICE BAR */
._nt7k2 {
  background: var(--c-navy);
  padding: 9px 0;
}
._nt7k2 p {
  font-size: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
}
._nt7k2 strong {
  color: var(--c-gold2);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  ._hh3z1-inner {
    grid-template-columns: 1fr;
  }
  ._hh3z1-stats {
    display: none;
  }
  ._pc3r8-inner {
    grid-template-columns: 1fr;
  }
  ._pc3r8-aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  ._pc3r8-logo-wrap {
    width: auto;
    min-width: 110px;
  }
  ._pc3r8-score-col {
    border-left: none;
    border-top: 1px solid var(--c-border);
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 22px;
    gap: 16px;
  }
  ._ft1q3-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  ._ab3m5 {
    grid-template-columns: 1fr;
  }
  ._tc6q3 {
    grid-template-columns: 1fr;
  }
  ._th3c8 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  ._h7w4r ._n4j6q {
    display: none;
  }
  ._mob8n-panel ._n4j6q {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  ._hbg5z {
    display: flex;
  }
  ._mob8n {
    display: block;
  }
  ._k2x9m {
    padding: 0 16px;
  }
  ._s9p2w {
    padding: 40px 0;
  }
  ._ph2k7 {
    padding: 36px 0;
  }
  ._hh3z1 {
    padding: 44px 0 36px;
  }
  ._ft1q3-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  ._ft1q3-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  ._rb5d9 {
    padding: 22px;
  }
  ._pc3r8-features {
    grid-template-columns: 1fr;
  }
  ._th3c8 {
    grid-template-columns: 1fr;
  }
  ._wc7f2 {
    grid-template-columns: 1fr 1fr;
  }
  ._mt6h4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  ._wc7f2 {
    grid-template-columns: 1fr;
  }
  ._mt6h4 {
    grid-template-columns: 1fr;
  }
  ._ag7v0-btns {
    flex-direction: column;
  }
  ._cb5x2-btns {
    width: 100%;
  }
  ._cb5x2-accept,
  ._cb5x2-pref {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  ._t8b3v-left span:not(._badge18) {
    display: none;
  }
  ._sp9c6 {
    grid-template-columns: 1fr 1fr;
  }
}
