
/* shell */
.c_8fdf9{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.c_74418{ padding:var(--section-gap-dense,16px) 0 0; }
.c_34d71{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.c_8fdf9:not(.c_74418) > .c_34d71{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .c_8fdf9{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .c_74418{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header C */
/* Header C — two-row: brand row + full-width nav row */

/* Two-row total height on :root so body{padding-top:var(--hd-total)} can inherit it */
:root { --hd-total: calc(var(--hd-height, 54px) + 42px); }

.c_16722 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}

.c_16722.hd-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.c_3dfc9 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: var(--hd-height, 54px);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c_d8a66 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.c_398e0 { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

/* Second row nav */
.c_f47b8 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  border-top: 1px solid var(--border);
  height: 42px;
}

.c_522e7 {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 var(--space-3);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.c_522e7:hover { color: var(--fg); border-bottom-color: var(--primary); }

.c_40874 {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.c_40874:hover { opacity: .88; }

.c_d357c {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.c_fc988 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.c_fc988 span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.c_fc988.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c_fc988.hd-open span:nth-child(2) { opacity: 0; }
.c_fc988.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.c_67427 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

.c_67427[hidden] { display: none !important; }
.c_67427 .c_40874 { margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  .c_f47b8 { display: none; }
  .c_fc988 { display: flex; }
  :root { --hd-total: var(--hd-height, 54px); }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.c_477f7 {
  padding: var(--space-2) var(--space-5);
}

.c_d1e87 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.c_1010c {
  display: flex;
  align-items: center;
}

.c_c48bd {
  color: var(--fg);
  text-decoration: none;
}

.c_c48bd:hover {
  color: var(--skin-ac);
}

.c_987ed {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.c_59b73 {
  color: var(--fg);
}


/* banner F */
/* Banner F — carousel with arrows */

.c_5ea51 {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.c_5ea51::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.c_af6c2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.c_af6c2[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.c_e9a86 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c_94152 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
  /* horizontal padding reserves space so content never sits behind arrows */
  padding: var(--space-4) 72px;
  text-align: center;
}

.c_af6c2[data-dark="light"]  .c_94152 { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.c_af6c2[data-dark="medium"] .c_94152 { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.c_af6c2[data-dark="dark"]   .c_94152 { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

.c_94152[data-align="left"]   { align-items: flex-start; text-align: left; }
.c_94152[data-align="center"] { align-items: center;     text-align: center; }
.c_94152[data-align="right"]  { align-items: flex-end;   text-align: right; }

.c_57b26 {
  margin: 0;
  font-size: clamp(22px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.c_1152a {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.c_b5fe1 {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.c_2c805 {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.c_a9ed2 {
  display: inline-block;
  padding: 13px 36px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.c_a9ed2:hover { opacity: .9; }

.c_43f4e {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.c_43f4e:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.c_6ce20 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.c_3abba,
.c_c7e36 {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c_3abba:hover,
.c_c7e36:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_57b26 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_94152 { padding-left: 58px; padding-right: 58px; }
  .c_3abba, .c_c7e36 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_5ea51::before { padding-top: 90%; }
  .c_94152 { padding-left: 48px; padding-right: 48px; }
  .c_57b26 { font-size: clamp(17px, 5vw, 26px); }
  .c_a9ed2 { padding: 11px 28px; font-size: 14px; }
  .c_43f4e { padding: 9px 20px; font-size: 13px; }
  .c_b5fe1 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_3abba, .c_c7e36 { width: 34px; height: 34px; font-size: 20px; }
  .c_6ce20 { padding: 0 8px; }
}


/* hero D */
/* Hero D — eyebrow label + large h1 + intro */

.c_d8642 {}

.c_5e840 {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.c_7f91d {
  margin: 0 0 28px;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_bccac {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .c_5e840 { font-size: 11px; margin-bottom: 8px; }
  .c_7f91d { font-size: 28px; margin-bottom: 18px; }
}


/* overview C */
/* Overview C — prose + DL sidebar */

.c_37069 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--card-pad);
}

.c_9fb70 {
  min-width: 0;
}

.c_b5044 {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_d8ee2 {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.c_95a79 {
  margin: 0;
  min-width: 180px;
  max-width: 240px;
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.c_c8966 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

.c_c8966:first-child {
  margin-top: 0;
}

.c_ae0f1 {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .c_37069 { grid-template-columns: 1fr; }
  .c_95a79 { max-width: none; }
}


/* bonus B */
/* bonus B — vertical rows: label left, value right */

.c_4f668 {
  padding: var(--card-pad);
}

.c_1116f {
  margin: 0 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_4969b {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.c_657bd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  background: var(--bg);
  min-width: 0;
}

.c_657bd:first-child {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    color-mix(in srgb, var(--secondary) 10%, var(--surface)));
  border-color: var(--primary);
  padding: var(--space-4);
}

.c_63657 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
}

.c_b8af9 {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.4;
  text-align: right;
  overflow-wrap: break-word;
  min-width: 0;
}

.c_657bd:first-child .c_63657 {
  font-size: 12px;
}

.c_657bd:first-child .c_b8af9 {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--primary);
}

@media (max-width: 480px) {
  .c_657bd {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c_b8af9 { text-align: left; }
}


/* payments E */
/* Payments E — accordion details/summary */

.c_4710b {
  padding: var(--card-pad);
}

.c_6f869 {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_27cfa {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.c_ef1ca {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.c_89f75 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.c_89f75[open] { background: var(--bg); }

.c_b04ef {
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.c_b04ef::-webkit-details-marker { display: none; }

.c_b04ef::before {
  content: "+";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.c_89f75[open] > .c_b04ef::before { content: "\2212"; }

.c_472fa {
  padding: 0 var(--space-3) var(--space-2) calc(var(--space-3) + 20px + var(--space-2));
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c_472fa > div {
  display: flex;
  gap: var(--space-2);
}

.c_1c2cb {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  min-width: 110px;
}

.c_47307 {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}


/* lobby B */
/* Lobby B — name above image, bigger cards */

.c_ad5a3 {
  padding: var(--card-pad);
}

.c_694b7 {
  margin: 0 0 var(--space-4);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-align: var(--skin-align);
}

.c_49e10 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.c_a99ac {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-3);
  text-decoration: none;
  transition: border-color .15s;
}

.c_a99ac:hover {
  border-color: var(--primary);
}

.c_d7d2c {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  order: -1;
}

.c_9e55e {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.c_679de {
  display: inline-block;
  max-width: 260px;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.c_679de:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .c_49e10 { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: var(--space-3); }
  .c_a99ac { padding: var(--space-2); }
}


/* prose B */
/* Prose B — wide, generous spacing */

.c_e61e9 {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.c_2cc11 {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.c_94aa6 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.c_33ddc {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.c_56ecb {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.c_3c8c9 {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.c_603f7 {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.c_f9baa {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.c_61f2e {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.c_c9863 {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.c_9fa93 {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* faq A */
.c_a3932 {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.c_a3932>* {
  position: relative;
}

.c_70073 {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.c_fba8e {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.c_f4de0 {
  border-bottom: 1px solid var(--border);
}

.c_f4de0:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.c_e4118 {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.c_e4118:hover {
  color: var(--brand);
}

.c_e4118::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.c_e4118[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.c_4ac05 {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* rg C */
/* RG C — card grid of help sites + helpline footer */

.c_aafde {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.c_9082c {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.c_a7176 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.c_e6cd6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-decoration: none;
  transition: border-color .15s;
}

.c_e6cd6:hover {
  border-color: var(--primary);
}

.c_5e882 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.c_d8e52 {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c_5d67c {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.c_c4fa7 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

.c_1dbc5 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.c_1dbc5 > div:first-child {
  flex: 1;
  min-width: 0;
}

.c_fddaf {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.c_a9f90 {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.c_90236 {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

.c_cb7b9 {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.c_cb7b9:hover { color: var(--primary); }

.c_a375e {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.c_9f06f {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .c_1dbc5 { flex-direction: column; }
  .c_90236 { flex-direction: row; flex-wrap: wrap; }
}

