/* =============================================================
   Arbitrail — cxas.css
   Page-specific styles for cxas.html.
   Common styles live in global.css.
   ============================================================= */

.lp-hero {
  padding: 130px 0 70px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--lp-soft-bg) 0%, transparent 60%),
    var(--bg);
  position: relative; overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, var(--lp-dot-1) 1.4px, transparent 2px),
    radial-gradient(circle, var(--lp-dot-2) 1.2px, transparent 1.8px);
  background-size: 89px 71px, 113px 97px;
  background-position: 0 0, 47px 31px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}

.lp-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--lp-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 26px;
}

.lp-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lp-color);
  box-shadow: 0 0 0 3px var(--lp-soft);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--text);
  margin: 0 0 18px;
  text-wrap: balance;
  padding-bottom: .08em;
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-color);
}

.lp-hero p {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 680px;
  margin: 0 auto 30px;
}

.lp-hero-cta {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.lp-hero-cta .btn-primary-xl { background: var(--lp-color); }

.lp-hero-cta .btn-primary-xl:hover { background: var(--lp-color); filter: brightness(1.08); }

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lp-stat { text-align: center; position: relative; padding: 0 12px; }

.lp-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 28px;
  background: var(--line);
}

.lp-stat-num {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--lp-color);
}

.lp-stat-l {
  display: block;
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 500;
}

.lp-details {
  padding: 100px 0;
  background: var(--bg-2);
}

.lp-details-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
}

.lp-details-hd {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}

.lp-details-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 12px;
}

.lp-details-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.15;
  text-wrap: balance;
}

.lp-details-hd p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
}

.lp-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.lp-cap {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s, transform .25s;
}

.lp-cap:hover {
  border-color: var(--lp-border);
  transform: translateY(-1px);
}

.lp-cap-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--lp-soft);
  color: var(--lp-color);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 800;
  letter-spacing: -.02em;
}

.lp-cap-name {
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -.005em;
}

.lp-cap-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.lp-challenges {
  padding: 100px 0;
  background: var(--bg);
}

.lp-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.lp-challenge {
  position: relative;
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  overflow: hidden;
}

.lp-challenge::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--lp-color);
  opacity: .85;
}

.lp-challenge:hover {
  border-color: var(--lp-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.lp-challenge-num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em;
  color: var(--lp-color);
  margin-bottom: 10px;
}

.lp-challenge h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.005em;
  line-height: 1.3;
}

.lp-challenge p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}

.lp-challenge-fix {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--lp-color);
  font-weight: 600;
}

.lp-process {
  padding: 100px 0;
  background: var(--bg-2);
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 24px;
  position: relative;
}

.lp-step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .25s, transform .25s;
}

.lp-step:hover {
  border-color: var(--lp-border);
  transform: translateY(-2px);
}

.lp-step-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--lp-color);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px var(--lp-soft-bg);
}

.lp-step h4 {
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.005em;
}

.lp-step p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.lp-cta {
  padding: 90px 0 110px;
  background: var(--bg);
}

.lp-cta-card {
  max-width: 880px; margin: 0 auto;
  padding: 56px 40px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.lp-cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 0%, var(--lp-glow), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 100%, var(--lp-glow), transparent 55%);
  pointer-events: none; opacity: .55;
}

.lp-cta-card > * { position: relative; z-index: 1; }

.lp-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}

.lp-cta-card h2 em {
  font-style: normal;
  color: var(--lp-color-light);
}

.lp-cta-card p {
  font-size: 15.5px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 560px;
}

.lp-cta-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 22px;
}

.lp-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 600;
  transition: filter .2s, transform .2s;
}

.lp-cta-primary:hover { filter: brightness(1.08); transform: translateY(-2px); }

.lp-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 500;
  transition: background .2s, border-color .2s;
}

.lp-cta-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.32); }

.lp-cta-trust {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.55);
}

.lp-cta-trust span::before {
  content: '✓ '; color: var(--lp-color-light); font-weight: 700;
}

@media (max-width: 1024px) {
  .lp-process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .lp-stats { grid-template-columns: 1fr 1fr; gap: 14px 0; }
  .lp-stat:nth-child(2)::after { display: none; }
  .lp-cap-grid { grid-template-columns: 1fr; }
  .lp-challenges-grid { grid-template-columns: 1fr; }
  .lp-process-grid { grid-template-columns: 1fr; }
  .lp-cta-card { padding: 40px 24px; }
}

.lp-talk {
  padding: 100px 0 110px;
  background: var(--bg-2);
}

.lp-talk-hd {
  text-align: center; max-width: 720px; margin: 0 auto 48px;
  padding: 0 24px;
}

.lp-talk-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--lp-soft);
  border: 1px solid var(--lp-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 22px;
}

.lp-talk-hd h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.1;
  text-wrap: balance;
}

.lp-talk-hd h2 em { font-style: normal; color: var(--lp-color); }

.lp-talk-hd p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
}

.lp-talk-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px;
}

.lp-form {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.lp-form h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.lp-form-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.lp-field {
  margin-bottom: 16px;
  display: flex; flex-direction: column;
  gap: 6px;
}

.lp-field label {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  color: var(--text);
}

.lp-field label .req { color: #F472B6; margin-left: 2px; }

.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.lp-field textarea { min-height: 110px; resize: vertical; }

.lp-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B7C9B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--lp-color);
  box-shadow: 0 0 0 3px var(--lp-soft);
}

.lp-field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.lp-honeypot {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}

.lp-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 600;
  cursor: pointer;
  transition: filter .2s, transform .2s;
  margin-top: 8px;
}

.lp-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }

.lp-form-fineprint {
  font-size: 11.5px;
  color: var(--text-3);
  margin-top: 12px;
  text-align: center;
}

.lp-form.sent .lp-form-fields { display: none; }

.lp-form-success {
  display: none; text-align: center; padding: 40px 16px;
}

.lp-form.sent .lp-form-success { display: block; }

.lp-form-success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.lp-form-success-icon svg {
  width: 28px; height: 28px;
  stroke: currentColor; stroke-width: 2.4;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.lp-form-success h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}

.lp-form-success p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

.lp-side {
  display: flex; flex-direction: column; gap: 16px;
}

.lp-side-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.lp-side-card.dark {
  background: var(--ink);
  border-color: transparent;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.lp-side-card.dark::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 100% 0%, var(--lp-glow), transparent 60%);
  pointer-events: none;
}

.lp-side-card.dark > * { position: relative; z-index: 1; }

.lp-side-eyebrow {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-color);
  margin-bottom: 12px;
}

.lp-side-card.dark .lp-side-eyebrow { color: var(--lp-color-light); }

.lp-side-card h4 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.lp-side-card.dark h4 { color: #fff; }

.lp-side-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.lp-side-card.dark p { color: rgba(255,255,255,.7); }

.lp-side-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: var(--lp-color);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13.5px; font-weight: 600;
  transition: filter .2s, transform .2s;
}

.lp-side-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

.lp-side-card.dark .lp-side-cta { background: #fff; color: var(--ink); }

.lp-info-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.lp-info-row:first-of-type { border-top: none; padding-top: 0; }

.lp-info-row svg {
  width: 16px; height: 16px;
  color: var(--text-3);
  flex-shrink: 0;
}

.lp-info-row a { color: var(--text); font-weight: 600; }

.lp-info-row a:hover { color: var(--lp-color); }

.lp-info-row span { color: var(--text-2); }

@media (max-width: 768px) {
  .lp-talk-grid { grid-template-columns: 1fr; }
  .lp-field-row { grid-template-columns: 1fr; }
  .lp-form { padding: 28px 22px; }
}

.lp-stats .lp-stat:first-child .lp-stat-num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
}

.lp-trust {
  margin: 36px auto 0;
  max-width: 880px; text-align: center;
  padding: 0 24px;
}

.lp-trust-label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 14px;
}

.lp-trust-row {
  display: flex; flex-wrap: nowrap;
  align-items: center; justify-content: center;
  gap: 32px; overflow-x: auto;
}

.lp-trust-row .client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 26px; flex-shrink: 0;
  filter: grayscale(100%); opacity: 0.55;
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}

.lp-trust-row .client-logo:hover { filter: grayscale(0%); opacity: 1; }

.lp-trust-row .client-logo svg,
.lp-trust-row .client-logo img {
  height: 20px; width: auto; max-width: 110px; display: block;
}

.lp-trust-row .client-logo svg[viewBox="0 0 94 32"] { height: 24px; }

@media (min-width: 1080px) { .lp-cap-grid { grid-template-columns: repeat(3, 1fr); } }

.lp-cap-icon { background: var(--lp-soft); }

.lp-cap-icon svg {
  width: 18px; height: 18px;
  stroke: var(--lp-color);
  stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}

.lp-challenge-fix {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 12.5px; line-height: 1.5;
  color: var(--text-2);
}

.lp-challenge-fix-label {
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--lp-color);
  flex-shrink: 0; padding-top: 1px;
}

.lp-process-grid { position: relative; }

.lp-process-grid::before {
  content: ''; position: absolute; top: 44px;
  left: calc(12.5% + 22px); right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--lp-soft-bg), var(--lp-color), var(--lp-soft-bg));
  opacity: 0.35; z-index: 0;
}

.lp-step { position: relative; z-index: 1; }

.lp-step-timing {
  display: inline-block; margin-bottom: 12px;
  padding: 3px 9px;
  background: var(--lp-soft); color: var(--lp-color);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}

.lp-step.outcome {
  background: linear-gradient(135deg, var(--lp-soft) 0%, #fff 100%);
  border-color: var(--lp-color);
}

.lp-step.outcome .lp-step-badge {
  background: var(--lp-color);
  box-shadow: 0 6px 18px var(--lp-soft-bg);
}

@media (max-width: 1024px) { .lp-process-grid::before { display: none; } }

@media (max-width: 900px) {
  .lp-trust-row { flex-wrap: wrap; justify-content: center; }
  .lp-trust-row .client-logo svg,
  .lp-trust-row .client-logo img { height: 18px; max-width: 96px; }
}

.lp-faq {
  padding: 96px 0 88px;
  background: var(--bg-2, #FAFAFE);
}

.lp-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

.lp-faq-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-color);
  text-align: center;
  margin-bottom: 14px;
}

.lp-faq-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
  margin: 0 auto 12px;
  max-width: 640px;
}

.lp-faq-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 15px;
  margin-bottom: 36px;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lp-faq-list .faq-item:hover {
  border-color: var(--lp-soft, rgba(11,10,31,.18));
}

.lp-faq-list .faq-item[open] {
  border-color: var(--lp-color);
  box-shadow: 0 6px 20px rgba(11,10,31,.06);
}

.lp-faq-list .faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.lp-faq-list .faq-body {
  padding: 0 22px 20px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .lp-faq { padding: 72px 0 64px; }
  .lp-faq-title { font-size: 30px; }
  .lp-faq-list .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .lp-faq-list .faq-body { padding: 0 18px 18px; }
}

:root { --lp-color: #FEA115; --lp-color-light: #FFC062; --lp-soft: rgba(254,161,21,.08); --lp-border: rgba(254,161,21,.30); --lp-soft-bg: rgba(254,161,21,.18); --lp-glow: rgba(254,161,21,.25); --lp-dot-1: rgba(254,161,21,.10); --lp-dot-2: rgba(254,161,21,.06); }

.lp-hero::before {
  background-image:
    radial-gradient(circle, rgba(254,161,21,0.55) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(254,161,21,0.42) 1.4px, transparent 2px),
    radial-gradient(circle, rgba(254,161,21,0.40) 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(254,161,21,0.45) 1.6px, transparent 2.2px),
    radial-gradient(circle, rgba(254,161,21,0.28) 1px, transparent 1.6px);
  background-size: 113px 97px, 89px 71px, 67px 53px, 131px 109px, 53px 79px;
  background-position: 0 0, 47px 31px, 19px 41px, 73px 17px, 31px 5px;
}

.cx-kb { background: #fff; padding: 96px 0; border-top: 1px solid var(--line); }

.cx-kb-inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }

.cx-kb-main h2 { font-family: var(--font-display); font-size: 38px; font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; color: var(--text); margin: 8px 0 18px; text-wrap: balance; }

.cx-kb-main h2 em { color: var(--indigo); font-style: normal; }

.cx-kb-eyebrow { display: inline-block; background: var(--indigo-50); color: var(--indigo); padding: 5px 12px; border-radius: 999px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; border: 1px solid var(--indigo-100); }

.cx-kb-lead { font-size: 18px; color: var(--text); line-height: 1.6; margin-bottom: 32px; font-weight: 500; border-left: 3px solid var(--indigo); padding-left: 22px; }

.cx-kb-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -.5px; margin: 36px 0 14px; scroll-margin-top: 80px; }

.cx-kb-body h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--indigo); letter-spacing: -.2px; margin: 22px 0 8px; }

.cx-kb-body p { font-size: 15.5px; color: var(--text-2); line-height: 1.78; margin-bottom: 14px; }

.cx-kb-body b, .cx-kb-body strong { color: var(--text); font-weight: 700; }

.cx-kb-body em { font-style: italic; color: var(--text); }

.cx-kb-body a { color: var(--indigo); text-decoration: none; border-bottom: 1px solid currentColor; transition: color .15s ease; }

.cx-kb-body a:hover { color: var(--purple); }

.cx-kb-callout { background: var(--lilac-soft); border: 1px solid var(--lilac); border-left: 4px solid var(--purple); border-radius: 8px; padding: 22px 26px; margin: 28px 0; }

.cx-kb-callout-title { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }

.cx-kb-callout p { margin: 0; font-size: 15px; color: var(--text); }

.cx-kb-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }

.cx-kb-stat { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }

.cx-kb-stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--indigo); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }

.cx-kb-stat-l { font-size: 13px; color: var(--text-2); line-height: 1.4; }

.cx-kb-toc { position: sticky; top: 100px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }

.cx-kb-toc-title { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }

.cx-kb-toc ul { list-style: none; padding: 0; margin: 0; }

.cx-kb-toc li { padding: 8px 0; border-bottom: 1px solid var(--line); }

.cx-kb-toc li:last-child { border-bottom: none; }

.cx-kb-toc a { display: block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text-2); text-decoration: none; line-height: 1.4; transition: color .15s ease; }

.cx-kb-toc a:hover { color: var(--indigo); }

.cx-kb-toc-num { display: inline-block; width: 22px; font-family: var(--font-display); font-size: 11px; color: var(--text-3); font-weight: 700; }

.cx-kb-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; margin: 22px 0; }

.cx-kb-table-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--line); }

.cx-kb-table-row:last-child { border-bottom: none; }

.cx-kb-table-row.head { background: var(--bg-2); font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); }

.cx-kb-table-row > div { padding: 12px 14px; font-size: 13.5px; line-height: 1.5; }

.cx-kb-table-row > div:first-child { font-weight: 700; color: var(--text); border-right: 1px solid var(--line); }

.cx-kb-table-row > div:not(:first-child) { color: var(--text-2); border-right: 1px solid var(--line); }

.cx-kb-table-row > div:last-child { border-right: none; }

.cx-kb-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 22px 0; }

.cx-kb-link-card { display: block; padding: 22px 24px; border: 1px solid var(--line); border-radius: 12px; text-decoration: none !important; transition: all .25s ease; position: relative; overflow: hidden; }

.cx-kb-link-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent, var(--indigo)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }

.cx-kb-link-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(11,10,31,0.08); border-color: var(--accent, var(--indigo)); }

.cx-kb-link-card:hover::before { transform: scaleX(1); }

.cx-kb-link-card.verify { --accent: #10B981; }

.cx-kb-link-card.hcn { --accent: #6366F1; }

.cx-kb-link-card-tag { display: inline-block; font-family: var(--font-display); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent, var(--indigo)); margin-bottom: 8px; }

.cx-kb-link-card-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.3px; margin-bottom: 6px; }

.cx-kb-link-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.55; margin: 0; }

.cx-kb-link-card-arrow { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--accent, var(--indigo)); margin-top: 10px; }

@media (max-width: 980px) {
  .cx-kb-inner { grid-template-columns: 1fr; gap: 32px; }
  .cx-kb-toc { position: static; }
  .cx-kb-stats { grid-template-columns: 1fr; }
  .cx-kb-main h2 { font-size: 28px; }
  .cx-kb-table-row { grid-template-columns: 1.5fr 1fr; }
  .cx-kb-table-row > div:nth-child(n+3) { display: none; }
  .cx-kb-link-grid { grid-template-columns: 1fr; }
}
