/* ============================================================
   Discipulus — Portal pages shared styles
   Matches the home page design language (see index.html).
   ============================================================ */

:root {
  --bg: #08121E;
  --bg-2: #0C1B2B;
  --bg-3: #0E1E30;
  --ink: #F8FAFC;
  --green: #12B76A;
  --green-2: #34D399;
  --blue: #4DA3FF;
  --orange: #FF9F43;
  --purple: #A78BFA;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green-2); text-decoration: none; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
input, button, select, textarea { font-family: inherit; }
::selection { background: var(--green); color: var(--bg); }

.wrap { max-width: var(--maxw); margin: 0 auto; }

@keyframes dscFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes dscRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Shared bits ---------- */
.grad { background: linear-gradient(100deg, var(--green-2), var(--blue)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-2 { background: linear-gradient(100deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(248,250,252,0.08); border: 1px solid rgba(248,250,252,0.14);
  backdrop-filter: blur(12px); padding: 7px 16px 7px 12px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: rgba(248,250,252,0.86);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 12px var(--green-2); }

.badge-soon {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,139,250,0.14); border: 1px solid rgba(167,139,250,0.4);
  color: #C9B8FF; padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-soon .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 12px var(--purple); }

/* ---------- Header ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(8,18,30,0.72);
  border-bottom: 1px solid rgba(248,250,252,0.08);
}
.hdr-in { max-width: var(--maxw); margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; gap: 40px; }
.hdr-logo { height: 34px; width: auto; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em; }
.nav a { color: rgba(248,250,252,0.62); }
.nav a:hover, .nav a.active { color: var(--ink); }

.auth { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost {
  color: var(--ink); font-weight: 600; font-size: 14.5px; padding: 10px 20px; border-radius: 100px;
  border: 1px solid rgba(248,250,252,0.2); background: transparent;
  transition: border-color .25s, background .25s, color .25s; white-space: nowrap; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(248,250,252,0.45); background: rgba(248,250,252,0.06); color: var(--ink); }
.btn-pill {
  background: var(--green); color: #04150D; font-weight: 700; font-size: 14.5px;
  padding: 11px 24px; border-radius: 100px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
  box-shadow: 0 6px 24px rgba(18,183,106,0.34); flex-shrink: 0; white-space: nowrap; border: none; cursor: pointer;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(18,183,106,0.5); color: #04150D; }

/* ---------- Portal hero ---------- */
.phero { position: relative; padding: 150px 32px 90px; overflow: hidden; }
.phero .blob { position: absolute; border-radius: 50%; filter: blur(38px); pointer-events: none; }
.phero .blob-a { top: -6%; right: 4%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(77,163,255,0.28), transparent 68%); animation: dscFloat 12s ease-in-out infinite; }
.phero .blob-b { bottom: -14%; left: -6%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(167,139,250,0.24), transparent 68%); animation: dscFloat 15s ease-in-out infinite 1.5s; }
.phero-in { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 64px; align-items: center; }
.phero-copy { animation: dscRise .9s cubic-bezier(.2,.8,.2,1) both; }
.phero h1 { font-size: clamp(46px, 6vw, 84px); line-height: 0.98; letter-spacing: -0.04em; font-weight: 800; margin: 22px 0 24px; text-wrap: balance; }
.phero p.sub { font-family: Inter, system-ui, sans-serif; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.58; color: rgba(248,250,252,0.72); max-width: 52ch; margin: 0 0 38px; text-wrap: pretty; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-lg { padding: 15px 30px; font-size: 15.5px; border-radius: 100px; font-weight: 700; cursor: pointer; transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s, background .25s; white-space: nowrap; }
.btn-primary { background: var(--green); color: #04150D; border: none; box-shadow: 0 8px 28px rgba(18,183,106,0.38); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(18,183,106,0.55); color: #04150D; }
.btn-outline { background: rgba(248,250,252,0.04); color: var(--ink); border: 1px solid rgba(248,250,252,0.2); }
.btn-outline:hover { transform: translateY(-2px); border-color: rgba(248,250,252,0.45); background: rgba(248,250,252,0.08); color: var(--ink); }

/* ---------- Dashboard preview card ---------- */
.preview-shell { position: relative; animation: dscRise 1s cubic-bezier(.2,.8,.2,1) both .1s; }
.preview {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, #0E2032, #0A1826);
  border: 1px solid rgba(248,250,252,0.12);
  box-shadow: 0 40px 90px rgba(0,0,0,0.5);
  animation: dscFloat 9s ease-in-out infinite;
}
.pv-bar { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-bottom: 1px solid rgba(248,250,252,0.08); background: rgba(8,18,30,0.5); }
.pv-dots { display: flex; gap: 7px; }
.pv-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(248,250,252,0.18); }
.pv-dots span:nth-child(1) { background: #FF6058; } .pv-dots span:nth-child(2) { background: #FFBD2E; } .pv-dots span:nth-child(3) { background: #28C93F; }
.pv-title { font-size: 13px; font-weight: 600; color: rgba(248,250,252,0.7); }
.pv-body { display: grid; grid-template-columns: 168px 1fr; min-height: 320px; }
.pv-side { border-right: 1px solid rgba(248,250,252,0.07); padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
.pv-nav { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 11px; font-size: 13.5px; font-weight: 500; color: rgba(248,250,252,0.66); }
.pv-nav .ic { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; background: rgba(248,250,252,0.06); flex-shrink: 0; }
.pv-nav.on { background: rgba(52,211,153,0.12); color: var(--ink); }
.pv-nav.on .ic { background: rgba(52,211,153,0.22); }
.pv-main { padding: 22px 24px; }
.pv-hi { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 3px; }
.pv-sub { font-family: Inter, sans-serif; font-size: 12.5px; color: rgba(248,250,252,0.55); margin: 0 0 18px; }
.pv-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pv-tile { background: rgba(248,250,252,0.05); border: 1px solid rgba(248,250,252,0.08); border-radius: 13px; padding: 14px 15px; }
.pv-tile .n { font-size: 22px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pv-tile .l { font-family: Inter, sans-serif; font-size: 11.5px; color: rgba(248,250,252,0.55); margin-top: 6px; }
.pv-row { display: flex; align-items: center; gap: 12px; background: rgba(248,250,252,0.04); border: 1px solid rgba(248,250,252,0.07); border-radius: 12px; padding: 12px 14px; margin-top: 10px; }
.pv-row .av { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; background: linear-gradient(135deg, var(--blue), var(--purple)); }
.pv-row .av.g { background: linear-gradient(135deg, var(--green-2), var(--blue)); }
.pv-row .av.o { background: linear-gradient(135deg, var(--orange), #FF6B9D); }
.pv-line { flex: 1; }
.pv-line .a { height: 8px; border-radius: 100px; background: rgba(248,250,252,0.2); width: 62%; }
.pv-line .b { height: 7px; border-radius: 100px; background: rgba(248,250,252,0.1); width: 40%; margin-top: 7px; }
.pv-chip { font-family: Inter, sans-serif; font-size: 10.5px; font-weight: 600; padding: 4px 9px; border-radius: 100px; background: rgba(52,211,153,0.16); color: var(--green-2); }
.preview-soon { position: absolute; top: -14px; right: 22px; z-index: 3; }

/* ---------- Section shell ---------- */
.section { padding: 92px 32px; }
.section.tight { padding: 40px 32px 92px; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.sec-head h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; margin: 14px 0 16px; text-wrap: balance; }
.sec-head p { font-family: Inter, sans-serif; font-size: 17px; line-height: 1.6; color: rgba(248,250,252,0.62); margin: 0; }

/* ---------- Benefit cards ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.bcard {
  background: linear-gradient(180deg, rgba(248,250,252,0.07), rgba(248,250,252,0.03));
  border: 1px solid rgba(248,250,252,0.1); border-radius: 22px; padding: 34px 32px 36px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.bcard:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,0.45); }
.bcard .bic { width: 54px; height: 54px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; }
.bcard h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 11px; }
.bcard p { font-family: Inter, sans-serif; font-size: 15.5px; line-height: 1.62; color: rgba(248,250,252,0.62); margin: 0; }
.ac-green { background: rgba(52,211,153,0.14); color: var(--green-2); } .bcard.green:hover { border-color: rgba(52,211,153,0.45); }
.ac-blue { background: rgba(77,163,255,0.14); color: var(--blue); } .bcard.blue:hover { border-color: rgba(77,163,255,0.45); }
.ac-orange { background: rgba(255,159,67,0.14); color: var(--orange); } .bcard.orange:hover { border-color: rgba(255,159,67,0.45); }
.ac-purple { background: rgba(167,139,250,0.16); color: var(--purple); } .bcard.purple:hover { border-color: rgba(167,139,250,0.5); }

/* ---------- Auth mockup ---------- */
.auth-sec { padding: 40px 32px 110px; }
.auth-card {
  max-width: 560px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(248,250,252,0.06), rgba(248,250,252,0.025));
  border: 1px solid rgba(248,250,252,0.12); border-radius: 26px; padding: 12px 12px 40px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: rgba(8,18,30,0.55); border: 1px solid rgba(248,250,252,0.08); border-radius: 16px; padding: 6px; margin-bottom: 30px; }
.seg button { border: none; background: transparent; color: rgba(248,250,252,0.6); font-weight: 700; font-size: 15px; padding: 13px; border-radius: 11px; cursor: pointer; transition: background .25s, color .25s; }
.seg button.on { background: var(--green); color: #04150D; box-shadow: 0 6px 20px rgba(18,183,106,0.32); }
.auth-body { padding: 0 28px; }
.auth-pane { display: none; animation: dscRise .5s cubic-bezier(.2,.8,.2,1) both; }
.auth-pane.on { display: block; }
.auth-pane h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; }
.auth-pane .lede { font-family: Inter, sans-serif; font-size: 14.5px; color: rgba(248,250,252,0.58); margin: 0 0 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: Inter, sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: rgba(248,250,252,0.7); margin-bottom: 8px; }
.field input {
  width: 100%; background: rgba(8,18,30,0.6); border: 1px solid rgba(248,250,252,0.14); border-radius: 12px;
  color: var(--ink); font-family: Inter, sans-serif; font-size: 15px; padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: rgba(248,250,252,0.4); }
.field input:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(52,211,153,0.16); }
.pills { display: flex; gap: 9px; flex-wrap: wrap; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills label {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: Inter, sans-serif; font-size: 13.5px; font-weight: 500; margin: 0;
  padding: 10px 16px; border-radius: 100px; border: 1px solid rgba(248,250,252,0.16);
  color: rgba(248,250,252,0.72); background: rgba(248,250,252,0.03); transition: all .2s;
}
.pills label:hover { border-color: rgba(248,250,252,0.32); }
.pills input:checked + label { border-color: var(--green-2); background: rgba(52,211,153,0.14); color: var(--ink); }
.btn-submit {
  width: 100%; margin-top: 12px; background: var(--green); color: #04150D; border: none;
  font-weight: 700; font-size: 16px; padding: 15px; border-radius: 12px; cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s; box-shadow: 0 8px 26px rgba(18,183,106,0.34);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(18,183,106,0.5); }
.auth-alt { text-align: center; font-family: Inter, sans-serif; font-size: 13.5px; color: rgba(248,250,252,0.5); margin-top: 18px; }
.auth-alt a { color: var(--green-2); font-weight: 600; }
.forgot { text-align: right; margin: -6px 0 20px; }
.forgot a { font-family: Inter, sans-serif; font-size: 13px; color: rgba(248,250,252,0.6); }
.forgot a:hover { color: var(--green-2); }
.mock-note { text-align: center; font-family: Inter, sans-serif; font-size: 12.5px; color: rgba(248,250,252,0.4); margin: 22px auto 0; max-width: 40ch; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid rgba(248,250,252,0.1); padding: 76px 32px 40px; }
.foot-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 56px; padding-bottom: 60px; }
.foot-logo { height: 32px; width: auto; margin-bottom: 24px; }
.foot-about { font-family: Inter, sans-serif; font-size: 16px; line-height: 1.62; color: rgba(248,250,252,0.6); margin: 0; max-width: 34ch; text-wrap: pretty; }
.foot-col { display: flex; flex-direction: column; gap: 13px; font-family: Inter, sans-serif; font-size: 15px; }
.foot-col .h { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(248,250,252,0.42); margin-bottom: 6px; }
.foot-col a { color: rgba(248,250,252,0.72); }
.foot-col a:hover { color: var(--green-2); }
.foot-bar { max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(248,250,252,0.1); padding-top: 28px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-family: Inter, sans-serif; font-size: 13.5px; color: rgba(248,250,252,0.44); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .phero-in { grid-template-columns: 1fr; gap: 48px; }
  .preview-shell { max-width: 560px; margin: 0 auto; width: 100%; }
  .benefits { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .nav { display: none; }
  .hdr-in { gap: 16px; }
}
@media (max-width: 560px) {
  .hdr-in, .phero, .section, .auth-sec, footer { padding-left: 20px; padding-right: 20px; }
  .phero { padding-top: 128px; }
  .btn-ghost { padding: 9px 14px; font-size: 14px; }
  .btn-pill { padding: 10px 18px; }
  .auth-body { padding: 0 18px; }
  .pv-body { grid-template-columns: 132px 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Content pages (About / Impact / Get Involved / Contact)
   ============================================================ */

/* Page hero (centered) */
.page-hero { position: relative; padding: 150px 32px 70px; overflow: hidden; text-align: center; }
.page-hero .blob { position: absolute; border-radius: 50%; filter: blur(42px); pointer-events: none; }
.page-hero .blob-a { top: -12%; right: 8%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(52,211,153,0.24), transparent 68%); animation: dscFloat 13s ease-in-out infinite; }
.page-hero .blob-b { top: 6%; left: 4%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(167,139,250,0.22), transparent 70%); animation: dscFloat 16s ease-in-out infinite 1.4s; }
.page-hero-in { position: relative; max-width: 860px; margin: 0 auto; animation: dscRise .9s cubic-bezier(.2,.8,.2,1) both; }
.page-hero h1 { font-size: clamp(42px, 5.6vw, 82px); line-height: 1.0; letter-spacing: -0.04em; font-weight: 800; margin: 18px 0 22px; text-wrap: balance; }
.page-hero .sub { font-family: Inter, system-ui, sans-serif; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: rgba(248,250,252,0.72); max-width: 56ch; margin: 0 auto 34px; text-wrap: pretty; }
.page-hero .hero-cta { justify-content: center; }

/* Split (copy + media) */
.split { padding: 84px 32px; }
.split-in { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.split.rev .split-copy { order: 2; }
.split h2 { font-size: clamp(30px, 3.6vw, 50px); line-height: 1.06; letter-spacing: -0.035em; font-weight: 800; margin: 14px 0 20px; text-wrap: balance; }
.split p { font-family: Inter, sans-serif; font-size: 17.5px; line-height: 1.65; color: rgba(248,250,252,0.68); margin: 0 0 18px; text-wrap: pretty; }
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-media .cell { position: relative; aspect-ratio: 1; border-radius: 20px; overflow: hidden; background: var(--bg-3); border: 1px solid rgba(248,250,252,0.1); }
.split-media .cell.tall { margin-top: 34px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-solo { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: var(--bg-3); border: 1px solid rgba(248,250,252,0.1); }
.split-solo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.step { position: relative; background: linear-gradient(180deg, rgba(248,250,252,0.07), rgba(248,250,252,0.03)); border: 1px solid rgba(248,250,252,0.1); border-radius: 22px; padding: 34px 30px 36px; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s; }
.step:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,0.42); border-color: rgba(52,211,153,0.4); }
.step .num { font-family: ui-monospace, Menlo, monospace; font-size: 14px; font-weight: 800; letter-spacing: 0.12em; color: var(--green-2); }
.step h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 14px 0 10px; }
.step p { font-family: Inter, sans-serif; font-size: 15.5px; line-height: 1.6; color: rgba(248,250,252,0.62); margin: 0; }

/* Stat band */
.statband { padding: 20px 32px 40px; }
.statband-in { max-width: var(--maxw); margin: 0 auto; background: linear-gradient(180deg, #0E2032, #0A1826); border: 1px solid rgba(248,250,252,0.12); border-radius: 28px; padding: 62px 48px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-size: clamp(34px, 4.4vw, 58px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.stat .lbl { font-family: Inter, sans-serif; font-size: 14.5px; color: rgba(248,250,252,0.6); margin-top: 10px; }

/* Story / quote grid */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.qcard { background: linear-gradient(180deg, rgba(248,250,252,0.07), rgba(248,250,252,0.03)); border: 1px solid rgba(248,250,252,0.1); border-radius: 22px; padding: 32px 30px; display: flex; flex-direction: column; gap: 20px; }
.qcard .q { font-size: 19px; line-height: 1.4; letter-spacing: -0.01em; font-weight: 600; margin: 0; text-wrap: pretty; }
.qcard .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.qcard .av { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; background: var(--bg-3); flex-shrink: 0; }
.qcard .av img { width: 100%; height: 100%; object-fit: cover; }
.qcard .meta { font-family: Inter, sans-serif; font-size: 13.5px; line-height: 1.4; color: rgba(248,250,252,0.6); }
.qcard .meta b { color: var(--ink); font-weight: 700; display: block; font-family: 'Plus Jakarta Sans', sans-serif; }

/* Logo row */
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 960px; margin: 0 auto; }
.logo-chip { display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px; border: 1px solid rgba(248,250,252,0.12); border-radius: 14px; background: rgba(248,250,252,0.03); color: rgba(248,250,252,0.66); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; transition: color .3s, border-color .3s; }
.logo-chip .mk { width: 22px; height: 22px; border-radius: 6px; background: currentColor; opacity: 0.7; }
.logo-chip:hover { color: var(--green-2); border-color: rgba(52,211,153,0.4); }

/* Donation / path tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--maxw); margin: 0 auto; }
.tier { background: linear-gradient(180deg, rgba(248,250,252,0.07), rgba(248,250,252,0.03)); border: 1px solid rgba(248,250,252,0.1); border-radius: 22px; padding: 34px 30px 34px; display: flex; flex-direction: column; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, box-shadow .35s; }
.tier:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(0,0,0,0.42); border-color: rgba(52,211,153,0.4); }
.tier.feature { border-color: rgba(52,211,153,0.5); background: linear-gradient(180deg, rgba(52,211,153,0.12), rgba(248,250,252,0.03)); }
.tier .amt { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.tier .amt span { font-size: 15px; font-weight: 600; color: rgba(248,250,252,0.55); letter-spacing: 0; }
.tier .tname { font-family: ui-monospace, Menlo, monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-2); margin-bottom: 16px; }
.tier p { font-family: Inter, sans-serif; font-size: 15px; line-height: 1.6; color: rgba(248,250,252,0.64); margin: 16px 0 24px; }
.tier .btn-submit { margin-top: auto; }

/* Contact layout */
.contact-in { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-card { background: linear-gradient(180deg, rgba(248,250,252,0.06), rgba(248,250,252,0.025)); border: 1px solid rgba(248,250,252,0.12); border-radius: 24px; padding: 38px 36px; }
.contact-card h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 6px; }
.contact-card .lede { font-family: Inter, sans-serif; font-size: 15px; color: rgba(248,250,252,0.6); margin: 0 0 26px; }
.form-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-2 .full { grid-column: 1 / -1; }
.field textarea { width: 100%; background: rgba(8,18,30,0.6); border: 1px solid rgba(248,250,252,0.14); border-radius: 12px; color: var(--ink); font-family: Inter, sans-serif; font-size: 15px; padding: 13px 15px; outline: none; resize: vertical; min-height: 120px; transition: border-color .2s, box-shadow .2s; }
.field textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(52,211,153,0.16); }
.field select { width: 100%; background: rgba(8,18,30,0.6); border: 1px solid rgba(248,250,252,0.14); border-radius: 12px; color: var(--ink); font-family: Inter, sans-serif; font-size: 15px; padding: 13px 15px; outline: none; }
.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(52,211,153,0.14); color: var(--green-2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.info-item .t { font-family: Inter, sans-serif; }
.info-item .t .k { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(248,250,252,0.5); margin-bottom: 3px; }
.info-item .t a, .info-item .t span { font-size: 15.5px; color: rgba(248,250,252,0.86); }
.info-item .t a:hover { color: var(--green-2); }

/* CTA band */
.cta-band { padding: 40px 32px 110px; }
.cta-band-in { position: relative; max-width: var(--maxw); margin: 0 auto; border-radius: 28px; overflow: hidden; border: 1px solid rgba(248,250,252,0.12); padding: 84px 48px; text-align: center; background: var(--bg-2); }
.cta-band-in > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.cta-band-scrim { position: absolute; inset: 0; background: linear-gradient(140deg, rgba(8,18,30,0.9), rgba(18,183,106,0.4) 55%, rgba(8,18,30,0.82)); }
.cta-band-body { position: relative; }
.cta-band-body h2 { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -0.04em; font-weight: 800; margin: 0 0 18px; text-wrap: balance; }
.cta-band-body p { font-family: Inter, sans-serif; font-size: 18px; line-height: 1.55; color: rgba(248,250,252,0.82); max-width: 52ch; margin: 0 auto 32px; }
.cta-band-body .hero-cta { justify-content: center; }

@media (max-width: 900px) {
  .split-in { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-copy { order: 0; }
  .steps, .stories-grid, .tiers { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .contact-in { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .page-hero, .split, .statband, .cta-band { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding-top: 124px; }
  .statband-in { padding: 44px 26px; }
  .cta-band-in { padding: 60px 26px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-2 { grid-template-columns: 1fr; }
}
