.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.faq-question[role="button"] {
  cursor: pointer;
}

.faq-question[role="button"]:focus-visible {
  outline: 2px solid var(--dop-primary, #dd4b95);
  outline-offset: 4px;
}

.beta-signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.beta-choice-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.beta-choice-group legend {
  margin-bottom: 7px;
  color: var(--dop-text, #f5eef3);
  font-family: var(--dop-font-display, "Nunito", sans-serif);
  font-size: 15px;
  font-weight: 800;
}

.beta-choice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .018);
  border: 1px solid var(--dop-border-soft, rgba(221, 75, 149, .18));
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}

.beta-choice:has(input:checked) {
  background: rgba(221, 75, 149, .08);
  border-color: rgba(221, 75, 149, .52);
}

.beta-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--dop-primary, #dd4b95);
}

.beta-choice span,
.beta-choice strong,
.beta-choice small {
  display: block;
}

.beta-choice strong {
  color: var(--dop-text, #f5eef3);
  font-size: 15px;
}

.beta-choice small {
  margin-top: 4px;
  color: var(--dop-text-muted, #8a8597);
  font-size: 13px;
  line-height: 1.5;
}

.beta-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.beta-field label {
  color: var(--dop-text, #f5eef3);
  font-family: var(--dop-font-display, "Nunito", sans-serif);
  font-size: 15px;
  font-weight: 800;
}

.beta-field label span,
.beta-field > span {
  color: var(--dop-text-muted, #8a8597);
  font-size: 13px;
  font-weight: 500;
}

.beta-field input {
  width: 100%;
  min-height: 60px;
  padding: 16px 18px;
  color: var(--dop-text, #f5eef3);
  background: var(--dop-bg-2, #161922);
  border: 1px solid var(--dop-border-soft, rgba(221, 75, 149, .18));
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.beta-field input:hover {
  border-color: rgba(221, 75, 149, .38);
}

.beta-field input:focus {
  background: rgba(22, 25, 34, .86);
  border-color: var(--dop-primary, #dd4b95);
  box-shadow: 0 0 0 3px rgba(221, 75, 149, .16);
}

.beta-field-hint {
  margin: 0;
  color: var(--dop-text-muted, #8a8597);
  font-size: 11px;
  line-height: 1.5;
}

.beta-pseudonym-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.beta-pseudonym-wrapper input {
  flex: 1 1 auto;
  min-width: 0;
}

.beta-pseudonym-check {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: normal;
  max-width: 120px;
  text-align: right;
  transition: color .15s ease;
}

.beta-pseudonym-check[data-state="checking"] { color: var(--dop-text-muted, #8a8597); }
.beta-pseudonym-check[data-state="available"] { color: #4ade80; }
.beta-pseudonym-check[data-state="taken"],
.beta-pseudonym-check[data-state="invalid"]   { color: #f87171; }

.beta-consent-group {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, .018);
  border: 1px solid var(--dop-border-soft, rgba(221, 75, 149, .18));
  border-radius: 12px;
}

.beta-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--dop-text-muted, #8a8597);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
}

.beta-check input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  accent-color: var(--dop-primary, #dd4b95);
  flex: 0 0 auto;
}

.beta-check:hover {
  color: var(--dop-text, #f5eef3);
}

.beta-check a {
  color: var(--dop-primary, #dd4b95);
  font-weight: 700;
}

.beta-form-note,
.beta-form-button-note,
.beta-form-status,
.beta-setup-note {
  margin: 0;
  color: var(--dop-text-muted, #8a8597);
  font-size: 13px;
  line-height: 1.6;
}

.beta-form-button-note {
  color: var(--dop-text, #f5eef3);
  font-weight: 700;
}

.beta-form-status:not(:empty),
.beta-setup-note {
  padding: 12px 14px;
  border: 1px solid var(--dop-border-soft, rgba(221, 75, 149, .18));
  border-radius: 10px;
  background: rgba(221, 75, 149, .07);
}

.beta-signup-form button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.beta-signup-form .cf-turnstile {
  min-height: 65px;
  overflow: hidden;
}

/* Segmented toggle — remplace les radio-choice */
.beta-toggle-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.beta-toggle-group legend {
  margin-bottom: 8px;
  color: var(--dop-text, #f5eef3);
  font-family: var(--dop-font-display, "Nunito", sans-serif);
  font-size: 15px;
  font-weight: 800;
}

.beta-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  background: var(--dop-bg-2, #161922);
  border: 1px solid var(--dop-border-soft, rgba(255, 255, 255, .06));
  border-radius: 12px;
}

.beta-toggle-opt {
  position: relative;
  cursor: pointer;
}

.beta-toggle-opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.beta-toggle-opt span {
  display: block;
  padding: 12px 18px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--dop-text-muted, #aaa3b5);
  border-radius: 9px;
  transition: background .2s, color .2s, box-shadow .2s;
  user-select: none;
}

.beta-toggle-opt:has(input:checked) span {
  background: var(--dop-primary, #dd4b95);
  color: #fff;
  box-shadow: 0 2px 10px rgba(221, 75, 149, .32);
}

.beta-toggle-opt:hover:not(:has(input:checked)) span {
  color: var(--dop-text, #f5eef3);
}

.beta-entry-card-head {
  margin-bottom: 24px;
}

.beta-entry-card-head h2,
.beta-entry-card-head h3 {
  margin: 0;
  font-family: var(--dop-font-display, "Nunito", sans-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
}

.beta-entry-card-head p {
  margin: 10px 0 0;
  color: var(--dop-text-muted, #8a8597);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .beta-form-grid { grid-template-columns: 1fr; }
  .beta-signup-form { gap: 14px; }
  .beta-consent-group { padding: 12px; }
}

/* ── Author Byline ──────────────────────────────────────── */
.author-byline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.author-byline__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dop-primary-soft, rgba(221,75,149,.15));
  color: var(--dop-primary, #dd4b95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  font-family: var(--dop-font-display, 'Nunito', sans-serif);
}

.author-byline__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dop-text, #f5eef3);
  line-height: 1.2;
}

.author-byline__dates {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--dop-text-muted, #8a8597);
  margin-top: 1px;
  flex-wrap: wrap;
}

/* ── Author Bio Card ─────────────────────────────────────── */
.author-bio {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--dop-card, #181c28);
  border: 1px solid var(--dop-border-soft, rgba(255,255,255,.06));
  border-radius: var(--dop-radius-lg, 18px);
  margin-top: 40px;
}

.author-bio__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--dop-primary-soft, rgba(221,75,149,.15));
  color: var(--dop-primary, #dd4b95);
  font-size: 15px;
  font-weight: 800;
  font-family: var(--dop-font-display, 'Nunito', sans-serif);
}

.author-bio__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dop-primary, #dd4b95);
  margin-bottom: 3px;
}

.author-bio__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--dop-text, #f5eef3);
  font-family: var(--dop-font-display, 'Nunito', sans-serif);
}

.author-bio__role {
  font-size: 12px;
  color: var(--dop-text-muted, #8a8597);
  margin: 2px 0 10px;
}

.author-bio__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dop-text-muted, #8a8597);
  margin: 0 0 10px;
}

.author-bio__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--dop-primary, #dd4b95);
  text-decoration: none;
}

.author-bio__link:hover { text-decoration: underline; }

@media (max-width: 580px) {
  .author-bio { flex-direction: column; }
}

/* --- STORE BUTTONS --- */
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--dop-card-2); color: var(--dop-text);
  border: 1px solid var(--dop-border-strong);
  padding: 11px 18px; border-radius: var(--dop-radius-md);
  transition: border-color var(--dop-dur), background var(--dop-dur), transform var(--dop-dur);
}
.btn-store:hover { border-color: rgba(221,75,149,0.55); background: rgba(221,75,149,0.10); transform: translateY(-1px); }
.btn-store svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-store .s-small { font-family: var(--dop-font-body); font-size: 10px; color: var(--dop-text-muted); line-height: 1; display: block; }
.btn-store .s-big { font-family: var(--dop-font-display); font-weight: 800; font-size: 15px; line-height: 1.2; }
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 24px; }
.store-buttons--center { justify-content: center; }
@media (max-width: 560px) {
  .store-buttons { gap: 10px; }
  .store-buttons .btn-store { flex: 1 1 auto; justify-content: center; }
}
