:root {
  --bg: #fbfaff;
  --surface: rgba(255,255,255,.92);
  --line: rgba(58,12,163,.12);
  --text: #1a1530;
  --muted: #6f6881;
  --pink: #F72585;
  --indigo: #7209B7;
  --royal: #3A0CA3;
  --blue: #4361EE;
  --cyan: #4CC9F0;
  font-family: "DM Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(247,37,133,.08), transparent 25%),
    radial-gradient(circle at 88% 10%, rgba(76,201,240,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
  font-family: inherit;
  line-height: 1.6;
}
.cv-page { max-width: 1000px; margin: 0 auto; padding: 34px 34px 70px; }
.cv-actions {
  margin-bottom: 24px;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(58,12,163,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 25px rgba(58,12,163,.04);
}
.cv-actions a, .cv-actions button { color: var(--indigo); font-size: 12px; text-decoration: none; background: none; border: 0; padding: 0; cursor: pointer; font-weight: 800; }
.cv-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0 25px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--indigo), var(--blue), var(--cyan)) 1;
}
.cv-name { font-family: "Plus Jakarta Sans", sans-serif; font-size: 42px; line-height: 1.08; font-weight: 800; letter-spacing: -.045em; }
.cv-role { margin-top: 7px; color: var(--royal); font-weight: 700; font-size: 13px; }
.cv-contact { text-align: right; color: var(--muted); font-size: 12px; line-height: 1.8; }
.cv-contact a { color: var(--indigo); text-decoration: none; }
.cv-section { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(58,12,163,.08); border-radius: 18px; background: var(--surface); box-shadow: 0 10px 35px rgba(58,12,163,.045); }
.cv-title { padding-bottom: 8px; margin-bottom: 12px; border-bottom: 1px solid rgba(58,12,163,.09); color: var(--indigo); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; }
.cv-profile, .cv-project p, .cv-skill, .cv-education p { color: var(--muted); font-size: 13px; }
.cv-project { margin-bottom: 20px; }
.cv-project:last-child { margin-bottom: 0; }
.cv-project h3, .cv-education h3 { margin: 0; color: var(--text); font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; }
.cv-meta { margin-top: 3px; color: var(--blue); font-size: 11px; font-weight: 800; }
.cv-project p { margin-top: 6px; }
.cv-project a { display: inline-block; margin-top: 5px; color: var(--indigo); font-size: 11px; }
.cv-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cv-skill-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 8px 0; border-bottom: 1px dashed rgba(58,12,163,.10); }
.cv-skill-row:last-child { border-bottom: 0; }
.cv-skill-row strong { font-size: 12px; color: var(--text); }
.cv-education { margin-bottom: 14px; }
.cv-education p { margin-top: 3px; }
.cv-note { margin-top: 18px; padding: 11px 12px; border-left: 2px solid var(--pink); border-radius: 10px; background: rgba(247,37,133,.035); color: var(--muted); font-size: 10px; }
@media (max-width: 700px) {
  .cv-page { padding: 20px 16px 45px; }
  .cv-header, .cv-cols { display: block; }
  .cv-contact { text-align: left; margin-top: 12px; }
  .cv-name { font-size: 34px; }
  .cv-skill-row { grid-template-columns: 1fr; gap: 3px; }
  .cv-actions { flex-direction: column; align-items: flex-start; }
}
@media print {
  body { background: #fff; }
  .cv-page { max-width: none; padding: 12px; }
  .cv-actions { display: none; }
  .cv-section { box-shadow: none; background: #fff; }
  .cv-title { border-color: #bbb; }
  .cv-profile, .cv-project p, .cv-skill, .cv-education p, .cv-contact { color: #444; }
  .cv-project h3, .cv-education h3, .cv-skill-row strong { color: #111; }
}
