/* Appily twentyeight — Bloom Compass help center (unique layout) */

.page-help.a28-help {
  background: var(--a28-cream);
}

/* —— Canopy hero —— */
.a28-hc-canopy {
  position: relative;
  padding: 2.75rem 0 5rem;
  background: linear-gradient(145deg, var(--a28-sage) 0%, #4a6358 42%, var(--a28-plum) 100%);
  color: var(--a28-white);
  overflow: hidden;
}

.a28-hc-canopy::before {
  content: '';
  position: absolute;
  inset: -30% auto auto -10%;
  width: min(480px, 80vw);
  height: min(480px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 123, 132, 0.28) 0%, transparent 70%);
  pointer-events: none;
}

.a28-hc-canopy::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--a28-cream);
  clip-path: ellipse(62% 100% at 50% 100%);
}

.a28-hc-canopy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.a28-hc-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--a28-rose-light);
  margin: 0 0 0.75rem;
}

.a28-hc-title {
  font-family: var(--a28-font-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.a28-hc-title em {
  font-style: italic;
  color: var(--a28-rose-light);
}

.a28-hc-lede {
  margin: 0 0 1.75rem;
  max-width: 44ch;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.a28-hc-search {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.a28-hc-search-icon {
  padding-left: 1.1rem;
  font-size: 1rem;
  opacity: 0.7;
}

.a28-hc-search input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--a28-white);
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  min-width: 0;
}

.a28-hc-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.a28-hc-search button {
  border: none;
  background: var(--a28-rose);
  color: var(--a28-white);
  padding: 0.85rem 1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.a28-hc-search button:hover {
  background: var(--a28-plum-dark);
}

/* Compass widget */
.a28-hc-compass-wrap {
  position: relative;
  width: min(300px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.a28-hc-compass-ring {
  position: absolute;
  inset: 8%;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.a28-hc-compass-core {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--a28-white);
  color: var(--a28-plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(28, 20, 24, 0.2);
}

.a28-hc-compass-petal {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--a28-radius);
  color: var(--a28-white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.a28-hc-compass-petal:hover,
.a28-hc-compass-petal.is-active {
  background: var(--a28-white);
  color: var(--a28-plum);
  border-color: var(--a28-white);
  transform: scale(1.05);
}

.a28-hc-compass-glyph {
  font-size: 1.1rem;
  line-height: 1;
}

.a28-hc-compass-petal:nth-child(2) { top: 0; left: 50%; transform: translateX(-50%); }
.a28-hc-compass-petal:nth-child(3) { right: 0; top: 50%; transform: translateY(-50%); }
.a28-hc-compass-petal:nth-child(4) { bottom: 0; left: 50%; transform: translateX(-50%); }
.a28-hc-compass-petal:nth-child(5) { left: 0; top: 50%; transform: translateY(-50%); }

.a28-hc-compass-petal:nth-child(2):hover,
.a28-hc-compass-petal:nth-child(2).is-active { transform: translateX(-50%) scale(1.05); }
.a28-hc-compass-petal:nth-child(3):hover,
.a28-hc-compass-petal:nth-child(3).is-active { transform: translateY(-50%) scale(1.05); }
.a28-hc-compass-petal:nth-child(4):hover,
.a28-hc-compass-petal:nth-child(4).is-active { transform: translateX(-50%) scale(1.05); }
.a28-hc-compass-petal:nth-child(5):hover,
.a28-hc-compass-petal:nth-child(5).is-active { transform: translateY(-50%) scale(1.05); }

/* —— Bento garden stage —— */
.a28-hc-garden {
  padding: 0 0 3.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.a28-hc-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  grid-template-rows: auto 1fr;
  gap: 1rem 1.25rem;
  grid-template-areas:
    "petals vase"
    "board vase";
}

.a28-hc-petals {
  grid-area: petals;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.a28-hc-petal {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  background: var(--a28-white);
  border: 1px solid var(--a28-linen);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
}

.a28-hc-petal:hover {
  border-color: var(--a28-sage);
}

.a28-hc-petal.is-active {
  background: var(--a28-plum);
  border-color: var(--a28-plum);
  color: var(--a28-white);
  box-shadow: var(--a28-shadow);
}

.a28-hc-petal-glyph {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--a28-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.a28-hc-petal.is-active .a28-hc-petal-glyph {
  background: rgba(255, 255, 255, 0.15);
  color: var(--a28-white);
}

.a28-hc-petal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.a28-hc-petal-text strong {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.a28-hc-petal-text small {
  font-size: 0.68rem;
  opacity: 0.75;
  margin-top: 0.1rem;
}

.a28-hc-board {
  grid-area: board;
  background: var(--a28-white);
  border: 1px solid var(--a28-linen);
  box-shadow: var(--a28-shadow);
  padding: 1.75rem 1.75rem 2rem;
  min-height: 360px;
}

.a28-hc-panel-head {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--a28-linen);
}

.a28-hc-panel-glyph {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a28-sage) 0%, var(--a28-plum) 100%);
  color: var(--a28-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.a28-hc-panel-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a28-sage);
  margin: 0 0 0.35rem;
}

.a28-hc-panel-head h2 {
  font-family: var(--a28-font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin: 0 0 0.45rem;
  color: var(--a28-plum);
}

.a28-hc-panel-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--a28-muted);
  line-height: 1.55;
  max-width: 52ch;
}

.a28-hc-faq-grid {
  display: grid;
  gap: 0.65rem;
}

.a28-hc-faq {
  border-left: 3px solid var(--a28-sage);
  background: var(--a28-cream);
  transition: background 0.2s;
}

.a28-hc-faq.is-open {
  background: var(--a28-white);
  box-shadow: 0 4px 16px rgba(28, 20, 24, 0.06);
}

.a28-hc-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.a28-hc-faq-q {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--a28-ink);
  line-height: 1.35;
}

.a28-hc-faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--a28-linen);
  position: relative;
}

.a28-hc-faq-icon::before,
.a28-hc-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--a28-plum);
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
}

.a28-hc-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.a28-hc-faq.is-open .a28-hc-faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.a28-hc-faq-a {
  display: none;
  padding: 0 1.1rem 1.1rem;
  font-size: 0.88rem;
  color: var(--a28-muted);
  line-height: 1.65;
}

.a28-hc-faq-a a {
  color: var(--a28-sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.a28-hc-faq-a a:hover {
  color: var(--a28-plum);
}

.a28-hc-faq.is-open .a28-hc-faq-a {
  display: block;
}

.a28-hc-no-match {
  display: none;
  margin: 1.25rem 0 0;
  padding: 1rem;
  background: var(--a28-linen);
  font-size: 0.88rem;
  color: var(--a28-muted);
  text-align: center;
}

.a28-hc-no-match.is-visible {
  display: block;
}

.a28-hc-no-match a {
  color: var(--a28-sage);
  font-weight: 600;
}

/* Vase sidebar */
.a28-hc-vase {
  grid-area: vase;
  align-self: start;
  position: sticky;
  top: 120px;
  background: var(--a28-white);
  border: 1px solid var(--a28-linen);
  padding: 1.5rem;
  box-shadow: var(--a28-shadow);
}

.a28-hc-vase::before {
  content: '';
  display: block;
  height: 4px;
  margin: -1.5rem -1.5rem 1.25rem;
  background: linear-gradient(90deg, var(--a28-rose) 0%, var(--a28-sage) 50%, var(--a28-plum) 100%);
}

.a28-hc-vase-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--a28-sage);
  margin-bottom: 0.5rem;
}

.a28-hc-vase-top h3 {
  font-family: var(--a28-font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--a28-plum);
}

.a28-hc-vase-top p {
  margin: 0 0 1.15rem;
  font-size: 0.85rem;
  color: var(--a28-muted);
  line-height: 1.55;
}

.a28-hc-vase-stats {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.a28-hc-vase-stats div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--a28-linen);
  font-size: 0.82rem;
}

.a28-hc-vase-stats dt {
  color: var(--a28-muted);
  margin: 0;
}

.a28-hc-vase-stats dd {
  margin: 0;
  font-weight: 600;
  color: var(--a28-ink);
  text-align: right;
}

.a28-hc-vase-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

.a28-hc-vase-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.a28-hc-vase-contact a {
  font-size: 0.78rem;
  color: var(--a28-sage);
  word-break: break-all;
}

.a28-hc-vase-contact a:hover {
  color: var(--a28-plum);
}

/* Quick paths */
.a28-hc-paths {
  padding: 2.5rem 0 4rem;
  background: var(--a28-linen);
}

.a28-hc-paths-head {
  text-align: center;
  margin-bottom: 2rem;
}

.a28-hc-paths-head h2 {
  font-family: var(--a28-font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 0.35rem;
  color: var(--a28-plum);
}

.a28-hc-paths-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--a28-muted);
}

.a28-hc-path-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.a28-hc-path-stone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--a28-white);
  border: 1px solid transparent;
  border-radius: 50% 50% 12px 12px / 28% 28% 12px 12px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  min-height: 130px;
}

.a28-hc-path-stone:hover {
  transform: translateY(-4px);
  border-color: var(--a28-sage);
  box-shadow: var(--a28-shadow);
}

.a28-hc-path-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--a28-rose);
  margin-bottom: 0.5rem;
}

.a28-hc-path-stone strong {
  font-size: 0.82rem;
  color: var(--a28-ink);
  margin-bottom: 0.25rem;
}

.a28-hc-path-stone span:last-child {
  font-size: 0.68rem;
  color: var(--a28-muted);
  line-height: 1.35;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .a28-hc-canopy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .a28-hc-compass-wrap {
    max-width: 260px;
  }

  .a28-hc-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "petals"
      "board"
      "vase";
  }

  .a28-hc-vase {
    position: static;
  }

  .a28-hc-path-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .a28-hc-canopy {
    padding: 2rem 0 4.5rem;
  }

  .a28-hc-search {
    flex-wrap: wrap;
    border-radius: var(--a28-radius);
    padding: 0.35rem;
  }

  .a28-hc-search button {
    width: 100%;
    border-radius: var(--a28-radius);
    margin-top: 0.25rem;
  }

  .a28-hc-petals {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
  }

  .a28-hc-petal {
    flex-shrink: 0;
  }

  .a28-hc-board {
    padding: 1.25rem 1rem 1.5rem;
  }

  .a28-hc-panel-head {
    flex-direction: column;
    gap: 0.75rem;
  }

  .a28-hc-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .a28-hc-compass-wrap {
    display: none;
  }
}

@media (max-width: 400px) {
  .a28-hc-path-grid {
    grid-template-columns: 1fr;
  }
}
