:root {
  --bg:       #0A0A0F;
  --bg2:      #0F0F18;
  --bg3:      #16161F;
  --bg4:      #1C1C28;
  --accent:   #7C3AED;
  --accent2:  #A78BFA;
  --accent3:  #EDE9FE;
  --white:    #F5F5F7;
  --muted:    rgba(245,245,247,.5);
  --border:   rgba(124,58,237,.18);
  --border2:  rgba(245,245,247,.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; line-height: 1.6; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  background: rgba(10,10,15,.95);
  border-bottom: 1px solid var(--border2);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; letter-spacing: .5px;
  color: var(--white);
}
.nav-logo span { color: var(--accent2); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 500;
  color: var(--muted); transition: color .2s;
  letter-spacing: .3px;
}
.nav-links a:hover { color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 64px 64px 80px;
  border-bottom: 1px solid var(--border2);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(124,58,237,.07) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 20% 80%, rgba(124,58,237,.05) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; width: 100%;
}
.hero-tag {
  display: inline-block;
  padding: 5px 14px; border-radius: 4px;
  background: rgba(124,58,237,.12); border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 28px;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 68px); font-weight: 700;
  line-height: 1.08; letter-spacing: -.5px; margin-bottom: 24px;
}
.hero-name .dim { color: rgba(245,245,247,.35); }
.hero-name .hi { color: var(--accent2); }
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--muted);
  max-width: 500px; line-height: 1.75; margin-bottom: 40px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  padding: 7px 16px; border-radius: 4px;
  background: var(--bg3); border: 1px solid var(--border2);
  font-size: 12px; font-weight: 500; color: rgba(245,245,247,.7);
  transition: border-color .2s;
}
.badge:hover { border-color: var(--accent); }

/* Avatar card */
.hero-card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 12px; padding: 40px 32px; text-align: center;
}
.hc-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5B21B6);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700;
  color: white; margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(124,58,237,.25);
}
.hc-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.hc-role { font-size: 12px; color: var(--accent2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.hc-divider { height: 1px; background: var(--border2); margin-bottom: 20px; }
.hc-info { display: flex; flex-direction: column; gap: 10px; }
.hc-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.hc-row span:first-child { font-size: 14px; }

/* ── SECTIONS ── */
section { padding: 96px 64px; border-bottom: 1px solid var(--border2); }
.sec-header { margin-bottom: 56px; }
.sec-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 12px;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px); font-weight: 700; line-height: 1.15;
}
.sec-title .dim { color: var(--muted); font-weight: 400; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Body text */
.prose { font-size: 15px; font-weight: 300; color: rgba(245,245,247,.72); line-height: 1.85; }
.prose p { margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--white); font-weight: 600; }
.prose em { color: var(--accent3); font-style: italic; }

/* ── CARDS ── */
.card {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 28px;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: rgba(124,58,237,.35); transform: translateY(-3px); }
.card-icon { font-size: 28px; margin-bottom: 16px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.card-body { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* Highlight card */
.card.hl {
  background: linear-gradient(145deg, #1A1030, #1E1540);
  border-color: rgba(124,58,237,.3);
}
.card.hl .card-title { color: var(--accent3); }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.stat-box { background: var(--bg4); border: 1px solid var(--border2); border-radius: 8px; padding: 20px; text-align: center; }
.stat-box .sn { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--accent2); display: block; margin-bottom: 4px; }
.stat-box .sl { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* ── VALUES ── */
.val-list { display: flex; flex-direction: column; gap: 12px; }
.val-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bg3); border: 1px solid var(--border2); border-radius: 8px;
  transition: border-color .2s;
}
.val-row:hover { border-color: rgba(124,58,237,.3); }
.val-icon-box { width: 36px; height: 36px; border-radius: 6px; background: rgba(124,58,237,.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.val-label { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.val-desc { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ── TIMELINE ── */
.tl { position: relative; display: flex; flex-direction: column; padding-left: 28px; }
.tl::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--border2); }
.tl-item { position: relative; padding: 0 0 44px 36px; }
.tl-dot { position: absolute; left: -5px; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 2px solid rgba(124,58,237,.4); }
.tl-item.current .tl-dot { background: var(--accent2); border-color: var(--accent2); box-shadow: 0 0 10px rgba(167,139,250,.5); }
.tl-period { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); margin-bottom: 6px; font-weight: 500; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.tl-body { font-size: 14px; font-weight: 300; color: rgba(245,245,247,.65); line-height: 1.75; max-width: 600px; }
.tl-chip { display: inline-block; margin-top: 12px; padding: 3px 12px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2); border-radius: 4px; font-size: 11px; color: var(--accent2); font-weight: 500; }
.tl-item.current .tl-chip { animation: glow 2.5s ease-in-out infinite; }
@keyframes glow { 0%,100% { box-shadow: none; } 50% { box-shadow: 0 0 10px rgba(124,58,237,.3); } }

/* ── FAITH VISUAL ── */
.faith-visual {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
}
.faith-header { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); font-weight: 500; }
.faith-quote {
  font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic;
  color: var(--white); line-height: 1.6; border-left: 3px solid var(--accent); padding-left: 20px;
}
.faith-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.fstep { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; background: var(--bg4); border-radius: 6px; font-size: 13px; color: rgba(245,245,247,.75); line-height: 1.5; }
.fstep span:first-child { flex-shrink: 0; }

/* ── CONTACT FORM ── */
.c-form { display: flex; flex-direction: column; gap: 16px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-group { display: flex; flex-direction: column; gap: 6px; }
.c-group label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent2); }
.c-group input, .c-group select, .c-group textarea {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 6px; padding: 12px 14px;
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; resize: none; transition: border-color .2s;
}
.c-group input::placeholder, .c-group textarea::placeholder { color: rgba(245,245,247,.2); }
.c-group input:focus, .c-group select:focus, .c-group textarea:focus { border-color: var(--accent); }
.c-group select option { background: var(--bg3); }
.btn-submit {
  align-self: flex-start;
  background: var(--accent); color: white; border: none;
  padding: 12px 28px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .5px; cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.btn-submit:hover { background: #6D28D9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,.35); }
.c-success { display: none; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.25); border-radius: 6px; padding: 16px 20px; font-size: 14px; color: var(--accent3); font-style: italic; }

/* ── FOOTER ── */
footer {
  padding: 40px 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2);
}
.f-left .f-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.f-left .f-sub { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.7; }
.f-right { font-size: 12px; color: rgba(245,245,247,.2); text-align: right; line-height: 1.7; }

/* ── ANIMATE ── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  #hero, section { padding: 80px 24px; }
  .hero-inner, .two-col, .three-col { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .f-right { text-align: center; }
}
