
body.dl-skin { background: #fff; }
body.dl-skin .page {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border: none;
}
body.dl-skin .brand,
body.dl-skin .nav,
body.dl-skin .site-footer {
  width: min(1040px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}
body.dl-skin .site-footer { margin-top: 24px; }
.dl { color: var(--color-inkwell, #0f172b); }
.dl .dl-wrap {
  max-width: var(--page-max-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}



:root {
  --color-collective-navy: #0c2764;
  --color-inkwell: #0f172b;
  --color-slate-ink: #1d293d;
  --color-pencil-graphite: #314158;
  --color-muted-slate: #45556c;
  --color-distant-mist: #62748e;
  --color-frost-border: #e2e8f0;
  --color-silver-whisper: #c3c6cb;
  --color-paper-white: #ffffff;
  --color-cloud-mist: #f1f5f9;
  --font-inter: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --text-caption: 14px;
  --leading-caption: 1.5;
  --text-body-sm: 16px;
  --leading-body-sm: 1.5;
  --text-body: 18px;
  --leading-body: 1.63;
  --text-subheading: 20px;
  --leading-subheading: 1.4;
  --text-heading-sm: 32px;
  --leading-heading-sm: 1.25;
  --text-heading: 40px;
  --leading-heading: 1.2;
  --text-heading-lg: 60px;
  --leading-heading-lg: 1.2;
  --tracking-heading-lg: -1.5px;
  --text-display: 72px;
  --leading-display: 1;
  --tracking-display: -1.8px;
  --tracking-tight: -0.025em;
  --page-max-width: 1200px;
  --section-gap: 64px;
  --card-padding: 32px;
  --element-gap: 16px;
  --radius-cards: 12px;
  --radius-inputs: 12px;
  --radius-buttons: 12px;
  --shadow-md: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.dl *, .dl *::before, .dl *::after { box-sizing: border-box; }

.dl { scroll-behavior: smooth; }

.dl {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-inter);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--leading-body-sm);
  letter-spacing: var(--tracking-tight);
  color: var(--color-inkwell);
  background: var(--color-paper-white);
  font-feature-settings: "calt" on, "rlig" on;
}

.dl a {
  color: var(--color-collective-navy);
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.dl a:hover { color: var(--color-slate-ink); }

.dl img { max-width: 100%; height: auto; }

.dl .page {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-24, 24px);
}

/* Navigation */
.dl .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-paper-white);
  border-bottom: 1px solid var(--color-frost-border);
}
.dl .nav__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dl .nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-body-sm);
  text-decoration: none;
}
.dl .nav__logo:hover { color: var(--color-inkwell); }
.dl .nav__logo-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-buttons);
  background: var(--color-collective-navy);
  display: grid;
  place-items: center;
  color: var(--color-paper-white);
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
}
.dl .nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-buttons);
  object-fit: cover;
  flex-shrink: 0;
}
.dl .nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dl .nav__links a {
  color: var(--color-inkwell);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
}
.dl .nav__links a:hover { color: var(--color-collective-navy); }
.dl .nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: var(--radius-buttons);
  background: var(--color-collective-navy);
  color: var(--color-paper-white);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}
.dl .nav__cta:hover {
  color: var(--color-paper-white);
  background: #0a1f50;
}

@media (max-width: 768px) {
  .dl .nav__links { display: none; }
}

/* Hero */
.dl .hero {
  padding: 64px 0 48px;
  text-align: center;
  background: var(--color-paper-white);
}
.dl .hero__inner {
  max-width: 800px;
  margin: 0 auto;
}
.dl .hero__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 5.5vw, var(--text-heading-lg));
  font-weight: var(--font-weight-extrabold);
  line-height: var(--leading-heading-lg);
  letter-spacing: var(--tracking-tight);
  color: var(--color-collective-navy);
}
.dl .hero__title-sub {
  display: block;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: var(--font-weight-bold);
  margin-top: 8px;
}
.dl .hero__subtitle {
  margin: 0 auto 12px;
  max-width: 640px;
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  color: var(--color-pencil-graphite);
  line-height: var(--leading-body);
}
.dl .hero__badges {
  margin: 0 auto 32px;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-distant-mist);
}
.dl .intro-text {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  font-size: var(--text-body-sm);
  color: var(--color-muted-slate);
  line-height: var(--leading-body-sm);
}
.dl .intro-text strong {
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
}

.dl .seo-intro {
  padding: 8px 0 0;
}
.dl .seo-intro p {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
  color: var(--color-muted-slate);
}
.dl .seo-intro a {
  font-weight: var(--font-weight-medium);
}

.dl .device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}

.dl .info-box--center {
  margin-top: 24px;
  text-align: center;
}
.dl .info-box--center code {
  display: inline-block;
  margin: 4px 2px 0;
  padding: 2px 8px;
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  font-size: 13px;
  color: var(--color-slate-ink);
}

.dl .section__cta {
  text-align: center;
  margin-top: 24px;
}

.dl .content-page .faq-list {
  max-width: none;
}

/* Download form */
.dl .download-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 14px;
  background: #eef1f6;
  border: 1px solid #d5dbe4;
  border-radius: 16px;
}
.dl .download-form__fields {
  display: flex;
  gap: var(--element-gap);
  align-items: stretch;
}
.dl .download-form__input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #9aa3b2;
  border-radius: var(--radius-inputs);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 43, 0.06);
  color: #1a1a1a;
  caret-color: #1a1a1a;
  font-size: 16px;
  font-family: inherit;
  font-weight: 400;
  letter-spacing: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease-out, background-color 0.2s ease-out, box-shadow 0.2s ease-out;
}
.dl .download-form__input:focus {
  border-color: #1d2786;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 39, 134, 0.15);
}
.dl .download-form__input::placeholder,
.dl .download-form__input::-webkit-input-placeholder {
  color: #6b7280;
  opacity: 1;
}

.dl .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-buttons);
  font-family: inherit;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-tight);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, opacity 0.2s ease-out;
  white-space: nowrap;
}
.dl .btn--ghost {
  background: transparent;
  border-color: var(--color-frost-border);
  color: var(--color-inkwell);
  font-weight: var(--font-weight-medium);
}
.dl .btn--ghost:hover { border-color: var(--color-distant-mist); }
.dl .btn--primary {
  background: var(--color-collective-navy);
  color: var(--color-paper-white);
  border-color: var(--color-collective-navy);
  padding: 14px 24px;
  flex-shrink: 0;
}
.dl .btn--primary:hover { background: #0a1f50; }
.dl .btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.dl .progress {
  margin-top: 24px;
  display: none;
}
.dl .progress.active { display: block; }
.dl .progress__bar-bg {
  height: 8px;
  background: var(--color-frost-border);
  border-radius: 12px;
  overflow: hidden;
}
.dl .progress__bar {
  height: 100%;
  width: 0%;
  background: var(--color-collective-navy);
  border-radius: 12px;
  transition: width 0.3s ease-out;
}
.dl .progress__bar.complete { background: var(--color-collective-navy); }
.dl .progress__bar.error { background: #dc2626; }
.dl .progress__text {
  margin-top: 12px;
  font-size: var(--text-caption);
  color: var(--color-distant-mist);
  text-align: center;
}
.dl .progress__hint {
  margin-top: 8px;
  font-size: var(--text-caption);
  color: var(--color-distant-mist);
  text-align: center;
}
.dl .progress--page {
  margin-top: 20px;
}

/* Download result page */
.dl .download-page {
  padding: 48px 0 var(--section-gap);
}
.dl .download-page__inner {
  max-width: 720px;
}
.dl .download-page__title {
  margin-bottom: 24px;
  font-size: var(--text-heading-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-collective-navy);
}
.dl .download-card {
  padding: 24px;
  border-radius: var(--radius-cards);
  border: 1px solid var(--color-frost-border);
  background: var(--color-paper-white);
  box-shadow: 0 1px 3px rgba(15, 23, 43, 0.06);
}
.dl .download-card--ready {
  border-color: #86efac;
  background: #f0fdf4;
}
.dl .download-card--error {
  border-color: #fecaca;
  background: #fef2f2;
}
.dl .download-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.dl .download-card__status-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}
.dl .download-card__status-icon--loading {
  border: 3px solid var(--color-frost-border);
  border-top-color: var(--color-collective-navy);
  animation: spin 0.8s linear infinite;
}
.dl .download-card__status-icon--success {
  background: #16a34a;
  color: #fff;
}
.dl .download-card__status-icon--error {
  background: #dc2626;
  color: #fff;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.dl .download-card__status-title {
  margin: 0;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
}
.dl .download-card__status-sub {
  margin: 4px 0 0;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .download-result {
  margin-top: 20px;
}
.dl .download-result__title {
  margin: 0 0 4px;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
  line-height: 1.4;
}
.dl .download-result__details {
  margin: 0 0 16px;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .download-result__table {
  margin: 0;
  background: var(--color-paper-white);
}
.dl .btn--download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: var(--text-caption);
  white-space: nowrap;
}
.dl .btn--secondary {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: var(--radius-buttons);
  border: 1px solid var(--color-frost-border);
  background: var(--color-paper-white);
  color: var(--color-inkwell);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
}
.dl .btn--secondary:hover {
  background: var(--color-cloud-mist);
}
.dl .download-another {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-frost-border);
}
.dl .download-another__title {
  margin: 0 0 16px;
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
}
.dl .status-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-cards);
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: var(--text-caption);
  display: none;
}
.dl .status-error.active { display: block; }
.dl .tool-switch {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-muted-slate);
  text-align: center;
}
.dl .tool-switch a { font-weight: 600; }
.dl .stats-counter {
  margin-top: 16px;
  font-size: var(--text-caption);
  color: var(--color-distant-mist);
  text-align: center;
}

/* Sections */
.dl .section {
  padding: var(--section-gap) 0 0;
}
.dl .section--band {
  margin-top: var(--section-gap);
  padding: 64px 0;
  background: var(--color-cloud-mist);
  border-top: 1px solid var(--color-frost-border);
  border-bottom: 1px solid var(--color-frost-border);
}
.dl .section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.dl .section__eyebrow {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-tight);
  text-transform: uppercase;
  color: var(--color-distant-mist);
  margin: 0 0 12px;
}
.dl .section__title {
  margin: 0 0 12px;
  font-size: var(--text-heading-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-collective-navy);
  line-height: var(--leading-heading-sm);
  letter-spacing: var(--tracking-tight);
}
.dl .section__lead {
  margin: 0;
  color: var(--color-muted-slate);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body-sm);
}

/* Step cards */
.dl .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}
.dl .step-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.dl .step-card__badge {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-collective-navy);
  color: var(--color-paper-white);
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  display: grid;
  place-items: center;
}
.dl .step-card__title {
  margin: 0 0 8px;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
}
.dl .step-card__text {
  margin: 0;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
  line-height: var(--leading-caption);
}

/* How it works */
.dl .how-block {
  max-width: 720px;
  margin: 0 auto;
}
.dl .how-block__lead {
  margin: 0 0 20px;
  color: var(--color-muted-slate);
  font-size: var(--text-body-sm);
}
.dl .section__title--left {
  text-align: left;
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-bold);
  margin-bottom: 12px;
}
.dl .how-block .info-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-cards);
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .how-block .info-box code {
  color: var(--color-slate-ink);
  font-size: 13px;
}
.dl .how-block .info-box strong {
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
}
.dl .how-split__steps { list-style: none; margin: 0; padding: 0; }
.dl .how-split__steps li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .how-split__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-collective-navy);
  color: var(--color-paper-white);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
  display: grid;
  place-items: center;
}
.dl .info-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-cards);
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .info-box strong {
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
}

/* Feature cards */
.dl .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--element-gap);
}
.dl .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.dl .feature-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  padding: var(--card-padding);
  box-shadow: var(--shadow-md);
}
.dl .feature-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.dl .feature-card__title {
  margin: 0 0 8px;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
}
.dl .feature-card__text {
  margin: 0;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
  line-height: var(--leading-caption);
}

/* FAQ accordion */
.dl .faq-list { max-width: 800px; margin: 0 auto; }
.dl .faq-item {
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  margin-bottom: 10px;
  background: var(--color-paper-white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dl .faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-inkwell);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dl .faq-item summary::-webkit-details-marker { display: none; }
.dl .faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-distant-mist);
  border-bottom: 2px solid var(--color-distant-mist);
  transform: rotate(45deg);
  transition: transform 0.2s ease-out;
  flex-shrink: 0;
}
.dl .faq-item[open] summary::after { transform: rotate(-135deg); }
.dl .faq-item__body {
  padding: 0 20px 18px;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
  line-height: var(--leading-caption);
}
.dl .faq-item__body p { margin: 0 0 10px; }
.dl .faq-item__body p:last-child { margin-bottom: 0; }

/* Blog cards */
.dl .blog-card {
  background: var(--color-paper-white);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s ease-out;
}
.dl .blog-card:hover { border-color: var(--color-distant-mist); }
.dl .blog-card__title {
  margin: 0 0 8px;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
}
.dl .blog-card__title a {
  color: var(--color-inkwell);
  text-decoration: none;
}
.dl .blog-card__title a:hover { color: var(--color-collective-navy); }
.dl .blog-card__excerpt {
  margin: 0;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .link-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-semibold);
  color: var(--color-collective-navy);
}

/* Content pages */
.dl .content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.dl .content-page h1 {
  margin: 0 0 12px;
  font-size: var(--text-heading-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-collective-navy);
  letter-spacing: var(--tracking-tight);
}
.dl .content-page h2 {
  margin: 32px 0 12px;
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-bold);
  color: var(--color-inkwell);
}
.dl .content-page h3 {
  margin: 24px 0 8px;
  font-size: var(--text-body-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-slate-ink);
}
.dl .content-page p, .dl .content-page li {
  color: var(--color-muted-slate);
  margin-bottom: 14px;
  font-size: var(--text-body-sm);
}
.dl .content-page ul, .dl .content-page ol {
  padding-left: 1.25rem;
}
.dl .content-page .meta {
  color: var(--color-distant-mist);
  font-size: var(--text-caption);
  margin-bottom: 28px;
}
.dl .content-page code {
  background: var(--color-cloud-mist);
  padding: 2px 6px;
  border-radius: 12px;
  font-size: var(--text-caption);
  color: var(--color-slate-ink);
  border: 1px solid var(--color-frost-border);
}
.dl .content-page .info-box {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-cards);
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .content-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-size: var(--text-caption);
}
.dl .content-table th, .dl .content-table td {
  padding: 12px 14px;
  border: 1px solid var(--color-frost-border);
  text-align: left;
  vertical-align: top;
}
.dl .content-table th {
  background: var(--color-cloud-mist);
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
}
.dl .content-table td {
  color: var(--color-muted-slate);
}
.dl .content-page .faq-list {
  margin: 24px 0;
}
.dl .content-page .code-block {
  display: block;
  margin: 12px 0;
  padding: 12px 14px;
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-cards);
  font-size: 13px;
  color: var(--color-slate-ink);
  overflow-x: auto;
}
.dl .content-page .article-cta {
  margin-top: 32px;
  padding: 20px;
  border-radius: var(--radius-cards);
  background: var(--color-cloud-mist);
  border: 1px solid var(--color-frost-border);
}
.dl .content-page .article-cta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-inkwell);
}
.dl .content-page .related-links {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-frost-border);
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
}
.dl .back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-collective-navy);
}

/* Footer */
.dl .footer {
  margin-top: var(--section-gap);
  padding: 48px 24px;
  background: var(--color-cloud-mist);
  border-top: 1px solid var(--color-frost-border);
}
.dl .footer__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  text-align: center;
}
.dl .footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-inkwell);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-body-sm);
}
.dl .footer__copy {
  font-size: var(--text-caption);
  color: var(--color-distant-mist);
  margin-bottom: 16px;
}
.dl .footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.dl .footer__links a {
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  color: var(--color-distant-mist);
}
.dl .footer__links a:hover { color: var(--color-collective-navy); }
.dl .footer__disclaimer {
  margin-top: 20px;
  font-size: var(--text-caption);
  color: var(--color-distant-mist);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--leading-caption);
}

/* Cookie banner */
.dl .cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px;
  background: var(--color-paper-white);
  border-top: 1px solid var(--color-frost-border);
  box-shadow: var(--shadow-md);
  display: none;
}
.dl .cookie-banner.active { display: block; }
.dl .cookie-banner__inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dl .cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: var(--text-caption);
  color: var(--color-muted-slate);
  margin: 0;
}
.dl .cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .dl .steps-grid, .dl .card-grid, .dl .device-grid { grid-template-columns: 1fr; }
  .dl .card-grid--2 { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .dl .download-form__fields {
    flex-direction: column;
  }
  .dl .btn--primary { width: 100%; }
  .dl .hero { padding: 48px 0 32px; }
  .dl .share-bar { max-width: none; }
  .dl .share-bar__btn { font-size: 12px; gap: 4px; }
}

/* Thread reader */
.dl .thread-page { padding: 32px 0 80px; }
.dl .thread-page__inner { max-width: 680px; }
.dl .thread-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  margin: 8px 0 10px;
}
.dl .thread-hero__author:hover { text-decoration: none; }
.dl .thread-hero__avatar,
.dl .user-hero__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-cloud-mist);
}
.dl .user-hero__avatar { width: 72px; height: 72px; }
.dl .thread-hero__author strong,
.dl .user-hero__name {
  display: block;
  font-size: 18px;
  color: var(--color-inkwell);
}
.dl .thread-hero__handle,
.dl .user-hero__handle,
.dl .user-hero__meta,
.dl .thread-hero__meta {
  margin: 2px 0 0;
  color: var(--color-distant-mist);
  font-size: 14px;
}
.dl .thread-page__title,
.dl .user-hero__name {
  margin: 12px 0 28px;
  font-size: 30px;
  line-height: 1.28;
  color: var(--color-inkwell);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.dl .user-hero {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}
.dl .user-hero__name { margin: 0 0 4px; font-size: 28px; }
.dl .thread-article {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-slate-ink);
}
.dl .thread-post { margin: 0 0 28px; }
.dl .thread-post p { margin: 0 0 14px; }
.dl .thread-post a { color: var(--color-collective-navy); }
.dl .thread-post__media {
  margin: 8px 0 16px;
  display: grid;
  gap: 10px;
}
.dl .thread-post__media img,
.dl .thread-post__video {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--color-frost-border);
  background: #111;
  max-height: 520px;
  object-fit: contain;
}
.dl .thread-post__tools {
  margin: 0;
  font-size: 13px;
  color: var(--color-distant-mist);
}
.dl .thread-follow {
  margin: 8px 0 36px;
  padding-top: 18px;
  border-top: none;
  color: var(--color-muted-slate);
  font-size: 15px;
}
.dl .share-bar {
  display: flex;
  width: 100%;
  max-width: 480px;
  margin: 4px 0 20px;
  border-radius: 8px;
  overflow: hidden;
}
.dl .share-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 8px;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}
.dl .share-bar__btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
.dl .share-bar__btn--x { background: #000; }
.dl .share-bar__btn--fb { background: #1877f2; }
.dl .share-bar__btn--mail { background: #6b7280; }
.dl .share-bar__btn--pdf { background: #b91c1c; }
.dl .share-bar__btn:hover { filter: brightness(1.08); }
.dl .share-bar__btn.is-busy {
  opacity: 0.55;
  pointer-events: none;
  cursor: wait;
}
.dl form.is-busy {
  pointer-events: none;
}
.dl form.is-busy .btn,
.dl .btn.is-busy {
  cursor: wait;
}
.dl .btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.dl form.is-busy .btn--primary:disabled {
  cursor: wait;
}
.dl .user-archive { padding: 12px 0 48px; }
.dl .user-archive .layout { padding-left: 0; padding-right: 0; }
.dl .user-archive__intro {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.dl .user-archive__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #d7d7d7;
  flex-shrink: 0;
}
.dl .user-archive .entry:not(:has(.entry-media)) {
  grid-template-columns: 1fr;
}
.dl .saved-list { display: grid; gap: 28px; }
.dl .saved-card__media { display: block; margin: 0 0 10px; }
.dl .saved-card__media img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--color-frost-border);
}
.dl .saved-card__meta {
  margin: 0 0 6px;
  color: var(--color-distant-mist);
  font-size: 13px;
}
.dl .saved-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}
.dl .saved-card__title a { color: var(--color-inkwell); text-decoration: none; }
.dl .saved-card__title a:hover { text-decoration: underline; }
.dl .saved-card__excerpt {
  margin: 0;
  color: var(--color-muted-slate);
  font-size: 15px;
  line-height: 1.55;
}
.dl .saved-empty { color: var(--color-muted-slate); margin: 0 0 24px; }
