/**
 * LinkX Deep Links marketing redesign — CoralBold
 * Scoped to .lx-dc-deeplinks (cream paper / coral / teal)
 */

.lx-dc-deeplinks {
  --coral: #FF6B4A;
  /* Darker coral for white text on CTA surfaces (WCAG AA large-text ≥ 3:1) */
  --coral-cta: #C2410C;
  --teal: #14806E;
  --bg: #FAF6F1;
  --paper: #fff;
  --ink: #2A211C;
  --muted: #756A60;
  --line: rgba(42, 33, 28, 0.08);
  --mint: #8FD8C6;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  background:
    radial-gradient(circle at 1px 1px, color-mix(in srgb, var(--ink) 5%, transparent) 1px, transparent 0) 0 0 / 24px 24px,
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

.lx-dc-deeplinks ::selection {
  background: var(--coral);
  color: #fff;
}

.lx-dc-deeplinks a {
  color: #E85535;
  text-decoration: none;
}

.lx-dc-deeplinks a:hover {
  color: var(--coral);
}

/* ------------------------------------------------------------------ */
/* Layout                                                              */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-wrap {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ------------------------------------------------------------------ */
/* Topic tabs                                                          */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.lx-dc-deeplinks .lx-dl-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  min-height: 44px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 20px -18px rgba(42, 33, 28, 0.45);
}

.lx-dc-deeplinks .lx-dl-tab:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--coral) 35%, var(--line));
}

.lx-dc-deeplinks .lx-dl-tab.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: 0 12px 28px -18px rgba(255, 107, 74, 0.85);
}

.lx-dc-deeplinks .lx-dl-tab:focus-visible {
  outline: 2px solid var(--coral, #FF6B4A);
  outline-offset: 2px;
}

.lx-dc-deeplinks .lx-dl-tab.is-active:hover {
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: clamp(128px, 16vh, 160px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.lx-dc-deeplinks .lx-dl-hero::before,
.lx-dc-deeplinks .lx-dl-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

.lx-dc-deeplinks .lx-dl-hero::before {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, color-mix(in srgb, var(--coral) 22%, transparent) 0%, transparent 68%);
}

.lx-dc-deeplinks .lx-dl-hero::after {
  width: min(480px, 65vw);
  height: min(480px, 65vw);
  top: 8%;
  right: -10%;
  background: radial-gradient(circle, color-mix(in srgb, var(--teal) 18%, transparent) 0%, transparent 70%);
}

.lx-dc-deeplinks .lx-dl-hero > * {
  position: relative;
  z-index: 1;
}

.lx-dc-deeplinks .lx-dl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 22px;
}

.lx-dc-deeplinks .lx-dl-eyebrow::before {
  content: '';
  width: 26px;
  height: 1.5px;
  background: var(--teal);
  display: inline-block;
}

.lx-dc-deeplinks .lx-dl-eyebrow-coral {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}

.lx-dc-deeplinks .lx-dl-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 auto 20px;
  color: var(--ink);
  max-width: 920px;
  text-wrap: balance;
}

.lx-dc-deeplinks .lx-dl-h1-badge {
  position: relative;
  display: inline-block;
  color: #fff;
  background: var(--coral);
  padding: 2px 14px 4px;
  border-radius: 12px;
  transform: rotate(-1.5deg);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lx-dc-deeplinks .lx-dl-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 28px;
  text-wrap: pretty;
}

/* Paste URL bar */
.lx-dc-deeplinks .lx-dl-paste {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto 22px;
  padding: 8px 8px 8px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 24px 48px -36px rgba(42, 33, 28, 0.55);
}

.lx-dc-deeplinks .lx-dl-paste-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 4px;
}

.lx-dc-deeplinks .lx-dl-paste-input::placeholder {
  color: color-mix(in srgb, var(--muted) 80%, transparent);
}

.lx-dc-deeplinks .lx-dl-paste-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--coral-cta);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.18s ease;
}

.lx-dc-deeplinks .lx-dl-paste-btn:hover {
  background: color-mix(in srgb, var(--coral-cta) 88%, #000);
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-paste-btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* Trust checks */
.lx-dc-deeplinks .lx-dl-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.lx-dc-deeplinks .lx-dl-trust li,
.lx-dc-deeplinks .lx-dl-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lx-dc-deeplinks .lx-dl-trust i,
.lx-dc-deeplinks .lx-dl-trust svg {
  color: var(--teal);
  font-size: 14px;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* App icon marquee                                                    */
/* ------------------------------------------------------------------ */

@keyframes lx-dl-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-25%, 0, 0); }
}

.lx-dc-deeplinks .lx-dl-marquee {
  overflow: hidden;
  width: 100%;
  margin: 8px 0 24px;
  padding: 12px 0;
}

.lx-dc-deeplinks .lx-dl-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  /* Animate by default; paused only when OS reduce-motion is on. */
  animation: lx-dl-marquee 28s linear infinite;
}

.lx-dc-deeplinks .lx-dl-marquee:hover .lx-dl-marquee-track {
  animation-play-state: paused;
}

.lx-dc-deeplinks .lx-dl-marquee-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
  box-sizing: content-box;
}

.lx-dc-deeplinks .lx-dl-app {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px -22px rgba(42, 33, 28, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  font-size: 26px;
  text-decoration: none;
  padding: 10px;
  box-sizing: border-box;
}

.lx-dc-deeplinks a.lx-dl-app:hover {
  border-color: rgba(255, 107, 74, 0.45);
  box-shadow: 0 16px 30px -20px rgba(194, 65, 12, 0.45);
}

.lx-dc-deeplinks .lx-dl-app img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* ------------------------------------------------------------------ */
/* Sections                                                            */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-sec {
  padding: clamp(48px, 7vw, 88px) 0;
}

.lx-dc-deeplinks .lx-dl-sec > .lx-dl-wrap {
  text-align: center;
}

.lx-dc-deeplinks .lx-dl-h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 auto 16px;
  color: var(--ink);
  max-width: 760px;
  text-wrap: balance;
}

.lx-dc-deeplinks .lx-dl-sec .lx-dl-lead {
  margin-bottom: 36px;
}

/* Compare — Without / With */
.lx-dc-deeplinks .lx-dl-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
  margin-top: 8px;
}

.lx-dc-deeplinks .lx-dl-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 30px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-card h3,
.lx-dc-deeplinks .lx-dl-card-dark h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.lx-dc-deeplinks .lx-dl-card p,
.lx-dc-deeplinks .lx-dl-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.lx-dc-deeplinks .lx-dl-card ul,
.lx-dc-deeplinks .lx-dl-card-dark ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lx-dc-deeplinks .lx-dl-card li,
.lx-dc-deeplinks .lx-dl-card-dark li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.lx-dc-deeplinks .lx-dl-card li i,
.lx-dc-deeplinks .lx-dl-card-dark li i {
  flex-shrink: 0;
  margin-top: 3px;
}

.lx-dc-deeplinks .lx-dl-card-dark {
  background: var(--ink);
  border: 1px solid transparent;
  border-radius: 22px;
  padding: 28px 28px 30px;
  box-shadow: 0 24px 48px -28px rgba(42, 33, 28, 0.65);
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-card-dark h3 {
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-card-dark p,
.lx-dc-deeplinks .lx-dl-card-dark li {
  color: rgba(255, 255, 255, 0.82);
}

.lx-dc-deeplinks .lx-dl-card-dark a {
  color: var(--mint);
}

.lx-dc-deeplinks .lx-dl-card-dark a:hover {
  color: #fff;
}

/* Features */
.lx-dc-deeplinks .lx-dl-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-top: 8px;
}

.lx-dc-deeplinks .lx-dl-feat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.lx-dc-deeplinks .lx-dl-feat:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--coral) 28%, var(--line));
}

.lx-dc-deeplinks .lx-dl-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--mint) 42%, var(--paper));
  color: var(--teal);
  font-size: 20px;
  margin-bottom: 18px;
}

.lx-dc-deeplinks .lx-dl-feat:nth-child(2) .lx-dl-feat-icon,
.lx-dc-deeplinks .lx-dl-feat:nth-child(5) .lx-dl-feat-icon {
  background: color-mix(in srgb, var(--coral) 18%, var(--paper));
  color: var(--coral-cta);
}

.lx-dc-deeplinks .lx-dl-feat:nth-child(3) .lx-dl-feat-icon,
.lx-dc-deeplinks .lx-dl-feat:nth-child(6) .lx-dl-feat-icon {
  background: color-mix(in srgb, var(--teal) 14%, var(--paper));
  color: var(--teal);
}

.lx-dc-deeplinks .lx-dl-feat h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-feat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Steps */
.lx-dc-deeplinks .lx-dl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  margin-top: 8px;
  counter-reset: lx-dl-step;
}

.lx-dc-deeplinks .lx-dl-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  position: relative;
}

.lx-dc-deeplinks .lx-dl-step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.lx-dc-deeplinks .lx-dl-step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ------------------------------------------------------------------ */
/* FAQ                                                                 */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-faq .faq-item,
.lx-dc-deeplinks .lx-dl-faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
}

.lx-dc-deeplinks .lx-dl-faq .faq-question,
.lx-dc-deeplinks .lx-dl-faq-item .faq-question,
.lx-dc-deeplinks .lx-dl-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-faq .faq-question span,
.lx-dc-deeplinks .lx-dl-faq-item .faq-question span {
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-faq .faq-question i,
.lx-dc-deeplinks .lx-dl-faq-item .faq-question i,
.lx-dc-deeplinks .lx-dl-faq-q i {
  flex-shrink: 0;
  color: var(--coral);
  font-size: 14px;
  transition: transform 0.2s ease;
}

.lx-dc-deeplinks .lx-dl-faq .faq-item.active .faq-question i,
.lx-dc-deeplinks .lx-dl-faq-item.active .faq-question i,
.lx-dc-deeplinks .lx-dl-faq-item.active .lx-dl-faq-q i {
  transform: rotate(45deg);
}

.lx-dc-deeplinks .lx-dl-faq .faq-answer,
.lx-dc-deeplinks .lx-dl-faq-item .faq-answer,
.lx-dc-deeplinks .lx-dl-faq-a {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  background: transparent;
  border: none;
}

.lx-dc-deeplinks .lx-dl-faq .faq-item.active .faq-answer,
.lx-dc-deeplinks .lx-dl-faq-item.active .faq-answer,
.lx-dc-deeplinks .lx-dl-faq-item.active .lx-dl-faq-a {
  display: block;
}

/* Nested FAQ inside deeplinks scope (theme markup reuse) */
.lx-dc-deeplinks .faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 12px;
  box-shadow: none;
}

.lx-dc-deeplinks .faq-item > .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}

.lx-dc-deeplinks .faq-item > .faq-question i {
  flex-shrink: 0;
  color: var(--coral);
  transition: transform 0.2s ease;
}

.lx-dc-deeplinks .faq-item.active > .faq-question i {
  transform: rotate(45deg);
}

.lx-dc-deeplinks .faq-item > .faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.lx-dc-deeplinks .faq-item.active > .faq-answer {
  display: block;
}

/* ------------------------------------------------------------------ */
/* Bottom CTA                                                          */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 28px;
  padding: clamp(48px, 7vw, 76px) clamp(24px, 5vw, 48px);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 32px 64px -40px rgba(255, 107, 74, 0.55);
}

.lx-dc-deeplinks .lx-dl-cta .lx-dl-h2,
.lx-dc-deeplinks .lx-dl-cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.lx-dc-deeplinks .lx-dl-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto 28px;
}

.lx-dc-deeplinks .lx-dl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lx-dc-deeplinks .lx-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--coral-cta);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 14px 28px -18px rgba(42, 33, 28, 0.45);
}

.lx-dc-deeplinks .lx-dl-btn:hover {
  color: var(--coral-cta);
  background: #fff;
  transform: translateY(-1px);
}

.lx-dc-deeplinks .lx-dl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.lx-dc-deeplinks .lx-dl-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.lx-dc-deeplinks .lx-dl-btn:focus-visible,
.lx-dc-deeplinks .lx-dl-btn-ghost:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ------------------------------------------------------------------ */
/* VS comparison                                                       */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-h2 .lx-dl-h2-accent {
  color: var(--coral);
}

.lx-dc-deeplinks .lx-dl-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 28px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 48px;
}

.lx-dc-deeplinks .lx-dl-vs-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 26px 24px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lx-dc-deeplinks .lx-dl-vs-card--bad {
  background: color-mix(in srgb, #DC2626 6%, var(--paper));
  border-color: color-mix(in srgb, #DC2626 28%, var(--line));
}

.lx-dc-deeplinks .lx-dl-vs-card--good {
  background: color-mix(in srgb, var(--teal) 7%, var(--paper));
  border-color: color-mix(in srgb, var(--teal) 32%, var(--line));
}

.lx-dc-deeplinks .lx-dl-vs-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-vs-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.lx-dc-deeplinks .lx-dl-vs-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-vs-card li:last-child {
  border-bottom: none;
}

.lx-dc-deeplinks .lx-dl-vs-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-top: 1px;
}

.lx-dc-deeplinks .lx-dl-vs-mark--bad {
  background: #DC2626;
}

.lx-dc-deeplinks .lx-dl-vs-mark--good {
  background: var(--teal);
}

.lx-dc-deeplinks .lx-dl-vs-stat {
  margin-top: 18px;
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;
}

.lx-dc-deeplinks .lx-dl-vs-card--bad .lx-dl-vs-stat {
  background: color-mix(in srgb, #DC2626 12%, transparent);
}

.lx-dc-deeplinks .lx-dl-vs-card--good .lx-dl-vs-stat {
  background: color-mix(in srgb, var(--teal) 14%, transparent);
}

.lx-dc-deeplinks .lx-dl-vs-stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lx-dc-deeplinks .lx-dl-vs-card--bad .lx-dl-vs-stat-num {
  color: #DC2626;
}

.lx-dc-deeplinks .lx-dl-vs-card--good .lx-dl-vs-stat-num {
  color: var(--teal);
}

.lx-dc-deeplinks .lx-dl-vs-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ------------------------------------------------------------------ */
/* Audience cards                                                      */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-aud-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}

.lx-dc-deeplinks a.lx-dl-aud-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(42, 33, 28, 0.5);
}

.lx-dc-deeplinks .lx-dl-aud-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.lx-dc-deeplinks .lx-dl-aud-icon--coral {
  background: color-mix(in srgb, var(--coral) 16%, transparent);
  color: var(--coral-cta);
}

.lx-dc-deeplinks .lx-dl-aud-icon--teal {
  background: color-mix(in srgb, var(--teal) 16%, transparent);
  color: var(--teal);
}

.lx-dc-deeplinks .lx-dl-aud-icon--ink {
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-aud-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-aud-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lx-dc-deeplinks .lx-dl-aud-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.lx-dc-deeplinks .lx-dl-aud-card li strong {
  color: var(--ink);
  font-weight: 700;
}

.lx-dc-deeplinks .lx-dl-aud-check {
  color: var(--teal);
  flex: 0 0 auto;
  margin-top: 2px;
}

.lx-dc-deeplinks .lx-dl-aud-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.lx-dc-deeplinks .lx-dl-aud-logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

/* ------------------------------------------------------------------ */
/* Use-case cards (vertical pages)                                     */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-use-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 44px -34px rgba(42, 33, 28, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lx-dc-deeplinks .lx-dl-use-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}

.lx-dc-deeplinks .lx-dl-use-card > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.lx-dc-deeplinks .lx-dl-use-card > p a {
  color: var(--coral-cta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lx-dc-deeplinks .lx-dl-use-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lx-dc-deeplinks .lx-dl-use-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.lx-dc-deeplinks .lx-dl-use-stat {
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--teal);
}

.lx-dc-deeplinks .lx-dl-use-stat span {
  display: block;
  margin-top: 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.lx-dc-deeplinks .lx-dl-use-card .lx-dl-aud-logos {
  margin-top: 16px;
}

/* ------------------------------------------------------------------ */

/* ------------------------------------------------------------------ */
/* Comparison table (Instagram)                                        */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-cmp {
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 3vw, 40px);
  color: #fff;
  text-align: center;
}

.lx-dc-deeplinks .lx-dl-cmp .lx-dl-h2 {
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-cmp .lx-dl-h2-accent {
  color: var(--coral);
}

.lx-dc-deeplinks .lx-dl-cmp .lx-dl-lead {
  margin-left: auto;
  margin-right: auto;
  opacity: 0.78;
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-cmp-card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  box-shadow: none;
}

.lx-dc-deeplinks .lx-dl-cmp-head,
.lx-dc-deeplinks .lx-dl-cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 22px;
}

.lx-dc-deeplinks .lx-dl-cmp-head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.lx-dc-deeplinks .lx-dl-cmp-head i {
  margin-right: 6px;
  color: var(--coral);
  opacity: 1;
}

.lx-dc-deeplinks .lx-dl-cmp-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lx-dc-deeplinks .lx-dl-cmp-row:last-child {
  border-bottom: 0;
}

.lx-dc-deeplinks .lx-dl-cmp-feat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lx-dc-deeplinks .lx-dl-cmp-feat strong {
  font-size: 15px;
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-cmp-feat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.lx-dc-deeplinks .lx-dl-cmp-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.lx-dc-deeplinks .lx-dl-cmp-cell--bad {
  color: #FFD4C8;
}

.lx-dc-deeplinks .lx-dl-cmp-cell--good {
  color: #7FDBCA;
}

.lx-dc-deeplinks .lx-dl-cmp-foot {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.lx-dc-deeplinks .lx-dl-cmp-foot strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
}

.lx-dc-deeplinks .lx-dl-audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.lx-dc-deeplinks .lx-dl-aud-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.lx-dc-deeplinks .lx-dl-compliance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.lx-dc-deeplinks .lx-dl-compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.lx-dc-deeplinks .lx-dl-compliance-pill--teal {
  background: var(--teal);
}

.lx-dc-deeplinks .lx-dl-compliance-pill--coral {
  background: var(--coral);
}

.lx-dc-deeplinks .lx-dl-compliance-note {
  margin: 16px auto 0;
  max-width: 720px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Dual feature cards (Amazon highlight)                               */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-dual {
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 3vw, 40px);
  color: #fff;
  text-align: center;
}

.lx-dc-deeplinks .lx-dl-dual .lx-dl-eyebrow-coral {
  color: var(--coral);
}

.lx-dc-deeplinks .lx-dl-dual .lx-dl-h2,
.lx-dc-deeplinks .lx-dl-dual .lx-dl-lead {
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-dual .lx-dl-lead {
  margin-left: auto;
  margin-right: auto;
  opacity: 0.78;
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-dual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.lx-dc-deeplinks .lx-dl-dual-card:first-child {
  border-color: color-mix(in srgb, var(--coral) 45%, rgba(255, 255, 255, 0.12));
  background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--coral) 22%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.05);
}

.lx-dc-deeplinks .lx-dl-dual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--coral) 28%, transparent);
  color: #FFD4C8;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lx-dc-deeplinks .lx-dl-dual-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 16px;
  background: color-mix(in srgb, var(--coral) 22%, transparent);
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-dual-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-dual-card > p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.lx-dc-deeplinks .lx-dl-dual-box {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lx-dc-deeplinks .lx-dl-dual-box-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-dc-deeplinks .lx-dl-dual-box-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}

.lx-dc-deeplinks .lx-dl-dual-box-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.lx-dc-deeplinks .lx-dl-dual-box-row--ok {
  color: #FFD4C8;
  font-weight: 600;
}

.lx-dc-deeplinks .lx-dl-dual-box-kv {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lx-dc-deeplinks .lx-dl-dual-box-kv > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.lx-dc-deeplinks .lx-dl-dual-box-kv code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  word-break: break-all;
}

.lx-dc-deeplinks .lx-dl-dual-box-kv--ok code em {
  font-style: normal;
  color: #FFD4C8;
  font-weight: 700;
}

.lx-dc-deeplinks .lx-dl-dual-box-arrow {
  color: var(--coral);
  font-size: 14px;
  padding-left: 2px;
}

.lx-dc-deeplinks .lx-dl-dual-card ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lx-dc-deeplinks .lx-dl-dual-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lx-dc-deeplinks .lx-dl-dual-card .lx-dl-aud-check {
  color: var(--coral);
}

.lx-dc-deeplinks .lx-dl-dual-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #FFD4C8;
  text-decoration: none;
}

.lx-dc-deeplinks .lx-dl-dual-cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Arsenal / bento features                                            */
/* ------------------------------------------------------------------ */

.lx-dc-deeplinks .lx-dl-arsenal {
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px) clamp(22px, 3vw, 40px);
  color: #fff;
  margin-top: 8px;
  text-align: left;
}

.lx-dc-deeplinks .lx-dl-arsenal .lx-dl-eyebrow-coral {
  color: var(--coral);
}

.lx-dc-deeplinks .lx-dl-arsenal .lx-dl-h2,
.lx-dc-deeplinks .lx-dl-arsenal .lx-dl-lead {
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-arsenal .lx-dl-lead {
  opacity: 0.78;
  max-width: 640px;
}

.lx-dc-deeplinks .lx-dl-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.lx-dc-deeplinks .lx-dl-bento-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  min-height: 168px;
}

.lx-dc-deeplinks .lx-dl-bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 360px;
  border-color: color-mix(in srgb, var(--coral) 45%, rgba(255, 255, 255, 0.12));
  background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--coral) 22%, transparent), transparent 55%),
    rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lx-dc-deeplinks .lx-dl-bento-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lx-dc-deeplinks .lx-dl-bento-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--coral) 22%, transparent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lx-dc-deeplinks .lx-dl-bento-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.lx-dc-deeplinks .lx-dl-bento-card--hero h3 {
  font-size: 24px;
}

.lx-dc-deeplinks .lx-dl-bento-badge {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--coral) 28%, transparent);
  color: #FFD4C8;
}

.lx-dc-deeplinks .lx-dl-bento-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.lx-dc-deeplinks .lx-dl-bento-card p a {
  color: color-mix(in srgb, var(--coral) 70%, #fff);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lx-dc-deeplinks .lx-dl-bento-demo {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  margin-top: auto;
}

.lx-dc-deeplinks .lx-dl-bento-paste {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  font-family: var(--mono);
  font-size: 12px;
}

.lx-dc-deeplinks .lx-dl-bento-paste .in {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  word-break: break-all;
}

.lx-dc-deeplinks .lx-dl-bento-paste .out {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.lx-dc-deeplinks .lx-dl-bento-paste .hint {
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
}

.lx-dc-deeplinks .lx-dl-bento-apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-content: start;
}

.lx-dc-deeplinks .lx-dl-bento-apps img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  box-sizing: border-box;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .lx-dc-deeplinks .lx-dl-audience,
  .lx-dc-deeplinks .lx-dl-usecases {
    grid-template-columns: 1fr;
  }

  .lx-dc-deeplinks .lx-dl-dual-grid {
    grid-template-columns: 1fr;
  }

  .lx-dc-deeplinks .lx-dl-cmp-head,
  .lx-dc-deeplinks .lx-dl-cmp-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lx-dc-deeplinks .lx-dl-cmp-head > div:first-child {
    display: none;
  }

  .lx-dc-deeplinks .lx-dl-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-dc-deeplinks .lx-dl-bento-card--hero {
    grid-column: span 2;
  }
}

@media (max-width: 991.98px) {
  .lx-dc-deeplinks .lx-dl-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lx-dc-deeplinks .lx-dl-tabs {
    padding-top: 20px;
    justify-content: flex-start;
  }

  .lx-dc-deeplinks .lx-dl-hero {
    padding-bottom: 40px;
  }

  .lx-dc-deeplinks .lx-dl-h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .lx-dc-deeplinks .lx-dl-lead {
    font-size: 17px;
  }

  .lx-dc-deeplinks .lx-dl-h2 {
    font-size: clamp(28px, 7vw, 36px);
  }

  .lx-dc-deeplinks .lx-dl-paste {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 14px;
    gap: 12px;
  }

  .lx-dc-deeplinks .lx-dl-paste-input {
    padding: 8px 6px;
    text-align: left;
  }

  .lx-dc-deeplinks .lx-dl-paste-btn {
    width: 100%;
    border-radius: 14px;
  }

  .lx-dc-deeplinks .lx-dl-trust {
    gap: 10px 14px;
    font-size: 13px;
  }

  .lx-dc-deeplinks .lx-dl-compare,
  .lx-dc-deeplinks .lx-dl-feat-grid,
  .lx-dc-deeplinks .lx-dl-steps,
  .lx-dc-deeplinks .lx-dl-vs,
  .lx-dc-deeplinks .lx-dl-audience,
  .lx-dc-deeplinks .lx-dl-usecases,
  .lx-dc-deeplinks .lx-dl-dual-grid,
  .lx-dc-deeplinks .lx-dl-cmp-head,
  .lx-dc-deeplinks .lx-dl-cmp-row,
  .lx-dc-deeplinks .lx-dl-bento,
  .lx-dc-deeplinks .lx-dl-bento-demo {
    grid-template-columns: 1fr;
  }

  .lx-dc-deeplinks .lx-dl-vs-divider {
    padding-top: 0;
  }

  .lx-dc-deeplinks .lx-dl-bento-card--hero {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
  }

  .lx-dc-deeplinks .lx-dl-h2 {
    white-space: normal;
  }

  .lx-dc-deeplinks .lx-dl-cta {
    border-radius: 24px;
    padding: 40px 22px;
  }

  .lx-dc-deeplinks .lx-dl-cta p {
    font-size: 16px;
  }

  .lx-dc-deeplinks .lx-dl-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lx-dc-deeplinks .lx-dl-btn,
  .lx-dc-deeplinks .lx-dl-btn-ghost {
    width: 100%;
  }

  .lx-dc-deeplinks .lx-dl-app {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .lx-dc-deeplinks .lx-dl-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lx-dc-deeplinks .lx-dl-hero {
    padding-bottom: 32px;
  }

  .lx-dc-deeplinks .lx-dl-feat,
  .lx-dc-deeplinks .lx-dl-step,
  .lx-dc-deeplinks .lx-dl-aud-card,
  .lx-dc-deeplinks .lx-dl-use-card {
    padding: 22px;
  }

  .lx-dc-deeplinks .lx-dl-cta {
    padding: 32px 18px;
    border-radius: 20px;
  }

  .lx-dc-deeplinks .lx-dl-paste {
    padding: 12px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lx-dc-deeplinks .lx-dl-marquee-track {
    animation: none !important;
    transform: none;
  }
  /* Keep all icon groups visible so the strip still fills wide screens. */

  .lx-dc-deeplinks .lx-dl-feat,
  .lx-dc-deeplinks .lx-dl-btn,
  .lx-dc-deeplinks .lx-dl-btn-ghost,
  .lx-dc-deeplinks .lx-dl-paste-btn,
  .lx-dc-deeplinks .lx-dl-tab {
    transition: none;
  }

  .lx-dc-deeplinks .lx-dl-feat:hover,
  .lx-dc-deeplinks .lx-dl-btn:hover {
    transform: none;
  }
}
