/* ─────────── Foundation (donation) page ─────────── */
.foundation-body { background: var(--bg); }

/* Hero — big brand header */
.fnd-hero { padding: 130px 24px 70px; }
.fnd-hero h1 {
  font-size: clamp(3.4rem, 12vw, 8.4rem);
  line-height: 1.03; letter-spacing: -0.01em; margin-bottom: 14px;
}
.fnd-mark {
  display: grid; place-items: center; width: 62px; height: 62px;
  margin: 0 auto 18px; border-radius: 18px; position: relative;
  background: linear-gradient(135deg, rgba(14,159,142,0.25), rgba(232,180,74,0.25));
  border: 1px solid rgba(232, 180, 74, 0.35);
  animation: markFloat 4.5s ease-in-out infinite;
}
.fnd-mark::before {
  content: ""; position: absolute; inset: -6px; border-radius: 24px;
  border: 2px solid rgba(232, 180, 74, 0.35);
  animation: markRing 2.8s ease-out infinite;
}
.fnd-mark .logo-mark { font-size: 1.7rem; }
@keyframes markFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-9px) rotate(2deg); }
}
@keyframes markRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}
.fnd-hero .hero-eyebrow { border-color: rgba(232, 180, 74, 0.55); margin-bottom: 18px; }
.fnd-hero-sub { max-width: 680px; color: #c9d6e2; margin-bottom: 28px; }
.fnd-hero .hero-stats { margin-top: 40px; padding-top: 24px; }
.fnd-hero-btn { position: relative; overflow: hidden; }
.fnd-hero .hero-bg {
  mask-image: radial-gradient(circle at 50% 70%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 70%, #000 0%, transparent 75%);
}
.fnd-hero .hero-cta .btn-ghost { margin-left: 0; }
.fnd-hero-btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg); animation: donate-shimmer 2.8s ease-in-out infinite;
}

/* Layout */
.donate-section { padding: clamp(50px, 8vw, 90px) 24px; }
.donate-section .container { max-width: 1200px; margin: 0 auto; }
.donate-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start;
}
@media (max-width: 860px) { .donate-grid { grid-template-columns: 1fr; } }

/* Donate card */
.donate-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 48px); position: relative; overflow: hidden;
  text-align: center; transition: transform 0.45s var(--ease);
}
.donate-card .tag { margin-bottom: 10px; }
.donate-card h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }

/* Form fields (float label) */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 26px; }
@media (max-width: 560px) { .field-grid { grid-template-columns: 1fr; } }
.float-field { position: relative; display: block; }
.float-field input, .float-field textarea {
  width: 100%; font-family: "Inter", sans-serif; font-size: 1rem; padding: 18px 14px 8px;
  border: 2px solid rgba(11, 24, 36, 0.12); border-radius: 14px; background: var(--bg);
  color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s; resize: none;
}
.float-field span {
  position: absolute; left: 14px; top: 18px; color: var(--muted); pointer-events: none;
  transition: all 0.25s var(--ease); font-size: 0.95rem;
}
.float-field input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14, 159, 142, 0.12); }
.float-field input:focus ~ span,
.float-field input:not(:placeholder-shown) ~ span {
  top: 8px; font-size: 0.72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px;
}

/* Frequency toggle */
.freq-toggle {
  display: inline-flex; gap: 6px; background: var(--bg);
  border: 1px solid rgba(11, 24, 36, 0.1); border-radius: 40px; padding: 5px; margin-bottom: 28px;
}
.freq {
  border: 0; cursor: pointer; padding: 10px 22px; border-radius: 32px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 0.9rem;
  color: var(--muted); background: transparent; transition: all 0.3s var(--ease);
}
.freq.is-active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; box-shadow: 0 8px 20px rgba(14, 159, 142, 0.35);
}

/* Amounts */
.give-label { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin: 0 0 12px; }
.amounts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.amount {
  position: relative; min-width: 76px; padding: 13px 18px; cursor: pointer;
  border: 2px solid rgba(11, 24, 36, 0.12); border-radius: 14px; background: var(--bg);
  color: var(--ink); font-family: "Inter", sans-serif; font-weight: 700; font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.amount:hover { transform: translateY(-3px); border-color: var(--teal); }
.amount.is-active {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(14, 159, 142, 0.35);
}
.amount-custom { display: flex; align-items: center; gap: 8px; padding: 0 8px 0 0; cursor: text; }
.amount-custom input {
  width: 74px; border: 0; outline: 0; font-family: "Inter", sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--ink);
  background: transparent; padding: 13px 4px 13px 14px; border-radius: 12px 0 0 12px;
}
.amount-custom span { font-size: 0.85rem; color: var(--muted); padding-right: 6px; white-space: nowrap; }
.amount-custom.is-custom { border-color: var(--gold); background: rgba(232, 180, 74, 0.1); }

/* Allocation options */
.give-options { display: grid; gap: 12px; margin-bottom: 26px; text-align: left; }
.give-option {
  display: flex; align-items: center; gap: 14px; cursor: pointer;
  padding: 14px 16px; border: 2px solid rgba(11, 24, 36, 0.1); border-radius: 14px;
  background: var(--bg); transition: all 0.3s var(--ease);
}
.give-option:hover { border-color: var(--teal); transform: translateX(4px); }
.give-option input { position: absolute; opacity: 0; }
.give-opt-badge {
  flex: 0 0 42px; height: 42px; display: grid; place-items: center; font-size: 1.15rem;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.14), rgba(232, 180, 74, 0.14));
  border-radius: 12px;
}
.give-opt-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.give-opt-text small { color: var(--muted); font-size: 0.82rem; }
.give-option:has(input:checked) {
  border-color: var(--teal); background: rgba(14, 159, 142, 0.07);
  box-shadow: 0 8px 22px rgba(14, 159, 142, 0.12);
}

/* Summary + submit */
.give-summary { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.give-summary strong { color: var(--gold); font-size: 1.35rem; }
.donate-btn {
  width: 100%; font-size: 1.08rem; position: relative; overflow: hidden;
}
.donate-btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg); animation: donate-shimmer 2.8s ease-in-out infinite;
}
@keyframes donate-shimmer {
  0%, 55% { left: -80%; }
  85%, 100% { left: 130%; }
}
.give-note { margin-top: 14px; font-size: 0.78rem; color: var(--muted); }
.pop { animation: givePop 0.35s var(--ease); }
@keyframes givePop {
  0% { transform: scale(1); }
  45% { transform: scale(1.14); }
  70% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* Thank-you state */
.thank-you { text-align: center; padding: 20px 6px 6px; animation: stepIn 0.6s var(--ease); }
.heart-burst {
  display: inline-block; font-size: 3.4rem; line-height: 1; margin-bottom: 14px;
  animation: heartBeat 1.4s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.22); }
  20%, 40% { transform: scale(1.1) rotate(-4deg); }
  50% { transform: scale(1.28) rotate(4deg); }
}
.thank-you h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.thank-you h2 span { background: linear-gradient(90deg, var(--teal), var(--gold)); background-clip: text; -webkit-background-clip: text; color: transparent; }
.thank-you p { color: var(--muted); max-width: 420px; margin: 0 auto; }
.thank-sub { font-size: 0.85rem; margin-top: 10px !important; }
.thank-you .btn { margin-top: 26px; }
.btn-ghost-dark { border: 2px solid rgba(11, 24, 36, 0.2); color: var(--ink); background: transparent; padding: 13px 30px; }
.btn-ghost-dark:hover { background: rgba(11, 24, 36, 0.05); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(11, 24, 36, 0.14); }

/* Side panel */
.donate-aside { display: grid; gap: 20px; position: sticky; top: 100px; }
@media (max-width: 860px) { .donate-aside { position: static; } }
.side-card { border-top: 4px solid var(--gold); }
.aside-badge {
  width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.2rem; border-radius: 13px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.15), rgba(232, 180, 74, 0.15));
}
.aside-list { list-style: none; display: grid; gap: 12px; }
.aside-list li { position: relative; padding-left: 22px; font-size: 0.93rem; color: var(--muted); }
.aside-list li::before { content: "◆"; position: absolute; left: 0; top: 1px; color: var(--teal); font-size: 0.7rem; }
.aside-list strong { color: var(--ink); }
.aside-p { font-size: 0.93rem; }
.aside-quote { font-family: "Playfair Display", serif; font-size: 1rem; line-height: 1.6; color: var(--ink); }

/* Impact strip */
.impact-section { padding: clamp(50px, 8vw, 90px) 24px; background: linear-gradient(180deg, var(--bg), #eef4f6); }
.impact-section .container { max-width: 1200px; margin: 0 auto; }
.impact-grid {
  max-width: 1080px; margin: 0 auto 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 760px) { .impact-grid { grid-template-columns: 1fr; } }
.impact-card {
  position: relative; background: var(--card); color: var(--ink);
  text-align: center; padding: 40px 26px; border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  overflow: hidden;
}
.impact-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(14, 159, 142, 0.12), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.impact-card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(11, 24, 36, 0.18); }
.impact-card:hover::before { opacity: 1; }
.impact-icon {
  position: relative; display: grid; place-items: center; width: 60px; height: 60px;
  margin: 0 auto 16px; font-size: 1.6rem; border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 159, 142, 0.15), rgba(232, 180, 74, 0.15));
  animation: markFloat 4.5s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.impact-card:nth-child(2) .impact-icon { animation-delay: 0.6s; }
.impact-card:nth-child(3) .impact-icon { animation-delay: 1.2s; }
.impact-card:hover .impact-icon { transform: scale(1.15) rotate(-6deg); }
.impact-num {
  position: relative; display: block; font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--teal); margin-bottom: 8px;
}
.impact-num.plain { color: var(--gold); }
.impact-card p { position: relative; color: var(--muted); font-size: 0.95rem; }

/* Mission banner */
.fnd-mission {
  position: relative; max-width: 1080px; margin: 0 auto;
  border-radius: 26px; padding: 2px;
  background: linear-gradient(120deg, var(--teal), var(--gold), var(--teal), var(--gold));
  background-size: 300% 100%;
  animation: bf-border-flow 6s linear infinite;
}
.fnd-mission-inner {
  position: relative; background: linear-gradient(165deg, var(--dark), #123);
  color: #eaf2f8; text-align: center; padding: 66px clamp(24px, 5vw, 60px) clamp(40px, 6vw, 60px);
  border-radius: 24px;
}
.fnd-mission .mission-quote {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; display: grid; place-items: center;
  font-family: "Playfair Display", serif; font-size: 1.9rem; color: var(--dark);
  background: linear-gradient(135deg, var(--gold), #f3cd7d); border-radius: 50%;
  box-shadow: 0 10px 24px rgba(232, 180, 74, 0.4);
}
.fnd-mission h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); max-width: 760px; margin: 10px auto 18px; }
.fnd-mission p { color: #b6c7d6; max-width: 640px; margin: 0 auto 30px; }
.fnd-mission-go { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.fnd-mission-go .text-link { color: var(--gold); }
.fnd-mission-go .text-link::after { background: var(--gold); }
@keyframes bf-border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .freq, .amount, .give-option, .impact-card, .impact-icon { transition: none; }
  .donate-btn::after, .fnd-hero-btn::after { animation: none; }
  .heart-burst, .fnd-mark, .fnd-mark::before, .impact-icon { animation: none; }
}

/* ─────────── Foundation — content sections ─────────── */
.fnd-section { padding: clamp(54px, 8vw, 100px) 24px; }
.fnd-section .container { max-width: 1080px; margin: 0 auto; text-align: center; }
.fnd-section--band { background: linear-gradient(180deg, var(--bg), #eef4f6); }
.fnd-section .section-head { margin-bottom: 44px; }

.fnd-tagline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600; color: var(--gold);
  margin: 0 auto 14px;
}

.fnd-lead {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 600; line-height: 1.5; color: var(--ink);
  max-width: 820px; margin: 0 auto 30px;
}
.fnd-copy {
  color: var(--muted); max-width: 820px; margin: 0 auto 22px;
  font-size: 1.06rem; line-height: 1.85; text-align: left;
}
.fnd-copy strong { color: var(--ink); font-weight: 700; }
.fnd-note {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-weight: 600;
  color: var(--ink); margin: 34px auto 18px;
}
.fnd-call {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 700;
  color: var(--gold); margin: 6px auto 18px;
}

.fnd-em {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 600; line-height: 1.4; color: var(--ink);
  max-width: 820px; margin: 0 auto 12px;
}
.fnd-em--gold { color: var(--gold); }
.fnd-em--teal { color: var(--teal); }

.fnd-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 30px auto 30px; color: var(--gold);
}
.fnd-divider::before, .fnd-divider::after {
  content: ""; width: 64px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--teal));
}
.fnd-divider::after { background: linear-gradient(90deg, var(--teal), transparent); }
.fnd-divider span { font-size: 0.7rem; }

.fnd-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 12px 30px;
  max-width: 860px; margin: 0 auto 12px; text-align: left;
}
@media (max-width: 680px) { .fnd-list { grid-template-columns: 1fr; } }
.fnd-list li {
  position: relative; padding-left: 28px;
  color: var(--ink); font-size: 1.02rem; line-height: 1.55;
}
.fnd-list li::before {
  content: "✦"; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 0.85rem;
}

.fnd-lines {
  max-width: 720px; margin: 30px auto 0;
  display: grid; gap: 14px; text-align: center;
}
.fnd-lines p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem); line-height: 1.45;
  color: var(--ink);
}

.fnd-people {
  max-width: 760px; margin: 30px auto 0;
  display: grid; gap: 14px;
}
.fnd-people p {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem); line-height: 1.45; color: var(--ink);
  border-top: 1px solid rgba(11, 24, 36, 0.12); padding-top: 13px;
}
.fnd-people p strong { color: var(--teal); }

.fund-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; max-width: 1080px; margin: 0 auto; text-align: left;
}
.fund-card {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.fund-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11, 24, 36, 0.16); }
.fund-card h4 {
  font-size: 0.92rem; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.fund-card ul { list-style: none; display: grid; gap: 10px; }
.fund-card li {
  position: relative; padding-left: 20px;
  color: var(--muted); font-size: 0.94rem; line-height: 1.55;
}
.fund-card li::before {
  content: "◆"; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: 0.66rem;
}

.fnd-mission .fnd-call { color: var(--gold); }

/* ─────────── Floating Donate button (foundation page) ─────────── */
#ff-donate {
  position: fixed; right: 26px; bottom: 104px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; color: var(--dark);
  background: linear-gradient(135deg, var(--gold), #f3cd7d);
  box-shadow: 0 12px 30px rgba(232, 180, 74, 0.55);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}
#ff-donate:hover {
  transform: translateY(-4px) scale(1.07);
  box-shadow: 0 18px 42px rgba(232, 180, 74, 0.65);
}
#ff-donate .ff-label {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px;
  background: linear-gradient(90deg, #0b1824 20%, #0e9f8e 40%, #a4712a 60%, #0b1824 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: donateShine 3s linear infinite;
  transition: transform 0.3s;
}
#ff-donate:hover .ff-label { transform: scale(1.08); }
@keyframes donateShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
#ff-donate::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(232, 180, 74, 0.6); animation: donatePing 2.4s ease-out infinite;
}
#ff-donate .ff-tip {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--dark); color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 7px 12px; border-radius: 20px; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
#ff-donate .ff-tip::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark);
}
#ff-donate:hover .ff-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
#ff-donate.chat-covers { opacity: 0; pointer-events: none; }
@keyframes donatePing {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.6); opacity: 0; }
}
.foundation-body #to-top { bottom: 182px; }
@media (max-width: 600px) {
  #ff-donate { right: 20px; bottom: 88px; width: 52px; height: 52px; }
  .foundation-body #to-top { bottom: 152px; }
}
@media (prefers-reduced-motion: reduce) {
  #ff-donate::after, #ff-donate .ff-label { animation: none; }
}

/* ─────────── Volunteer & Partner ─────────── */
.vp-card {
  max-width: 820px; margin: 60px auto 0; text-align: left;
  background: var(--card); border-radius: 26px; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  padding: clamp(26px, 4vw, 46px);
}
.vp-card-head { text-align: center; margin-bottom: 32px; }
.vp-card-head h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); margin-bottom: 10px;
}
.vp-card-head p { color: var(--muted); font-size: 0.95rem; max-width: 560px; margin: 0 auto; }

/* textarea variant of float-field */
.float-field textarea {
  width: 100%; font-family: "Inter", sans-serif; font-size: 1rem; padding: 18px 14px 8px;
  border: 2px solid rgba(11, 24, 36, 0.12); border-radius: 14px; background: var(--bg);
  color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s; resize: none;
}
.float-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14, 159, 142, 0.12); }
.float-field textarea:focus ~ span,
.float-field textarea:not(:placeholder-shown) ~ span {
  top: 8px; font-size: 0.72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.5px;
}

/* chip checkboxes / radios */
.vp-options { display: flex; flex-wrap: wrap; gap: 10px; }
.vp-opt {
  position: relative; display: inline-flex; align-items: center;
  padding: 11px 16px; border: 2px solid rgba(11, 24, 36, 0.12); border-radius: 40px;
  background: var(--bg); color: var(--ink); font-size: 0.92rem; font-weight: 600;
  cursor: pointer; user-select: none;
  transition: all 0.3s var(--ease);
}
.vp-opt:hover { border-color: var(--teal); transform: translateY(-2px); }
.vp-opt input { position: absolute; opacity: 0; pointer-events: none; }
.vp-opt::before {
  content: ""; display: inline-block; width: 10px; height: 10px;
  border: 2px solid rgba(11, 24, 36, 0.25); border-radius: 3px; margin-right: 9px;
  transition: all 0.25s var(--ease);
}
.vp-opt input[type="radio"] + span { margin-left: 0; }
.vp-opt input[type="radio"] { appearance: radio; }
.vp-opt:has(input[type="radio"])::before { border-radius: 50%; }
.vp-opt:has(input:checked) {
  border-color: var(--teal); background: rgba(14, 159, 142, 0.08);
  box-shadow: 0 8px 20px rgba(14, 159, 142, 0.14);
}
.vp-opt:has(input:checked)::before {
  background: var(--teal); border-color: var(--teal);
  box-shadow: inset 0 0 0 2px #fff;
}
.vp-opt--other span { white-space: nowrap; }
.vp-other-field { margin-top: 14px; }

/* file upload */
.vp-file {
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  padding: 18px 20px; border: 2px dashed rgba(11, 24, 36, 0.25); border-radius: 16px;
  background: var(--bg); margin-bottom: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.vp-file:hover, .vp-file.has-file { border-color: var(--teal); background: rgba(14, 159, 142, 0.06); }
.vp-file input { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.vp-file-ico { font-size: 1.5rem; }
.vp-file-text { display: grid; gap: 2px; min-width: 0; }
.vp-file-text strong { color: var(--ink); font-size: 0.95rem; }
.vp-file-text small { color: var(--muted); font-size: 0.8rem; }

.vp-submit { width: 100%; margin-top: 4px; }
.vp-thanks { text-align: center; padding: 22px 6px 6px; }