html.blank.page body {
  margin: 0;
  padding: 0;
}

.dlpd,
.dlpd * {
  box-sizing: border-box;
}

.dlpd {
  --dlpd-background: #ffffff;
  --dlpd-foreground: #1a1a1a;
  --dlpd-card: #ffffff;
  --dlpd-primary: #3b1d54;
  --dlpd-primary-foreground: #ffffff;
  --dlpd-secondary: #f3e8f0;
  --dlpd-muted: #ececf0;
  --dlpd-muted-foreground: #717182;
  --dlpd-accent: #ac4b9c;
  --dlpd-border: rgba(0, 0, 0, 0.1);
  --dlpd-input-background: #f3f3f5;
  --dlpd-radius: 10px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--dlpd-background);
  color: var(--dlpd-foreground);
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}

.dlpd.dlpd-theme-dark {
  --dlpd-background: #1a0f2e;
  --dlpd-foreground: #f5f3f7;
  --dlpd-card: #251740;
  --dlpd-primary: #ac4b9c;
  --dlpd-primary-foreground: #ffffff;
  --dlpd-secondary: #3b1d54;
  --dlpd-muted: #2d1a47;
  --dlpd-muted-foreground: #b8b0c4;
  --dlpd-accent: #93278f;
  --dlpd-border: rgba(172, 75, 156, 0.2);
  --dlpd-input-background: rgba(172, 75, 156, 0.1);
}

#mainContent .dlpd a {
  text-decoration: none;
}

.dlpd__bg-glow {
  display: none;
}

.dlpd__container {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding-inline: 16px;
}

.dlpd h1,
.dlpd h2,
.dlpd h3,
.dlpd h4,
.dlpd p,
.dlpd ul,
.dlpd ol {
  margin: 0;
}

.dlpd a {
  text-decoration: none;
}

.dlpd a:not(.dlpd__btn) {
  color: var(--dlpd-primary);
}

.dlpd__header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--dlpd-background) 95%, transparent);
  border-bottom: 1px solid var(--dlpd-border);
  height: auto;
  padding: 0;
  text-align: left;
}

.scrolled .dlpd__header {
  height: auto;
  box-shadow: none;
  transition: none;
  background: color-mix(in srgb, var(--dlpd-background) 95%, transparent);
}

.dlpd__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 64px;
}

.dlpd__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.dlpd__logo-img {
  display: block;
  height: 32px;
  width: auto;
}

.dlpd__nav,
.dlpd__header-actions {
  display: none;
}

.dlpd__nav {
  align-items: center;
  gap: 32px;
}

.dlpd__nav a {
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.dlpd__nav a:hover {
  color: var(--dlpd-primary);
}

.dlpd__header-actions {
  align-items: center;
  gap: 16px;
}

.dlpd__svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.dlpd__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  cursor: pointer;
  padding: 0;
}

.dlpd__icon-btn:hover {
  color: var(--dlpd-primary);
}

.dlpd__icon-btn--mobile {
  display: inline-flex;
}

.dlpd__mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  cursor: pointer;
  padding: 0;
}

.dlpd__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.dlpd__theme-icon--sun,
.dlpd__menu-icon--close {
  display: none;
}

.dlpd.dlpd-theme-dark .dlpd__theme-icon--moon {
  display: none;
}

.dlpd.dlpd-theme-dark .dlpd__theme-icon--sun {
  display: inline-flex;
}

.dlpd-menu-open .dlpd__menu-icon--open {
  display: none;
}

.dlpd-menu-open .dlpd__menu-icon--close {
  display: inline-flex;
}

.dlpd__mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--dlpd-border);
  background: var(--dlpd-background);
  padding: 16px;
}

.dlpd__mobile-nav a {
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  font-size: 14px;
  font-weight: 500;
}

.dlpd__mobile-nav-actions {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.dlpd__mobile-nav-actions .dlpd__btn {
  width: 100%;
}

.dlpd-menu-open .dlpd__mobile-nav {
  display: flex;
}

.dlpd__hero {
  padding: 48px 0;
}

.dlpd__hero-grid {
  display: grid;
  gap: 32px;
}

.dlpd__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--dlpd-secondary) 90%, transparent);
  color: var(--dlpd-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  padding: 6px 12px;
}

.dlpd__hero .dlpd__badge {
  margin-bottom: 20px;
}

.dlpd__hero h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: normal;
  margin: 0 0 24px;
}

.dlpd__lead {
  font-size: 18px;
  line-height: 1.625;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  margin: 0 0 24px;
}

.dlpd__hero .dlpd__lead {
  margin-bottom: 24px;
}

.dlpd__check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.dlpd__check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: color-mix(in srgb, var(--dlpd-foreground) 80%, transparent);
  line-height: 1.5;
}

.dlpd__check-icon {
  color: var(--dlpd-primary);
  display: inline-flex;
  margin-top: 1px;
  flex-shrink: 0;
}

.dlpd__svg--check {
  width: 20px;
  height: 20px;
}

.dlpd__hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  min-height: 48px;
}

.dlpd__hero-copy > .dlpd__check-list {
  margin-bottom: 24px;
}

.dlpd__meta {
  font-size: 14px;
  color: var(--dlpd-muted-foreground);
  margin-top: 0;
}

.dlpd__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dlpd__btn--primary {
  background: var(--dlpd-primary);
  border-color: var(--dlpd-primary);
  color: var(--dlpd-primary-foreground) !important;
}

.dlpd__btn--primary:hover {
  background: color-mix(in srgb, var(--dlpd-primary) 90%, black 10%);
}

.dlpd__btn--secondary {
  background: var(--dlpd-secondary);
  border-color: var(--dlpd-secondary);
  color: var(--dlpd-primary);
}

.dlpd__btn--secondary:hover {
  background: color-mix(in srgb, var(--dlpd-secondary) 82%, var(--dlpd-background));
}

.dlpd__btn--ghost {
  background: transparent;
  border-color: transparent;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
}

.dlpd__btn--outline {
  background: transparent;
  border-color: var(--dlpd-border);
  color: var(--dlpd-foreground);
}

.dlpd__btn--outline:hover {
  background: color-mix(in srgb, var(--dlpd-secondary) 35%, transparent);
}

.dlpd__hero-side {
  display: grid;
  gap: 24px;
}

.dlpd__image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--dlpd-radius);
}

.dlpd__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dlpd__image--hero {
  min-height: 326px;
}

.dlpd__image--office {
  min-height: 160px;
}

.dlpd__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--dlpd-secondary) 60%, var(--dlpd-background));
}

.dlpd__card {
  background: var(--dlpd-card);
  border: 1px solid var(--dlpd-border);
  border-radius: var(--dlpd-radius);
  padding: 24px;
}

.dlpd__card-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--dlpd-foreground);
}

.dlpd__hero-side .dlpd__card-title {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  margin: 0;
}

.dlpd__hero-side .dlpd__card .dlpd__check-list {
  margin-top: 16px;
  margin-bottom: 0;
}

.dlpd__hero-side .dlpd__card .dlpd__meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dlpd-border);
}

.dlpd__section {
  padding: 48px 0;
}

.dlpd__section--alt {
  background: color-mix(in srgb, var(--dlpd-secondary) 30%, transparent);
}

.dlpd__section-head {
  margin-bottom: 48px;
  text-align: center;
  display: grid;
  gap: 12px;
}

.dlpd__section-head h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.dlpd__section-head p {
  max-width: 640px;
  margin: 0 auto;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
}

.dlpd__steps {
  display: grid;
  gap: 24px;
  margin-bottom: 16px;
}

.dlpd__step {
  position: relative;
}

.dlpd__step-num {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--dlpd-primary);
  color: var(--dlpd-primary-foreground);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.dlpd__step h3 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  margin: 0 0 8px;
}

.dlpd__step p {
  font-size: 16px;
  line-height: 1.625;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
}

.dlpd__center {
  text-align: center;
}

.dlpd__grid {
  display: grid;
  gap: 24px;
}

.dlpd__grid--four,
.dlpd__grid--three {
  grid-template-columns: 1fr;
}

.dlpd__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--dlpd-primary) 10%, transparent);
  color: var(--dlpd-primary);
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
}

.dlpd__svg--card {
  width: 24px;
  height: 24px;
}

.dlpd__card p {
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  font-size: 14px;
  line-height: 1.55;
}

.dlpd__card--hover {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.dlpd__card--hover:hover {
  border-color: color-mix(in srgb, var(--dlpd-primary) 30%, var(--dlpd-border));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--dlpd-primary) 14%, transparent);
}

.dlpd__download-card {
  width: min(768px, 100%);
  margin: 72px auto 0;
  border-radius: var(--dlpd-radius);
  border: 2px solid color-mix(in srgb, var(--dlpd-accent) 20%, transparent);
  background: color-mix(in srgb, var(--dlpd-accent) 5%, transparent);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dlpd__download-card h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 8px;
}

.dlpd__download-card .dlpd__card-title {
  margin-bottom: 8px;
}

.dlpd__topic-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dlpd__topic-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--dlpd-primary) 10%, transparent);
  color: var(--dlpd-primary);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.dlpd__svg--topic {
  width: 20px;
  height: 20px;
}

.dlpd__dot-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 8px;
}

.dlpd .dlpd__dot-list {
  margin-top: 30px;
}

.dlpd__dot-list li {
  position: relative;
  padding-left: 14px;
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  font-size: 14px;
  line-height: 1.625;
}

.dlpd__dot-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dlpd-primary);
}

.dlpd__narrow {
  width: min(896px, 100%);
  margin: 0 auto;
}

.dlpd__narrow--faq {
  width: min(832px, 100%);
}

.dlpd__narrow--faq .dlpd__section-head {
  margin-bottom: 32px;
}

.dlpd__rule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: dlpd-rule;
}

.dlpd__rule-list li {
  display: flex;
  gap: 12px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--dlpd-foreground) 80%, transparent);
}

.dlpd__rule-list li::before {
  counter-increment: dlpd-rule;
  content: counter(dlpd-rule) ".";
  color: var(--dlpd-primary);
  font-weight: 600;
  flex-shrink: 0;
}

.dlpd__faq {
  display: grid;
}

.dlpd__rule-list + .dlpd__meta {
  margin-top: 22px;
}

.dlpd__faq details {
  border-bottom: 1px solid var(--dlpd-border);
}

.dlpd__faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 16px 0;
  border-radius: 8px;
  cursor: pointer;
}

.dlpd__faq summary:hover {
  text-decoration: underline;
}

.dlpd__faq summary::-webkit-details-marker {
  display: none;
}

.dlpd__faq-chevron {
  color: var(--dlpd-muted-foreground);
  transition: transform 0.2s ease;
}

.dlpd__faq details[open] .dlpd__faq-chevron {
  transform: rotate(180deg);
}

.dlpd__faq p {
  color: color-mix(in srgb, var(--dlpd-foreground) 80%, transparent);
  line-height: 1.625;
  margin: 0 0 16px;
}

.dlpd__faq-content {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.dlpd__faq-content p {
  margin: 0;
}

.dlpd__book-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.dlpd__book-grid h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin: 0 0 24px;
}

.dlpd__book-grid .dlpd__lead {
  font-size: 16px;
  line-height: 1.625;
  margin: 0 0 12px;
  max-width: none;
}

.dlpd__book-grid .dlpd__meta {
  margin-bottom: 24px;
}

.dlpd__book-grid .dlpd__check-list {
  margin-bottom: 0;
}

.dlpd__book-grid .dlpd__check-list li {
  color: color-mix(in srgb, var(--dlpd-foreground) 90%, transparent);
  font-weight: 500;
}

.dlpd__office-info {
  margin-top: 32px;
  display: grid;
  gap: 8px;
}

.dlpd__office-info h3 {
  font-size: 18px;
  line-height: 1.56;
  font-weight: 600;
}

.dlpd__office-info p {
  color: color-mix(in srgb, var(--dlpd-foreground) 70%, transparent);
  line-height: 1.625;
}

.dlpd__office-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dlpd__form {
  display: grid;
  gap: 6px;
}

.dlpd__form label {
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}

.dlpd__form input,
.dlpd__form select,
.dlpd__form textarea {
  width: 100%;
  border: 1px solid var(--dlpd-border);
  border-radius: 8px;
  background: var(--dlpd-input-background);
  color: var(--dlpd-foreground);
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  padding: 9px 12px;
}

.dlpd__form input,
.dlpd__form select {
  height: 40px;
}

.dlpd__form textarea {
  min-height: 96px;
  resize: vertical;
}

.dlpd__form input:focus,
.dlpd__form select:focus,
.dlpd__form textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--dlpd-primary) 35%, transparent);
  outline-offset: 1px;
}

.dlpd__fieldgroup {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 6px;
}

.dlpd__fieldgroup legend {
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.dlpd__choice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
}

.dlpd__choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--dlpd-primary);
  margin: 0;
}

.dlpd__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.dlpd__consent input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--dlpd-primary);
}

.dlpd__form-actions {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dlpd__form-actions .dlpd__btn {
  width: 100%;
}

.dlpd__form-status {
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid transparent;
  margin: 0;
}

.dlpd__form-status.is-success {
  border-color: color-mix(in srgb, #0e8f5b 35%, transparent);
  background: color-mix(in srgb, #0e8f5b 12%, transparent);
  color: #0e8f5b;
}

.dlpd__form-status.is-error {
  border-color: color-mix(in srgb, #b42318 35%, transparent);
  background: color-mix(in srgb, #b42318 12%, transparent);
  color: #b42318;
}

.dlpd__section--contact .dlpd__card {
  border-width: 2px;
}

.dlpd__section--contact .dlpd__card-title {
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  margin: 0;
}

.dlpd__contact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}

.dlpd__footer {
  border-top: 1px solid var(--dlpd-border);
  background: color-mix(in srgb, var(--dlpd-secondary) 20%, transparent);
  padding: 32px 0;
}

.dlpd__footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dlpd__footer-links {
  display: flex;
  gap: 24px;
}

.dlpd__footer-links a {
  color: var(--dlpd-muted-foreground);
  font-size: 14px;
}

.dlpd__footer p {
  color: var(--dlpd-muted-foreground);
  font-size: 14px;
  text-align: center;
}

@media (min-width: 640px) {
  .dlpd__hero {
    padding: 64px 0;
  }

  .dlpd__section {
    padding: 64px 0;
  }

  .dlpd__hero h1 {
    font-size: 36px;
  }

  .dlpd__section-head h2,
  .dlpd__book-grid h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .dlpd__hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dlpd__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dlpd__download-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .dlpd__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dlpd__form-actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .dlpd__nav,
  .dlpd__header-actions {
    display: flex;
  }

  .dlpd__icon-btn--mobile,
  .dlpd__mobile-toggle {
    display: none;
  }

  .dlpd__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }

  .dlpd__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 64px;
    right: -16px;
    height: 1px;
    background: var(--dlpd-border);
  }

  .dlpd__grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dlpd__footer-inner {
    flex-direction: row;
  }

  .dlpd__footer p {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .dlpd__container {
    padding-inline: 32px;
  }

  .dlpd__hero {
    padding: 96px 0;
  }

  .dlpd__section {
    padding: 80px 0;
  }

  .dlpd__hero h1 {
    font-size: 48px;
  }

  .dlpd__hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
  }

  .dlpd__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dlpd__grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dlpd__book-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
}
