#hf-privacy-root,
#hf-privacy-root * {
  box-sizing: border-box;
}

#hf-privacy-root {
  --hfpc-ink: #1a1a1a;
  --hfpc-muted: #62685f;
  --hfpc-line: #dfe6df;
  --hfpc-green: #06923e;
  --hfpc-deep: #025f00;
  --hfpc-mint: #84fd9e;
  --hfpc-surface: #f3fff7;
  color: var(--hfpc-ink);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 2147483000;
}

#hf-privacy-root [hidden] {
  display: none !important;
}

.hfpc-banner {
  position: fixed;
  z-index: 2147483001;
  left: 22px;
  bottom: 22px;
  width: min(520px, calc(100vw - 44px));
  max-height: min(420px, calc(100dvh - 44px));
  overflow-y: auto;
  padding: 20px 20px 18px;
  border: 1px solid var(--hfpc-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 64px -24px rgba(16, 40, 24, 0.42);
  backdrop-filter: blur(14px);
}

.hfpc-eyebrow {
  margin: 0 0 6px;
  color: var(--hfpc-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hfpc-banner h2,
.hfpc-dialog h2 {
  margin: 0;
  color: var(--hfpc-ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.hfpc-banner p,
.hfpc-dialog__intro,
.hfpc-category p,
.hfpc-signal {
  margin: 10px 0 0;
  color: var(--hfpc-muted);
  font-size: 13.5px;
  line-height: 1.48;
}

.hfpc-banner a,
.hfpc-dialog a {
  color: var(--hfpc-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hfpc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.hfpc-banner .hfpc-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hfpc-button,
.hfpc-trigger,
.hfpc-close {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.hfpc-button {
  min-height: 41px;
  padding: 9px 14px;
  border: 1px solid var(--hfpc-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hfpc-ink);
  font-size: 13px;
  font-weight: 650;
}

.hfpc-banner .hfpc-button {
  width: 100%;
  white-space: nowrap;
}

.hfpc-button:hover {
  border-color: #aebcaf;
}

.hfpc-button--primary {
  border-color: var(--hfpc-deep);
  background: var(--hfpc-deep);
  color: #fff;
}

.hfpc-button--primary:hover {
  border-color: var(--hfpc-deep);
  background: var(--hfpc-deep);
}

.hfpc-trigger {
  position: fixed;
  z-index: 2147482999;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #3f473f;
  box-shadow: 0 8px 24px -14px rgba(16, 40, 24, 0.45);
  font-size: 12px;
  font-weight: 600;
}

.hfpc-trigger:hover {
  border-color: var(--hfpc-deep);
  color: var(--hfpc-deep);
}

.hfpc-overlay {
  position: fixed;
  z-index: 2147483002;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.hfpc-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 18, 12, 0.58);
  cursor: pointer;
}

.hfpc-dialog {
  position: relative;
  width: min(610px, 100%);
  max-height: min(720px, calc(100dvh - 48px));
  overflow: auto;
  padding: 26px;
  border: 1px solid var(--hfpc-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 36px 90px -34px rgba(0, 0, 0, 0.6);
}

.hfpc-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: #f1f4f1;
  color: var(--hfpc-ink);
  font-size: 22px;
  line-height: 1;
}

.hfpc-categories {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hfpc-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  padding: 15px 16px;
  border: 1px solid var(--hfpc-line);
  border-radius: 14px;
  background: #fff;
}

.hfpc-category strong {
  align-self: center;
  color: var(--hfpc-ink);
  font-size: 15px;
}

.hfpc-category p {
  grid-column: 1 / -1;
  margin-top: 0;
}

.hfpc-always {
  align-self: center;
  color: var(--hfpc-deep);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hfpc-switch {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  align-items: center;
}

.hfpc-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.hfpc-switch span {
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #cfd6d0;
  transition: background 160ms ease;
}

.hfpc-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease;
}

.hfpc-switch input:checked + span {
  background: var(--hfpc-green);
}

.hfpc-switch input:checked + span::after {
  transform: translateX(20px);
}

.hfpc-switch input:focus-visible + span,
.hfpc-button:focus-visible,
.hfpc-trigger:focus-visible,
.hfpc-close:focus-visible,
.hfpc-backdrop:focus-visible {
  outline: 3px solid var(--hfpc-mint);
  outline-offset: 3px;
}

.hfpc-switch input:disabled + span {
  cursor: not-allowed;
  opacity: 0.55;
}

.hfpc-signal {
  padding: 11px 13px;
  border-radius: 10px;
  background: var(--hfpc-surface);
  color: var(--hfpc-deep);
}

.hfpc-dialog .hfpc-actions {
  justify-content: flex-end;
}

@media (max-width: 560px) {
  .hfpc-overlay {
    padding: 12px;
  }

  .hfpc-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    max-height: min(330px, calc(100dvh - 48px));
    padding: 15px 16px 14px;
  }

  .hfpc-banner h2,
  .hfpc-dialog h2 {
    font-size: 23px;
    padding-right: 22px;
  }

  .hfpc-banner .hfpc-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }

  .hfpc-banner [data-hfpc-customize] {
    grid-column: 1 / -1;
  }

  .hfpc-dialog .hfpc-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hfpc-button {
    width: 100%;
    min-height: 40px;
    padding: 8px;
    font-size: 12.5px;
  }

  .hfpc-dialog {
    width: 100%;
    max-height: min(680px, calc(100dvh - 76px));
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .hfpc-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .hfpc-eyebrow {
    font-size: 10.5px;
  }

  .hfpc-banner p,
  .hfpc-dialog__intro,
  .hfpc-category p,
  .hfpc-signal {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .hfpc-categories {
    gap: 7px;
    margin-top: 14px;
  }

  .hfpc-category {
    gap: 5px 12px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .hfpc-category strong {
    font-size: 14px;
  }

  .hfpc-category p {
    margin-top: 0;
  }

  .hfpc-trigger {
    left: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hfpc-switch span,
  .hfpc-switch span::after {
    transition: none;
  }
}

#hf-guide-popup-root,
#hf-guide-popup-root * {
  box-sizing: border-box;
}

#hf-guide-popup-root [hidden] {
  display: none !important;
}

#hf-guide-popup-root {
  --hf-popup-accent: #06923e;
  --hf-popup-accent-dark: #025f00;
  --hf-popup-forest: #15201a;
  --hf-popup-forest-deep: #102818;
  --hf-popup-ink: #1a1a1a;
  --hf-popup-muted: #67675f;
  --hf-popup-line: #e2e7e2;
  --hf-popup-mint: #84fd9e;
  --hf-popup-surface: #f3fff7;
  font-family: "Geist", Arial, sans-serif;
  position: relative;
  z-index: 2147482000;
}

#hf-guide-popup-root .hf-guide-popup {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 2147482000;
}

#hf-guide-popup-root .hf-guide-popup__backdrop {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(7, 24, 16, 0.68);
  border: 0;
  cursor: default;
  inset: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: opacity 220ms ease;
  width: 100%;
}

#hf-guide-popup-root .hf-guide-popup__dialog {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  box-shadow: 0 48px 120px -30px rgba(3, 28, 15, 0.72), 0 12px 32px rgba(2, 25, 12, 0.22);
  display: grid;
  grid-template-columns: minmax(285px, 0.84fr) minmax(0, 1.24fr);
  max-height: min(700px, calc(100vh - 64px));
  max-width: 900px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(0.975);
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.2, 0.82, 0.25, 1);
  width: 100%;
}

#hf-guide-popup-root .hf-guide-popup.is-open .hf-guide-popup__backdrop,
#hf-guide-popup-root .hf-guide-popup.is-open .hf-guide-popup__dialog {
  opacity: 1;
}

#hf-guide-popup-root .hf-guide-popup.is-open .hf-guide-popup__dialog {
  transform: translateY(0) scale(1);
}

#hf-guide-popup-root .hf-guide-popup__close {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dfe4df;
  border-radius: 999px;
  color: #34423a;
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  width: 38px;
  z-index: 5;
}

#hf-guide-popup-root .hf-guide-popup__close:hover {
  background: #f4f7f4;
  border-color: #c5cec7;
  transform: rotate(3deg);
}

#hf-guide-popup-root .hf-guide-popup__close:focus-visible,
#hf-guide-popup-root .hf-guide-popup__submit:focus-visible,
#hf-guide-popup-root .hf-guide-popup__field input:focus-visible,
#hf-guide-popup-root .hf-guide-popup__consent input:focus-visible + span {
  outline: 3px solid rgba(6, 146, 62, 0.3);
  outline-offset: 3px;
}

#hf-guide-popup-root .hf-guide-popup__close svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 18px;
}

#hf-guide-popup-root .hf-guide-popup__visual {
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(132, 253, 158, 0.2), transparent 26%),
    linear-gradient(155deg, #15201a 0%, #102818 62%, #060606 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  padding: 66px 32px 28px;
  position: relative;
}

#hf-guide-popup-root .hf-guide-popup__visual::after {
  background: linear-gradient(180deg, transparent 48%, rgba(3, 17, 12, 0.48));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

#hf-guide-popup-root .hf-guide-popup__visual-grid {
  background-image:
    linear-gradient(rgba(132, 253, 158, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 253, 158, 0.075) 1px, transparent 1px);
  background-size: 30px 30px;
  inset: -20px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
  opacity: 0.7;
  position: absolute;
  transform: perspective(420px) rotateX(15deg) rotateZ(-4deg) scale(1.12);
}

#hf-guide-popup-root .hf-guide-popup__brand {
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
  height: auto;
  left: 28px;
  position: absolute;
  top: 26px;
  width: 146px;
  z-index: 2;
}

#hf-guide-popup-root .hf-guide-popup__book-wrap {
  height: 354px;
  position: relative;
  transform: rotate(-2.2deg);
  width: 236px;
  z-index: 2;
}

#hf-guide-popup-root .hf-guide-popup__book-shadow {
  background: rgba(0, 0, 0, 0.48);
  filter: blur(22px);
  inset: 30px -8px -20px 18px;
  position: absolute;
  transform: translate(16px, 21px) rotate(4deg);
}

#hf-guide-popup-root .hf-guide-popup__book {
  background: #15201a;
  border-radius: 3px 7px 7px 3px;
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.15), 0 18px 38px rgba(0, 0, 0, 0.28);
  display: block;
  height: 354px;
  object-fit: cover;
  position: relative;
  width: 236px;
  z-index: 2;
}

#hf-guide-popup-root .hf-guide-popup__book-edge {
  background: linear-gradient(90deg, #efe9d9, #fffdf7 65%, #d9d2c1);
  border-radius: 0 3px 3px 0;
  bottom: 7px;
  position: absolute;
  right: -6px;
  top: 7px;
  transform: skewY(1deg);
  width: 7px;
  z-index: 1;
}

#hf-guide-popup-root .hf-guide-popup__visual-meta {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 10.5px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.075em;
  margin-top: 28px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}

#hf-guide-popup-root .hf-guide-popup__visual-meta span {
  align-items: center;
  display: flex;
}

#hf-guide-popup-root .hf-guide-popup__visual-meta span + span::before {
  background: var(--hf-popup-mint);
  border-radius: 50%;
  content: "";
  height: 3px;
  margin-right: 8px;
  opacity: 0.65;
  width: 3px;
}

#hf-guide-popup-root .hf-guide-popup__content {
  align-self: center;
  max-height: min(700px, calc(100vh - 64px));
  overflow-y: auto;
  padding: 42px 44px 38px;
  scrollbar-color: #cfd9d1 transparent;
  scrollbar-width: thin;
}

#hf-guide-popup-root .hf-guide-popup__eyebrow {
  align-items: center;
  color: var(--hf-popup-accent-dark);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#hf-guide-popup-root .hf-guide-popup__eyebrow > span {
  background: var(--hf-popup-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(6, 146, 62, 0.13);
  height: 7px;
  width: 7px;
}

#hf-guide-popup-root .hf-guide-popup__title {
  color: #17372d;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-size: clamp(35px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 1.01;
  margin: 17px 0 15px;
  max-width: 540px;
}

#hf-guide-popup-root .hf-guide-popup__description {
  color: var(--hf-popup-muted);
  font-size: 14px;
  line-height: 1.58;
  margin: 0;
  max-width: 540px;
}

#hf-guide-popup-root .hf-guide-popup__benefits {
  border-bottom: 1px solid var(--hf-popup-line);
  border-top: 1px solid var(--hf-popup-line);
  display: grid;
  gap: 0;
  list-style: none;
  margin: 22px 0 20px;
  padding: 10px 0;
}

#hf-guide-popup-root .hf-guide-popup__benefits li {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 32px 1fr;
  padding: 6px 0;
}

#hf-guide-popup-root .hf-guide-popup__benefits li > span {
  align-items: center;
  background: #e8fbea;
  border-radius: 999px;
  color: #10783b;
  display: flex;
  font-size: 10.5px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 28px;
}

#hf-guide-popup-root .hf-guide-popup__benefits p {
  color: #35433a;
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.4;
  margin: 0;
}

#hf-guide-popup-root .hf-guide-popup__form {
  margin: 0;
}

#hf-guide-popup-root .hf-guide-popup__field label {
  color: #2c3d33;
  display: block;
  font-size: 12px;
  font-weight: 650;
  margin: 0 0 7px;
}

#hf-guide-popup-root .hf-guide-popup__field input {
  appearance: none;
  background: #fff;
  border: 1.5px solid #ced6cf;
  border-radius: 10px;
  color: var(--hf-popup-ink);
  font-family: inherit;
  font-size: 15px;
  height: 48px;
  line-height: 1;
  margin: 0;
  outline: none;
  padding: 0 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

#hf-guide-popup-root .hf-guide-popup__field input::placeholder {
  color: #989f99;
}

#hf-guide-popup-root .hf-guide-popup__field input:focus {
  border-color: var(--hf-popup-accent-dark);
  box-shadow: 0 0 0 4px rgba(6, 146, 62, 0.12);
}

#hf-guide-popup-root .hf-guide-popup__field input[aria-invalid="true"] {
  border-color: #b54035;
}

#hf-guide-popup-root .hf-guide-popup__honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

#hf-guide-popup-root .hf-guide-popup__consent {
  align-items: flex-start;
  color: #4d574f;
  cursor: pointer;
  display: grid;
  font-size: 11.5px;
  gap: 9px;
  grid-template-columns: 18px 1fr;
  line-height: 1.4;
  margin: 12px 0 14px;
  position: relative;
}

#hf-guide-popup-root .hf-guide-popup__consent input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

#hf-guide-popup-root .hf-guide-popup__consent > span {
  align-items: center;
  background: #fff;
  border: 1.5px solid #bec8c0;
  border-radius: 5px;
  display: flex;
  height: 18px;
  justify-content: center;
  margin-top: 1px;
  transition: background 150ms ease, border-color 150ms ease;
  width: 18px;
}

#hf-guide-popup-root .hf-guide-popup__consent svg {
  fill: none;
  height: 13px;
  opacity: 0;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transform: scale(0.6);
  transition: opacity 120ms ease, transform 150ms ease;
  width: 13px;
}

#hf-guide-popup-root .hf-guide-popup__consent input:checked + span {
  background: var(--hf-popup-accent);
  border-color: var(--hf-popup-accent);
}

#hf-guide-popup-root .hf-guide-popup__consent input:checked + span svg {
  opacity: 1;
  transform: scale(1);
}

#hf-guide-popup-root .hf-guide-popup__consent em {
  font-style: normal;
}

#hf-guide-popup-root .hf-guide-popup__consent small {
  color: #62685f;
  font-size: inherit;
}

#hf-guide-popup-root .hf-guide-popup__turnstile {
  margin: -2px 0 12px;
  min-height: 0;
  width: 100%;
}

#hf-guide-popup-root .hf-guide-popup__error {
  background: #fff2f0;
  border: 1px solid #f0cec9;
  border-radius: 8px;
  color: #8c2d25;
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 9px 11px;
}

#hf-guide-popup-root .hf-guide-popup__submit {
  align-items: center;
  background: var(--hf-popup-accent-dark);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 10px 28px -13px rgba(15, 122, 61, 0.75);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 720;
  height: 48px;
  justify-content: center;
  line-height: 1;
  padding: 0 18px;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  width: 100%;
}

#hf-guide-popup-root .hf-guide-popup__submit:hover {
  background: var(--hf-popup-accent-dark);
  box-shadow: 0 14px 32px -13px rgba(15, 122, 61, 0.85);
  transform: translateY(-1px);
}

#hf-guide-popup-root .hf-guide-popup__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

#hf-guide-popup-root .hf-guide-popup__submit > svg {
  fill: none;
  height: 18px;
  margin-left: 8px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 150ms ease;
  width: 18px;
}

#hf-guide-popup-root .hf-guide-popup__submit:hover > svg {
  transform: translateX(2px);
}

#hf-guide-popup-root .hf-guide-popup__spinner {
  animation: hf-guide-popup-spin 700ms linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #ffffff;
  display: none;
  height: 16px;
  margin-left: 9px;
  width: 16px;
}

#hf-guide-popup-root .hf-guide-popup__submit.is-loading .hf-guide-popup__spinner {
  display: block;
}

#hf-guide-popup-root .hf-guide-popup__submit.is-loading > svg {
  display: none;
}

#hf-guide-popup-root .hf-guide-popup__privacy {
  color: #8b938d;
  font-size: 9.5px;
  line-height: 1.45;
  margin: 9px auto 0;
  text-align: center;
}

#hf-guide-popup-root .hf-guide-popup__privacy a {
  color: #5e6f63;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#hf-guide-popup-root .hf-guide-popup__success {
  padding: 52px 0 44px;
}

#hf-guide-popup-root .hf-guide-popup__success-mark {
  align-items: center;
  background: #dcffe5;
  border: 1px solid #b5f0c4;
  border-radius: 50%;
  display: flex;
  height: 58px;
  justify-content: center;
  margin-bottom: 24px;
  width: 58px;
}

#hf-guide-popup-root .hf-guide-popup__success-mark svg {
  fill: none;
  height: 32px;
  stroke: #0f7a3d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 32px;
}

#hf-guide-popup-root .hf-guide-popup__success .hf-guide-popup__description {
  font-size: 16px;
  line-height: 1.65;
}

#hf-guide-popup-root .hf-guide-popup__success-note {
  color: #62685f;
  font-size: 11px;
  line-height: 1.5;
  margin: 14px 0 0;
  max-width: 380px;
}

@keyframes hf-guide-popup-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
  #hf-guide-popup-root .hf-guide-popup {
    padding: 18px;
  }

  #hf-guide-popup-root .hf-guide-popup__dialog {
    grid-template-columns: 220px minmax(0, 1fr);
    max-height: calc(100vh - 36px);
  }

  #hf-guide-popup-root .hf-guide-popup__visual {
    min-height: 540px;
    padding-left: 24px;
    padding-right: 24px;
  }

  #hf-guide-popup-root .hf-guide-popup__book-wrap,
  #hf-guide-popup-root .hf-guide-popup__book {
    height: 300px;
    width: 200px;
  }

  #hf-guide-popup-root .hf-guide-popup__content {
    max-height: calc(100vh - 36px);
    padding: 38px 30px 32px;
  }

  #hf-guide-popup-root .hf-guide-popup__title {
    font-size: 36px;
  }
}

@media (max-width: 650px) {
  #hf-guide-popup-root .hf-guide-popup {
    align-items: center;
    padding: 14px;
  }

  #hf-guide-popup-root .hf-guide-popup__dialog {
    border-radius: 20px;
    grid-template-columns: 1fr;
    max-height: min(650px, calc(100dvh - 96px));
    max-width: 520px;
  }

  #hf-guide-popup-root .hf-guide-popup__visual {
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-end;
    min-height: 112px;
    padding: 16px 20px;
  }

  #hf-guide-popup-root .hf-guide-popup__brand {
    left: 18px;
    top: 16px;
    width: 112px;
  }

  #hf-guide-popup-root .hf-guide-popup__book-wrap {
    height: 132px;
    position: absolute;
    right: 58px;
    top: 11px;
    transform: rotate(6deg);
    width: 88px;
  }

  #hf-guide-popup-root .hf-guide-popup__book {
    height: 132px;
    width: 88px;
  }

  #hf-guide-popup-root .hf-guide-popup__book-shadow {
    filter: blur(12px);
  }

  #hf-guide-popup-root .hf-guide-popup__visual-meta {
    bottom: 14px;
    flex-direction: row;
    gap: 6px;
    left: 18px;
    margin: 0;
    position: absolute;
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  #hf-guide-popup-root .hf-guide-popup__visual-meta span + span::before {
    height: 2px;
    margin-right: 6px;
    width: 2px;
  }

  #hf-guide-popup-root .hf-guide-popup__content {
    max-height: min(538px, calc(100dvh - 208px));
    padding: 24px 22px 22px;
  }

  #hf-guide-popup-root .hf-guide-popup__close {
    background: rgba(5, 31, 22, 0.62);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    right: 13px;
    top: 13px;
  }

  #hf-guide-popup-root .hf-guide-popup__title {
    font-size: 31px;
    line-height: 1.04;
    margin: 13px 0 11px;
  }

  #hf-guide-popup-root .hf-guide-popup__description {
    font-size: 13.5px;
    line-height: 1.5;
  }

  #hf-guide-popup-root .hf-guide-popup__benefits {
    margin: 16px 0 15px;
    padding: 8px 0;
  }

  #hf-guide-popup-root .hf-guide-popup__benefits li {
    padding: 5px 0;
  }

  #hf-guide-popup-root .hf-guide-popup__benefits p {
    font-size: 14px;
  }

  #hf-guide-popup-root .hf-guide-popup__success {
    padding: 18px 0 28px;
  }
}

@media (max-height: 720px) and (min-width: 651px) {
  #hf-guide-popup-root .hf-guide-popup__visual {
    min-height: 560px;
  }

  #hf-guide-popup-root .hf-guide-popup__book-wrap,
  #hf-guide-popup-root .hf-guide-popup__book {
    height: 330px;
    width: 220px;
  }

  #hf-guide-popup-root .hf-guide-popup__content {
    padding-bottom: 30px;
    padding-top: 34px;
  }

  #hf-guide-popup-root .hf-guide-popup__title {
    font-size: 39px;
  }

  #hf-guide-popup-root .hf-guide-popup__benefits {
    margin-bottom: 16px;
    margin-top: 16px;
  }
}

@media (max-width: 390px) {
  #hf-guide-popup-root .hf-guide-popup__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  #hf-guide-popup-root .hf-guide-popup__title {
    font-size: 29px;
  }

  #hf-guide-popup-root .hf-guide-popup__benefits {
    margin-bottom: 16px;
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hf-guide-popup-root .hf-guide-popup__backdrop,
  #hf-guide-popup-root .hf-guide-popup__dialog,
  #hf-guide-popup-root .hf-guide-popup__close,
  #hf-guide-popup-root .hf-guide-popup__submit {
    transition-duration: 0.01ms !important;
  }

  #hf-guide-popup-root .hf-guide-popup__spinner {
    animation-duration: 1.4s;
  }
}

