/* ══════════════════════════════
   APPLY MODAL
══════════════════════════════ */
.apply-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.apply-modal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.apply-modal-overlay.open {
  display: flex;
}

.apply-modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.apply-modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 28px;
}

.apply-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.apply-modal-close:hover {
  background: #f3e8ff;
  color: #6a0dad;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
}

.form-group input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #7c3aed;
}

.send-btn {
  width: 100%;
  background: linear-gradient(135deg, #6a0dad, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.send-btn:hover {
  opacity: 0.9;
}

.send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
  font-size: 0.95rem;
  color: #6a0dad;
  font-weight: 600;
  line-height: 1.7;
}
/* ──-------------------------------1. HERO ------------------------ ── */
.hero {
  position: relative;
  max-height: 100vh;
  background: #0e0120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding:2rem;
  text-align: center;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.hero-glow-1 { width:560px; height:560px; background:rgba(109,40,217,.45); top:-120px; left:-80px; }
.hero-glow-2 { width:440px; height:440px; background:rgba(124,58,237,.3); bottom:-60px; right:-60px; }

.hero-live {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.35);
  color: #c4b5fd; font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; padding: 6px 16px; border-radius: 30px;
  white-space: nowrap; z-index: 2;
}

.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #a78bfa;
  animation: blink 1.8s ease-in-out infinite; flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.65)} }

.hero-body {
  position: relative; z-index: 2;
  max-width: 800px; padding:0 36px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(167,139,250,.12); border: 1px solid rgba(167,139,250,.28);
  color: #a78bfa; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; padding: 6px 18px; border-radius: 30px;
  margin-bottom: 28px; text-transform: uppercase;
}

.hero-body h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5.5rem; font-weight: 800; color: #fff;
  line-height: 1.06; letter-spacing: -2px; margin-bottom: 24px;
}

.hero-gradient {
  background: linear-gradient(90deg, #a78bfa, #7c3aed, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.62);
  line-height: 1.85; max-width: 560px; margin: 0 auto 36px;
}

.hero-btns { display: flex; justify-content: center; gap: 14px; margin-bottom: 28px; }

.h-btn-primary {
  display: inline-block; background: #7c3aed; color: #fff;
  font-size: .9rem; font-weight: 700; padding: 14px 30px;
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 22px rgba(124,58,237,.5);
  transition: background .2s, transform .2s;
}
.h-btn-primary:hover { background: #6d28d9; transform: translateY(-2px); }

.h-btn-ghost {
  display: inline-block; background: transparent; color: rgba(255,255,255,.7);
  font-size: .9rem; font-weight: 600; padding: 14px 28px;
  border-radius: 50px; border: 1px solid rgba(255,255,255,.18);
  text-decoration: none; transition: all .2s;
}
.h-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }

.hero-note {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.4); font-size: .78rem;
}
.hero-note i { width:14px; height:14px; stroke:rgba(255,255,255,.35); stroke-width:2; }
.hero-note strong { color: rgba(255,255,255,.72); font-weight: 700; }

/* stat bar */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 860px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 26px 0; margin-bottom: 48px;
  backdrop-filter: blur(10px);
}
.hs { flex: 1; text-align: center; }
.hs-n { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.hs-l { display: block; font-size: .68rem; color: rgba(255,255,255,.45); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-top: 5px; }
.hs-sep { width: 1px; height: 34px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── 2. TRUST BAR ── */
.trust-bar {
  background: #fff; border-bottom: 1px solid #ede9fe;
  padding: 14px 4rem;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  font-size: .75rem; font-weight: 700; color: #7c3aed;
  letter-spacing: .08em; text-transform: uppercase;
}
.tb-dot { width: 5px; height: 5px; border-radius: 50%; background: #c4b5fd; flex-shrink: 0; }

/* ── SHARED ── */
.pill {
  display: inline-block; background: #f3e8ff;
  border: 1.5px solid #c4b5fd; color: #6a0dad;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 14px;
  text-transform: uppercase;
}
.pill--light { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); color: #fff; }

.sec-head { text-align: center; margin-bottom: 48px; }
.sec-head h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 800; color: #111; margin-bottom: 10px; }
.sec-head p { font-size: .95rem; color: #666; max-width: 480px; margin: 0 auto; line-height: 1.7; }
.sec-head--light h2 { color: #fff; }
.sec-head--light p { color: rgba(255,255,255,.7); }

.sec-cta { text-align: center; margin-top: 40px; }

.h-btn-outline {
  display: inline-block; background: transparent; color: #6a0dad;
  font-size: .9rem; font-weight: 700; padding: 13px 30px;
  border-radius: 50px; border: 2px solid #7c3aed;
  text-decoration: none; transition: all .2s;
}
.h-btn-outline:hover { background: #6a0dad; color: #fff; }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #6a0dad; font-weight: 700; font-size: .9rem;
  text-decoration: none; border-bottom: 2px solid #e9d5ff;
  padding-bottom: 2px; transition: border-color .2s, gap .2s;
}
.text-link:hover { border-color: #6a0dad; gap: 10px; }
.text-link i { width:15px; height:15px; stroke:#6a0dad; stroke-width:2.5; }

/* ── 3. ABOUT ── */
.sec-about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 90px 4rem; background: #fff;
}
.sec-about-text h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2.4rem; font-weight: 800; color: #111; margin-bottom: 18px; }
.sec-about-text p { font-size: .95rem; color: #555; line-height: 1.8; margin-bottom: 14px; }

.sec-about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.astat {
  background: #faf9ff; border: 1px solid #ede9fe; border-radius: 14px;
  padding: 24px 20px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.astat:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(106,13,173,.1); }
.astat i { width:20px; height:20px; stroke:#7c3aed; stroke-width:2; }
.astat strong { font-family: 'Playfair Display', Georgia, serif; font-size: 1.9rem; font-weight: 800; color: #3b0764; line-height: 1; }
.astat span { font-size: .75rem; color: #999; font-weight: 600; letter-spacing: .04em; }

/* ── 4. TIERS ── */
.sec-tiers { padding: 90px 4rem; background: #faf9ff; border-top: 1px solid #ede9fe; }

.tiers-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; }

.tier {
  background: #fff; border: 1px solid #e9d5ff; border-radius: 14px;
  padding: 26px 14px 20px; text-align: center; position: relative;
  transition: transform .2s, box-shadow .2s;
}
.tier:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(106,13,173,.11); }

.tier--hot { background: linear-gradient(155deg,#5b0fa8,#7c3aed); border: none; box-shadow: 0 6px 28px rgba(91,15,168,.35); }
.tier--hot:hover { box-shadow: 0 14px 40px rgba(91,15,168,.45); }
.tier--pro { border: 2px solid #c4b5fd; }

.tier-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #fff; color: #6a0dad; font-size: .56rem; font-weight: 800;
  letter-spacing: .1em; padding: 3px 10px; border-radius: 20px;
  border: 1.5px solid #c4b5fd; white-space: nowrap;
}

.tier-ico {
  width: 40px; height: 40px; background: #f3e8ff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.tier--hot .tier-ico { background: rgba(255,255,255,.18); }
.tier-ico i { width:18px; height:18px; stroke:#6a0dad; stroke-width:2; }
.tier--hot .tier-ico i { stroke:#fff; }

.tier-g { font-size: .68rem; font-weight: 700; color: #aaa; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.tier--hot .tier-g { color: rgba(255,255,255,.65); }

.tier-a { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; font-weight: 800; color: #3b0764; line-height: 1; margin-bottom: 6px; }
.tier--hot .tier-a { color: #fff; }
.tier--pro .tier-a { color: #5b0fa8; }

.tier-r { font-size: .65rem; color: #bbb; }
.tier--hot .tier-r { color: rgba(255,255,255,.5); }
.tier--pro .tier-r { color: #a78bfa; }

/* ── 5. HOW IT WORKS ── */
.sec-hiw {
  padding: 90px 4rem;
  background: linear-gradient(135deg,#2e0652,#5b0fa8 55%,#7c3aed);
}

.hiw-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 960px; margin: 0 auto;
}

.hiw-card {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px; padding: 36px 20px 28px; text-align: center; position: relative;
  transition: background .2s, transform .2s;
}
.hiw-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }

.hiw-n {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #fff; color: #5b0fa8; font-size: .66rem; font-weight: 800;
  padding: 3px 12px; border-radius: 20px; letter-spacing: .1em;
}

.hiw-card i { width:30px; height:30px; stroke:rgba(255,255,255,.9); stroke-width:1.8; margin-bottom:14px; }
.hiw-card h4 { font-size: .92rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hiw-card p { font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.6; }

.hiw-arr { width:20px; height:20px; stroke:rgba(255,255,255,.28); stroke-width:2; flex-shrink:0; margin:0 10px; }

/* ── 6. SCHOLARS ── */
.sec-scholars { padding: 90px 4rem; background: #fff; }

.scholars-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; margin-bottom: 36px; }

.sc-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid #ede9fe; box-shadow: 0 2px 14px rgba(106,13,173,.06);
  transition: transform .25s, box-shadow .25s;
}
.sc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(106,13,173,.14); }

.sc-img { width:100%; aspect-ratio:3/4; overflow:hidden; background:#ede9fe; }
.sc-img img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; transition:transform .35s; }
.sc-card:hover .sc-img img { transform:scale(1.05); }

.sc-name { font-size:.85rem; font-weight:700; color:#111; padding:12px 12px 2px; text-align:center; }
.sc-tag { font-size:.65rem; color:#7c3aed; font-weight:700; letter-spacing:.06em; text-transform:uppercase; text-align:center; display:block; padding-bottom:12px; }

/* ── 7. CONTACT ── */
.sec-contact {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  padding: 90px 4rem; background: #faf9ff;
  border-top: 1px solid #ede9fe;
}

.sec-contact-left h2 { font-family:'Playfair Display',Georgia,serif; font-size:2.2rem; font-weight:800; color:#111; margin-bottom:12px; }
.sec-contact-left > p { font-size:.95rem; color:#555; line-height:1.8; margin-bottom:28px; }

.contact-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.contact-list li { display:flex; align-items:flex-start; gap:10px; font-size:.88rem; color:#333; line-height:1.5; }
.contact-list i { width:16px; height:16px; stroke:#7c3aed; stroke-width:2; flex-shrink:0; margin-top:2px; }

.sec-contact-right { display:flex; flex-direction:column; gap:14px; }

.cinfo-card {
  background:#fff; border:1px solid #ede9fe; border-radius:14px;
  padding:20px 18px; display:flex; align-items:flex-start; gap:14px;
  transition:transform .2s, box-shadow .2s;
}
.cinfo-card:hover { transform:translateY(-3px); box-shadow:0 8px 22px rgba(106,13,173,.09); }
.cinfo-card--accent { background:#0e0120; border:none; }

.cinfo-card > i { width:20px; height:20px; stroke:#6a0dad; stroke-width:2; flex-shrink:0; margin-top:2px; }
.cinfo-card--accent > i { stroke:#a78bfa; }

.cinfo-card h4 { font-size:.88rem; font-weight:700; color:#111; margin-bottom:4px; }
.cinfo-card--accent h4 { color:#fff; }
.cinfo-card p { font-size:.8rem; color:#777; line-height:1.6; }
.cinfo-card--accent p { color:rgba(255,255,255,.55); }
.cinfo-card--accent strong { color:#c4b5fd; }
