/* Base UI baseline and legacy class compatibility */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: #0f172a;
  background: #f8fafc;
}

main,
section,
article,
header,
footer,
nav {
  display: block;
}

.container {
  width: min(100%, 1140px);
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 .75rem;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 3vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }

p,
ul,
ol {
  margin: 0 0 1rem;
}

a {
  color: #1d4ed8;
}

a:hover {
  color: #1e40af;
}

hr {
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, .12);
  margin: 1rem 0;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .9em;
}

input,
select,
textarea,
button {
  font: inherit;
  color: inherit;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
select,
textarea,
.form-control {
  width: 100%;
  min-height: 42px;
  padding: .65rem .8rem;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .85);
}

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

input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 40px;
  padding: .62rem .95rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .16);
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
.btn:hover,
.button:hover {
  box-shadow: 0 10px 24px rgba(2, 6, 23, .1);
}

.btn-primary,
.button.is-primary,
.button.prominent {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border-color: rgba(99, 102, 241, .36);
}

.btn-secondary,
.pg-button-secondary {
  background: rgba(15, 23, 42, .06);
  color: #0f172a;
  border-color: rgba(15, 23, 42, .18);
}

.btn-outline-primary {
  background: transparent;
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, .45);
}

.btn-outline-secondary,
.button.is-outlined {
  background: transparent;
  color: #334155;
  border-color: rgba(51, 65, 85, .35);
}

.btn-danger,
.pg-button-danger,
.delete.danger {
  background: rgba(220, 38, 38, .1);
  color: #991b1b;
  border-color: rgba(185, 28, 28, .3);
}

.button.link {
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #1d4ed8;
  font-weight: 600;
}

.buttons,
.btn-group,
.field.is-grouped .control {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

.field.is-grouped {
  margin: 0;
}

.app-card {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(2, 6, 23, .07);
}

.title {
  margin: 0 0 .45rem;
  font-weight: 700;
}

.subtitle {
  margin: 0 0 1rem;
  color: rgba(15, 23, 42, .75);
}

.is-size-4 {
  font-size: 1.25rem;
}

.lead {
  font-size: 1.02rem;
  color: rgba(15, 23, 42, .8);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .12rem .5rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .75);
  font-size: .76rem;
}

.cancel-link {
  color: rgba(15, 23, 42, .72);
}

.cancel-link:hover {
  color: #0f172a;
}

.content > * + * {
  margin-top: .65rem;
}

.modal-opener {
  margin-top: .65rem;
}

.btn-close {
  position: relative;
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, .18);
  border-radius: 999px;
  background: transparent;
  color: rgba(15, 23, 42, .72);
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: .5rem .55rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(15, 23, 42, .1);
}

.form-field,
.mb-3 {
  margin-bottom: 1rem;
}

.form-field label,
.form-label {
  display: block;
  margin-bottom: .35rem;
  font-weight: 600;
}

.form-text,
small.form-text {
  display: block;
  margin-top: .3rem;
  font-size: .86rem;
  color: rgba(15, 23, 42, .62);
}

.form-check {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.form-check-label {
  margin: 0;
  font-weight: 500;
}

.error,
.errorlist {
  margin: .3rem 0 0;
  padding: 0;
  list-style: none;
  color: #b91c1c;
  font-size: .9rem;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(185, 28, 28, .5);
}

.mt-2,
.my-2 {
  margin-top: .75rem !important;
}

.my-2 {
  margin-bottom: .75rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.25rem !important;
}

.text-center {
  text-align: center !important;
}

.text-muted {
  color: rgba(15, 23, 42, .62) !important;
}

.pg-subtitle {
  margin-bottom: .8rem;
}

.pg-columns {
  display: grid;
  gap: 1rem;
}

.pg-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, .62);
}

.pg-text-muted,
.pg-help {
  color: rgba(15, 23, 42, .72);
}

nav[aria-label="breadcrumbs"] {
  margin-bottom: .8rem;
}

.pg-breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .9rem;
}

.pg-breadcrumbs li + li::before {
  content: "/";
  margin-right: .5rem;
  color: rgba(15, 23, 42, .45);
}

.pg-breadcrumb-active {
  font-weight: 600;
  color: rgba(15, 23, 42, .65);
}

.magic-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  width: min(100%, 680px);
}

.magic-form input {
  flex: 1 1 240px;
  min-width: 220px;
}

.magic-form button {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .magic-form input,
  .magic-form button {
    width: 100%;
    flex-basis: 100%;
  }
}

.marginTop {
  margin-top: 15px;
}

.centerAlign {
  text-align: center;
}

.centerMargins {
  margin-left: auto;
  margin-right: auto;
}

.notificationBackground {
  color: white;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .35rem .75rem;
}

.notificationBackground li {
  color: white;
  list-style: none;
}

.notificationBackground .notificationMessage,
.notificationBackground .notificationExit {
  color: #fff;
}

.notificationBackground ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.notificationMessage {
  margin-left: 25px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.notificationExit {
  color: #fff;
  font-weight: 700;
  line-height: 1;
  margin-right: 10px;
  opacity: .95;
  text-shadow: 0 1px 2px rgba(2, 6, 23, .22);
}

.notificationExitButton {
  width: 40px;
}


.notificationBackground-debug {
  background-color: #00895A;
}

.notificationBackground-info {
  background-color: #6F7887;
}

.notificationBackground-success {
  background-color: #3C71F7;
}

.notificationBackground-warning {
  background-color: #D9C800;
}

.notificationBackground-error {
  background-color: #D93526;
}

.topNavRight {
  margin-right: 0px !important;
}

.topNavRight:hover {
  cursor: pointer;
}

@keyframes fadeOut {
  0% {opacity: 1;}
  100% {opacity: 0;}
}

.fadeOut {
  animation-name: fadeOut;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.youtubeIcon {
  width: 35px;
  height: 30px;
}

.twitterIcon {
  width: 35px;
  height: 30px;
}

.noLinkDecoration {
  color: #373c44;
  text-decoration: none;
}

#dashboardContent {
  margin-left: 20px;
  width: 100%;
}

#leftNav { 
  max-width: 150px;
  border-right: 1px solid black;
}

.navButtonLink {
  margin-left: -5px;
}

footer {
  margin-top: 50px;
}

#dashboardContainer {
  display: inline-flex;
  position: relative;
  width: 100%;
}

/* DarePhone theme (from homepage) */
.dp-grad {
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(99, 102, 241, .18), transparent 55%),
    radial-gradient(900px 500px at 80% 0%, rgba(34, 197, 94, .14), transparent 55%),
    radial-gradient(900px 500px at 50% 110%, rgba(14, 165, 233, .12), transparent 55%);
}

.dp-theme {
  color: #0f172a;
}

/* If your global CSS defines .container too narrowly, this prevents a “mobile-width on desktop” look */
.dp-home.container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.dp-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.dp-card {
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(8px);
  border-radius: 18px;
}

.dp-shadow { box-shadow: 0 18px 50px rgba(2, 6, 23, .10); }
.dp-muted { color: rgba(15, 23, 42, .72); }

.dp-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .85rem;
  width: min(100%, 760px);
  border: 1px solid rgba(15, 23, 42, .12);
  padding: .52rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(248, 250, 252, .82));
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .7);
}

.dp-pill__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .45rem .95rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .16);
  background: linear-gradient(180deg, rgba(248, 250, 252, .98), rgba(241, 245, 249, .92));
  color: rgba(15, 23, 42, .95);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.dp-pill__text {
  color: rgba(15, 23, 42, .76);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.dp-grid { display: grid; gap: 1rem; }

/* IMPORTANT: grids adapt to available width (not viewport) */
.dp-grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.dp-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Keep only the hero as a true desktop two-column layout */
@media (min-width: 1024px) {
  .dp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.05rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, .14);
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}

.dp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, .10);
}

.dp-btn-primary {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white;
  border-color: rgba(99, 102, 241, .35);
}

.dp-btn-ghost { background: rgba(255, 255, 255, .65); color: #0f172a; }

.dp-kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .8rem;
  padding: .2rem .45rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .7);
}

.dp-section { padding: 3.25rem 0; }
.dp-h1 { font-size: clamp(2.1rem, 3.5vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em; }
.dp-h2 { font-size: clamp(1.5rem, 2.2vw, 2.1rem); line-height: 1.15; letter-spacing: -0.01em; }
.dp-h3 { font-size: 1.05rem; margin: 0 0 .4rem; }

.dp-hr { height: 1px; background: rgba(15, 23, 42, .08); border: 0; margin: 0; }

.dp-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .65);
  font-size: .8rem;
}

.dp-mini { font-size: .92rem; }

.dp-logos { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; opacity: .85; }
.dp-logo {
  border: 1px dashed rgba(15, 23, 42, .18);
  border-radius: 12px;
  padding: .55rem .75rem;
  background: rgba(255, 255, 255, .55);
  font-weight: 600;
  font-size: .9rem;
}

.signupCard {
  margin: 0 0 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
}

.signupCard__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.signupCard__hint {
  margin-top: .3rem;
  color: rgba(15, 23, 42, .72);
}

.signupCard__fineprint {
  margin-top: .55rem;
  font-size: .85rem;
  color: rgba(15, 23, 42, .6);
}

.magic-form--home {
  display: flex;
  gap: .65rem;
  margin-top: .7rem;
  align-items: center;
  flex-wrap: wrap;
}

.magic-form--home input {
  flex: 1 1 240px;
  min-width: 220px;
}

.magic-form--home button {
  white-space: nowrap;
}

.dp-screen {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .45));
}

.dp-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem .9rem;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .55);
}

.dp-dots { display: flex; gap: .35rem; }
.dp-dot { width: .6rem; height: .6rem; border-radius: 99px; background: rgba(15, 23, 42, .18); }
.dp-screen-body { padding: 1rem; }

.dp-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border-radius: 999px;
  padding: .35rem .55rem;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .65);
  font-size: .82rem;
}

.dp-list { padding-left: 1.1rem; }
.dp-list li { margin: .35rem 0; color: rgba(15, 23, 42, .8); }

@media (max-width: 900px) {
  .dp-home .dp-section { padding: 2.1rem 0; }
  .dp-home .dp-wrap { padding: 0 .85rem; }
  .dp-home .dp-screen { margin-top: .75rem !important; }
  .dp-home .dp-screen-top {
    align-items: flex-start;
    gap: .5rem;
    flex-wrap: wrap;
  }
  .dp-home .magic-form--home input {
    min-width: 0;
    flex-basis: 100%;
  }
}

@media (max-width: 640px) {
  .dp-home .dp-grid-2,
  .dp-home .dp-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .dp-home .dp-pill {
    width: 100%;
    border-radius: 16px;
    grid-template-columns: 1fr;
    gap: .55rem;
    padding: .56rem;
  }

  .dp-home .dp-pill__tag {
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    min-height: 42px;
    white-space: normal;
  }

  .dp-home .dp-pill__text {
    font-size: .98rem;
  }

  .dp-home .dp-btn {
    width: 100%;
  }

  .dp-home .dp-logo {
    width: 100%;
  }

  .dp-home .dp-card {
    border-radius: 14px;
  }

  .dp-home .dp-screen-body {
    padding: .8rem;
  }
}

details.dp-faq {
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .65);
  padding: .9rem 1rem;
}

details.dp-faq summary { cursor: pointer; font-weight: 700; }
details.dp-faq p { margin: .6rem 0 0; color: rgba(15, 23, 42, .74); }

/* Theme polish for non-home pages */
.dp-theme .container:not(.dp-home) {
  max-width: 980px;
  margin: 2rem auto 3rem;
  padding: 1.6rem 1.5rem 2.4rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(2, 6, 23, .10);
}

.dp-theme .container:not(.dp-home) > * + * { margin-top: 1rem; }
.dp-theme .marginTop { margin-top: 0 !important; }

.dp-theme h1 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; }
.dp-theme h2 { font-size: clamp(1.3rem, 2.2vw, 2rem); line-height: 1.15; letter-spacing: -0.01em; }
.dp-theme h3 { font-size: 1.1rem; }

.dp-theme p,
.dp-theme label,
.dp-theme li { color: rgba(15, 23, 42, .8); }


.dp-theme input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]),
.dp-theme select,
.dp-theme textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .75);
  padding: .7rem .85rem;
}

.dp-theme button,
.dp-theme input[type="submit"],
.dp-theme .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, .14);
  background: rgba(255, 255, 255, .85);
  color: #0f172a;
  text-decoration: none;
}

.dp-theme .btn-primary,
.dp-theme button[type="submit"],
.dp-theme input[type="submit"] {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  border-color: rgba(99, 102, 241, .35);
}

.dp-theme button:hover,
.dp-theme input[type="submit"]:hover,
.dp-theme .btn:hover { box-shadow: 0 10px 24px rgba(2, 6, 23, .10); }

/* Dashboard theme */
.dp-dashboard .dp-dashboard-wrap { padding: 1.25rem; }

.dp-dashboard .dash {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.1fr) minmax(0, 2.4fr);
  gap: .75rem;
  height: calc(100vh - 96px);
}

.dp-dashboard .panel,
.dp-dashboard .main {
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255, 255, 255, .8);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(2, 6, 23, .08);
}

.dp-dashboard .panel { overflow: auto; }
.dp-dashboard .main { padding: 16px; overflow: auto; }

.dp-dashboard .item {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  text-decoration: none;
  color: #0f172a;
}

.dp-dashboard .item.active {
  background: rgba(59, 130, 246, .08);
  border-left: 3px solid #6366f1;
}

.dp-dashboard .badge,
.dp-dashboard .callBadge {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .12);
}

.dp-dashboard .badge {
  background: #0f172a;
  color: #fff;
}

.dp-dashboard .callBadge {
  background: rgba(255, 255, 255, .85);
  color: #0f172a;
}

.dp-dashboard .acBox {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, .12);
}

.dp-dashboard .dp-add-channel-row {
  display: grid;
  gap: .5rem;
}

.dp-dashboard .dp-add-channel-row > * {
  width: 100%;
}

@media (max-width: 1200px) {
  .dp-dashboard .dash { grid-template-columns: 260px 280px 1fr; }
}

@media (max-width: 980px) {
  .dp-dashboard .dash { grid-template-columns: 1fr; height: auto; }
}

/* Shared top navigation for marketing pages */
.dp-topnav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.dp-topnav__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: .75rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dp-topnav__left,
.dp-topnav__right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.dp-topnav__links {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-wrap: wrap;
}

.dp-topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  font-size: 1.08rem;
  color: rgba(15, 23, 42, .92);
  text-decoration: none;
  line-height: 1;
  margin-right: .5rem;
}

.dp-topnav__brand-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
}

.dp-topnav__link {
  border-radius: 10px;
  padding: .45rem .65rem;
  color: rgba(15, 23, 42, .85);
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
}

.dp-topnav__link:hover {
  background: rgba(15, 23, 42, .06);
  color: #0f172a;
}

.dp-topnav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .62rem .88rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, .18);
  background: rgba(15, 23, 42, .92);
  color: #fff;
  white-space: nowrap;
}

.dp-topnav__btn:hover {
  background: rgba(15, 23, 42, .98);
}

.dp-topnav__signup {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-width: 0;
}

.dp-topnav__signup input[type="email"] {
  width: 168px;
  min-width: 136px;
  min-height: 38px;
  border-radius: 10px;
  padding: .5rem .7rem;
  background: rgba(255, 255, 255, .94);
}

.dp-topnav__signup button {
  min-height: 38px;
  padding: .5rem .78rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  border-color: rgba(15, 23, 42, .18);
  font-weight: 800;
}

.dp-dashboard .dp-topnav__right .dp-topnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  min-height: 22px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1;
}

@media (max-width: 980px) {
  .dp-topnav__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
    padding: .65rem .9rem .55rem;
  }

  .dp-topnav__left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }

  .dp-topnav__right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .5rem;
  }

  .dp-topnav__links {
    width: 100%;
    gap: .2rem;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 2px;
  }

  .dp-topnav__links::-webkit-scrollbar { display: none; }

  .dp-topnav__brand {
    margin-right: 0;
    font-size: 1rem;
  }

  .dp-topnav__brand-icon {
    width: 28px;
    height: 28px;
  }

  .dp-topnav__link {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: .4rem .55rem;
    font-size: .88rem;
  }

  .dp-topnav__btn {
    padding: .55rem .76rem;
    font-size: .88rem;
  }

  .dp-topnav__signup {
    width: 100%;
  }

  .dp-topnav__signup input[type="email"] {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
}

/* Public dashboard homepage */
body.dp-public-dashboard {
  --dp-dashboard-nav-height: 44px;
  --dp-public-signin-bar-height: 150px;
  --dp-public-livechat-clearance: 78px;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: #f8fafc;
  color: #111827;
  font-size: 13px;
}

.dp-public-home {
  height: 100dvh;
  overflow: hidden;
}

.dp-public-dashboard .dp-topnav {
  position: relative;
  top: auto;
  z-index: 1;
  width: 100%;
  height: var(--dp-dashboard-nav-height);
  min-height: var(--dp-dashboard-nav-height);
  margin-left: 0;
  margin-right: 0;
  backdrop-filter: none;
}

.dp-public-dashboard .dp-topnav__inner {
  max-width: none;
  height: 100%;
  min-height: 0;
  padding: 0 8px;
  gap: 8px;
}

.dp-public-dashboard .dp-topnav__left,
.dp-public-dashboard .dp-topnav__right {
  gap: 8px;
}

.dp-public-dashboard .dp-topnav__brand {
  gap: 6px;
  margin-right: 0;
  font-size: 12px;
  font-weight: 700;
}

.dp-public-dashboard .dp-topnav__brand-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.dp-public-dashboard .dp-topnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1;
}

.dp-public-dashboard .dp-topnav__signup {
  gap: 6px;
}

.dp-public-dashboard .dp-topnav__signup input[type="email"] {
  width: 150px !important;
  min-width: 120px;
  max-width: 150px;
  height: 26px !important;
  min-height: 26px !important;
  max-height: 26px !important;
  padding: 0 8px !important;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
  box-sizing: border-box;
}

.dp-public-dashboard .dp-topnav__signup button {
  height: 26px;
  min-height: 26px;
  max-height: 26px;
  padding: 2px 9px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1;
}

.dp-public-shell {
  width: 100%;
  height: calc(100dvh - var(--dp-dashboard-nav-height) - var(--dp-public-signin-bar-height));
  min-height: 0;
  display: grid;
  grid-template-columns: 280px 320px minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid rgba(15, 23, 42, .08);
  background: #f8fafc;
}

.dp-public-panel {
  min-width: 0;
  min-height: 0;
  border-right: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  overflow: auto;
}

.dp-public-panel--orgs {
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
}

.dp-public-panel--threads {
  background: #fff;
}

.dp-public-panel--conversation {
  display: flex;
  flex-direction: column;
  padding: 8px;
  background: #fff;
  overflow: hidden;
}

.dp-public-dashboard .dp-public-mobile-pane-toggle {
  display: none;
}

.dp-public-mobile-pane-body {
  min-height: 0;
}

.dp-public-panel--conversation > .dp-public-mobile-pane-body {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.dp-public-org-heading {
  min-height: 52px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #111827;
  font-weight: 700;
}

.dp-public-icon-button {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-icon-button {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  border-radius: 999px;
}

.dp-public-icon-button:hover {
  box-shadow: none;
  background: #f9fafb;
}

.dp-public-panel__top {
  min-height: 48px;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
}

.dp-public-panel__top--stacked {
  align-items: flex-start;
}

.dp-public-eyebrow,
.dp-public-section-label {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dp-public-section-label {
  padding: 10px 12px 5px;
}

.dp-public-status,
.dp-public-chip,
.dp-public-badge,
.dp-public-notice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.dp-public-status {
  min-height: 20px;
  padding: 0 8px;
  background: #dcfce7;
  color: #166534;
}

.dp-public-list {
  display: block;
  padding: 0 0 8px;
}

.dp-public-org-row,
.dp-public-channel-row {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-org-row,
.dp-public-dashboard .dp-public-channel-row {
  justify-content: space-between;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dp-public-org-row {
  min-height: 28px;
  padding: 0 12px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
}

.dp-public-dashboard .dp-public-org-row {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 0;
}

.dp-public-channel-list {
  margin: 0 0 4px 8px;
}

.dp-public-channel-row {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 400;
}

.dp-public-org-row:hover,
.dp-public-channel-row:hover {
  box-shadow: none;
  background: rgba(15, 23, 42, .045);
}

.dp-public-dashboard .dp-public-org-row:hover,
.dp-public-dashboard .dp-public-channel-row:hover {
  background: rgba(15, 23, 42, .045);
  box-shadow: none;
}

.dp-public-channel-row.is-active {
  background: #e5e7eb;
  color: #111827;
}

.dp-public-dashboard .dp-public-channel-row.is-active {
  background: #e5e7eb;
}

.dp-public-dashboard .dp-public-channel-row {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
}

.dp-public-row__avatar,
.dp-public-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f2937;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.dp-public-row__body,
.dp-public-thread__body {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 2px;
}

.dp-public-row__body strong,
.dp-public-thread__body strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp-public-row__body small,
.dp-public-thread__meta,
.dp-public-thread__preview,
.dp-public-thread__line small {
  color: #64748b;
  font-size: 11px;
}

.dp-public-badge {
  min-width: 0;
  height: auto;
  padding: 2px 8px;
  background: #6b7280;
  color: #fff;
  font-size: 12px;
}

.dp-public-notice {
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  background: #e2e8f0;
  color: #475569;
}

.dp-public-notice.has-new {
  background: #fee2e2;
  color: #991b1b;
}

.dp-public-search-card {
  padding: 8px 12px;
  border-bottom: 1px solid #f3f3f3;
}

.dp-public-conversation-launcher {
  padding: 10px 12px 4px;
}

.dp-public-conversation-launcher button {
  width: 100%;
}

.dp-public-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-public-search-input {
  flex: 1 1 auto;
  min-width: 0;
}

.dp-public-search-input input {
  height: 36px;
  min-height: 36px;
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 15px;
}

#publicThreadSearch {
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 15px;
}

.dp-public-search-row > button {
  min-width: 84px;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: none;
}

#publicThreadSearchButton {
  min-width: 84px;
  height: 36px;
  min-height: 36px;
  padding: 0 12px;
  font-size: 14px;
}

.dp-public-search-status {
  height: 14px;
  margin-top: 6px;
  color: rgba(15, 23, 42, .68);
  font-size: 11px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dp-public-filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}

.dp-public-filter {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d6d6d6;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-filter {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
}

.dp-public-filter.is-active {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.dp-public-thread-selection {
  padding: 6px 12px;
  border-bottom: 1px solid #f3f3f3;
}

.dp-public-thread-selection label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  cursor: pointer;
}

.dp-public-thread-selection input,
.dp-public-thread-checkbox {
  appearance: auto;
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  accent-color: #3b82f6;
}

.dp-public-thread-list {
  display: block;
  border-bottom: 1px solid #f3f3f3;
}

.dp-public-thread {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid transparent;
  color: #111827;
}

.dp-public-thread:hover {
  background: rgba(15, 23, 42, .045);
}

.dp-public-thread.is-active {
  background: rgba(59, 130, 246, .08);
  border-left-color: #6366f1;
}

.dp-public-thread-button {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-thread-button {
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dp-public-thread-button:hover {
  box-shadow: none;
}

.dp-public-dashboard .dp-public-thread-button:hover {
  background: transparent;
  box-shadow: none;
}

.dp-public-thread.is-unread .dp-public-thread__body strong,
.dp-public-thread.is-unread .dp-public-thread__meta {
  font-weight: 850;
  color: #0f172a;
}

.dp-public-thread.has-pulse {
  animation: dpPublicPulse 1.6s ease;
}

.dp-public-avatar--small {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 11px;
  background: #2563eb;
}

.dp-public-thread__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.dp-public-thread__line strong {
  font-size: 13px;
  line-height: 1.2;
}

.dp-public-thread__line small {
  min-width: 30px;
  margin-top: 1px;
  color: rgba(107, 114, 128, .95);
  font-size: 10px;
  line-height: 1.15;
  text-align: right;
}

.dp-public-thread__meta {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  opacity: .7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dp-public-thread > .dp-public-badge {
  padding: 1px 6px;
  background: #111827;
  font-size: 10px;
}

.dp-public-thread__preview {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp-public-empty {
  margin: 16px 12px;
  padding: 16px;
  border: 1px dashed rgba(15, 23, 42, .18);
  border-radius: 8px;
  color: #64748b;
  text-align: center;
}

.dp-public-conversation-head {
  min-width: 0;
  min-height: 54px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
}

.dp-public-contact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-public-contact h1 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.dp-public-contact p {
  margin: 2px 0 0;
  color: #64748b;
  font-size: 12px;
}

.dp-public-head-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
}

.dp-public-chip {
  min-height: 22px;
  padding: 0 8px;
  background: #dbeafe;
  color: #1e40af;
}

.dp-public-chip--muted {
  background: #e5e7eb;
  color: #374151;
}

.dp-public-conversation-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.dp-public-conversation-title {
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0f172a;
  font-family: "Avenir Next", Avenir, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-conversation-title {
  min-height: 0;
  padding: 0;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dp-public-conversation-title:hover {
  text-decoration: underline;
  box-shadow: none;
}

.dp-public-dashboard .dp-public-conversation-title:hover {
  background: transparent;
  box-shadow: none;
}

#publicMarkUnreadButton {
  flex: 0 0 auto;
}

.dp-public-message-list {
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 14px;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f7 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", Roboto, sans-serif;
}

.dp-public-message-wrap {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dp-public-message {
  width: 100%;
  margin: 0;
  padding-left: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dp-public-message.is-out {
  padding-left: 0;
  align-items: flex-end;
}

.dp-public-message.is-system {
  padding-left: 0;
  align-items: center;
}

.dp-public-message.is-in::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(37, 99, 235, .22);
  border-radius: 999px;
  background-color: #dbeafe;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23dbeafe'/%3E%3Cpath d='M6 20.5c0-3.31 2.69-6 6-6s6 2.69 6 6' fill='none' stroke='%231d4ed8' stroke-width='1.8' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='8' r='3.2' fill='none' stroke='%231d4ed8' stroke-width='1.8'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.dp-public-message__meta {
  order: 2;
  max-width: 92%;
  margin-top: 4px;
  color: rgba(15, 23, 42, .55);
  font-size: 11px;
}

.dp-public-message__bubble {
  order: 1;
  max-width: 92%;
  border: 0;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
  font-size: 14px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.dp-public-message.is-in .dp-public-message__bubble {
  border-bottom-left-radius: 6px;
}

.dp-public-message.is-out .dp-public-message__bubble {
  background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.dp-public-message.is-system .dp-public-message__bubble {
  max-width: 90%;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  font-size: 12px;
}

.dp-public-signin-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  min-height: var(--dp-public-signin-bar-height);
  padding: 14px 16px calc(14px + var(--dp-public-livechat-clearance));
  border-top: 1px solid #1f4a7a;
  background: #0f1b2d;
  color: #e5edf7;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dp-public-signin-bar > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.dp-public-signin-bar strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.dp-public-signin-bar span {
  color: #c9d5e5;
  font-size: 13px;
  line-height: 1.35;
}

.dp-public-signin-bar__form {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dp-public-signin-bar__form input[type="email"] {
  width: 210px !important;
  min-width: 170px;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 10px !important;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #111827;
  color: #f8fafc;
  font-size: 13px;
}

.dp-public-signin-bar__form input[type="email"]::placeholder {
  color: #94a3b8;
}

.dp-public-signin-bar__form button {
  height: 36px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #3f4a5f;
  background: #1f2937;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.dp-public-signin-bar__form button:hover {
  background: #263244;
}

@media (min-width: 981px) {
  .dp-public-signin-bar > div {
    position: absolute;
    left: 16px;
    right: 360px;
    bottom: 14px;
  }

  .dp-public-signin-bar__form {
    position: absolute;
    top: 14px;
    right: 16px;
  }
}

@keyframes dpPublicPulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .42); }
  70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@media (max-width: 1180px) {
  .dp-public-shell {
    grid-template-columns: 220px 300px minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  body.dp-public-dashboard {
    --dp-public-signin-bar-height: 190px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .dp-public-home {
    height: auto;
    min-height: 100dvh;
    padding-bottom: var(--dp-public-signin-bar-height);
    overflow: visible;
  }

  .dp-public-shell {
    height: auto;
    min-height: calc(100dvh - var(--dp-dashboard-nav-height) - var(--dp-public-signin-bar-height));
    grid-template-columns: 1fr;
  }

  .dp-public-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .10);
    overflow: visible;
  }

  .dp-public-panel--conversation {
    min-height: 0;
    padding: 0;
  }

  .dp-public-list,
  .dp-public-thread-list {
    display: block;
    overflow: visible;
    padding-bottom: 8px;
  }

  .dp-public-thread {
    width: 100%;
  }

  .dp-public-dashboard .dp-public-mobile-pane-toggle {
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border: 0;
    border-bottom: 1px solid #f3f3f3;
    border-radius: 0;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    box-shadow: none;
  }

  .dp-public-dashboard .dp-public-mobile-pane-toggle::after {
    content: "+";
    color: #666;
    font-size: 18px;
    line-height: 1;
  }

  .dp-public-dashboard .dp-public-collapsible-pane.is-open > .dp-public-mobile-pane-toggle::after {
    content: "-";
  }

  .dp-public-collapsible-pane > .dp-public-mobile-pane-body,
  .dp-public-panel--conversation > .dp-public-mobile-pane-body {
    display: none;
  }

  .dp-public-collapsible-pane.is-open > .dp-public-mobile-pane-body {
    display: block;
  }

  .dp-public-panel--conversation.is-open > .dp-public-mobile-pane-body {
    min-height: 560px;
    padding: 8px;
    display: flex;
    flex-direction: column;
  }

  .dp-public-signin-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 12px 12px calc(12px + var(--dp-public-livechat-clearance));
  }

  .dp-public-signin-bar__form {
    width: min(100%, 480px);
  }

  .dp-public-signin-bar__form input[type="email"] {
    width: auto !important;
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  body.dp-public-dashboard {
    --dp-dashboard-nav-height: 88px;
    --dp-public-signin-bar-height: 250px;
  }

  .dp-public-dashboard .dp-topnav__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 5px 8px;
  }

  .dp-public-dashboard .dp-topnav__right {
    width: 100%;
    gap: 6px;
  }

  .dp-public-dashboard .dp-topnav__signup {
    flex: 1 1 auto;
  }

  .dp-public-dashboard .dp-topnav__signup input[type="email"] {
    width: auto;
    flex: 1 1 auto;
  }

  .dp-public-message-list {
    padding: 12px;
  }

  .dp-public-message__bubble {
    max-width: 92%;
  }

  .dp-public-signin-bar {
    gap: 8px;
    padding: 10px 12px calc(10px + var(--dp-public-livechat-clearance));
  }

  .dp-public-signin-bar__form {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .dp-public-signin-bar__form button {
    width: 100%;
  }
}

/* Marketing page cards and links */
.dp-link-card {
  display: grid;
  gap: .4rem;
  padding: 1rem;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
}

.dp-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(2, 6, 23, .12);
  border-color: rgba(59, 130, 246, .35);
}

.dp-link-card strong {
  color: rgba(15, 23, 42, .94);
}

/* Site footer */
.dp-site-footer {
  margin-top: 2.5rem;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .45);
}

.dp-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.dp-site-footer h3 {
  margin: 0 0 .55rem;
  font-size: .98rem;
}

.dp-site-footer p {
  margin: 0;
  font-size: .92rem;
  color: rgba(15, 23, 42, .75);
}

.dp-site-footer a {
  display: block;
  margin: .25rem 0;
  text-decoration: none;
  color: rgba(15, 23, 42, .82);
  font-size: .92rem;
}

.dp-site-footer a:hover {
  color: #0f172a;
  text-decoration: underline;
}

.dp-site-footer__meta {
  margin: 1.2rem 0 0;
  font-size: .82rem;
  color: rgba(15, 23, 42, .65);
}

.dp-site-map-link {
  display: inline-block;
  text-decoration: none;
  color: rgba(15, 23, 42, .88);
  font-size: .94rem;
}

.dp-site-map-link:hover {
  text-decoration: underline;
}

/* Phone privacy scan */
.dp-privacy-hero {
  padding: 4rem 0 2.5rem;
}

.dp-privacy-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 2rem;
  align-items: center;
}

.dp-privacy-title {
  margin: .75rem 0 .7rem;
  max-width: 780px;
}

.dp-privacy-copy {
  max-width: 68ch;
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}

.dp-privacy-form {
  display: grid;
  gap: .7rem;
  max-width: 640px;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 44px rgba(2, 6, 23, .08);
}

.dp-privacy-form label:not(.dp-privacy-consent) {
  font-weight: 800;
  color: rgba(15, 23, 42, .9);
}

.dp-privacy-phone-input {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .85);
}

.dp-privacy-phone-input:focus-within {
  border-color: rgba(37, 99, 235, .65);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.dp-privacy-phone-prefix {
  display: inline-flex;
  align-items: center;
  padding: .65rem .8rem;
  border-right: 1px solid rgba(15, 23, 42, .14);
  background: rgba(226, 232, 240, .7);
  color: #334155;
  font-weight: 800;
}

.dp-theme .dp-privacy-phone-input input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dp-theme .dp-privacy-phone-input input:focus {
  outline: 0;
}

.dp-privacy-phone-help {
  margin: -.2rem 0 0;
  color: rgba(15, 23, 42, .64);
  font-size: .84rem;
}

.dp-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(15, 23, 42, .74);
  font-size: .92rem;
}

.dp-privacy-consent input {
  margin-top: .22rem;
  flex: 0 0 auto;
}

.dp-privacy-device {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 24px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(241, 245, 249, .76));
  box-shadow: 0 24px 58px rgba(15, 23, 42, .14);
}

.dp-privacy-device__top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.dp-privacy-device__top img {
  border-radius: 10px;
}

.dp-privacy-signal {
  display: grid;
  gap: .2rem;
  padding: .9rem;
  margin-top: .7rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .08);
  background: rgba(255, 255, 255, .78);
}

.dp-privacy-signal span,
.dp-offer-kicker,
.dp-result-row__label {
  color: rgba(15, 23, 42, .58);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dp-section-heading {
  margin: .65rem 0 1rem;
}

.dp-privacy-tile-grid,
.dp-privacy-offers,
.dp-results-offers,
.dp-results-grid {
  display: grid;
  gap: 1rem;
}

.dp-privacy-tile-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.dp-privacy-tile,
.dp-privacy-offer,
.dp-results-offer,
.dp-result-section,
.dp-breach-item {
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
}

.dp-privacy-tile {
  padding: 1rem;
}

.dp-privacy-tile h3,
.dp-privacy-offer h3,
.dp-results-offer h2,
.dp-result-section h3,
.dp-breach-item h3 {
  margin: 0 0 .45rem;
}

.dp-privacy-tile p,
.dp-privacy-offer p,
.dp-results-offer p,
.dp-result-row p,
.dp-breach-item p {
  margin: 0;
  color: rgba(15, 23, 42, .73);
}

.dp-privacy-offers-band {
  padding-top: 1rem;
}

.dp-privacy-offers,
.dp-results-offers {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dp-privacy-offer,
.dp-results-offer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem;
}

.dp-privacy-offer--primary,
.dp-results-offer--primary {
  border-color: rgba(20, 184, 166, .35);
  background: linear-gradient(135deg, rgba(240, 253, 250, .92), rgba(255, 255, 255, .78));
}

.dp-offer-price,
.dp-results-offer strong {
  color: #0f766e;
  font-size: 1.5rem;
  white-space: nowrap;
}

/* Privacy scan report */
.dp-results-page {
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 12% 3%, rgba(59, 130, 246, .12), transparent 60%),
    radial-gradient(760px 460px at 90% 18%, rgba(20, 184, 166, .1), transparent 58%),
    #f8fafc;
}

.dp-results-page .dp-wrap {
  max-width: 1200px;
  padding-right: clamp(1rem, 3vw, 2rem);
  padding-left: clamp(1rem, 3vw, 2rem);
}

.dp-results-page .dp-topnav {
  background: rgba(248, 250, 252, .86);
}

.dp-results-page .dp-topnav__inner {
  min-height: 64px;
}

.dp-topnav__results-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(15, 23, 42, .1);
  background: rgba(255, 255, 255, .72);
}

.dp-results-hero {
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 1rem;
}

.dp-results-hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 32px;
  background:
    radial-gradient(620px 380px at 8% 0%, rgba(59, 130, 246, .42), transparent 65%),
    radial-gradient(480px 320px at 100% 100%, rgba(20, 184, 166, .3), transparent 64%),
    #0f172a;
  color: #fff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .2);
}

.dp-results-hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -110px;
  right: -70px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(255, 255, 255, .025),
    0 0 0 90px rgba(255, 255, 255, .018);
}

.dp-results-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
  color: #bfdbfe;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dp-results-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5eead4;
  box-shadow: 0 0 0 5px rgba(94, 234, 212, .14);
}

.dp-results-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.dp-results-hero-copy h1 span {
  display: block;
  margin-top: .18em;
  color: #93c5fd;
}

.dp-results-hero-copy > p {
  max-width: 62ch;
  margin: 1.35rem 0 0;
  color: rgba(226, 232, 240, .82);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
}

.dp-results-privacy-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.4rem;
  color: rgba(203, 213, 225, .76);
  font-size: .86rem;
}

.dp-results-privacy-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: #5eead4;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dp-results-signal-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 1.7rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.dp-results-signal-card > span {
  color: #a7f3d0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dp-results-signal-card strong {
  margin: .25rem 0;
  color: #fff;
  font-size: clamp(4.5rem, 9vw, 6.75rem);
  font-weight: 850;
  line-height: .95;
  letter-spacing: -.06em;
}

.dp-results-signal-card p {
  max-width: 22ch;
  margin: .45rem auto 0;
  color: rgba(226, 232, 240, .74);
  font-size: .86rem;
  line-height: 1.5;
}

.dp-results-offers-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.dp-results-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.dp-results-section-head .dp-badge {
  margin-bottom: .75rem;
  border-color: rgba(37, 99, 235, .14);
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
}

.dp-results-section-head h2 {
  max-width: 720px;
  margin: 0;
  color: #0f172a;
  letter-spacing: -.025em;
}

.dp-results-section-head > p {
  max-width: 46ch;
  margin: 0 0 .15rem;
  color: #64748b;
  line-height: 1.55;
}

.dp-results-page .dp-results-offers {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.dp-results-page .dp-results-offer {
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  border-color: rgba(37, 99, 235, .16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(239, 246, 255, .72));
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.dp-results-page .dp-results-offer--primary {
  border-color: rgba(13, 148, 136, .26);
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(45, 212, 191, .15), transparent 70%),
    linear-gradient(145deg, #f0fdfa, #fff);
}

.dp-results-offer__top {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.dp-results-offer__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: .8rem;
  font-weight: 900;
}

.dp-results-offer--primary .dp-results-offer__number {
  background: #ccfbf1;
  color: #0f766e;
}

.dp-results-recommended {
  margin-left: auto;
  padding: .36rem .6rem;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
}

.dp-results-offer__body {
  margin-top: 1.5rem;
}

.dp-results-offer__body h3 {
  max-width: 16ch;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.dp-results-page .dp-results-offer__body p {
  max-width: 48ch;
  margin-top: .8rem;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.dp-results-offer__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.75rem;
}

.dp-results-price {
  display: grid;
  flex: 0 0 auto;
}

.dp-results-page .dp-results-price strong {
  color: #0f172a;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.dp-results-price span {
  margin-top: .3rem;
  color: #64748b;
  font-size: .78rem;
  font-weight: 700;
}

.dp-results-page .dp-results-offer .dp-btn {
  min-height: 48px;
  padding: .75rem 1rem;
  font-size: .88rem;
  line-height: 1.25;
  text-align: center;
}

.dp-results-findings-section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid rgba(15, 23, 42, .06);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .58);
}

.dp-results-page .dp-results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
}

.dp-results-page .dp-result-section {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .055);
}

.dp-result-section__header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fff, #f8fafc);
}

.dp-result-section__header > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #0f172a;
  color: #fff;
  font-size: .74rem;
  font-weight: 900;
}

.dp-result-section__header h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
}

.dp-results-page .dp-result-row {
  margin: 0 1.25rem;
  padding: 1.15rem 0;
  border-top: 1px solid #e2e8f0;
}

.dp-results-page .dp-result-section__header + .dp-result-row {
  border-top: 0;
}

.dp-result-row__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.dp-result-row__heading > span {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 .4rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: .7rem;
  font-weight: 900;
}

.dp-results-page .dp-result-row__label {
  color: #475569;
  font-size: .72rem;
  letter-spacing: .07em;
}

.dp-result-values {
  display: grid;
  gap: .55rem;
  margin: .8rem 0 0;
  padding: 0;
  list-style: none;
}

.dp-results-page .dp-result-values li {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  font-size: .9rem;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.dp-result-values li::before {
  content: "";
  position: absolute;
  top: .56em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

.dp-result-more {
  margin-top: .75rem;
}

.dp-result-more summary {
  width: fit-content;
  cursor: pointer;
  padding: .45rem .7rem;
  border-radius: 9px;
  background: #f1f5f9;
  color: #334155;
  font-size: .8rem;
  font-weight: 800;
  list-style: none;
}

.dp-result-more summary::-webkit-details-marker {
  display: none;
}

.dp-result-more summary::after {
  content: " +";
}

.dp-result-more[open] summary::after {
  content: " −";
}

.dp-results-page .dp-result-empty {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .7rem;
  color: #64748b;
  font-size: .88rem;
}

.dp-result-empty span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  font-size: .7rem;
  font-weight: 900;
}

.dp-results-breaches-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.dp-results-loading-section {
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.dp-results-loading-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
}

.dp-results-loading-card .dp-privacy-copy {
  margin-right: auto;
  margin-left: auto;
}

.dp-results-spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.2rem;
  border: 5px solid rgba(37, 99, 235, .14);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: dp-results-spin .85s linear infinite;
}

.dp-results-loading-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 1.4rem 0;
}

.dp-results-loading-steps span {
  padding: .48rem .72rem;
  border-radius: 999px;
  background: rgba(226, 232, 240, .7);
  color: rgba(15, 23, 42, .68);
  font-size: .84rem;
  font-weight: 700;
}

@keyframes dp-results-spin {
  to {
    transform: rotate(360deg);
  }
}

.dp-results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.dp-inline-checkout-form {
  margin: 0;
}

.dp-breach-list {
  display: grid;
  gap: .8rem;
}

.dp-breach-item {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(180px, .7fr);
  gap: 1rem;
  padding: 1rem;
}

.dp-empty-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(5, 150, 105, .18);
  background: linear-gradient(135deg, #ecfdf5, rgba(255, 255, 255, .9));
}

.dp-empty-result__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #d1fae5;
}

.dp-empty-result__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #047857;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dp-empty-result strong {
  display: block;
  color: #065f46;
  font-size: 1rem;
}

.dp-empty-result p {
  margin: .25rem 0 0;
  color: #047857;
  font-size: .88rem;
}

@media (max-width: 800px) {
  .dp-privacy-hero__grid,
  .dp-breach-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .dp-privacy-hero {
    padding: 2.4rem 0 1.5rem;
  }

  .dp-privacy-offer,
  .dp-results-offer {
    display: grid;
  }
}

@media (max-width: 900px) {
  .dp-results-page .dp-topnav__inner {
    min-height: 58px;
    align-items: center;
    flex-direction: row;
    padding: .65rem 1rem;
  }

  .dp-results-page .dp-topnav__left,
  .dp-results-page .dp-topnav__right {
    width: auto;
    align-items: center;
    flex-direction: row;
  }

  .dp-results-page .dp-topnav__right {
    margin-left: auto;
  }

  .dp-results-hero-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .dp-results-signal-card {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    column-gap: 1.25rem;
    text-align: left;
  }

  .dp-results-signal-card > span,
  .dp-results-signal-card p {
    grid-column: 2;
  }

  .dp-results-signal-card > span {
    align-self: end;
  }

  .dp-results-signal-card strong {
    grid-row: 1 / span 2;
    align-self: center;
    font-size: 4.8rem;
  }

  .dp-results-signal-card p {
    max-width: 34ch;
    margin: .25rem 0 0;
  }

  .dp-results-section-head {
    display: grid;
    gap: .8rem;
  }

  .dp-results-section-head > p {
    max-width: 62ch;
  }

  .dp-results-page .dp-results-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .dp-results-page .dp-results-offers {
    grid-template-columns: minmax(0, 1fr);
  }

  .dp-results-page .dp-results-offer {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .dp-results-page .dp-topnav__brand {
    margin-right: 0;
  }

  .dp-topnav__results-link {
    padding: .42rem .58rem;
    font-size: .8rem;
  }

  .dp-results-hero {
    padding-top: 1rem;
  }

  .dp-results-hero-card {
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .dp-results-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .dp-results-hero-copy h1 span {
    font-size: .82em;
  }

  .dp-results-hero-copy > p {
    margin-top: 1rem;
    font-size: .94rem;
    line-height: 1.55;
  }

  .dp-results-privacy-note {
    align-items: flex-start;
    font-size: .78rem;
    line-height: 1.45;
  }

  .dp-results-signal-card {
    padding: 1.2rem;
  }

  .dp-results-signal-card strong {
    font-size: 3.8rem;
  }

  .dp-results-signal-card p {
    font-size: .78rem;
  }

  .dp-results-offers-section,
  .dp-results-findings-section,
  .dp-results-breaches-section {
    padding: 2.75rem 0;
  }

  .dp-results-section-head {
    margin-bottom: 1.15rem;
  }

  .dp-results-section-head h2 {
    font-size: 1.65rem;
  }

  .dp-results-page .dp-results-offer {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .dp-results-recommended {
    padding: .3rem .48rem;
    font-size: .64rem;
  }

  .dp-results-offer__body {
    margin-top: 1.2rem;
  }

  .dp-results-offer__footer {
    align-items: stretch;
    flex-direction: column;
    padding-top: 1.4rem;
  }

  .dp-results-page .dp-results-offer .dp-btn,
  .dp-results-page .dp-inline-checkout-form,
  .dp-results-page .dp-inline-checkout-form .dp-btn {
    width: 100%;
  }

  .dp-result-section__header,
  .dp-results-page .dp-result-row {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .dp-results-page .dp-result-row {
    margin: 0;
  }

  .dp-empty-result {
    align-items: flex-start;
    padding: 1.1rem;
  }
}

@media (max-width: 360px) {
  .dp-results-page .dp-topnav__brand span {
    display: none;
  }
}
