@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
  --c-primary: #0c0c0c;
  --c-secondary: #151515;
  --c-accent: #e62e00;
  --c-bg: #161f27;
  --c-surface: #2b2222;
  --c-text: #eee4af;
  --c-text-muted: #e0bc0b;
  --c-btn: #f2be02;
  --c-btn-text: #fbfbf4;
  --c-border: #262121;
  --c-grad-start: #0c0c0c;
  --c-grad-end: #221a1a;
  --c-logo-text: #ffffff;
}
.nk-logo-text { color: var(--c-logo-text) !important; font-size: 28px !important; font-family: 'Black Ops One', sans-serif !important; }
[class*="_logo"] { font-family: 'Black Ops One', sans-serif !important; color: #ffffff !important; }


/* ─── Logo Icon ─── */
.nk-logo-icon {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Black Ops One', sans-serif !important;
}

.h15_root {
    background: var(--c-primary);
    border-top: 3px solid var(--c-accent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 8%, transparent);
    position: relative;
    top: auto;
    z-index: auto;
  }
  .h15_sroot { position: sticky; top: 0; z-index: 100; }
  .h15_cta-desktop { display: flex; align-items: center; gap: 8px; }
  .h15_mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h15_mrow { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h15_mbtn { flex: 1; justify-content: center; }
  .h15_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h15_nav a {
    color: color-mix(in srgb, var(--c-text) 75%, transparent);
    text-decoration: none;
    font-size: 0.881rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.147s, color 0.149s;
  }
  .h15_nav a:hover {
    background: color-mix(in srgb, var(--c-text) 7%, transparent);
    color: var(--c-text);
  }
  .h15_cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .h15_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h15_nav { display: none; }
    .h15_cta-desktop { display: none !important; }
    .h15_menu-btn { display: flex !important; }
  }

.xc12-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 350px;
  background: linear-gradient(136deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.033);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}
.xc12-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.xc12-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(92deg, rgba(0,0,0,0.525) 0%, rgba(0,0,0,0.076) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.xc12-glass {
  position: relative;
  z-index: 2;
  max-width: 442px;
  padding: 32px 32px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary, #1e3a8a) 70%, rgba(0,0,0,0.388));
  border: 1px solid rgba(255,255,255,0.069);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 36px rgba(0,0,0,0.402);
}
.xc12-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.xc12-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.773);
  line-height: 1.5;
  margin: 0 0 24px;
}
.xc12-cta {
  display: inline-block;
  padding: 13px 37px;
  border-radius: 1014px;
  background: var(--c-accent, #3b82f6);
  color: var(--c-bg, #fff);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.284);
  transition: box-shadow .25s ease, filter .18s;
}
.xc12-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #3b82f6) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #3b82f6) 38%, transparent);
}
@media (max-width: 768px) {
  .xc12-card {
    min-height: 336px;
    padding: 24px;
    justify-content: center;
  }
  .xc12-overlay {
    background: linear-gradient(184deg, rgba(0,0,0,0.305) 0%, rgba(0,0,0,0.732) 100%);
  }
  .xc12-glass { padding: 24px 22px; max-width: 100%; }
  .xc12-title { font-size: 22px; }
}

.by39-wrap { max-width: 886px; margin: 0 auto; }
  .by39-title { color: var(--c-text); margin: 0 0 21px; }
  .by39-p { font-size: 16px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .by39-list { margin: 28px 0; display: grid; gap: 10px; }
  .by39-row {
    display: grid;
    grid-template-columns: 236px 1fr;
    gap: 22px;
    padding: 16px 22px;
    border-radius: 14px;
    background: linear-gradient(133deg,
      var(--c-surface) 0%,
      color-mix(in srgb, var(--c-accent) 5%, var(--c-surface)) 100%);
    border: 1px solid var(--c-border);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
  }
  .by39-row:hover {
    border-color: color-mix(in srgb, var(--c-accent) 35%, var(--c-border));
    transform: translateX(3px);
    box-shadow: 0 10px 29px -16px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .by39-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.079em;
  }
  .by39-value {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text-muted);
  }
  @media (max-width: 640px) {
    .by39-row {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 14px 16px;
    }
    .by39-label { font-size: 12px; }
  }

.pn25-wrap { max-width: 739px; margin: 0 auto; text-align: center; }
  .pn25-title { color: var(--c-text); margin: 0 0 22px; }
  .pn25-p { font-size: 16px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; text-align: left; }
  .pn25-p:last-child { margin-bottom: 0; }

.ss85-wrap { max-width: 1080px; margin: 0 auto; }
  .ss85-intro { max-width: 744px; margin-bottom: 22px; }
  .ss85-title { color: var(--c-text); margin: 0 0 12px; }
  .ss85-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .ss85-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid var(--c-border); }
  .ss85-table { width: 100%; min-width: 762px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .ss85-table thead th { background: linear-gradient(132deg, var(--c-grad-start), var(--c-surface)); color: var(--c-text); text-align: left; padding: 18px 20px; font-size: 0.699rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; border-bottom: 1px solid var(--c-border); vertical-align: bottom; }
  .ss85-table thead th.ss85-best { background: linear-gradient(136deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 60%, var(--c-grad-end))); color: var(--c-bg); padding-top: 14px; }
  .ss85-best-badge { display: inline-block; background: var(--c-bg); color: var(--c-accent); font-size: 0.59rem; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.139em; margin-bottom: 8px; }
  .ss85-best-title { display: block; }
  .ss85-table tbody td { padding: 16px 20px; font-size: 15px; line-height: 1.55; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .ss85-table tbody td.ss85-best-cell { background: color-mix(in srgb, var(--c-accent) 8%, transparent); color: var(--c-text); font-weight: 600; border-left: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); border-right: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); }
  .ss85-table tbody tr:last-child td { border-bottom: none; }
  .ss85-table tbody tr:last-child td.ss85-best-cell { border-bottom: 2px solid var(--c-accent); }
  .ss85-table tbody td:first-child { color: var(--c-text); font-weight: 700; }
  .ss85-num { color: var(--c-accent); font-weight: 800; font-variant-numeric: tabular-nums; }
  .ss85-best-cell .ss85-num { color: var(--c-bg); background: var(--c-accent); padding: 2px 8px; border-radius: 4px; }

.qf40-wrap { max-width: 919px; margin: 0 auto; }
  .qf40-title { color: var(--c-text); margin: 0 0 18px; }
  .qf40-intro { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 22px; }
  .qf40-sec { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 12px; padding: 22px 27px; margin-bottom: 14px; }
  .qf40-sec:last-child { margin-bottom: 0; }
  .qf40-sh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.072rem; }
  .qf40-sp { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 10px; }
  .qf40-sp:last-child { margin-bottom: 0; }

.gf27-wrap { max-width: 960px; margin: 0 auto; }
  .gf27-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 29px 29px 29px;
    box-shadow: 0 16px 45px -22px rgba(0,0,0,0.335);
  }
  .gf27-title { color: var(--c-text); margin: 0 0 12px; }
  .gf27-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .gf27-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; }
  .gf27-card {
    border-radius: 12px;
    padding: 18px 21px 20px;
    background: linear-gradient(183deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    color: #fff;
  }
  .gf27-card-h3 { color: var(--c-accent); font-size: 14px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.059em; }
  .gf27-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.804); margin: 0; }

  .gf27-mid-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .gf27-panel {
    border-radius: 14px; padding: 21px 24px 24px;
    background: linear-gradient(131deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 52px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 23px;
  }
  .gf27-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .gf27-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.743); margin: 0 0 16px; }
  .gf27-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.768); margin: 16px 0 0; }

  .gf27-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gf27-bullet { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.021); border: 1px solid rgba(255,255,255,0.104); }
  .gf27-bullet-icon {
    flex: 0 0 29px; width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent); color: var(--c-bg);
  }
  .gf27-bullet-icon svg { width: 14px; height: 14px; }
  .gf27-bullet-text { flex: 1; color: rgba(255,255,255,0.902); font-size: 13px; line-height: 1.4; font-weight: 600; }

  .gf27-h3-light { color: var(--c-text); font-size: 19px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .gf27-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .gf27-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--c-bg);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    border-radius: 12px; overflow: hidden;
    margin: 0 0 18px; table-layout: fixed;
  }
  .gf27-table th, .gf27-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .gf27-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.119em; text-transform: uppercase;
    color: var(--c-bg);
    background: var(--c-accent);
    padding-top: 12px; padding-bottom: 12px;
  }
  .gf27-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .gf27-table tbody tr:last-child td { border-bottom: none; }
  .gf27-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--c-text) 3%, transparent); }
  .gf27-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 7%, transparent); }

  .gf27-cta-wrap { margin-top: 18px; }
  .gf27-cta {
    display: inline-block; padding: 12px 29px; border-radius: 1006px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.1em;
    box-shadow: 0 8px 21px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .gf27-cta:hover {
    filter: brightness(1.06); transform: translateY(-1px);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
      0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 768px) {
    .gf27-cards { grid-template-columns: 1fr; }
    .gf27-bullets { grid-template-columns: 1fr; }
    .gf27-table th, .gf27-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .gf27-outer { padding: 22px 18px; border-radius: 14px; }
    .gf27-panel { padding: 18px 16px; border-radius: 12px; }
  }

.lp82-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 353px;
  background: linear-gradient(132deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: 0 18px 51px rgba(0,0,0,0.41);
  display: flex;
  align-items: center;
}
.lp82-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp82-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(89deg, rgba(0,0,0,0.843) 0%, rgba(0,0,0,0.687) 35%, rgba(0,0,0,0.162) 70%, rgba(0,0,0,0.0) 100%);
  z-index: 1;
}
.lp82-content {
  position: relative; z-index: 2;
  padding: 48px 51px;
  max-width: 634px;
}
.lp82-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.559);
}
.lp82-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.855);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 474px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.42);
}
.lp82-cta-row {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
/* Variant 02 signature: clean solid-accent rectangular buttons,
   icon on the left, bold uppercase text. Hover halo borrows the brand
   accent so the glow always matches the button colour. */
.lp82-cta {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 15px 27px;
  border-radius: 12px;
  background: var(--c-accent, #f59e0b);
  color: var(--c-bg, var(--c-bg));
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.041em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .25s ease, filter .18s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.235);
}
.lp82-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.303);
}
.lp82-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .lp82-card { min-height: 329px; }
  .lp82-overlay {
    background: linear-gradient(183deg, rgba(0,0,0,0.512) 0%, rgba(0,0,0,0.816) 100%);
  }
  .lp82-content { padding: 33px 24px; max-width: 100%; }
  .lp82-title { font-size: 26px; }
  .lp82-cta-row { flex-wrap: wrap; }
  .lp82-cta { padding: 13px 16px; font-size: 12px; }
}

.hb56-wrap { max-width: 1071px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .hb56-intro { max-width: 833px; }
  .hb56-title { color: var(--c-text); margin: 0 0 14px; }
  .hb56-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .hb56-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .hb56-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 30px; position: relative; }
  .hb56-card::before { content: ''; position: absolute; top: -1px; left: 22px; right: 23px; height: 2px; background: var(--c-accent); border-radius: 0 0 2px 2px; opacity: 0.7; }
  .hb56-eyebrow { font-size: 0.67rem; color: var(--c-accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.144em; margin-bottom: 8px; }
  .hb56-h3 { color: var(--c-text); margin: 0 0 12px; font-size: 1.089rem; font-weight: 700; }
  .hb56-p { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; }
  .hb56-p:last-child { margin-bottom: 0; }
  .hb56-take { margin: 14px 0 0; padding: 16px 18px; background: color-mix(in srgb, var(--c-accent) 6%, transparent); border-radius: 10px; }
  .hb56-take-label { font-size: 0.676rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
  .hb56-take-text { font-size: 14px; line-height: 1.7; color: var(--c-text); margin: 0; }
  .hb56-bottom { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 29px 35px; }
  .hb56-bh3 { color: var(--c-text); margin: 0 0 10px; font-size: 1.171rem; font-weight: 700; }
  .hb56-bp { font-size: 14px; line-height: 1.75; color: var(--c-text-muted); margin: 0 0 18px; max-width: 793px; }
  .hb56-bcols { column-count: 2; column-gap: 45px; }
  .hb56-bcol-p { font-size: 14px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 14px; break-inside: avoid; }
  .hb56-bcol-p:last-child { margin-bottom: 0; }
  @media (max-width: 880px) { .hb56-row { grid-template-columns: 1fr; } .hb56-bcols { column-count: 1; } }

.zm84-wrap { max-width: 1110px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
  .zm84-intro { max-width: 805px; }
  .zm84-title { color: var(--c-text); margin: 0 0 14px; }
  .zm84-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .zm84-row { display: grid; grid-template-columns: 1fr 1fr; gap: 37px; }
  .zm84-col-h { font-size: 0.683rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.159em; margin: 0 0 14px; }
  .zm84-col-h-pro { color: var(--c-accent); }
  .zm84-col-h-con { color: var(--c-text); }
  .zm84-stack { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .zm84-pill { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: 1010px; font-size: 14px; line-height: 1.45; }
  .zm84-pill-pro { background: color-mix(in srgb, var(--c-accent) 14%, var(--c-surface)); color: var(--c-text); border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent); }
  .zm84-pill-con { background: var(--c-surface); color: var(--c-text-muted); border: 1px dashed color-mix(in srgb, var(--c-text-muted) 30%, var(--c-border)); }
  .zm84-pill svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; }
  .zm84-pill-pro svg { color: var(--c-accent); }
  .zm84-pill-con svg { color: var(--c-text-muted); }
  @media (max-width: 768px) { .zm84-row { grid-template-columns: 1fr; gap: 24px; } }

.lw59-wrap { max-width: 971px; margin: 0 auto; }
  .lw59-title { color: var(--c-text); margin: 0 0 18px; }
  .lw59-intro { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 24px; max-width: 729px; }
  .lw59-row { display: grid; grid-template-columns: 201px 1fr; gap: 41px; padding: 22px 0; border-top: 1px solid var(--c-border); }
  .lw59-row:last-child { border-bottom: 1px solid var(--c-border); }
  .lw59-sh3 { color: var(--c-accent); margin: 0; font-size: 0.871rem; text-transform: uppercase; letter-spacing: 0.059em; font-weight: 700; padding-top: 4px; }
  .lw59-col { min-width: 0; }
  .lw59-sp { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 10px; }
  .lw59-sp:last-child { margin-bottom: 0; }
  @media (max-width: 768px) { .lw59-row { grid-template-columns: 1fr; gap: 8px; } }

.pp40-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 323px;
  background: linear-gradient(139deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 2px solid color-mix(in srgb, var(--c-accent, #22c55e) 65%, transparent);
  box-shadow: 0 16px 50px rgba(0,0,0,0.404);
  display: flex;
  align-items: center;
}
.pp40-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pp40-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(89deg, rgba(0,0,0,0.797) 0%, rgba(0,0,0,0.527) 35%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.pp40-content {
  position: relative;
  z-index: 2;
  padding: 43px 50px;
  max-width: 598px;
}
.pp40-title {
  font-size: 31px;
  font-weight: 900;
  color: var(--c-accent, #facc15);
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.505);
}
.pp40-amount {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 25px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.507);
}
.pp40-cta {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 1029px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.312);
  transition: box-shadow .25s ease, filter .18s;
}
.pp40-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.229),
    0 10px 28px rgba(34,197,94,0.432);
}
@media (max-width: 768px) {
  .pp40-card { min-height: 315px; }
  .pp40-overlay {
    background: linear-gradient(177deg, rgba(0,0,0,0.448) 0%, rgba(0,0,0,0.89) 100%);
  }
  .pp40-content { padding: 28px 22px; max-width: 100%; }
  .pp40-title { font-size: 25px; }
  .pp40-amount { font-size: 15px; }
}

.ft12_footer { background: var(--c-primary); border-top: 1px solid var(--c-border); }
/* Top row — single "command bar": [logo] [nav+extra links] [payments] [18+].
   Payments migrated up from the bottom row so the entire actionable
   surface (links + payments + compliance badge) lives on one line; the
   bottom row shrinks to pure copyright + "play responsibly" text.
   `margin-left: auto` on the payments block pushes it (and the 18+
   badge right after it) to the right edge while the nav grows to fill
   whatever gap is left between logo and that group. */
.ft12_top { display: flex; align-items: center; gap: 0.494rem 1.257rem; padding: 14px 0; flex-wrap: wrap; }

/* Nav — primary multipage links followed by legal/extra links, both
   inline with pipe separators. `:empty` collapses the whole row on
   landing sites without any of those placeholders producing links. */
.ft12_nav { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
.ft12_nav:empty { display: none; }
.ft12_nav a { color: var(--c-text-muted); font-size: 0.763rem; text-decoration: none; padding: 0.243rem 0.752rem; border-right: 1px solid var(--c-border); transition: color 0.196s; white-space: nowrap; }
.ft12_nav a:first-child { padding-left: 0; }
.ft12_nav a:last-child { border-right: none; }
.ft12_nav a:hover { color: var(--c-accent); }

/* Payments inline with the nav row — smaller than default so they read
   as a compliance strip rather than a marketing showcase. Scoped
   override of .nk-pay-logo: height trimmed from 22→16 px, padding
   squeezed so ten pill badges still fit next to a full nav bar. */
.ft12_pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
.ft12_pay:empty { display: none; }
.ft12_pay .nk-pay-logo {
  height: 20px;
  max-width: 50px;
  padding: 4px 8px;
  border-radius: 5px;
}

.ft12_badge_row { display: flex; gap: 0.491rem; align-items: center; flex-shrink: 0; }

/* Bottom row — now just a thin compliance line (copyright +
   "play responsibly"). Centre-aligned for balance regardless of how
   wide the text happens to be after brand substitution. */
.ft12_bottom {
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 6px 20px; flex-wrap: wrap;
}
.ft12_legal { color: var(--c-text-muted); font-size: 0.718rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .ft12_top { gap: 0.491rem 0.745rem; }
  .ft12_pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  .ft12_badge_row { margin-left: auto; }
}
@media (max-width: 600px) {
  .ft12_top { flex-direction: column; align-items: flex-start; }
  .ft12_pay { justify-content: flex-start; }
  .ft12_badge_row { margin-left: 0; }
  .ft12_nav { flex: 1 1 100%; }
}

/* ── csb mobile-header policy (appended last, wins source-order) ── */
@media (max-width: 768px) {
  body [class*="cta-desktop"],
  body [class*="actions-desktop"],
  body [class*="btns-desktop"],
  body [class*="cta-wrap"],
  body [class*="login-actions"],
  body [class*="strip-actions"] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  body [class*="cta-desktop"] .nk-btn,
  body [class*="actions-desktop"] .nk-btn,
  body [class*="btns-desktop"] .nk-btn,
  body [class*="cta-wrap"] .nk-btn,
  body [class*="cta-desktop"] button,
  body [class*="actions-desktop"] button,
  body [class*="btns-desktop"] button,
  body [class*="cta-wrap"] button,
  body [class*="cta-desktop"] a,
  body [class*="actions-desktop"] a,
  body [class*="btns-desktop"] a,
  body [class*="cta-wrap"] a {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }
}
