:root {
  --violet:     #7c3aed;
  --violet-lt:  rgba(124,58,237,0.10);
  --violet-bd:  rgba(124,58,237,0.28);
  --rose:       #f43f5e;
  --rose-lt:    rgba(244,63,94,0.10);
  --rose-bd:    rgba(244,63,94,0.28);
  --teal:       #0d9488;
  --bg:         #ffffff;
  --bg2:        #f9fafb;
  --ink:        #111827;
  --muted:      #6b7280;
  --border:     #e5e7eb;
  --card:       #ffffff;
}
 
/* ── BASE ── */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.75;
}
 
/* ══════════════════════════════════
   HERO — full-width split layout
══════════════════════════════════ */
.hero-wrap {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
/* decorative circles */
.hero-wrap::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,63,94,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-left {
  position: relative; z-index: 1;
  padding: 56px 40px 48px 48px;
}
.hero-right {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.07);
  padding: 56px 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-lt);
  border: 1px solid var(--violet-bd);
  border-radius: 100px;
  padding: 4px 14px;
}
.hero-name {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.02em;
}
.hero-name span { color: var(--violet); }
.hero-role {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: .08em; text-transform: uppercase;
}
.hero-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.hero-contact-item:hover { color: #fff; }
.hero-contact-item i {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  color: var(--violet);
}
.avail-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--violet-bd);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: #c4b5fd;
  width: fit-content;
}
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px #a78bfa;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.3)}
}
 
/* ══════════════════════════════════
   ACCENT STRIP below hero
══════════════════════════════════ */
.accent-strip {
  background: linear-gradient(90deg, var(--violet) 0%, var(--rose) 100%);
  height: 4px;
}
 
/* ══════════════════════════════════
   SECTION HEADING
══════════════════════════════════ */
.sec-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 15px;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.sec-heading i { color: var(--violet); font-size: 16px; }
.sec-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--violet), transparent);
  border: none; margin: 0 0 18px;
  border-radius: 2px;
}
 
/* ══════════════════════════════════
   CARD
══════════════════════════════════ */
.cv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 28px;
  transition: box-shadow .2s;
}
.cv-card:hover { box-shadow: 0 4px 24px rgba(124,58,237,.08); }
 
/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-text {
  color: var(--muted); font-size: 14px; line-height: 1.85;
}
.about-text strong { color: var(--ink); font-weight: 600; }
 
/* ══════════════════════════════════
   TIMELINE / EXPERIENCE
══════════════════════════════════ */
.tl-item { position: relative; padding-left: 22px; }
.tl-item::before {
  content: '';
  position: absolute; left: 0; top: 10px; bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), transparent);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  position: absolute; left: -5px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
.tl-role {
  font-weight: 700; font-size: 14.5px; color: var(--ink);
}
.tl-company {
  font-size: 12.5px; color: var(--teal); font-weight: 500;
}
.tl-date {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--rose);
  background: var(--rose-lt); border: 1px solid var(--rose-bd);
  border-radius: 100px; padding: 2px 10px; white-space: nowrap;
}
.tl-bullets { list-style: none; padding: 0; margin: 0; }
.tl-bullets li {
  font-size: 13.5px; color: var(--muted);
  padding-left: 16px; position: relative;
  margin-bottom: 5px; line-height: 1.6;
}
.tl-bullets li::before {
  content: '\2023';
  position: absolute; left: 0;
  color: var(--violet); font-size: 14px; top: 0;
}
 
/* ══════════════════════════════════
   TAGS
══════════════════════════════════ */
.tag-v {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px;
  background: var(--violet-lt); border: 1px solid var(--violet-bd);
  color: var(--violet); display: inline-block;
}
.tag-r {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px;
  background: var(--rose-lt); border: 1px solid var(--rose-bd);
  color: var(--rose); display: inline-block;
}
.tag-t {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 100px;
  background: rgba(13,148,136,.08); border: 1px solid rgba(13,148,136,.25);
  color: var(--teal); display: inline-block;
}
.tag-plain {
  font-size: 11px; font-weight: 500; padding: 4px 11px;
  border-radius: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--muted); display: inline-block;
  transition: border-color .2s, color .2s;
}
.tag-plain:hover { border-color: var(--violet); color: var(--violet); }
 
/* ══════════════════════════════════
   PFE CARD — bold gradient
══════════════════════════════════ */
.pfe-card {
  background: linear-gradient(135deg, var(--ink) 0%, #1e1b4b 100%);
  border-radius: 16px; padding: 26px 28px;
  position: relative; overflow: hidden;
}
.pfe-card::before {
  content: 'PFE';
  position: absolute; right: -10px; top: -20px;
  font-family: 'Fraunces', serif; font-size: 110px; font-weight: 900;
  color: rgba(124,58,237,.08);
  line-height: 1; pointer-events: none; user-select: none;
}
.pfe-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #c4b5fd;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
  border-radius: 100px; padding: 4px 13px;
}
.pfe-title {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 16px; color: #fff; line-height: 1.45;
}
.pfe-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; }
.pfe-kw {
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 100px;
  background: rgba(244,63,94,.12); border: 1px solid rgba(244,63,94,.3);
  color: #fda4af; display: inline-block;
}
 
/* ══════════════════════════════════
   SKILL BARS
══════════════════════════════════ */
.skill-name { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.skill-pct  { font-size: 12px; font-weight: 700; color: var(--violet); }
.progress   { height: 6px; border-radius: 100px; background: var(--bg2); }
.progress-bar {
  border-radius: 100px;
  background: linear-gradient(90deg, var(--violet), var(--rose));
}
 
/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sb-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px; margin-bottom: 20px;
}
.sb-card:last-child { margin-bottom: 0; }
.sb-title {
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 13.5px; color: var(--ink);
  border-bottom: 2px solid var(--violet);
  padding-bottom: 7px; margin-bottom: 14px;
}
.sb-title i { color: var(--violet); margin-right: 6px; }
 
/* interest pills */
.interest-pill {
  font-size: 11.5px; padding: 5px 13px; border-radius: 100px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all .2s;
}
.interest-pill:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-lt); }
 
/* soft skill rows */
.soft-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 8px;
}
.soft-row::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--rose));
  flex-shrink: 0;
}
 
/* lang dots */
.ldot {
  width: 9px; height: 9px; border-radius: 50%;
  display: inline-block;
  border: 1.5px solid var(--violet);
}
.ldot.on { background: var(--violet); }
 
/* cert row */
.cert-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.cert-row:last-child { margin-bottom: 0; }
.cert-ico {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: var(--violet-lt); border: 1px solid var(--violet-bd);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.cert-name { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.cert-sub  { font-size: 11px; color: var(--muted); }
 
/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.form-control {
  border: 1px solid var(--border); border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px; color: var(--ink);
  background: var(--bg2);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.form-control::placeholder { color: #d1d5db; }
textarea.form-control { resize: none; }
.form-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.btn-send {
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  border: none; border-radius: 9px; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 13.5px;
  padding: 10px 26px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(124,58,237,.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .15s, box-shadow .15s;
}
.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(124,58,237,.4);
  color: #fff;
}
.form-status { font-size: 13px; border-radius: 9px; padding: 10px 14px; display: none; margin-top: 10px; }
.form-status.ok  { display:block; background:#d1fae5; color:#065f46; }
.form-status.err { display:block; background:#fee2e2; color:#991b1b; }
 
/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
.fade-up { animation: fadeUp .55s ease both; }
 
/* ══════════════════════════════════
   EDU CARD
══════════════════════════════════ */
.edu-degree { font-weight: 700; font-size: 14.5px; color: var(--ink); }
.edu-school { font-size: 12.5px; color: var(--teal); font-weight: 500; }
.edu-date   { font-size: 11.5px; color: var(--muted); }
 
@media (max-width: 768px) {
  .hero-left  { padding: 36px 24px 32px; }
  .hero-right { padding: 0 24px 36px; border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
  .hero-name  { font-size: 2.2rem; }
  .cv-card, .pfe-card, .sb-card { padding: 20px 18px; }
}