:root {
  --ds-s1: rgba(252,250,249,.03);
  --ds-s2: rgba(252,250,249,.06);
  --ds-border: rgba(252,250,249,.07);
  --ds-muted: rgba(252,250,249,.55);
  --ds-dim: rgba(252,250,249,.5);
  --ds-body: rgba(252,250,249,.65);
  --ds-green-tint: rgba(159,204,46,.14);
  --ds-green-glow: rgba(159,204,46,.3);
}

header, .header, .header.is-scrolling { background-color: black !important; }

/* Hero CTA form */
.ds-cta-form {
  margin: 0 0 18px;
  max-width: 520px;
  width: 100%;
}

.ds-cta-form-inner {
  display: flex;
  align-items: center;
  background: var(--ds-s2);
  border: 1px solid rgba(252,250,249,.14);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  gap: 8px;
  transition: border-color .2s, background .2s;
}

.ds-cta-form-inner:focus-within {
  border-color: var(--js-color-green);
  background: rgba(252,250,249,.08);
  box-shadow: 0 0 0 4px var(--ds-green-tint);
}

.ds-cta-form-icon {
  color: var(--ds-dim);
  font-size: 18px;
  flex-shrink: 0;
}

.ds-cta-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-main);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 14px 4px;
}

.ds-cta-input::placeholder { color: var(--ds-dim); }

.ds-cta-caption {
  font-size: 13px;
  color: var(--ds-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Trust bar */
.ds-trust {
  border-top: 1px solid var(--ds-s2);
  border-bottom: 1px solid var(--ds-s2);
}

.ds-trust-label {
  font-size: 13px;
  color: rgba(252,250,249,.6);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.ds-trust-card {
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--ds-s1);
  border: 1px solid var(--ds-border);
  transition: transform .2s ease, border-color .2s;
}

.ds-trust-card:hover {
  transform: translateY(-2px);
  border-color: var(--ds-green-glow);
}

.ds-trust-source {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.ds-trust-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.ds-trust-score {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.02em;
}

.ds-trust-meta {
  font-size: 12px;
  color: var(--ds-dim);
}

.ds-star {
  color: #FFC107;
  font-size: 15px;
}

/* Why section cards */
.ds-why-card {
  padding: 36px 32px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--ds-s2), var(--ds-s1));
  border: 1px solid var(--ds-border);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s;
  height: 100%;
}

.ds-why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(159, 204, 46, .35);
}

.ds-why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ds-green-tint);
  color: var(--js-color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.ds-why-eyebrow {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ds-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.ds-why-title {
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.02em;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 14px;
}

.ds-why-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ds-body);
  margin: 0 0 28px;
}

.ds-why-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px dashed rgba(252, 250, 249, .12);
}

.ds-why-stat-num {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--js-color-green);
}

.ds-why-stat-label {
  font-size: 13px;
  color: var(--ds-muted);
}

/* Integrations */
.ds-ig-section {
  background: radial-gradient(60% 40% at 50% 0%, rgba(25, 179, 173, .08), transparent 70%);
}

.ds-ig-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-ig-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--ds-s1);
  border: 1px solid var(--ds-border);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  color: var(--color-main);
  transition: all .2s;
  width: 100%;
  text-decoration: none;
}

.ds-ig-tile:hover { background: var(--ds-s2); }

  @media (min-width:575px) and (max-width:991px) {
  .ds-ig-rail {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;

  }
  .ds-ig-tile {
    width: 49%;
  }

  .ds-ig-more {
    width: 100%;
  }
}

.ds-ig-tile.is-active {
  background: rgba(159, 204, 46, .07);
  border-color: var(--ds-ig-color, var(--js-color-green));
  box-shadow: 0 0 0 1px var(--ds-ig-color, var(--js-color-green));
}

/* shared glyph base */
.ds-ig-glyph,
.ds-ig-detail-glyph,
.ds-ig-flow-orb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #FCFAF9;
}

.ds-ig-glyph { width: 40px; height: 40px; border-radius: 10px; font-size: 16px; flex-shrink: 0; }
.ds-ig-glyph img {height: auto; border-radius: 4px;}
.ds-ig-flow-orb img {height: auto; border-radius: 50px;}

.ds-ig-tile-text {
  flex: 1;
  min-width: 0;
}

.ds-ig-tile-name {
  font-weight: 600;
  font-size: 15px;
}

.ds-ig-tile-tag {
  font-size: 12px;
  color: var(--ds-muted);
}

.ds-ig-tile-arrow {
  color: rgba(252, 250, 249, .3);
  transition: transform .2s, color .2s;
}

.ds-ig-tile.is-active .ds-ig-tile-arrow {
  color: var(--ds-ig-color, var(--js-color-green));
  transform: translateX(2px);
}

.ds-ig-more {
  margin-top: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px dashed rgba(252,250,249,.14);
  border-radius: 14px;
  font-size: 13px;
  color: var(--ds-muted);
}

.ds-ig-stage {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--ds-s2), var(--ds-s1));
  border: 1px solid var(--ds-border);
  min-height: 460px;
}

.ds-ig-detail {
  display: none;
  animation: dsFade .35s ease;
}

.ds-ig-detail.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.ds-ig-detail-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.ds-ig-detail-glyph { width: 32px; height: 32px; border-radius: 8px; font-size: 14px; }
.ds-ig-detail-glyph img {height: auto; border-radius: 4px;}

.ds-ig-detail-desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(252, 250, 249, .78);
  margin: 0 0 20px;
}

.ds-ig-detail-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-ig-detail-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(252, 250, 249, .78);
}

.ds-ig-detail-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Integration flow visual */
.ds-ig-flow-wrap {
  display: grid;
  gap: 16px;
  align-items: center;
}

.ds-ig-flow-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-ig-col-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(252, 250, 249, .45);
  font-weight: 600;
  margin-bottom: 4px;
}

.ds-ig-source-pill {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(252, 250, 249, .05);
  border: 1px solid rgba(252, 250, 249, .1);
  font-size: 12px;
  color: rgba(252, 250, 249, .85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ds-ig-flow-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.ds-ig-flow-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  box-shadow: 0 0 0 4px rgba(11,11,9,1), 0 0 0 5px rgba(252,250,249,.15);
  animation: dsPulse 2s ease-in-out infinite;
}

.ds-ig-flow-mid-label {
  font-size: 11px;
  color: var(--ds-dim);
  text-align: center;
}

.ds-ig-store-card {
  padding: 14px;
  border-radius: 16px;
  background: rgba(159, 204, 46, .06);
  border: 1px solid rgba(159, 204, 46, .25);
}

.ds-ig-store-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #FCFAF9;
  margin-bottom: 10px;
}

.ds-ig-store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.ds-ig-store-cell {
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Comparison table */
.ds-cmp-section {
  background: #FCFAF9;
  color: #0B0B09;
}

.ds-cmp-savings {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 8px;
  border: 1px solid #d8e7a5;
}

.ds-cmp-savings-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--js-color-green);
  line-height: 1;
  flex-shrink: 0;
}

.ds-cmp-savings-label {
  font-size: 15px;
  line-height: 1.4;
  color: #20221b;
  max-width: 280px;
}

/* Global section */
.ds-global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(252, 250, 249, .1);
}

.ds-global-stat-num {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--js-color-green);
}

.ds-global-stat-label {
  font-size: 13px;
  color: rgba(252, 250, 249, .6);
  margin-top: 2px;
}

.ds-global-preview {
  width: 280px;
  background: #FCFAF9;
  color: #0B0B09;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 0, 0, .06);
  margin: 0 auto;
}

.ds-global-preview-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #7c7d74;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.ds-global-preview-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ds-global-preview-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #F1EFE9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.ds-global-preview-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  color: #0B0B09;
}

.ds-global-preview-price {
  font-weight: 700;
  font-size: 17px;
  color: #0B0B09;
}

.ds-global-preview-cta {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #9FCC2E;
  color: #0B0B09;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s;
}

.ds-global-preview-cta:hover {
  background: #B5D959;
}

.ds-lang-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  width: 309px;
}

.ds-lang-chip {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(252, 250, 249, .05);
  border: 1px solid rgba(252, 250, 249, .12);
  color: rgba(252, 250, 249, .7);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
}

@media (min-width:575px) and (max-width:991px) {
  .ds-lang-chips {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width: 270px;
  }

  .ds-lang-chip {
    padding: 14px 14px;
    aspect-ratio: 1;
    width: 22%;
  }
  
  .js-ds-lang-chips {
    display: flex;
  }
}

.ds-lang-chip:hover,
.ds-lang-chip.is-active {
  background: var(--js-color-green);
  color: #0B0B09;
  border-color: var(--js-color-green);
  box-shadow: 0 0 18px rgba(159, 204, 46, .4);
}

/* Store inbox visual */
.ds-store-inbox {
  width: 100%;
  max-width: 360px;
  border-radius: 28px;
  background: #FCFAF9;
  color: #0B0B09;
  padding: 18px;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, .6), 0 12px 30px rgba(0, 0, 0, .35);
  margin: 0 auto;
}

.ds-store-inbox__traffic {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.ds-traffic-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ds-store-inbox__url {
  padding: 4px 10px;
  border-radius: 6px;
  background: #F1EFE9;
  font-size: 11px;
  color: #7c7d74;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.ds-store-inbox__stats {
  margin-bottom: 12px;
}

.ds-store-inbox__stat-label {
  font-size: 11px;
  color: #7c7d74;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ds-store-inbox__stat-value {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ds-store-inbox__badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: #c1e3ff;
  color: #0B0B09;
  font-weight: 600;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ds-store-inbox__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2f73cd;
  animation: dsPulse 1.4s ease-in-out infinite;
}

.ds-store-inbox__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.ds-store-inbox__product {
  aspect-ratio: 1;
  border-radius: 14px;
  background: #F4F2EC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ds-store-inbox__product-price {
  font-weight: 600;
  font-size: 11px;
  margin-top: 4px;
  position: relative;
}

.ds-store-inbox__footer {
  padding: 10px 12px;
  border-radius: 12px;
  background: #0B0B09;
  color: #FCFAF9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

/* Keyframes */
/* Utilities */
.ds-text-green { color: var(--js-color-green); }
.ds-doc-link { color: var(--js-color-green); font-weight: 500; font-size: 14px; text-decoration: none; }

@keyframes dsPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .8; }
}

@keyframes dsFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .ds-ig-detail.is-active {
    grid-template-columns: 1fr;
  }

  .ds-ig-flow-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ds-cmp-savings {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .ds-cmp-savings-label {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ds-lang-chips {
    gap: 6px;
  }

  .ds-cta-form-inner {
    flex-direction: column;
    padding: 10px;
    align-items: stretch;
  }

  .ds-cta-form-icon {
    display: none;
  }

  .ds-cta-input {
    padding: 12px 14px;
  }

  .ds-cta-form-inner .button {
    width: 100%;
    justify-content: center;
  }
}

.ds-cmp-table {
  width: 100%;
  max-width: 580px;
  border-radius: 14px;
  border: 1px solid #E8E5DC;
  background: #FCFAF9;
  font-family: 'DM Sans', system-ui, sans-serif;
  margin: auto;
}

/* ── Header ── */
.ds-cmp-head {
  padding: 16px 20px 15px;
  background: #20221B;
  position: sticky;
  top:4.3rem;
  border-radius: 14px 14px 0 0;
}

.ds-cmp-caption {
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #d5d7cb;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.ds-cmp-legend {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ds-cmp-leg-js,
.ds-cmp-leg-tp { display: flex; align-items: center; gap: 6px; font-size: 13px; width: 50%; }

.ds-cmp-leg-js { color: #FCFAF9; font-family: 'Albert Sans', sans-serif; font-weight: 600; }
.ds-cmp-leg-tp { color: #a8b4c4; }

.ds-cmp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.ds-cmp-leg-js .ds-cmp-dot { background: #9FCC2E; }
.ds-cmp-leg-tp .ds-cmp-dot { background: #a8b4c4; }

/* ── Feature rows ── */
.ds-cmp-row {
  padding: 12px 20px;
  border-top: 1px solid #E8E5DC;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ds-cmp-feat {
  font-size: 13.5px;
  font-weight: 500;
  color: #20221B;
  line-height: 1.3;
  margin-bottom: 0;
}

/* ── Pills ── */
.ds-cmp-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}

.ds-cmp-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  font-size: 12.5px;
  white-space: nowrap;
  line-height: 1;
  width: calc(50% - 5px);
}

.ds-cmp-pill.ds-cmp-js {
  background: #F2F7E4;
  border: 1px solid rgba(159, 204, 46, .32);
  font-weight: 600;
  color: #20221B;
}

.ds-cmp-pill.ds-cmp-tp {
  background: #F5F3EE;
  border: 1px solid #E8E5DC;
  color: #4d4e48;
}

/* ── Icons ── */
.ds-cmp-check,
.ds-cmp-minus { font-size: 15px; line-height: 1; flex-shrink: 0; }

.ds-cmp-check { color: #9FCC2E; }
.ds-cmp-minus { color: #C5C3BA; }
