/* Appily Twentyfive — Help Hive (unique honeycomb help desk) */

.hc25-page { background: var(--pu-light); padding-bottom: 72px; }

.hc25-hero {
  position: relative;
  background: var(--pu-black);
  color: var(--pu-white);
  padding: 56px 0 80px;
  overflow: hidden;
}
.hc25-hero-hex {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath fill='%23BFFF00' d='M28 0l28 16v32L28 64 0 48V16z'/%3E%3Cpath fill='%23BFFF00' d='M28 36l28 16v32L28 100 0 84V52z'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.hc25-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}
.hc25-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pu-lime);
}
.hc25-hero h1 {
  font-family: var(--pu-font);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hc25-hero h1 em {
  font-style: normal;
  color: var(--pu-lime);
}
.hc25-hero-lede {
  margin: 0;
  max-width: 540px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 15px;
}
.hc25-hero-badge {
  width: 96px;
  height: 96px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--pu-lime);
  color: var(--pu-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--pu-font);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
  flex-shrink: 0;
}

.hc25-stage {
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.hc25-wrap { max-width: 1080px; }

.hc25-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.hc25-stat {
  background: var(--pu-white);
  border: 1px solid var(--pu-border);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.hc25-stat strong {
  display: block;
  font-family: var(--pu-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pu-black);
  line-height: 1;
  margin-bottom: 4px;
}
.hc25-stat span {
  font-size: 12px;
  color: var(--pu-gray);
  font-weight: 600;
}

.hc25-shell {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

/* Honeycomb topic picker */
.hc25-comb-wrap {
  background: var(--pu-white);
  border: 1px solid var(--pu-border);
  border-radius: 20px;
  padding: 24px 20px 28px;
  box-shadow: var(--pu-shadow);
  position: sticky;
  top: calc(var(--pu-header-h) + 16px);
}
.hc25-comb-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pu-gray);
  text-align: center;
}
.hc25-comb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hc25-comb-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: -14px;
}
.hc25-comb-row:first-child { margin-top: 0; }
.hc25-comb-row.offset { padding-left: 52px; }

.hc25-cell {
  width: 100px;
  height: 88px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--pu-light);
  border: none;
  color: var(--pu-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px 8px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s, transform .15s;
}
.hc25-cell:hover {
  background: #e8e8e4;
  color: var(--pu-black);
  transform: scale(1.04);
}
.hc25-cell.is-active {
  background: var(--pu-lime);
  color: var(--pu-black);
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(191,255,0,.35);
}
.hc25-cell-code {
  font-family: var(--pu-font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.hc25-cell-name {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

/* Chamber (FAQ panel) */
.hc25-chamber {
  background: var(--pu-white);
  border: 1px solid var(--pu-border);
  border-radius: 20px;
  box-shadow: var(--pu-shadow);
  overflow: hidden;
  min-height: 420px;
}
.hc25-chamber-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--pu-border);
  background: linear-gradient(180deg, var(--pu-light) 0%, var(--pu-white) 100%);
}
.hc25-chamber-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pu-lime-dim);
}
.hc25-chamber-head h2 {
  font-family: var(--pu-font);
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.hc25-chamber-summary {
  margin: 0;
  color: var(--pu-gray);
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
}

.hc25-panel { display: none; }
.hc25-panel.is-active { display: block; animation: hc25In .35s ease; }
@keyframes hc25In {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hc25-faq-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}
.hc25-faq-item {
  border-bottom: 1px solid var(--pu-border);
}
.hc25-faq-item:last-child { border-bottom: 0; }
.hc25-faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 32px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}
.hc25-faq-q:hover { background: var(--pu-light); }
.hc25-faq-q[aria-expanded="true"] { background: rgba(191,255,0,.08); }
.hc25-faq-marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--pu-black);
  color: var(--pu-lime);
  font-family: var(--pu-font);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hc25-faq-q[aria-expanded="true"] .hc25-faq-marker {
  background: var(--pu-lime);
  color: var(--pu-black);
}
.hc25-faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--pu-black);
  line-height: 1.45;
}
.hc25-faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--pu-gray);
  transition: transform .25s;
}
.hc25-faq-q[aria-expanded="true"] .hc25-faq-chevron {
  transform: rotate(180deg);
  color: var(--pu-black);
}
.hc25-faq-a {
  display: none;
  padding: 0 32px 20px 74px;
  color: var(--pu-gray);
  font-size: 14px;
  line-height: 1.75;
}
.hc25-faq-a.is-open { display: block; }
.hc25-faq-a a {
  color: var(--pu-black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hc25-faq-a a:hover { color: var(--pu-lime-dim); }

/* Rapid relay strip */
.hc25-relay {
  margin-top: 28px;
  background: var(--pu-black);
  color: var(--pu-white);
  border-radius: 20px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.hc25-relay-label {
  font-family: var(--pu-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pu-lime);
  white-space: nowrap;
}
.hc25-relay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hc25-relay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--pu-radius-pill);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--pu-white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
}
.hc25-relay-link:hover {
  background: var(--pu-lime);
  border-color: var(--pu-lime);
  color: var(--pu-black);
}
.hc25-relay-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .65;
}

.hc25-contact-bar {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 20px 24px;
  background: var(--pu-white);
  border: 1px solid var(--pu-border);
  border-radius: 16px;
  font-size: 14px;
  color: var(--pu-gray);
}
.hc25-contact-bar a {
  color: var(--pu-black);
  font-weight: 600;
}
.hc25-contact-bar a:hover { color: var(--pu-lime-dim); }

@media (max-width: 900px) {
  .hc25-shell { grid-template-columns: 1fr; }
  .hc25-comb-wrap { position: static; }
  .hc25-comb-row.offset { padding-left: 0; }
  .hc25-stats { grid-template-columns: 1fr; }
  .hc25-relay { grid-template-columns: 1fr; }
  .hc25-faq-q { padding: 16px 20px; }
  .hc25-faq-a { padding: 0 20px 18px 54px; }
  .hc25-chamber-head { padding: 24px 20px 16px; }
  .hc25-hero-inner { grid-template-columns: 1fr; }
  .hc25-hero-badge { display: none; }
}

@media (max-width: 520px) {
  .hc25-cell { width: 88px; height: 78px; font-size: 10px; }
  .hc25-comb-row { gap: 4px; margin-top: -12px; }
}
