/* ── Page-specific styles for /vent-online-anonymously ──────── */

/* Hero variant: amber/orange-tinted for venting/intensity intent */
.voa-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.voa-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(251,191,36,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(248,113,113,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 90%, rgba(107,138,253,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.voa-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.voa-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.18);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.voa-h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.voa-h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #fbbf24, #f87171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voa-subhead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}

.voa-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.voa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.voa-cta:hover { background: #5a7af8; }
.voa-cta:active { transform: scale(0.97); }

.voa-trust-line {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Content sections */
.voa-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.voa-section {
  margin-bottom: 72px;
}

.voa-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 12px;
}

.voa-h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 20px;
}

.voa-p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.voa-p strong {
  color: var(--text);
  font-weight: 500;
}

.voa-p em {
  font-style: normal;
  color: var(--text);
}

/* Checklist */
.voa-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.voa-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.voa-check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(251,191,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Use-case cards */
.voa-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 560px) {
  .voa-use-grid { grid-template-columns: 1fr; }
}

.voa-use-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.15s;
}

.voa-use-card:hover {
  border-color: rgba(251,191,36,0.2);
}

.voa-use-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.voa-use-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.voa-use-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Crisis note */
.voa-crisis {
  background: rgba(248,113,113,0.05);
  border: 1px solid rgba(248,113,113,0.15);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 72px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.voa-crisis-title {
  font-size: 15px;
  font-weight: 600;
  color: #f87171;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.voa-crisis-body {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.voa-crisis-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.voa-crisis-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}
.voa-crisis-pill:hover { opacity: 0.85; }

.voa-crisis-pill--988 {
  background: rgba(248,113,113,0.15);
  color: #f87171;
  border: 1px solid rgba(248,113,113,0.25);
}

.voa-crisis-pill--text {
  background: rgba(251,191,36,0.1);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.2);
}

.voa-crisis-pill--911 {
  background: rgba(96,165,250,0.1);
  color: #60a5fa;
  border: 1px solid rgba(96,165,250,0.2);
}

/* Bottom CTA */
.voa-bottom-cta {
  text-align: center;
  padding: 0 24px 100px;
}

.voa-bottom-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.voa-bottom-cta-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Cross-link block */
.voa-related-wrap {
  margin-top: 64px;
}

.voa-related-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.voa-related-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voa-related-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.voa-related-card:hover {
  border-color: rgba(251,191,36,0.2);
  background: rgba(251,191,36,0.03);
}

.voa-related-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.voa-related-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.voa-related-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.voa-related-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}

.voa-related-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.15s, color 0.15s;
}

.voa-related-card:hover .voa-related-arrow {
  transform: translateX(3px);
  color: #fbbf24;
}

@media (max-width: 375px) {
  .voa-h1 { font-size: 1.75rem; }
  .voa-crisis { padding: 20px 18px; }
}