/* ═══════════════════════════════════════════
   PSALM 139 — Premium Design System
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --deep:     #060c06;
  --black:    #040904;
  --surface:  #0b1509;
  --surface2: #101e0f;
  --white:    #f0fdf4;
  --off:      #bbf7d0;
  --muted:    #4a6e4a;
  --green:    #16a34a;
  --bright:   #22c55e;
  --lime:     #a3e635;
  --border:   rgba(34,197,94,.11);
  --borderh:  rgba(34,197,94,.32);
  --glow:     rgba(34,197,94,.12);
  --shadow:   0 4px 24px rgba(0,0,0,.5), 0 0 0 1px rgba(34,197,94,.06);
  --shadowlg: 0 20px 60px rgba(0,0,0,.65), 0 0 0 1px rgba(34,197,94,.08), 0 0 40px rgba(34,197,94,.04);
  --shadowxl: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(34,197,94,.1), 0 0 60px rgba(34,197,94,.06);
  --r:        8px;
  --rlg:      16px;
  --rxl:      22px;
  --ease:     cubic-bezier(.34,1.2,.64,1);
  --easein:   cubic-bezier(.4,0,1,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--deep);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.022'/%3E%3C/svg%3E");
  background-size: 256px;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(34,197,94,.22); color: var(--white); }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(34,197,94,.28); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(34,197,94,.5); }
a { color: inherit; }

/* ─── CUSTOM CURSOR ─── */
.cursor { pointer-events: none; position: fixed; z-index: 9999; }
.cursor-dot {
  position: fixed; width: 5px; height: 5px; border-radius: 50%;
  background: var(--bright); transform: translate(-50%,-50%);
  transition: opacity .3s; box-shadow: 0 0 8px var(--bright);
}
.cursor-ring {
  position: fixed; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(34,197,94,.45); transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease);
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; padding: 0 52px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(6,12,6,.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
nav.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,.45); background: rgba(4,9,4,.92); }
.nav-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  transition: opacity .2s;
}
.nav-brand:hover { opacity: .8; }
.nav-bird {
  width: 30px; height: 30px; border-radius: 7px; object-fit: cover;
  border: 1px solid rgba(34,197,94,.3);
  box-shadow: 0 0 12px rgba(34,197,94,.1);
}
.nav-wordmark {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: .24em; text-transform: uppercase; color: var(--white);
}
.nav-wordmark b { color: var(--bright); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color .2s ease; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-pill {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  padding: 9px 20px; border-radius: 100px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bright);
  cursor: pointer; text-decoration: none;
  transition: all .25s var(--ease); white-space: nowrap;
}
.nav-pill:hover {
  background: rgba(34,197,94,.18); border-color: var(--bright);
  box-shadow: 0 0 20px rgba(34,197,94,.2);
}

/* ─── FLASH MESSAGES ─── */
.flash-wrap {
  position: fixed; top: 72px; right: 20px; z-index: 200;
  display: flex; flex-direction: column; gap: 8px; max-width: 380px;
}
.flash {
  font-family: 'DM Mono', monospace; font-size: 11px;
  padding: 13px 18px; border-radius: 10px;
  backdrop-filter: blur(16px);
  animation: slideInRight .4s var(--ease);
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.6;
}
.flash::before { content: '●'; font-size: 8px; flex-shrink: 0; margin-top: 2px; }
.flash-success {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.28);
  color: var(--bright); box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.flash-success::before { color: var(--bright); text-shadow: 0 0 8px var(--bright); }
.flash-error {
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.28);
  color: #f87171; box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.flash-error::before { color: #f87171; }
.flash-info {
  background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.28);
  color: #93c5fd;
}
.flash-info::before { color: #93c5fd; }

/* ─── HERO ─── */
.hero { min-height: 100vh; padding: 148px 64px 110px; position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 68% 48%, rgba(34,197,94,.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 75%, rgba(22,163,74,.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 80% 15%, rgba(34,197,94,.04) 0%, transparent 60%);
}
.hero-vline {
  position: absolute; left: 64px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(34,197,94,.18) 30%, rgba(34,197,94,.12) 70%, transparent 100%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.hero-left { display: flex; flex-direction: column; gap: 28px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bright);
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2);
  padding: 7px 15px; border-radius: 100px; width: fit-content;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bright); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(54px, 7.5vw, 96px);
  font-weight: 300; line-height: .96; color: var(--white);
}
.hero-h1 em { font-style: italic; color: var(--lime); }
.hero-verse {
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 300;
  font-style: italic; color: var(--muted); line-height: 1.65; max-width: 380px;
}
.hero-verse cite {
  display: block; font-family: 'DM Mono', monospace; font-style: normal;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-top: 9px; opacity: .8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

/* ─── BUTTONS ─── */
.btn-solid {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  border: none; padding: 14px 28px; border-radius: var(--r);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .13em; text-transform: uppercase; color: #fff;
  cursor: pointer; text-decoration: none;
  transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(34,197,94,.22), 0 0 0 1px rgba(34,197,94,.1);
}
.btn-solid:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.35), 0 0 0 1px rgba(34,197,94,.2);
  color: #fff;
}
.btn-solid:active { transform: translateY(0); }
.btn-ghost-link {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.12);
  padding: 14px 28px; border-radius: var(--r);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--off);
  cursor: pointer; text-decoration: none;
  transition: all .25s ease; display: inline-flex; align-items: center; gap: 10px;
}
.btn-ghost-link:hover {
  border-color: var(--borderh); background: rgba(34,197,94,.06);
  color: var(--bright); transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── HERO VISUALS ─── */
.hero-visuals { display: flex; justify-content: center; align-items: center; }
.vis-stack { position: relative; width: 300px; height: 520px; margin: 0 auto; }
.phone-outer {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 240px; height: 460px; border-radius: 36px; overflow: hidden;
  border: 1.5px solid rgba(34,197,94,.28);
  box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(34,197,94,.08), 0 0 60px rgba(34,197,94,.12);
  background: #0a130a; animation: floatB 5s ease-in-out infinite;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 8px; background: #0a130a; border-radius: 10px; z-index: 2;
}
.phone-screen { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-glow {
  position: absolute; inset: -20px; border-radius: 50px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,.1), transparent 70%);
  pointer-events: none;
}
.logo-float {
  position: absolute; top: 8%; right: -36px; width: 56px; height: 56px;
  background: var(--black); border: 1px solid rgba(34,197,94,.3); border-radius: 14px;
  overflow: hidden; animation: floatA 4s ease-in-out infinite; z-index: 3;
  box-shadow: var(--shadow);
}
.logo-float img { width: 100%; height: 100%; object-fit: cover; }
.ftag {
  position: absolute;
  background: rgba(6,12,6,.9); border: 1px solid rgba(34,197,94,.22);
  border-radius: 12px; padding: 11px 15px; z-index: 4;
  backdrop-filter: blur(12px); box-shadow: var(--shadow);
}
.ftag-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.ftag-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; margin-top: 3px; }

/* ─── VERSE BAND ─── */
.verse-band {
  padding: 100px 64px; text-align: center;
  background: linear-gradient(180deg, var(--deep) 0%, rgba(11,21,9,.85) 50%, var(--deep) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.verse-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.05) 0%, transparent 70%);
}
.verse-band blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,54px);
  font-weight: 300; line-height: 1.2; color: var(--white); max-width: 820px; margin: 0 auto;
  position: relative;
}
.verse-band em { font-style: italic; color: var(--lime); }
.verse-band cite {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green); display: block; margin-top: 22px;
}

/* ─── SECTION EYEBROW ─── */
.section-eye {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--bright);
  display: flex; align-items: center; gap: 14px; margin-bottom: 60px;
}
.section-eye::after { content: ''; width: 40px; height: 1px; background: var(--bright); opacity: .5; }

/* ─── PROFILE SECTION ─── */
.profile-section { padding: 120px 64px; }
.profile-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.profile-explain h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,5vw,64px);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px;
}
.profile-explain h2 em { font-style: italic; color: var(--lime); }
.profile-explain p { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2.1; color: var(--muted); margin-bottom: 14px; }

/* ─── PROFILE CARDS ─── */
.p-card {
  background: linear-gradient(150deg, rgba(15,30,14,.96) 0%, rgba(10,20,10,.99) 100%);
  border: 1px solid var(--border); border-radius: var(--rxl);
  box-shadow: var(--shadow); overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .35s var(--ease);
  position: relative;
}
.p-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.25), transparent);
  opacity: 0; transition: opacity .3s;
}
.p-card:hover {
  border-color: var(--borderh);
  box-shadow: var(--shadowlg);
  transform: translateY(-5px);
}
.p-card:hover::before { opacity: 1; }
.p-card-header { padding: 22px 22px 0; display: flex; gap: 14px; align-items: flex-start; }
.p-avatar {
  width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(22,163,74,.3), rgba(11,21,9,.8));
  border: 2px solid rgba(34,197,94,.25); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--lime);
  position: relative; box-shadow: 0 0 20px rgba(34,197,94,.08);
}
.p-avatar-v {
  position: absolute; bottom: -2px; right: -2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); border: 2px solid #0a130a;
  display: flex; align-items: center; justify-content: center; font-size: 9px;
  box-shadow: 0 0 8px rgba(34,197,94,.4);
}
.p-header-info { flex: 1; min-width: 0; }
.p-name-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.p-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); }
.p-age { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }
.p-vbadge {
  font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bright); background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.28);
  padding: 3px 9px; border-radius: 100px; display: flex; align-items: center; gap: 5px;
}
.p-vbadge::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--bright);
  box-shadow: 0 0 6px var(--bright); animation: pulse 2.2s infinite; flex-shrink: 0;
}
.p-loc { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--green); margin-top: 5px; display: flex; align-items: center; gap: 5px; }
.p-loc::before { content: '◎'; font-size: 8px; opacity: .7; }
.p-meta { display: flex; gap: 7px; margin-top: 7px; flex-wrap: wrap; }
.p-chip {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(255,255,255,.07); color: var(--off);
}
.p-chip.pr { border-color: rgba(34,197,94,.3); color: var(--bright); background: rgba(34,197,94,.07); }
.p-div { margin: 16px 22px; height: 1px; background: linear-gradient(90deg, transparent, rgba(34,197,94,.15), transparent); }
.p-story {
  padding: 0 22px 16px; font-family: 'Cormorant Garamond', serif; font-size: 15px;
  font-weight: 300; line-height: 1.8; color: var(--off);
}
.p-goal { padding: 0 22px 18px; }
.p-goal-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.p-gl { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.p-gr { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--bright); }
.p-bar { height: 5px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; margin-top: 2px; }
.p-bar-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--green) 0%, var(--bright) 60%, var(--lime) 100%);
  box-shadow: 0 0 10px rgba(34,197,94,.5);
  transition: width 1.5s cubic-bezier(.34,1.2,.64,1);
  position: relative; overflow: hidden;
}
.p-bar-fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 2.5s ease infinite;
}
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.p-bar-note { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); margin-top: 7px; }
.p-needs { display: flex; gap: 7px; padding: 0 22px 18px; flex-wrap: wrap; }
.p-need {
  display: flex; align-items: center; gap: 6px; font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; border: 1px solid rgba(255,255,255,.07); color: var(--off);
}
.p-need.food    { border-color: rgba(251,191,36,.3);  color: #fbbf24; background: rgba(251,191,36,.06); }
.p-need.shelter { border-color: rgba(34,197,94,.3);   color: var(--bright); background: rgba(34,197,94,.06); }
.p-need.clothing { border-color: rgba(96,165,250,.3); color: #93c5fd; background: rgba(96,165,250,.06); }
.p-actions { padding: 0 22px 22px; display: flex; gap: 10px; }
.p-btn-donate {
  flex: 1; background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
  border: none; padding: 13px; border-radius: 10px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; cursor: pointer;
  transition: all .25s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; box-shadow: 0 4px 12px rgba(34,197,94,.2);
}
.p-btn-donate:hover { background: linear-gradient(135deg, var(--bright) 0%, var(--green) 100%); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,197,94,.35); }
.p-btn-share {
  width: 46px; height: 46px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; cursor: pointer; transition: all .25s ease;
  flex-shrink: 0; text-decoration: none; color: var(--muted);
}
.p-btn-share:hover { border-color: var(--borderh); background: rgba(34,197,94,.08); color: var(--bright); }
.p-card-qr {
  background: rgba(0,0,0,.25); border-top: 1px solid var(--border);
  padding: 14px 22px; display: flex; align-items: center; justify-content: space-between;
}
.p-qr-box { width: 42px; height: 42px; background: var(--white); padding: 4px; border-radius: 5px; flex-shrink: 0; }
.p-qr-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.p-qr-id { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--off); margin-top: 2px; letter-spacing: .08em; }
.p-psalm-badge { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); opacity: .55; }

/* ─── FLOW STEPS ─── */
.flow-section { padding: 0 64px 120px; }
.flow-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.flow-steps::after {
  content: ''; position: absolute; top: 35px; left: 9%; right: 9%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(34,197,94,.25), rgba(34,197,94,.25), transparent);
}
.f-step { padding-right: 28px; position: relative; z-index: 1; }
.f-step:last-child { padding-right: 0; }
.f-num {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1px solid rgba(34,197,94,.28);
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, rgba(34,197,94,.08) 0%, transparent 70%);
  margin-bottom: 26px;
  box-shadow: 0 0 24px rgba(34,197,94,.07), inset 0 1px 0 rgba(34,197,94,.1);
}
.f-num-txt { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--bright); }
.f-arr { position: absolute; top: 22px; right: 2px; color: var(--green); opacity: .35; font-size: 18px; }
.f-step h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.f-step p { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2; color: var(--muted); }

/* ─── DIFFERENTIATORS ─── */
.diff-section { padding: 0 64px 120px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.diff-item {
  padding: 52px 48px; background: var(--deep); border: 1px solid var(--border);
  transition: all .35s var(--ease); position: relative; overflow: hidden; cursor: default;
}
.diff-item:hover { border-color: var(--borderh); background: var(--surface); transform: translateY(-4px); box-shadow: var(--shadow); }
.diff-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(34,197,94,.06) 0%, transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.diff-item:hover::before { opacity: 1; }
.diff-item::after {
  content: attr(data-glyph); position: absolute; right: 22px; top: 14px;
  font-size: 68px; opacity: .04; line-height: 1; pointer-events: none;
}
.diff-tag { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--bright); margin-bottom: 14px; }
.diff-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 13px; line-height: 1.3; }
.diff-item p { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2.1; color: var(--muted); }

/* ─── STORES ─── */
.stores-section { padding: 100px 64px; background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stores-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.stores-text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px,5vw,62px); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.stores-text h2 em { font-style: italic; color: var(--lime); }
.stores-text p { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2.1; color: var(--muted); margin-bottom: 32px; }
.store-targets { display: flex; flex-direction: column; gap: 6px; }
.st-row {
  padding: 18px 24px; background: var(--surface); border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  transition: all .25s ease; border-radius: 10px;
}
.st-row:hover { border-color: var(--borderh); transform: translateX(6px); box-shadow: var(--shadow); background: var(--surface2); }
.st-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); }
.st-badge {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--bright); border: 1px solid rgba(34,197,94,.3); padding: 4px 11px; border-radius: 100px;
}
.st-sub { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 3px; }

/* ─── HELP SECTION ─── */
.help-section { padding: 120px 64px; text-align: center; }
.help-section .section-eye { justify-content: center; }
.help-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px,7vw,86px); font-weight: 300; line-height: .95; color: var(--white); margin-bottom: 24px; }
.help-h em { font-style: italic; color: var(--lime); }
.help-sub { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); max-width: 440px; margin: 0 auto 64px; line-height: 2; }
.help-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; max-width: 880px; margin: 0 auto; }
.hc {
  padding: 46px 32px; background: var(--deep); border: 1px solid var(--border);
  transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.hc:hover { border-color: var(--borderh); background: var(--surface); transform: translateY(-6px); box-shadow: var(--shadow); }
.hc-icon { font-size: 30px; margin-bottom: 20px; display: block; }
.hc h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.hc p { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2; color: var(--muted); }

/* ─── SIGNUP ─── */
.signup {
  padding: 100px 64px; text-align: center;
  background: linear-gradient(180deg, rgba(15,28,14,.5) 0%, var(--black) 100%);
  border-top: 1px solid var(--border);
}
.signup-label {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--bright); display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px;
}
.signup-label::before, .signup-label::after { content: ''; width: 32px; height: 1px; background: var(--bright); opacity: .5; }
.signup-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(38px,6vw,78px); font-weight: 300; color: var(--white); line-height: 1.05; margin-bottom: 16px; }
.signup-h em { font-style: italic; color: var(--lime); }
.signup-sub { font-family: 'DM Mono', monospace; font-size: 11px; line-height: 2; color: var(--muted); max-width: 400px; margin: 0 auto 36px; }
.signup-form {
  display: flex; max-width: 420px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: border-color .2s; background: rgba(255,255,255,.02);
}
.signup-form:focus-within { border-color: var(--borderh); box-shadow: 0 0 0 3px rgba(34,197,94,.08); }
.signup-form input {
  flex: 1; background: transparent; border: none; padding: 15px 18px;
  color: var(--white); font-family: 'DM Mono', monospace; font-size: 12px; outline: none;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form button {
  background: var(--green); border: none; padding: 15px 22px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .15em;
  text-transform: uppercase; color: #fff; cursor: pointer;
  transition: all .25s ease; white-space: nowrap;
}
.signup-form button:hover { background: var(--bright); }
.signup-note { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 14px; }

/* ─── FOOTER ─── */
footer {
  padding: 40px 64px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; background: rgba(4,9,4,.8);
}
.foot-brand { display: flex; align-items: center; gap: 10px; }
.foot-bird { width: 30px; height: 30px; border-radius: 7px; object-fit: cover; border: 1px solid rgba(34,197,94,.2); opacity: .75; }
.foot-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--white); opacity: .55; }
.foot-verse { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--muted); }
footer p { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ─── AUTH ─── */
.auth-section {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px 20px 40px;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(34,197,94,.07) 0%, transparent 70%);
}
.auth-card {
  width: 100%; max-width: 420px;
  background: rgba(10,21,10,.92); border: 1px solid var(--border);
  border-radius: var(--rxl); padding: 48px 44px;
  box-shadow: var(--shadowxl); backdrop-filter: blur(20px);
}
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.auth-logo img { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(34,197,94,.3); }
.auth-heading {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300;
  color: var(--white); margin-bottom: 6px; line-height: 1.1;
}
.auth-sub {
  font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted);
  letter-spacing: .08em; margin-bottom: 30px; line-height: 1.8;
}
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.field-group { display: flex; flex-direction: column; gap: 7px; }
.field-group label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.field-group input, .field-group textarea {
  background: rgba(255,255,255,.025); border: 1px solid rgba(34,197,94,.18);
  border-radius: var(--r); padding: 13px 16px;
  color: var(--white); font-family: 'DM Mono', monospace; font-size: 13px;
  outline: none; transition: all .2s ease; width: 100%;
}
.field-group input:focus, .field-group textarea:focus {
  border-color: rgba(34,197,94,.5); background: rgba(34,197,94,.04);
  box-shadow: 0 0 0 3px rgba(34,197,94,.08);
}
.auth-switch {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted);
  text-align: center; margin-top: 18px; line-height: 1.8;
}
.auth-switch a { color: var(--bright); text-decoration: none; transition: opacity .2s; }
.auth-switch a:hover { opacity: .75; }

/* ─── DONOR DASHBOARD ─── */
.dash-section { padding: 110px 64px 80px; max-width: 1040px; margin: 0 auto; }
.dash-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 44px; }
.dash-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,5vw,52px); font-weight: 300; color: var(--white); line-height: 1.05; }
.dash-heading em { font-style: italic; color: var(--lime); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 44px; }
.stat-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 24px 26px; border-radius: var(--rlg);
  transition: all .25s ease; position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bright), transparent); opacity: .35;
}
.stat-card:hover { border-color: var(--borderh); transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 28px; color: var(--bright); margin-bottom: 6px; }
.stat-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.dash-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--rlg); padding: 28px; margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.history-list { display: flex; flex-direction: column; gap: 0; }
.history-row {
  display: flex; align-items: center; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid rgba(34,197,94,.07);
  transition: background .2s;
}
.history-row:last-child { border-bottom: none; }
.history-row:hover { background: rgba(34,197,94,.02); }
.history-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,163,74,.25), rgba(11,21,9,.8));
  border: 1px solid rgba(34,197,94,.25); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--lime); flex-shrink: 0;
}
.history-info { flex: 1; min-width: 0; }
.history-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: var(--white); }
.history-name a { color: inherit; text-decoration: none; }
.history-name a:hover { color: var(--bright); }
.history-msg { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.history-date { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); margin-top: 2px; letter-spacing: .08em; }
.history-amount { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--bright); flex-shrink: 0; }
.empty-state { text-align: center; padding: 48px 0; font-family: 'DM Mono', monospace; font-size: 12px; color: var(--muted); line-height: 2; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(.3deg); } 50% { transform: translateY(-16px) rotate(-.3deg); } }
@keyframes floatB { 0%,100% { transform: translate(-50%,-50%) rotate(-.5deg); } 50% { transform: translate(-50%,-54%) rotate(.5deg); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV LINK ─── */
.nav-link { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--bright); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .hero { padding: 130px 24px 80px; }
  .verse-band, .profile-section, .flow-section, .diff-section, .stores-section, .help-section, .signup { padding-left: 24px; padding-right: 24px; }
  footer { padding: 32px 24px; }
  .hero-grid, .profile-showcase, .stores-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visuals { display: none; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .flow-steps::after { display: none; }
  .diff-section { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .help-cards { grid-template-columns: 1fr; }
  .auth-card { padding: 36px 28px; }
  .dash-section { padding: 100px 24px 60px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .stat-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .nav-links { gap: 20px; }
  .hero-h1 { font-size: clamp(44px, 12vw, 64px); }
}
