/* Youth Q&A Ask/Submit - Bloom style (from youth-qa-ask-sample.html) */

.youth-qa-ask-page {
  --cream: #FFF8F0;
  --coral: #FF6B5B;
  --mint: #6DDAB4;
  --lavender: #C3B1E1;
  --sky: #7BC8F6;
  --gold: #F5C842;
  --qa-sky: #7BC8F6;
  --qa-sky-deep: #4AABEA;
  --qa-night: #070F1A;
  --qa-panel: #0D1E30;
  --qa-card: #0F2236;
  --radius-card: 22px;
  --radius-pill: 100px;
  --shadow-sky: 0 8px 32px rgba(123,200,246,.18);
  --header-h: 64px;
  --tab-h: 72px;
}

body:has(.youth-qa-ask-page) {
  background: var(--qa-night);
  margin: 0;
  padding: 0;
}

.youth-qa-ask-page {
  font-family: 'DM Sans', sans-serif;
  background: var(--qa-night);
  color: var(--cream);
  min-height: 100dvh;
  overflow-x: hidden;
}

.youth-qa-ask-page::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
}

.youth-qa-ask-page #stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.youth-qa-ask-page .glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: qa-ask-glowDrift var(--dur, 18s) ease-in-out infinite;
}
.youth-qa-ask-page .glow-1 { width: 600px; height: 600px; background: rgba(123,200,246,.07); top: -200px; left: -150px; --dur: 22s; }
.youth-qa-ask-page .glow-2 { width: 400px; height: 400px; background: rgba(109,218,180,.05); bottom: -100px; right: -100px; --dur: 16s; animation-delay: -8s; }
.youth-qa-ask-page .glow-3 { width: 300px; height: 300px; background: rgba(195,177,225,.04); top: 40%; right: 20%; --dur: 20s; animation-delay: -14s; }
@keyframes qa-ask-glowDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, 20px) scale(1.08); }
}

.youth-qa-ask-page .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(7,15,26,.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(123,200,246,.15);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 200;
  gap: 12px;
}
.youth-qa-ask-page .header-back {
  background: rgba(123,200,246,.1);
  border: 1px solid rgba(123,200,246,.22);
  color: var(--cream);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  white-space: nowrap;
}
.youth-qa-ask-page .header-back:hover { background: rgba(123,200,246,.2); }
.youth-qa-ask-page .header-mid { flex: 1; text-align: center; }
.youth-qa-ask-page .header-wordmark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.youth-qa-ask-page .header-wordmark em { color: var(--qa-sky); }
.youth-qa-ask-page .header-step {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,248,240,.28);
  margin-top: 1px;
}

.youth-qa-ask-page .page-wrap {
  position: relative;
  z-index: 1;
  padding-top: var(--header-h);
  padding-left: max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
  padding-bottom: calc(var(--tab-h) + 32px);
  padding-bottom: calc(var(--tab-h) + 32px + env(safe-area-inset-bottom, 0px));
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
}

.youth-qa-ask-page .desktop-shell {
  display: none;
}

.youth-qa-ask-page .ask-hero {
  padding: 44px 20px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
.youth-qa-ask-page .ask-hero::before {
  content: '?';
  position: absolute;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 320px;
  color: rgba(123,200,246,.04);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.youth-qa-ask-page .hero-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
  display: block;
  animation: qa-ask-iconBounce 3s ease-in-out infinite;
}
@keyframes qa-ask-iconBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.youth-qa-ask-page .hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--qa-sky);
  margin-bottom: 12px;
}
.youth-qa-ask-page .hero-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.youth-qa-ask-page .hero-title em { color: var(--qa-sky); }
.youth-qa-ask-page .hero-sub {
  font-size: .9rem;
  color: rgba(255,248,240,.42);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

.youth-qa-ask-page .promises-strip {
  display: flex;
  gap: 10px;
  padding: 0 4px 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}
.youth-qa-ask-page .promises-strip::-webkit-scrollbar { display: none; }
.youth-qa-ask-page .promise-card {
  flex-shrink: 0;
  background: rgba(123,200,246,.06);
  border: 1px solid rgba(123,200,246,.14);
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 150px;
  max-width: 170px;
}
.youth-qa-ask-page .pc-icon { font-size: 1.2rem; margin-bottom: 6px; }
.youth-qa-ask-page .pc-text { font-size: .76rem; line-height: 1.5; color: rgba(255,248,240,.5); font-weight: 500; }
.youth-qa-ask-page .pc-text strong { color: rgba(255,248,240,.8); display: block; margin-bottom: 2px; font-weight: 700; }

.youth-qa-ask-page .form-card {
  background: var(--qa-card);
  border: 1px solid rgba(123,200,246,.12);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: 28px 20px 36px;
  flex: 1;
  min-width: 0;
  overflow-x: hidden;
  position: relative;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.youth-qa-ask-page .field-group {
  margin-bottom: 22px;
  min-width: 0;
}
.youth-qa-ask-page .field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.youth-qa-ask-page .field-label-text {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,248,240,.38);
  display: flex;
  align-items: center;
  gap: 6px;
}
.youth-qa-ask-page .field-label-text .req { color: var(--qa-sky); }
.youth-qa-ask-page .field-char-count {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(255,248,240,.25);
  transition: color .2s;
}
.youth-qa-ask-page .field-char-count.warn { color: #FFB347; }
.youth-qa-ask-page .field-char-count.limit { color: #FF6B5B; }

.youth-qa-ask-page .question-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(123,200,246,.15);
  border-radius: 18px;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--cream);
  line-height: 1.7;
  outline: none;
  resize: none;
  min-height: 140px;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.youth-qa-ask-page .question-field::placeholder { color: rgba(255,248,240,.22); }
.youth-qa-ask-page .question-field:focus {
  border-color: rgba(123,200,246,.45);
  background: rgba(123,200,246,.04);
  box-shadow: 0 0 0 4px rgba(123,200,246,.07);
}

.youth-qa-ask-page .cat-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-width: 0;
}
.youth-qa-ask-page .cat-option {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 11px 12px;
  cursor: pointer;
  transition: all .18s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,248,240,.45);
  user-select: none;
  position: relative;
}
.youth-qa-ask-page .cat-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.youth-qa-ask-page .cat-option .co-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .18s;
}
.youth-qa-ask-page .cat-option:hover {
  border-color: rgba(123,200,246,.25);
  color: rgba(255,248,240,.7);
}
.youth-qa-ask-page .cat-option.selected {
  border-color: var(--cat-color, var(--qa-sky));
  background: rgba(var(--cat-rgb, 123,200,246), .1);
  color: var(--cream);
  box-shadow: 0 0 0 1px rgba(var(--cat-rgb, 123,200,246), .15);
}
.youth-qa-ask-page .cat-option.selected .co-dot { opacity: 1; }

.youth-qa-ask-page .toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  min-width: 0;
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
  transition: background .18s, border-color .18s;
  min-width: 0;
}
.youth-qa-ask-page .toggle-row:hover { background: rgba(255,255,255,.05); }
.youth-qa-ask-page .toggle-row.checked { border-color: rgba(123,200,246,.25); background: rgba(123,200,246,.05); }
.youth-qa-ask-page .toggle-switch {
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: 13px;
  position: relative;
  flex-shrink: 0;
  transition: background .2s;
  margin-top: 2px;
}
.youth-qa-ask-page .toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.youth-qa-ask-page .toggle-row.checked .toggle-switch { background: var(--qa-sky-deep); }
.youth-qa-ask-page .toggle-row.checked .toggle-switch::after { transform: translateX(22px); }
.youth-qa-ask-page .toggle-info {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}
.youth-qa-ask-page .toggle-title { font-weight: 700; font-size: .88rem; color: var(--cream); margin-bottom: 3px; }
.youth-qa-ask-page .toggle-sub {
  font-size: .75rem;
  color: rgba(255,248,240,.38);
  line-height: 1.5;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.youth-qa-ask-page .email-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--cream);
  outline: none;
  transition: border-color .2s, background .2s;
}
.youth-qa-ask-page .email-field::placeholder { color: rgba(255,248,240,.2); }
.youth-qa-ask-page .email-field:focus {
  border-color: rgba(123,200,246,.4);
  background: rgba(123,200,246,.03);
}

.youth-qa-ask-page .submit-area { margin-top: 28px; }
.youth-qa-ask-page .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--qa-sky), var(--qa-sky-deep));
  color: #070F1A;
  border: none;
  border-radius: var(--radius-pill);
  padding: 17px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: var(--shadow-sky);
  transition: transform .15s, box-shadow .2s, opacity .2s;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.youth-qa-ask-page .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(123,200,246,.35); }
.youth-qa-ask-page .submit-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.youth-qa-ask-page .cancel-link {
  display: block;
  text-align: center;
  color: rgba(255,248,240,.3);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  transition: color .18s;
}
.youth-qa-ask-page .cancel-link:hover { color: rgba(255,248,240,.6); }
.youth-qa-ask-page .privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 16px;
}
.youth-qa-ask-page .privacy-icon { font-size: .9rem; flex-shrink: 0; margin-top: 1px; }
.youth-qa-ask-page .privacy-text {
  font-size: .73rem;
  color: rgba(255,248,240,.3);
  line-height: 1.55;
  overflow-wrap: break-word;
}

/* Crisis alert */
.youth-qa-ask-page .crisis-alert {
  background: rgba(255,107,91,.1);
  border: 1px solid rgba(255,107,91,.3);
  border-radius: var(--radius-card);
  padding: 20px;
  margin-bottom: 24px;
}
.youth-qa-ask-page .crisis-alert h3 { color: var(--cream); margin-bottom: 10px; }
.youth-qa-ask-page .crisis-resources { margin: 16px 0; }
.youth-qa-ask-page .crisis-resource {
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.youth-qa-ask-page .crisis-resource a { color: var(--qa-sky); }

/* Confirmation screen */
.youth-qa-ask-page .confirm-screen {
  position: fixed;
  inset: 0;
  background: var(--qa-night);
  z-index: 300;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px max(28px, env(safe-area-inset-right, 28px)) 40px max(28px, env(safe-area-inset-left, 28px));
  text-align: center;
  box-sizing: border-box;
}
.youth-qa-ask-page .confirm-screen.show { display: flex; }
.youth-qa-ask-page .confirm-particle {
  position: absolute;
  border-radius: 50%;
  animation: qa-ask-particleFly var(--pdur, 2s) ease-out var(--pdelay, 0s) both;
}
@keyframes qa-ask-particleFly {
  0% { transform: translate(0,0) scale(0); opacity: 1; }
  100% { transform: translate(var(--px, 0), var(--py, -100px)) scale(1); opacity: 0; }
}
.youth-qa-ask-page .confirm-glow {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,200,246,.25) 0%, transparent 70%);
  position: absolute;
  animation: qa-ask-confirmGlowPulse 2s ease-in-out infinite;
}
@keyframes qa-ask-confirmGlowPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.3); opacity: 1; }
}
.youth-qa-ask-page .confirm-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(123,200,246,.12);
  border: 2px solid rgba(123,200,246,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  animation: qa-ask-confirmIconIn .5s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes qa-ask-confirmIconIn {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}
.youth-qa-ask-page .confirm-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--cream);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  animation: qa-ask-fadeUpIn .5s ease .15s both;
}
.youth-qa-ask-page .confirm-title em { color: var(--qa-sky); }
.youth-qa-ask-page .confirm-sub {
  font-size: .92rem;
  color: rgba(255,248,240,.45);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  animation: qa-ask-fadeUpIn .5s ease .25s both;
}
@keyframes qa-ask-fadeUpIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.youth-qa-ask-page .confirm-verse {
  background: rgba(123,200,246,.07);
  border: 1px solid rgba(123,200,246,.15);
  border-left: 3px solid var(--qa-sky);
  border-radius: 16px;
  padding: 16px 20px;
  max-width: 360px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
  animation: qa-ask-fadeUpIn .5s ease .35s both;
}
.youth-qa-ask-page .confirm-verse-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,248,240,.65);
  line-height: 1.6;
  margin-bottom: 6px;
}
.youth-qa-ask-page .confirm-verse-ref { font-size: .7rem; font-weight: 700; color: var(--qa-sky); letter-spacing: .06em; }
.youth-qa-ask-page .confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 2;
  animation: qa-ask-fadeUpIn .5s ease .45s both;
}
.youth-qa-ask-page .confirm-home-btn {
  background: linear-gradient(135deg, var(--qa-sky), var(--qa-sky-deep));
  color: #070F1A;
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.youth-qa-ask-page .confirm-home-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sky); }
.youth-qa-ask-page .confirm-more-btn {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,248,240,.45);
  border-radius: var(--radius-pill);
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.youth-qa-ask-page .confirm-more-btn:hover { background: rgba(255,255,255,.09); color: var(--cream); }

.youth-qa-ask-page .tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
  background: rgba(7,15,26,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(123,200,246,.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 100;
}

.youth-qa-ask-page .tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 10px 8px 8px;
  cursor: pointer;
  text-decoration: none;
  border-radius: 12px;
  color: inherit;
}
.youth-qa-ask-page .tab-item.active .t-icon { color: var(--qa-sky); }
.youth-qa-ask-page .tab-item.active .t-lbl { color: var(--qa-sky); }
.youth-qa-ask-page .t-icon { font-size: 1.3rem; }
.youth-qa-ask-page .t-lbl { font-size: .61rem; font-weight: 700; color: #9B8E87; }

/* Desktop */
@media (min-width: 900px) {
  .youth-qa-ask-page .site-header { padding: 0 40px; }
  .youth-qa-ask-page .page-wrap {
    display: none;
  }
  .youth-qa-ask-page .desktop-shell {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(420px, 480px);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    min-height: calc(100dvh - var(--header-h));
    padding-top: var(--header-h);
    padding-left: max(32px, env(safe-area-inset-left, 32px));
    padding-right: max(32px, env(safe-area-inset-right, 32px));
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  .youth-qa-ask-page .ask-hero {
    padding: 0;
    text-align: left;
    overflow: visible;
  }
  .youth-qa-ask-page .ask-hero::before { display: none; }
  .youth-qa-ask-page .hero-icon { display: none; }
  .youth-qa-ask-page .promises-strip { display: none; }
  .youth-qa-ask-page .form-card {
    border-radius: 0;
    border: none;
    background: transparent;
    padding: 0;
    flex: none;
  }
  .youth-qa-ask-page .d-left {
    padding: 72px 48px 72px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(123,200,246,.08);
    position: relative;
    overflow: hidden;
  }
  .youth-qa-ask-page .d-left::before {
    content: '?';
    position: absolute;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 500px;
    color: rgba(123,200,246,.035);
    bottom: -120px;
    right: -80px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }
  .youth-qa-ask-page .d-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--qa-sky);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .youth-qa-ask-page .d-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--qa-sky);
    border-radius: 2px;
  }
  .youth-qa-ask-page .d-title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 4.4rem;
    line-height: .97;
    color: var(--cream);
    letter-spacing: -0.04em;
    margin-bottom: 22px;
  }
  .youth-qa-ask-page .d-title em { color: var(--qa-sky); display: block; }
  .youth-qa-ask-page .d-desc {
    font-size: 1rem;
    color: rgba(255,248,240,.42);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 48px;
  }
  .youth-qa-ask-page .d-promises { display: flex; flex-direction: column; gap: 12px; max-width: 400px; }
  .youth-qa-ask-page .d-promise-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(123,200,246,.05);
    border: 1px solid rgba(123,200,246,.1);
    border-radius: 16px;
    transition: background .18s;
  }
  .youth-qa-ask-page .d-promise-row:hover { background: rgba(123,200,246,.09); }
  .youth-qa-ask-page .dp-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
  .youth-qa-ask-page .dp-text { font-size: .85rem; line-height: 1.55; color: rgba(255,248,240,.45); }
  .youth-qa-ask-page .dp-text strong { color: rgba(255,248,240,.82); display: block; margin-bottom: 2px; font-weight: 700; font-size: .88rem; }
  .youth-qa-ask-page .d-back-link {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,248,240,.3);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s, gap .18s;
  }
  .youth-qa-ask-page .d-back-link:hover { color: rgba(255,248,240,.65); gap: 11px; }
  .youth-qa-ask-page .d-right {
    background: var(--qa-card);
    border-left: 1px solid rgba(123,200,246,.1);
    padding: 56px 40px 56px 48px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .youth-qa-ask-page .d-form-header {
    margin-bottom: 36px;
    min-width: 0;
  }
  .youth-qa-ask-page .d-form-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--qa-sky);
    margin-bottom: 8px;
  }
  .youth-qa-ask-page .d-form-title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--cream);
    line-height: 1.2;
    overflow-wrap: break-word;
  }
  .youth-qa-ask-page .question-field { min-height: 160px; font-size: 1rem; }
  .youth-qa-ask-page .cat-picker { grid-template-columns: 1fr 1fr 1fr; }
  .youth-qa-ask-page .submit-btn { font-size: 1.05rem; padding: 18px; }
  .youth-qa-ask-page .tab-bar { display: none; }
}
