:root {
  --tint1: rgba(30, 86, 214, 0.1);
}

:root {
  --ink: #290660;
  --ink2: #44526e;
  --ink3: #6b7893;
  --blue: #290660;
  --blue-d: #123b9c;
  --sky: #eef3fe;
  --line: #dde6f5;
  --line2: #eaf0fc;
  --orange: #290660;
  --orange-d: #290660;
  --white: #fff;
  --green: #0e9f6e;
  --amber: #b45309;
  /* --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace; */
  --r: 14px;
  --shadow: 0 10px 30px rgba(14, 27, 51, 0.08);
  --shadow2: 0 20px 50px rgba(14, 27, 51, 0.12);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Poppins", sans-serif;
  line-height: 1.24;
  font-weight: 700;
  color: var(--ink);
}

a {
  color: var(--blue);
  text-decoration: none;
}



img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 22px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.18s;
  cursor: pointer;
  border: 0;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn-o {
  background: var(--orange);
  color: #fff !important;
  box-shadow: 0 6px 18px #29066045;
}

.btn-o:hover {
  background: var(--orange-d);
  transform: translateY(-2px);
}

.btn-b {
  background: var(--blue);
  color: #fff !important;
}

.btn-b:hover {
  background: var(--blue-d);
}

.btn-ghost {
  border: 2px solid var(--line);
  color: var(--ink) !important;
  padding: 12px 26px;
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
  background: var(--sky);
}

/* ---------- breadcrumb ---------- */
.crumb {
  background: var(--sky);
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  padding: 10px 0;
  color: var(--ink2);
}

.crumb a {
  color: var(--ink2);
}

.crumb b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- hero ---------- */
.hero {
  padding: 60px 0 54px;
  background:
    radial-gradient(900px 420px at 84% -12%, #1e56d61a, transparent 62%),
    radial-gradient(620px 320px at -6% 112%, #1e56d61a, transparent 0%),
    var(--white);
  text-align: left;
  max-width: 100%;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 50px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--sky);
  border: 1px solid var(--line);
  padding: 7px 13px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.95rem, 3.6vw, 2.85rem);
  letter-spacing: -1.1px;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.answer {
  font-size: 1.045rem;
  color: var(--ink2);
  border-left: 4px solid var(--orange);
  padding: 2px 0 2px 18px;
  margin-bottom: 20px;
}

.answer strong {
  color: var(--ink);
  font-weight: 700;
}

.hero p.lede {
  font-size: 0.98rem;
  color: var(--ink2);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--ink3);
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tick {
  color: var(--green);
  font-weight: 800;
}

/* ---------- sample data panel ---------- */
.panel {
  background: #0b1428;
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  overflow: hidden;
  border: 1px solid #1b2a47;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  background: #111e3a;
  border-bottom: 1px solid #1b2a47;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
}

.panel-file {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #7e93bc;
  margin-left: 8px;
}

.panel-live {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.66rem;
  color: #37d399;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #37d399;
  animation: pl 1.8s infinite;
}

.btobmarket {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px !important;
  justify-content: flex-start !important;
}

@keyframes pl {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.code {
  padding: 15px;
  font-family: var(--mono);
  font-size: 0.735rem;
  line-height: 1.85;
  color: #c3d2ec;
  overflow-x: auto;
  white-space: pre-line;
  min-height: 280px;
}

.k {
  color: #79b8ff;
}

.s {
  color: #9ecbff;
}

.n {
  color: #f8b86c;
}

.b {
  color: #c792ea;
}

.c {
  color: #5c7099;
}

.panel-foot {
  padding: 11px 15px;
  border-top: 1px solid #1b2a47;
  background: #0e1a32;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #7e93bc;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- sections ---------- */
section {
  padding: 60px 0;
}

.alt {
  background: var(--sky);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark {
  background: linear-gradient(160deg, #0b1428, #132348);
  color: #c3d2ec;
}

.dark h2,
.dark h3 {
  color: #fff;
}

.shead {
  max-width: 900px;
  margin-bottom: 34px;
}

.shead.mid {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
}

.shead h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.shead p {
  color: var(--ink2);
  font-size: 1rem;
}

.dark .shead p {
  color: #93a7cc;
}

.prose p {
  color: var(--ink2);
  margin-bottom: 15px;
  max-width: 100%;
}

.prose h3 {
  font-size: 1.16rem;
  margin: 26px 0 10px;
}

.prose ul,
.prose ol {
  margin: 0 0 15px 22px;
  color: var(--ink2);
}

.prose li {
  margin-bottom: 7px;
}

/* ---------- key facts ---------- */
.facts {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--r);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}

.facts h2 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px 22px;
  font-size: 0.92rem;
}

.facts dt {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.facts dd {
  color: var(--ink2);
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1.1;
}

.stat span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink2);
  margin-top: 6px;
}

.stat i {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  color: var(--ink3);
  margin-top: 5px;
  font-family: var(--mono);
}

/* ---------- cards ---------- */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  transition: 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: #c6d8f7;
}

.card .ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  /* background: var(--sky); */
  /* border: 1px solid var(--line); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--ink2);
}

.card ul {
  margin: 11px 0 0 17px;
}

.card li {
  font-size: 0.85rem;
  color: var(--ink2);
  margin-bottom: 5px;
}

/* ---------- ICP persona ---------- */
.icp {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
}

.icp-top {
  padding: 17px 21px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.icp-top h3 {
  font-size: 1rem;
  margin: 0;
}

.icp-top span {
  font-size: 0.76rem;
  color: var(--ink3);
  font-family: var(--mono);
}

.icp-body {
  padding: 19px 21px;
}

.icp-row {
  margin-bottom: 13px;
}

.icp-row:last-child {
  margin-bottom: 0;
}

.icp-lbl {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 3px;
}

.icp-row p {
  font-size: 0.88rem;
  color: var(--ink2);
  margin: 0;
}

.kpi {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  background: #e7f7f0;
  color: #0a7a54;
  border: 1px solid #bfe9d8;
  padding: 4px 10px;
  border-radius: 7px;
  font-weight: 600;
}

/* ---------- tables ---------- */
.tbl-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.87rem;
  min-width: 620px;
}

caption {
  caption-side: top;
  text-align: left;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: var(--ink3);
  border-bottom: 1px solid var(--line);
  background: var(--sky);
}

th,
td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line2);
  vertical-align: top;
}

th {
  background: var(--sky);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

tr:last-child td {
  border-bottom: 0;
}

td code {
  font-family: var(--mono);
  font-size: 0.79rem;
  background: var(--sky);
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--blue-d);
}

.yes {
  color: var(--green);
  font-weight: 700;
}

.no {
  color: #c2410c;
  font-weight: 700;
}

/* ---------- chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 8px 15px;
  font-size: 0.83rem;
  color: var(--ink2);
  font-weight: 500;
}

.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.dark .chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #c3d2ec;
}

/* ---------- steps ---------- */
.steps {
  counter-reset: s;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 19px 21px;
}

.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  background: var(--sky);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.step p {
  font-size: 0.89rem;
  color: var(--ink2);
}

/* ---------- FAQ ---------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  max-width: 100%;
  margin: 0 auto;
}

.qa {
  border-bottom: 1px solid var(--line2);
}

.qa:last-child {
  border-bottom: 0;
}

.q {
  width: 100%;
  background: none;
  border: 0;
  padding: 17px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
}

.q:hover {
  background: var(--sky);
}

.q i {
  font-style: normal;
  font-size: 1.35rem;
  color: var(--blue);
  transition: 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.q[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.28s ease,
    padding 0.28s ease;
}

.a.on {
  max-height: 820px;
  padding: 0 22px 19px;
}

.a p {
  font-size: 0.92rem;
  color: var(--ink2);
  margin-bottom: 10px;
}

.a p:last-child {
  margin-bottom: 0;
}

.a ul {
  margin: 0 0 10px 20px;
}

.a li {
  font-size: 0.9rem;
  color: var(--ink2);
  margin-bottom: 5px;
}

/* ---------- CTA band ---------- */
.cta-row a.btn.btn-o {
  border: 1px solid white;
}

.band {
  background: #290660;
  color: #fff;
  padding: 52px 0;
  text-align: center;
}

.band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.band p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  margin: 0 auto 24px;
}

.band .cta-row {
  justify-content: center;
}

.band .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff !important;
  background: transparent;
}

.band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border-color: #fff;
}

.band small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

/* ---------- related ---------- */
.rel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rel a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px 19px;
  transition: 0.18s;
}

.rel a:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translateY(-2px);
}

.rel b {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.rel span {
  font-size: 0.82rem;
  color: var(--ink2);
}

/* ---------- byline / notes ---------- */
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  font-size: 0.81rem;
  color: var(--ink3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin-bottom: 34px;
}

.byline b {
  color: var(--ink);
}

.note {
  background: #fff8f3;
  border: 1px solid #fcd9bf;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 18px 21px;
}

.note h3 {
  font-size: 1rem;
  margin-bottom: 7px;
}

.note p {
  font-size: 0.89rem;
  color: var(--ink2);
  margin-bottom: 8px;
}

.note p:last-child {
  margin-bottom: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .stats,
  .grid4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid3,
  .grid2,
  .rel,
  .ftr-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .burger {
    display: block;
  }

  section {
    padding: 46px 0;
  }

  .facts dl {
    grid-template-columns: 1fr;
    gap: 3px 0;
  }

  .facts dt {
    margin-top: 9px;
  }
}

@media (max-width: 560px) {
  .stats,
  .grid4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0 38px;
  }

  .cta-row .btn {
    width: 100%;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step::before {
    width: 40px;
  }
}

.sl {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.sl li {
  position: relative;
  padding: 0 0 0 17px;
  margin-bottom: 9px;
  font-size: 0.93rem;
  color: var(--ink2);
  line-height: 1.62;
}

.sl li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.eng-fit {
  margin-top: 14px !important;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem !important;
  color: var(--ink3);
}

.eng-fit b {
  color: var(--ink);
}

.tldr {
  background: linear-gradient(180deg, var(--sky), #fff);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 50px;
}

.tldr h2 {
  font-size: 1.12rem;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.tldr ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tldr li {
  position: relative;
  padding: 0 0 0 19px;
  margin-bottom: 10px;
  font-size: 0.94rem;
  color: var(--ink2);
  line-height: 1.63;
}

.tldr li:before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 700;
}

.tldr li b {
  color: var(--ink);
}

.tldr-foot {
  margin: 15px 0 0 !important;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem !important;
  color: var(--ink3);
  font-family: "JetBrains Mono", monospace;
}

.case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 25px;
}

.case-top {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.case-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-d);
  background: var(--sky);
  border-radius: 5px;
  padding: 5px 9px;
  margin-bottom: 11px;
}

.case-top h3 {
  font-size: 1.06rem;
  margin: 0;
  line-height: 1.36;
}

.case-row {
  margin-bottom: 14px;
}

.case-row:last-child {
  margin-bottom: 0;
}

.case-lbl {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 5px;
}

.case-row p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink2);
  line-height: 1.66;
}

.case-row p b {
  color: var(--green);
}

.gloss {
  margin: 0;
}

.gl {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.gl:last-child {
  border-bottom: 0;
}

.gl dt {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 7px;
}

.gl dd {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink2);
  line-height: 1.68;
  max-width: 100%;
}

.lf {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 44px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 40px;
  box-shadow: 0 14px 44px rgba(14, 27, 51, 0.07);
}

.lf-copy h2 {
  font-size: 1.5rem;
  margin: 9px 0 12px;
  letter-spacing: -0.02em;
}

.lf-copy p {
  color: var(--ink2);
  font-size: 0.97rem;
  line-height: 1.68;
  margin: 0;
}

.lf-form {
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 24px;
}

.fr {
  margin-bottom: 14px;
}

.fr label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.fr input,
.fr textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}

.fr input:focus,
.fr textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.fr textarea {
  resize: vertical;
  line-height: 1.6;
}

.lf-fine {
  margin: 13px 0 0;
  font-size: 0.78rem;
  color: var(--ink3);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 900px) {
  .lf {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 24px;
  }
}

.h1-sub {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  line-height: 1.5;
  color: #290660b3;
  margin: -6px 0 20px;
  letter-spacing: -0.01em;
  max-width: 100%;
}

.cgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 22px;
}

.cg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px 20px;
}

.cg h3 {
  font-size: 0.84rem;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-d);
  margin: 0 0 13px;
}

.cg .chips {
  gap: 7px;
}

.cg .chip {
  font-size: 0.8rem;
  padding: 5px 10px;
}

@media (max-width: 640px) {
  .h1-sub {
    font-size: 1.02rem;
  }
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(14, 27, 51, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  transform: translateY(102%);
  transition: transform 0.28s ease;
  padding: 11px 0;
}

.sticky.on {
  transform: translateY(0);
}

.sticky .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sticky p {
  margin: 0;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.sticky p span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: #93a7cc;
  margin-top: 2px;
}

.sticky-act {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.sticky .btn {
  padding: 11px 19px;
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .sticky p span {
    display: none;
  }

  .sticky p {
    font-size: 0.84rem;
  }

  .sticky .btn {
    padding: 10px 15px;
    font-size: 0.83rem;
  }
}

.tbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 17px 0;
}

.tbar-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px 30px;
}

.tbar-in span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink2);
  white-space: nowrap;
}

.tbar-in span i {
  color: var(--green);
  font-style: normal;
  font-weight: 700;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--line);
}

.logos b {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 700;
}

.logo-slot {
  width: 104px;
  height: 30px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #9fb0cc;
  font-family: "JetBrains Mono", monospace;
}

.toc {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.toc-in {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 9px 0;
  scrollbar-width: none;
}

.toc-in::-webkit-scrollbar {
  display: none;
}

.toc-in a {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink2);
  padding: 7px 13px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s;
}

.toc-in a:hover {
  background: var(--sky);
  color: var(--blue-d);
}

.offer {
  background: linear-gradient(135deg, #0e1b33, #173463);
  border-radius: 18px;
  padding: 38px 40px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.offer h2 {
  color: #fff;
  font-size: 1.42rem;
  margin: 0 0 11px;
  letter-spacing: -0.02em;
}

.offer h2 em {
  color: #ffb27a;
  font-style: normal;
}

.offer p {
  color: #c3d2ec;
  font-size: 0.96rem;
  line-height: 1.68;
  margin: 0 0 17px;
  max-width: 62ch;
}

.offer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 22px;
}

.offer li {
  position: relative;
  padding-left: 21px;
  font-size: 0.89rem;
  color: #dce6f7;
  line-height: 1.55;
}

.offer li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.offer-side {
  text-align: center;
  flex-shrink: 0;
}

.offer-side .btn {
  width: 100%;
  margin-bottom: 11px;
}

.offer-side small {
  display: block;
  font-size: 0.75rem;
  color: #93a7cc;
  line-height: 1.55;
  max-width: 100%;
}

.micro {
  margin: 11px 0 0 !important;
  font-size: 0.83rem !important;
  color: var(--ink3);
}

.micro b {
  color: var(--ink2);
}

@media (max-width: 860px) {
  .offer {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 24px;
  }

  .offer ul {
    grid-template-columns: 1fr;
  }

  .offer-side small {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .hdr,
  .band,
  .ftr,
  .burger {
    display: none;
  }
}

.bred-service section.testimonial-section.padding-start {
  padding: 0;
}

.bred-service
  section.testimonial-section.padding-start
  .col-md-12.col-lg-12.pt-5 {
  padding-top: 25px !important;
  margin-bottom: 0;
}

.bred-service ul.d-flex.breadcrumb {
  max-width: 1300px !important;
  padding: 0 20px !important;
  margin: 0 auto;
  justify-content: flex-start;
}

.plat-section,
.awz-vt-section,
.mid-cta,
.trust-section,
.ai-section,
.ds-section,
.blog-section,
.bottom-section {
  display: none;
}

.bred-service .row.align-content-center {
    width: 80%;
}
html, body {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

.kicker {
    color: #290660;
}


.card ul {
    margin-left: 0;
    padding-left: 16px;
}

.bred-service {
    margin-bottom: 25px;
    max-width: 1300px;
    margin-inline: auto;
}

.dark .kicker {
    color: white;
}

.prose {
    max-width: 100% !important;
}

.micro, .byline, .tldr-foot {
    display: none; 
}