:root {
  --vol-hero-gradient: linear-gradient(135deg, #0a1628 0%, #0d2b5e 50%, #1a3a6b 100%);
  --vol-step-active: #ffb300;
  --vol-step-done: #42a5f5;
  --vol-step-idle: rgba(255, 255, 255, 0.15);
  --vol-form-bg: rgba(255, 255, 255, 0.04);
  --vol-input-border: rgba(255, 255, 255, 0.15);
  --vol-input-focus: #ffb300;
  --vol-success-green: #00e676;
}

.page-volunteer {
  background: linear-gradient(180deg, #07111f, #0a1628 22%, #07111f);
}

.vol-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + var(--safe-top) + 2rem) 0 3rem;
  background: var(--vol-hero-gradient);
  overflow: hidden;
}

.vol-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(66, 165, 245, 0.18), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(255, 179, 0, 0.14), transparent 16%);
  pointer-events: none;
}

.vol-hero .three-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.volunteer-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

.volunteer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.22;
  animation: volOrbFloat 10s ease-in-out infinite;
}

.volunteer-orb:nth-child(odd) {
  background: rgba(66, 165, 245, 0.35);
}

.volunteer-orb:nth-child(even) {
  background: rgba(255, 179, 0, 0.28);
}

.volunteer-orb:nth-child(1) { width: 84px; height: 84px; top: 8%; left: 12%; }
.volunteer-orb:nth-child(2) { width: 120px; height: 120px; top: 14%; right: 14%; animation-delay: 0.8s; }
.volunteer-orb:nth-child(3) { width: 70px; height: 70px; top: 32%; left: 8%; animation-delay: 1.1s; }
.volunteer-orb:nth-child(4) { width: 96px; height: 96px; top: 40%; right: 10%; animation-delay: 1.6s; }
.volunteer-orb:nth-child(5) { width: 110px; height: 110px; bottom: 24%; left: 18%; animation-delay: 0.3s; }
.volunteer-orb:nth-child(6) { width: 78px; height: 78px; bottom: 18%; right: 18%; animation-delay: 2s; }
.volunteer-orb:nth-child(7) { width: 58px; height: 58px; top: 24%; left: 36%; animation-delay: 2.4s; }
.volunteer-orb:nth-child(8) { width: 90px; height: 90px; top: 18%; right: 36%; animation-delay: 1.9s; }
.volunteer-orb:nth-child(9) { width: 62px; height: 62px; bottom: 30%; left: 42%; animation-delay: 2.8s; }
.volunteer-orb:nth-child(10) { width: 106px; height: 106px; bottom: 8%; right: 34%; animation-delay: 0.6s; }
.volunteer-orb:nth-child(11) { width: 74px; height: 74px; top: 60%; left: 4%; animation-delay: 1.5s; }
.volunteer-orb:nth-child(12) { width: 88px; height: 88px; top: 62%; right: 2%; animation-delay: 3s; }

.vol-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 2rem));
  display: grid;
  gap: 1.3rem;
  justify-items: center;
}

.vol-hero__overline,
.vol-hero__subtitle,
.vol-hero__stat,
.vol-hero__cta,
.vol-hero__line {
  opacity: 0;
  transform: translateY(24px);
  animation: volHeroRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.vol-hero__overline {
  color: var(--color-wing-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.82rem;
  animation-delay: 0ms;
}

.vol-hero__title {
  line-height: 0.92;
  color: var(--color-white);
}

.vol-hero__line {
  display: block;
  filter: blur(10px);
}

.vol-hero__line:nth-child(1) {
  animation-delay: 150ms;
}

.vol-hero__line:nth-child(2) {
  animation-delay: 300ms;
}

.vol-hero__line .text-gradient {
  background: linear-gradient(135deg, #5eb8ff, #ffd65b);
  -webkit-background-clip: text;
  background-clip: text;
}

.vol-hero__subtitle {
  max-width: 600px;
  color: rgba(227, 234, 244, 0.78);
  animation-delay: 500ms;
}

.vol-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.3rem;
}

.vol-hero__stat {
  display: grid;
  gap: 0.3rem;
  min-width: 160px;
  animation-delay: 800ms;
}

.vol-hero__stat strong {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-wing-gold);
}

.vol-hero__stat span {
  color: rgba(227, 234, 244, 0.78);
}

.vol-hero__cta {
  margin-top: 0.35rem;
  box-shadow: var(--shadow-glow-gold);
  animation-name: volHeroRise, volButtonGlow;
  animation-duration: 0.8s, 3s;
  animation-delay: 700ms, 1.6s;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
}

.vol-scroll-indicator {
  display: inline-grid;
  gap: 0.1rem;
  justify-items: center;
  margin-top: 1rem;
  color: rgba(227, 234, 244, 0.64);
  transition: opacity 240ms ease, transform 240ms ease;
}

.vol-scroll-indicator.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

.vol-scroll-indicator span {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--color-wing-gold);
  border-bottom: 2px solid var(--color-wing-gold);
  transform: rotate(45deg);
  animation: bounceY 1.8s infinite;
}

.vol-why {
  background:
    radial-gradient(circle at 16% 14%, rgba(66, 165, 245, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.98), rgba(7, 17, 31, 1));
  color: var(--color-text-light);
}

.vol-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.vol-value-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.vol-value-card.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.vol-value-card--left {
  transform: translateX(-60px) translateY(40px);
}

.vol-value-card--bottom {
  transform: translateY(60px);
}

.vol-value-card--right {
  transform: translateX(60px) translateY(40px);
}

.vol-value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(66, 165, 245, 0.16);
  color: var(--color-wing-gold);
}

.vol-pull-quote {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-light);
}

.vol-pull-quote__wrap {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  max-width: 960px;
}

.vol-pull-quote__line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 0, 0.9), transparent);
}

.vol-roles {
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(10, 22, 40, 1));
}

.vol-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.vol-role-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.9rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.vol-role-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-wing-gold), var(--color-sky-bright));
  transition: right 320ms ease;
}

.vol-role-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 179, 0, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), var(--shadow-glow-blue);
}

.vol-role-card:hover::after {
  right: 0;
}

.vol-role-card:hover .vol-role-card__icon {
  transform: scale(1.15);
}

.vol-role-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 16px;
  background: rgba(255, 179, 0, 0.12);
  color: var(--color-wing-gold);
  transition: transform var(--transition-fast);
}

.vol-role-card p {
  color: rgba(227, 234, 244, 0.78);
  font-size: 0.95rem;
}

.vol-role-card__badge {
  justify-self: start;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(66, 165, 245, 0.14);
  border: 1px solid rgba(66, 165, 245, 0.22);
  color: var(--color-text-light);
  font-size: 0.82rem;
}

.vol-role-note {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(227, 234, 244, 0.74);
}

.vol-stories {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 179, 0, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(10, 22, 40, 0.98), rgba(7, 17, 31, 1));
  color: var(--color-text-light);
}

.vol-story-marquee {
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.vol-story-marquee:hover .vol-story-track {
  animation-play-state: paused;
}

.vol-story-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.vol-story-track--left {
  animation: marqueeLeft 34s linear infinite;
}

.vol-story-track--right {
  animation: marqueeRight 36s linear infinite;
}

.vol-story-chip {
  min-width: 280px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.vol-story-chip__avatar {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(125, 211, 252, 0.34), transparent 34%),
    radial-gradient(circle at 72% 24%, rgba(255, 179, 0, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(17, 46, 88, 0.96), rgba(7, 19, 35, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.26);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vol-story-chip small {
  display: block;
  color: rgba(227, 234, 244, 0.68);
}

.vol-featured-story {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  padding: 1.6rem;
  border-left: 4px solid var(--color-wing-gold);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.vol-featured-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.vol-featured-story__copy {
  display: grid;
  gap: 1rem;
}

.vol-form-section {
  background: linear-gradient(180deg, rgba(13, 43, 94, 0.98), rgba(8, 19, 35, 1));
}

.vol-form-shell {
  width: min(780px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2rem;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.vol-form-shell.hidden {
  display: none;
}

.vol-form-head {
  text-align: center;
  margin-bottom: 2rem;
}

.vol-step-mobile {
  display: none;
  margin-bottom: 1rem;
  text-align: center;
  color: rgba(227, 234, 244, 0.76);
}

.vol-step-indicator {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.vol-step-item {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.vol-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--vol-step-idle);
  color: rgba(227, 234, 244, 0.8);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.vol-step-item.is-active .vol-step-circle {
  background: var(--vol-step-active);
  color: var(--color-sky-deep);
  box-shadow: 0 0 0 6px rgba(255, 179, 0, 0.14);
}

.vol-step-item.is-done .vol-step-circle {
  background: var(--vol-step-done);
  color: var(--color-white);
}

.vol-step-label {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(227, 234, 244, 0.7);
}

.vol-step-item.is-active .vol-step-label {
  color: var(--color-white);
}

.step-line {
  height: 2px;
  border-radius: 999px;
  background: var(--vol-step-idle);
  transition: background 0.4s ease;
}

.step-line.is-done {
  background: var(--vol-step-done);
}

.form-step {
  display: none;
  gap: 1.4rem;
}

.form-step.is-active {
  display: grid;
}

.form-step__intro {
  display: grid;
  gap: 0.4rem;
}

.form-step__intro p {
  color: rgba(227, 234, 244, 0.72);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.form-grid--full {
  grid-template-columns: 1fr;
}

.field-group,
.choice-group,
.slider-group {
  display: grid;
  gap: 0.55rem;
}

.field-group__legend,
.choice-group__label,
.slider-group__label {
  color: var(--color-white);
  font-size: 0.95rem;
}

.field-shell {
  position: relative;
}

.field-shell--prefix .field-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  z-index: 1;
  pointer-events: none;
}

.field-shell input,
.field-shell select,
.field-shell textarea {
  width: 100%;
  min-height: 58px;
  padding: 1.25rem 1rem 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--vol-input-border);
  background: var(--vol-form-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast),
    transform var(--transition-fast);
}

.field-shell textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.7;
}

.field-shell select {
  appearance: none;
  padding-right: 2.8rem;
  color: rgba(227, 234, 244, 0.72);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.85) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) 1.65rem,
    calc(100% - 0.85rem) 1.65rem;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.field-shell select option {
  color: var(--color-white);
  background: #102744;
}

.field-shell input::placeholder,
.field-shell textarea::placeholder {
  color: transparent;
}

.field-shell label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-muted);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.field-shell--prefix label {
  left: 4rem;
}

.field-shell--prefix input {
  padding-left: 4rem;
}

.field-shell textarea ~ label {
  top: 1.4rem;
  transform: none;
}

.field-shell input:focus,
.field-shell select:focus,
.field-shell textarea:focus {
  border-color: var(--vol-input-focus);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
}

.field-group.is-filled .field-shell select,
.field-shell select:focus {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.07);
  font-weight: 500;
}

.field-shell input:focus ~ label,
.field-shell input:not(:placeholder-shown) ~ label,
.field-shell select:focus ~ label,
.field-shell select:not([value=""]) ~ label,
.field-shell textarea:focus ~ label,
.field-shell textarea:not(:placeholder-shown) ~ label,
.field-group.is-filled .field-shell label {
  top: -0.55rem;
  transform: none;
  font-size: 0.74rem;
  color: var(--vol-input-focus);
  background: var(--color-sky-mid);
  padding: 0 0.4rem;
}

.field-valid {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 230, 118, 0.14);
  color: var(--vol-success-green);
  font-size: 0.8rem;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.field-group.is-valid .field-valid {
  opacity: 1;
}

.field-error {
  min-height: 1.1rem;
  color: #ff8f8f;
  font-size: 0.82rem;
}

.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea,
.choice-group.has-error .choice-set,
.choice-group.has-error .role-choice-grid,
.slider-group.has-error .slider-shell {
  border-color: #ff5252;
}

.choice-group.has-error .choice-pill span,
.choice-group.has-error .role-choice span {
  border-color: #ff5252;
}

.declaration.has-error .declaration__box {
  border-color: #ff5252;
}

.field-group.shake,
.choice-group.shake,
.slider-group.shake {
  animation: fieldShake 0.3s linear;
}

.dob-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1fr;
  gap: 0.75rem;
}

.choice-set {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.choice-pill,
.role-choice {
  position: relative;
  display: inline-flex;
}

.choice-pill input,
.role-choice input,
.declaration input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-light);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.choice-pill input:focus-visible + span,
.role-choice input:focus-visible + span,
.declaration input:focus-visible + .declaration__text .declaration__box {
  outline: 2px solid rgba(255, 179, 0, 0.72);
  outline-offset: 3px;
}

.choice-pill input:checked + span {
  background: rgba(255, 179, 0, 0.96);
  border-color: rgba(255, 179, 0, 1);
  color: var(--color-sky-deep);
  box-shadow: 0 12px 28px rgba(255, 179, 0, 0.24);
}

.choice-pill input[type="checkbox"]:checked + span::before {
  content: "✓";
  margin-right: 0.45rem;
}

.choice-pill--blue input:checked + span {
  background: rgba(66, 165, 245, 0.94);
  border-color: rgba(66, 165, 245, 1);
  color: var(--color-white);
  box-shadow: 0 12px 28px rgba(66, 165, 245, 0.22);
}

.choice-pill--ghost input:checked + span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 179, 0, 0.8);
  color: var(--color-white);
}

.choice-pill:hover span,
.role-choice:hover span {
  transform: translateY(-2px);
}

.conditional-panel {
  display: none;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.conditional-panel.is-open {
  display: grid;
  gap: 1rem;
  animation: fadeUpSoft 0.35s ease;
}

.inline-helper {
  color: rgba(227, 234, 244, 0.66);
  font-size: 0.82rem;
}

.char-count {
  justify-self: end;
  color: rgba(227, 234, 244, 0.6);
  font-size: 0.82rem;
}

.slider-shell {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.slider-shell input[type="range"] {
  width: 100%;
  accent-color: var(--color-wing-gold);
}

.slider-shell input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
}

.slider-shell input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--color-wing-gold);
  border: 0;
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.3);
}

.slider-shell input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-wing-gold);
  border: 0;
  box-shadow: 0 6px 18px rgba(255, 179, 0, 0.3);
}

.slider-value {
  font-family: var(--font-accent);
  color: var(--color-wing-gold);
  font-size: 1.2rem;
}

.role-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.role-choice span {
  width: 100%;
  min-height: 140px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-light);
  display: grid;
  gap: 0.55rem;
  align-content: start;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.role-choice span svg {
  color: var(--color-wing-gold);
}

.role-choice span small {
  color: rgba(227, 234, 244, 0.64);
}

.role-choice input:checked + span {
  border-color: rgba(255, 179, 0, 0.9);
  background: rgba(255, 179, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.14);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-actions--end {
  justify-content: flex-end;
}

.form-actions .btn[disabled],
.submit-btn[disabled] {
  opacity: 0.42;
  pointer-events: none;
}

.review-card {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 1.5rem;
}

.review-card__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-white);
}

.review-block {
  display: grid;
  gap: 1rem;
}

.review-block + .review-block {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 179, 0, 0.28);
}

.review-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-edit {
  border: 0;
  padding: 0;
  background: none;
  color: var(--color-wing-gold);
  cursor: pointer;
  font-weight: 600;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.25rem;
}

.review-item {
  display: grid;
  gap: 0.2rem;
}

.review-item dt {
  color: rgba(227, 234, 244, 0.58);
  font-size: 0.84rem;
}

.review-item dd {
  margin: 0;
  color: var(--color-white);
}

.declaration {
  display: block;
}

.declaration__text {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  cursor: pointer;
}

.declaration__box {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  margin-top: 0.1rem;
}

.declaration__box svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: var(--color-white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  transition: stroke-dashoffset 0.28s ease;
}

.declaration input:checked + .declaration__text .declaration__box {
  background: rgba(255, 179, 0, 0.98);
  border-color: rgba(255, 179, 0, 1);
}

.declaration input:checked + .declaration__text .declaration__box svg {
  stroke-dashoffset: 0;
}

.declaration__copy {
  color: rgba(227, 234, 244, 0.84);
}

.declaration__copy a {
  color: var(--color-wing-gold);
}

.submit-btn {
  width: 100%;
  min-height: 56px;
  overflow: hidden;
}

.submit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  transform: translateX(-130%);
}

.submit-btn:hover::after {
  transform: translateX(130%);
  transition: transform 0.65s ease;
}

.submit-btn .vol-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.vol-form-feedback {
  margin: 0.9rem 0 0;
  color: #ffd0d0;
  text-align: right;
}

.vol-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(7, 17, 31, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vol-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.vol-modal__panel {
  width: min(560px, 100%);
  padding: 1.6rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 22, 40, 0.86);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}

.vol-modal.is-open .vol-modal__panel {
  transform: scale(1);
}

.vol-modal__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vol-modal__head h3 {
  margin-bottom: 0.4rem;
}

.vol-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.vol-modal ul {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.1rem;
  color: rgba(227, 234, 244, 0.82);
}

.vol-success {
  position: relative;
  display: none;
  width: min(860px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-card);
}

.vol-success.is-visible {
  display: block;
}

.vol-success__particles {
  position: absolute;
  inset: 0;
  opacity: 0.84;
}

.vol-success__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.vol-success__mark {
  width: 120px;
  height: 120px;
}

.vol-success__mark circle,
.vol-success__mark path {
  stroke: var(--color-wing-gold);
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
}

.vol-success.is-visible .vol-success__mark circle {
  animation: drawStroke 0.6s ease forwards;
}

.vol-success.is-visible .vol-success__mark path {
  animation: drawStroke 0.6s ease 0.2s forwards;
}

.vol-success__steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vol-success-step {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vol-success-step strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-wing-gold);
}

.vol-success__actions,
.vol-success__share {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.vol-success__note {
  color: rgba(227, 234, 244, 0.7);
}

.vol-faq {
  background: linear-gradient(180deg, rgba(7, 17, 31, 1), rgba(10, 22, 40, 1));
}

.faq-list {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--vol-input-border);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: none;
  color: var(--color-white);
  text-align: left;
  font-size: 1.02rem;
  cursor: pointer;
}

.faq-question span:last-child {
  font-size: 1.45rem;
  color: rgba(227, 234, 244, 0.72);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-question {
  color: var(--color-wing-gold);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
  color: var(--color-wing-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 1.2rem;
  color: rgba(227, 234, 244, 0.72);
}

@keyframes volOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes volHeroRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes volButtonGlow {
  0%,
  100% {
    box-shadow: var(--shadow-glow-gold);
  }
  50% {
    box-shadow: 0 0 0 rgba(255, 179, 0, 0);
  }
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fieldShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1024px) {
  .vol-why__grid,
  .vol-role-grid,
  .role-choice-grid,
  .review-grid,
  .vol-success__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vol-featured-story {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vol-hero {
    padding-bottom: 2rem;
  }

  .volunteer-orbs {
    display: block;
  }

  .vol-hero .three-particles,
  .vol-success__particles {
    display: none;
  }

  .vol-hero__stats {
    gap: 1rem;
  }

  .vol-pull-quote__wrap {
    display: block;
  }

  .vol-pull-quote__line {
    display: none;
  }

  .vol-role-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 85vw);
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
  }

  .vol-role-card {
    scroll-snap-align: start;
  }

  .vol-form-shell,
  .vol-success {
    width: min(100vw - 1.25rem, 100%);
    padding: 1.35rem;
    border-radius: 28px;
  }

  .vol-step-mobile {
    display: block;
  }

  .vol-step-indicator {
    display: none;
  }

  .choice-set {
    gap: 0.6rem;
  }

  .choice-pill span {
    min-height: 46px;
    padding-inline: 0.9rem;
  }

  .dob-grid,
  .review-grid,
  .vol-success__steps {
    grid-template-columns: 1fr;
  }

  .role-choice-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions--end {
    flex-direction: column;
  }

  .form-actions .btn,
  .vol-success__actions .btn,
  .vol-success__share .btn {
    width: 100%;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .vol-form-shell,
  .vol-success {
    width: min(100%, calc(100vw - 2rem - var(--safe-left) - var(--safe-right)));
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .vol-hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .vol-hero__stats,
  .vol-why__grid,
  .vol-featured-story {
    grid-template-columns: 1fr;
  }

  .role-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vol-hero__title {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .vol-hero__cta .btn {
    width: 100%;
  }

  .vol-form-shell,
  .vol-success {
    width: min(100vw - 1rem - var(--safe-left) - var(--safe-right), 100%);
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vol-hero__overline,
  .vol-hero__subtitle,
  .vol-hero__stat,
  .vol-hero__cta,
  .vol-hero__line,
  .volunteer-orb,
  .vol-story-track {
    animation: none !important;
  }

  .vol-value-card,
  .vol-role-card,
  .choice-pill span,
  .role-choice span,
  .faq-answer,
  .vol-modal,
  .vol-modal__panel {
    transition: none !important;
  }
}
